@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
    font-style: normal;
}

ul,
ol,
li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #666666;
    display: inline-block;
}


/* 设置滚动条的样式 */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}


/* 滚动槽 */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: inset 6px rgba(0, 0, 0, 0.3);
}


/* 滚动条滑块 */

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(9, 60, 125);
    box-shadow: inset 6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background-color: #093c7d;
}


/*img:not(.lazy-img) {
    will-change: transform opacity;
    animation: realImg 0.5s linear;
}

@keyframes realImg {
    0% {
        filter: blur(15px);
    }
    100% {
        filter: blur(0);
    }
}

.lazy-img {
    filter: blur(15px);
}*/

/*header*/
#header {
    position: relative;
    z-index: 999999999;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #F9F9F9;
    box-sizing: border-box;
    padding: 0 77px 0 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.header-layout {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: inline-block;
    width: 288px;
}

.header-logo img {
    max-width: 100%;
    width: 100%;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    width: calc(100% - 350px);
}

.header-nav {
    margin-right: 22px;
    height: 100%;
    width: calc(100% - 430px);
}

.nav-list {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.nav-list li {
    width: calc(100% / 7);
    height: 100px;
}

.nav-list li:last-child {
    margin-right: 0;
}

.nav-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #1B4A90;
    font-weight: 400;
    transition: all .3s ease;
}

.nav-list a:hover {
    font-weight: bold;
    color: #fff;
    background: #1B4A90;
    transition: all .3s ease;
}

.nav-list a.on {
    font-weight: bold;
    color: #fff;
    background: #1B4A90;
}

.header-search {
    width: 224px;
    height: 30px;
    border: 1px solid rgba(27, 74, 144, 0.33);
    box-sizing: border-box;
    border-radius: 40px;
    padding: 0 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-search input {
    border: none;
    width: calc(100% - 25px);
    height: 100%;
    text-align: center;
    color: #999999;
    font-size: 12px;
}

.header-search input:focus {
    border: none;
    outline: none;
}

.header-search input ::placeholder {
    color: #999999;
    font-size: 12px;
}

.header-search button {
    background: transparent;
    border: none;
    cursor: pointer;
}


/* 手机端导航 */

.nav_btn img {
    margin-right: 10px;
    margin-top: 10px;
    width: 30px;
    height: 30px;
    vertical-align: top;
}

.nav_btn {
    margin-right: 20px;
    float: right;
    width: 40px;
    height: 40px;
    line-height: 60px;
    color: #0A48A5;
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    display: none;
    background: url(../images/n_nav.png) no-repeat right center;
    background-size: 35px 27px;
    cursor: pointer;
}

.wapContainer {
    display: none;
    width: 200px;
    height: 100%;
    background: #0A48A5;
    position: fixed;
    top: 0;
    right: -250px;
    z-index: 9999999;
}

.nav_close {
    margin: 10px;
    display: none;
    width: 20px;
    height: 20px;
    background: url(../images/n_close_nav.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 5px;
    right: 10px;
}

.wapContainer.is_active,
.nav_close {
    display: block;
}

.wap_nav_ul {
    padding-top: 45px;
}

.wap_nav_ul li {
    width: 100%;
    height: 62px;
    line-height: 62px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.wap_nav_ul li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.wap_nav_ul li:hover a {
    background-color: #374F80;
}

.largeScreen {
    margin-top: 100px;
    width: 100%;
    height: 700px;
    position: relative;
    background-size: 100% 100% !important;
}

.largeScreen-video {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.largeScreen-video video {
    object-fit: cover;
}

.largeScreen-wrapper {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.largeScreen-wrapper .largeScreen-text {
    margin-bottom: 190px;
}

.guide {
    width: 100%;
    height: 218px;
    background: url("../images/guide_bg.png") no-repeat center top;
}

.guide-title {
    margin: 84px auto 29px;
    font-size: 24px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
}

.query-line {
    text-align: center;
}

.query-line input {
    width: 300px;
    height: 40px;
    border-radius: 40px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.75);
    text-align: center;
    background: transparent;
    color: #FFFFFF;
    font-size: 14px;
}

.query-line input::placeholder {
    outline: none;
    color: #FFFFFF;
    font-size: 14px;
}

.query-line>img {
    margin: 0 11px;
}

.query-line button {
    cursor: pointer;
}

.site_query {
    width: 125px;
    height: 40px;
    border-radius: 40px;
    border: none;
    font-size: 16px;
    color: #1B4A90;
    background: rgba(255, 255, 255, 0.75);
    margin: 0 60px 0 24px;
}

.site_query img {
    margin-right: 5px;
}

.line-map {
    height: 42px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: bold;
}

.line-map img {
    float: left;
    width: 40px;
    height: 40px;
    margin-top: -10px;
    margin-right: 10px;
}

.headlines {
    width: 100%;
    height: 60px;
    background: #0A48A5;
}

.headlines-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headlines-wrapper h4 {
    width: 113px;
    color: #B3D34C;
    font-weight: bold;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid rgba(216, 216, 216, 0.2);
    display: inline-block;
    text-align: center;
    line-height: 60px;
}

.headlines-wrapper a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding-left: 34px;
    font-size: 16px;
}

.headlines-wrapper p {
    color: #FFFFFF;
    width: calc(100% - 120px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.headlines-wrapper span {
    color: #ADBED6;
}

.headlines-swiper {
    width: calc(100% - 113px);
    height: 60px;
}

.lineMap_box {
    display: none;
}

.viewer-container {
    background-color: rgba(0, 0, 0, 0.8);
}

/* 地铁查询css */
.query-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: unset;
}

.inquiry {
    position: relative;
    height: 45px;
}

.inquiry-ul {
    overflow: hidden;
    width: 302px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.inquiry-ul li {
    cursor: pointer;
    padding: 0 20px 15px 0;
    transition: 0.3s all;
}

.inquiry-ul li:nth-child(1) {
    padding-top: 15px;
}

.inquiry-ul li p {
    width: auto;
    font-size: 14px;
    color: #999999;
}

.inquiry-ul li p span {
    display: inline-block;
    width: 53px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0 19px 0 5px;
    border-radius: 2px;
}

.inquiry-ul li p .span1 {
    background: #399D33;
}

.inquiry-ul li p .span2 {
    background: #0A48A5;
}

.inquiry-ul li p .span3 {
    background: red;
}

.inquiry-ul-li-ul {
    position: absolute;
    top: 42px;
    right: -224px;
    width: 224px;
    overflow: auto;
    background: #ffffff;
    color: #474F55;
    box-shadow: 0px 4px 10px 0px rgba(10, 72, 165, 0.15);
}

.inquiry-ul,
.inquiry-ul-li-ul {
    height: 0px;
    transition: height 0.6s;
    -webkit-transition: height 0.6s;
    -moz-transition: height 0.6s;
    -ms-transition: height 0.6s;
    -o-transition: height 0.6s;
}

.inquiry-ul-li-ul li {
    position: relative;
    height: 31px;
    line-height: 31px;
    padding-left: 20px;
    margin: 10px 11px 10px 31px;
    cursor: pointer;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #F7F7F7;
    box-sizing: border-box;
    border-width: 0px 0px 0px 1px;
    border-style: solid;
    border-color: #399D33;
    transition: 0.3s all;
}

.subwaylist1 li {
    border-color: #0A48A5;
}

.subwaylist2 li {
    border-color: red;
}

.inquiry-ul .active p,
.inquiry-ul-li-ul .active {
    font-weight: bold;
}

.inquiry-ul>li>.inquiry-ul-li-ul>p {
    width: auto;
    height: 47px;
    line-height: 47px;
    font-size: 14px;
    font-weight: normal;
    background: #F7F7F7;
    color: #999999;
}

.inquiry-ul>li>.inquiry-ul-li-ul>p>span {
    margin: 0 5px;
}

.inquiry-ul-li-ul li:after {
    content: "";
    position: absolute;
    z-index: 0;
    height: 12px;
    width: 12px;
    top: 10px;
    left: -20px
}

.subwaylist li:after {
    background: url(../images/greencircle_icon.png) no-repeat;
}

.subwaylist1 li:after {
    background: url(../images/greencircle_icon1.png) no-repeat;
}

.subwaylist2 li:after {
    background: url(../images/RedSelect.png) no-repeat;
}

.subwaylist3 li:after {
    background: url(../images/PurpleSelect.png) no-repeat;
}

@media only screen and (max-width: 1200px) {

    .inquiry-ul,
    .inquiry-ul-li-ul {
        width: 200px;
    }

    .inquiry-ul-li-ul {
        right: -200px
    }

    .inquiry-ul>li>.inquiry-ul-li-ul>p {
        height: auto;
        line-height: unset;
    }

    .inquiry-ul li p span,
    .inquiry-ul>li>.inquiry-ul-li-ul>p>span {
        display: block;
    }
}

@media only screen and (max-width: 996px) {
    .inquiry-ul {
        width: 180px;
    }
}

@media only screen and (max-width: 768px) {
    .inquiry-ul {
        width: 140px;
    }

    .inquiry {
        height: 35px;
    }

    .inquiry-ul {
        top: 35px;
    }
}

@media only screen and (max-width: 412px) {
    .inquiry-ul-li2 ul {
        right: 140px
    }
}

/* 地铁查询css end */

/*end*/


/*footer*/

.footer-container {
    width: 100%;
    height: auto;
    background: #31363E;
    box-sizing: border-box;
    padding: 37px 0 25px;
    min-height: 170px;
}

.footer-top {
    display: flex;
    justify-content: center;
}

.footer-top li {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 28px;
}

.footer-top li:last-child {
    margin-right: 0;
}

.footer-top span {
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    margin-left: 18px;
}

.footer-bottom {
    text-align: center;
    line-height: 43px;
    margin-top: 14px;
}

.footer-bottom * {
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom>* {
    margin-right: 15px;
}

.footer-bottom>*:last-child {
    margin-right: 0;
}

.footer-top .ewm {
    display: none;
    position: absolute;
    top: -105px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    z-index: 99999;
}

.footer-top .ewm img {
    width: 100%;
    height: 100%;
}

.footer-top li:hover .ewm {
    display: block;
}


/*end*/


/*main*/

.plate_title {
    text-align: center;
}

.plate_title h4 {
    font-size: 24px;
    color: #1B4A90;
    line-height: 30px;
    font-weight: bold;
}

.plate_title span {
    display: block;
    color: #DCDCDC;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
}

.plate_title a {
    width: 232px;
    height: 38px;
    text-align: center;
    background: url("../images/more_bg.png") no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #666666;
    font-size: 14px;
}

.plate_title a img {
    margin-left: 12px;
}

.plate_title1 h4 {
    color: #FFFFFF;
}

.plate_title1 a {
    color: #DEDEDE;
}


/*end*/


/* 公共样式 */

.w1400 {
    margin: 0 auto;
    width: 1400px;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.more,
.more a {
    font-size: 14px;
    line-height: 32px;
    color: #999;
}

.time {
    font-size: 14px;
    color: #666666;
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.head .a1 {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    color: #1B4A90;
    z-index: 999;
}

.head .a1::after {
    content: '';
    position: absolute;
    top: 6px;
    left: -10px;
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(57, 157, 51, 0.28);
    z-index: -1;
}

.ckgd {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 145px;
    height: 36px;
    font-size: 14px;
    border: 1px solid #0A48A5;
    color: #0A48A5;
    border-radius: 18px;
    padding-left: 10px;
}

.ckgd i {
    margin-left: 15px;
    font-size: 20px;
}


/* 当前位置 */

.current {
    font-size: 16px;
    color: #333;
    height: 45px;
    line-height: 45px;
    background: #F5F7FB;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
}

.current span {
    padding-left: 30px;
    display: inline-block;
    background: url(../images/dqwz.png) no-repeat left center;
}

.current a {
    color: #333333;
}

.current a.on {
    color: #1B4A90;
}


/* tab切换 */

.tab_bd .item {
    display: none;
}

.tab_bd .item:first-child {
    display: block;
}


/* 列表 */

.main_lis li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_lis li a {
    position: relative;
    display: block;
    width: calc(100% - 110px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    color: #333;
    text-indent: 17px;
    font-size: 16px;
    transition: 0.3s all;
}

.main_lis li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    height: 6px;
    background-color: #B9B9B9;
    border-radius: 50%;
    transition: 0.3s all;
}

.main_lis li:hover a {
    color: #1B4A90;
    padding-left: 5px;
    transition: 0.3s all;
}

.main_lis li:hover a::after {
    background-color: #1B4A90;
    transition: 0.3s all;
}

.main_lis li span {
    color: #9E9E9E;
    font-size: 16px;
}


/* 多行文本裁切 */

h3.mul_p,
h3.multiline {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    transition: all .3s ease;
}

p.multiline {
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    color: #666;
}

.mul_p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multiline {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* 图片缩放 */

.pic {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.pic img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: linear 0.5s;
    -moz-transition: linear 0.5s;
    -ms-transition: linear 0.5s;
    -o-transition: linear 0.5s;
    transition: linear 0.5s;
    object-fit: cover;
}

.pic:hover img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.03, 1.03);
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -o-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
    -webkit-transition: linear 0.5s;
    -moz-transition: linear 0.5s;
    -ms-transition: linear 0.5s;
    -o-transition: linear 0.5s;
    transition: linear 0.5s;
}


/* 轮播图 */

.swiper-container {
    margin: 0;
}

.swiper-container img {
    width: 100%;
    height: 100%;
}

.swiper-container .swiper-pagination {
    text-align: right;
    padding-right: 15px;
    box-sizing: border-box;
    bottom: 10px;
}

.swiper-container .swiper-pagination-bullet {
    margin-right: 8px;
    right: 0;
    opacity: 1;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border-radius: 50%;
}

.swiper-container .swiper-pagination-bullet-active {
    opacity: 1;
    background: #083D76;
}

.swiper-container .swiper-text {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 30px;
    box-sizing: border-box;
    width: 100%;
    line-height: 80px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(180deg, rgba(6, 61, 129, 0.00) 0%, rgba(2, 30, 64, 0.88) 87%);
}

.swiper-container .swiper-text span:first-child {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 150px);
}


/* 锚点链接 */

.point {
    box-sizing: border-box;
    padding-top: 10px;
    position: fixed;
    top: 165px;
    right: -150px;
    padding-bottom: 20px;
    width: 139px;
    border-radius: 10px;
    background: rgba(10, 72, 165, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 99999999999;
    transition: all .8s ease-in-out 0s;
}
.show{
    right: 25px;
}
.point ul li {
    margin-top: 27px;
}

.point ul li a {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #fff;
    font-size: 14px;
}

.point ul li a i {
    margin: 0 10px 0 24px;
}

.point_other ul li a i {
    display: block;
    width: 15px;
    height: 6px;
    background: url(../images/point_li.png) no-repeat center;
    background-size: 100% 100%;
}

.point_other ul li:hover a i {
    background: url(../images/point_li_on1.png) no-repeat center;
}

.point ul li.point_on a,
.point ul li:hover a {
    color: #399D33;
    font-weight: bold;
}

.point ul li.point_on a::after,
.point ul li:hover a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 24px;
    border-radius: 0px 10px 10px 0px;
    background: #1B4A90;
}

.point ul li a span {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 56px;
}

.point_img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 18px 0;
    width: 104px;
    height: 29px;
    font-size: 12px;
    color: #FFFFFF;
    background: url(../images/sy_pointbgli.png) no-repeat center;
    background-size: 100% 100%;
}

.point_img img {
    width: 100%;
}

.point_close {
    position: absolute;
    top: 7px;
    right: 5px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/n_close_nav.png) no-repeat;
    background-size: 17px;
}

.viewer-button {
    top: 100px !important;
    height: 60px !important;
}

.viewer-button:before {
    bottom: 20px !important;
}

@media only screen and (max-width: 1700px) {
    .header-nav{
        width: calc(100% - 310px);
    }
}

@media only screen and (max-width: 1600px) {
    .header-container {
        padding: 0 30px 0 50px;
    }
    .header-nav{
        width: calc(100% - 224px);
    }
    
}

@media only screen and (max-width: 1400px) {
    .header-container {
        padding: 0 20px;
    }

    .header-nav {
        margin-right: 20px;
    }

    .header-nav{
        width: calc(100% - 210px);
    }


    .largeScreen {
        height: 640px;
    }
}

@media only screen and (max-width: 1300px) {
    .largeScreen {
        height: 580px;
    }
}

@media only screen and (max-width: 1200px) {
    .w1400 {
        width: 970px !important;
        margin: 0 auto;
    }
    .header-nav {
        display: none;
    }

    .nav_btn {
        display: block;
    }

    .query-line input {
        width: 200px;
    }

    .largeScreen {
        height: 530px;
    }

    .largeScreen-wrapper .largeScreen-text {
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 1100px) {
    .largeScreen {
        height: 500px;
    }
}

@media only screen and (max-width: 1000px) {
    .largeScreen {
        height: 450px;
    }
}

@media only screen and (max-width: 996px) {
    .w1400 {
        width: 750px !important;
        margin: 0 auto;
    }

    .query-line input {
        width: 180px;
    }

    .site_query {
        margin: 0 10px 0 15px;
    }

    .line-map {
        margin-top: 20px;
    }

    .guide-title {
        margin: 70px auto 20px;
    }

    .largeScreen-wrapper .largeScreen-text {
        margin-bottom: 0;
    }

    .largeScreen {
        height: 400px;
    }
}

@media only screen and (max-width: 800px) {
    .largeScreen {
        height: 350px;
    }
}

@media only screen and (max-width: 768px) {
    .w1400 {
        width: 96% !important;
    }

    .header-container {
        padding: 0 5px;
    }

    .largeScreen-text img {
        width: 60%;
    }

    .largeScreen-wrapper .largeScreen-text {
        margin-bottom: -50px;
    }

    .query-line input {
        width: 140px;
        height: 30px;
        font-size: 12px;
    }

    .guide {
        background-position: center 60px;
    }

    .guide-title {
        margin: 130px auto 0;
        font-size: 18px;
    }

    .site_query {
        width: 90px;
        height: 32px;
        border-radius: 32px;
        font-size: 14px;
    }

    .site_query img {
        vertical-align: sub;
    }

    .query-line>img {
        margin: 0 5px;
    }

    .line-map img {
        margin-top: -8px;
        width: 30px;
    }

    .headlines-wrapper a {
        padding-left: 15px;
    }
}

@media only screen and (max-width: 700px) {
    .largeScreen {
        height: 300px;
    }
}

@media only screen and (max-width: 616px) {
    .header-search {
        width: 190px;
    }

    .largeScreen {
        height: 280px;
    }

    .footer-container {
        height: auto;
    }
}

@media only screen and (max-width: 515px) {
    .main_lis li {
        height: 42px !important;
        line-height: 42px !important;
    }
}