﻿/* CSS Document */
.mc{ margin: 0 auto !important;}
.wow {
    transition-delay: 0.3s;
}
.pc {
    display: block;
}
.mob {
    display: none;
}
.wrap{
    width: 86%;
    max-width: 1230px;
    padding: 0 15px;
	margin: 0 auto;
}
.header {
    position: fixed;
    /* position: sticky; */
    left: 0;
    top: 0;
    width: 100%;
    min-width: 320px;
    background-color: #FFFFFF;
    transition: all .3s;
    z-index: 11;
}
.header.no-show{
    transform: translateY(-100%);
}
.hdTopBg{
    max-height: 40px;
    background-color: #F8F8F8;
    transition: all .3s;
    overflow: hidden;
}
.welcome{
    color: #666666;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.language{
    flex-shrink: 0;
    margin-left: 10px;
}
.language a{
    display: block;
    color: var(--baseColor);
    line-height: 26px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid var(--baseColor);
    margin-left: .2rem;
    transition: all .3s;
}
.language a:hover{
    color: #FFFFFF;
    background-color: var(--baseColor);
}
.hdCenBg{
    max-height: 115px;
    transition: all .3s;
    overflow: hidden;
}
.logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all .3s;
    height: 115px;
}
.logo a {
    display: block;
    transition: all .3s;
}
.logo img {
    height: 65px;
    transition: all .3s;
}
.logoText{
    flex: auto;
    line-height: 24px;
    overflow: hidden;
    padding-left: .3rem;
    margin-left: .3rem;
    border-left: 1px solid #ECECEC;
    padding-left: .2rem;
    margin-left: .2rem;
}
.logoText p{
    padding-left: 21px;
    background: url(../image/star.webp) left 4px no-repeat;
    margin: .1rem 0;
}
.logoText p:first-child{
    margin-top: 0;
}
.logoText p:last-child{
    margin-bottom: 0;
}
.navRig {
    position: relative;
    float: right;
    line-height: 50px;
    text-align: right;
    font-size: 0;
    margin-left: .3rem;
    transition: all .3s;
}
.navRig li {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    position: relative;
}
.navRig li + li{
    margin-left: .2rem;
}
.navRig a,
.navRig i,
.navRig span {
    display: inline-block;
    vertical-align: middle;
    color: var(--baseColor);
    line-height: 30px;
}
.navRig li.navTel > a{
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #F3AB3A;
    font-weight: bold;
    font-size: 20px;
    white-space: nowrap;
}
.navRig li.navTel > a i{
    display: block;
    width: 40px;
    height: 40px;
    max-width: .5rem;
    max-height: .5rem;
    background: url(../image/tel.webp) center center no-repeat;
    background-size: contain;
    margin-right: .1rem;
}
.navRig li.navBtn {
    cursor: pointer;
    display: none;
}
.navRig li.navBtn::before{
    display: none;
}
.navBtn span {
    width: 22px;
    height: 30px;
    margin: 0 15px;
    position: relative;
}
.navBtn span b {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--baseColor);
    position: absolute;
    left: 0;
    top: calc((100% - 4px) / 2);
    transition: all .3s;
}
.navBtn span b:nth-child(1) {
    transform: translateY(6px) rotate(0deg);
}
.navBtn span b:nth-child(3) {
    transform: translateY(-6px) rotate(0deg);
}
.navBtn.active b:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.navBtn.active b:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.navBtn.active b:nth-child(2) {
    opacity: 0;
}

.hdBotBg{
    border-top: 1px solid #ECECEC;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.05);
}
.navBox {
    margin: 0 auto;
    text-align: center;
}
.navList {
    list-style: none;
    display: flex;
    transition: all .3s;
}
.navList > li {
    position: relative;
    display: block;
    flex: auto;
    /* width: 12.5%; */
}
.navList > li > a {
    position: relative;
    display: block;
    line-height: 74px;
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    transition: all .3s;
    overflow: hidden;
}
.navList > li > a::before{
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--baseColor);
    transition: all .5s ease-in-out;
}
.navList > li > a span {
    position: relative;
    display: inline-block;
    transition: all ease-out .3s;
}
.navList > li > a span:after {
    position: absolute;
    left: 0;
    width: 100%;
    color: var(--baseColor);
    content: attr(data-title);
    transform: translateY(100%);
}
.navList > li > a i{
    display: inline-block;
    vertical-align: middle;
    width: 11px;
    height: 6px;
    background: url(../image/arrow.webp) center bottom no-repeat;
    background-size: contain;
    margin-left: 7px;
}
.navList > li > a:hover,
.navList > li.cur > a,
.navList > li.active > a{
    color: var(--baseColor);
}
.navList > li.active > a::before{
    left: 0;
    right: auto;
    width: 100%;
}
.navList > li a.active span,
.navList > li:hover a span {
    transform: translateY(-100%);
}
.navSub{
    list-style: none;
    position: absolute;
    left: 50%;
    top: 100%;
    min-width: 100%;
    transform: translateX(-50%);
    padding: 10px 0;
    color: #666666;
    line-height: 1.5;
    background-color: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.05) inset,0 2px 2px rgba(0, 0, 0, 0.05);
    display: none;
    z-index: 10;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}
.navSub a{
    position: relative;
    display: block;
    color: #666666;
    padding: 8px 15px;
    white-space: nowrap;
    z-index: 1;
    transition: all .4s ease-in-out;
}
.navSub a::before{
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--baseColor);
    z-index: -1;
    transition: all .3s ease-in-out;
}
.navSub a:hover{
    color: #FFFFFF;
}
.navSub a:hover::before{
    width: 100%;
}
.navMob{
    display: none;
}
.navMob .logoText{
    display: none;
}
.header-hide .hdTopBg,
.header-hide .hdCenBg{
    max-height: 0;
    overflow: hidden;
}

.banner,
.banIn,
.header + .breadBg{
    margin-top: 230px;
}
.mainBg{
    position: relative;
    min-height: 50vh;
    font-size: 14px;
    color: #333333;
    line-height: 2;
    z-index: 2;
}
.grayBg{
    background-color: #FAFAFA;
}
.whiteBg{
    background-color: #FFFFFF;
}
.main{
    font-size: 14px;
    color: #666666;
    line-height: 2;
    padding: .3rem;
    min-height: 40vh;
    background-color: #FFFFFF;
}

.footBg{
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    background-color: #39404A;
    z-index: 2;
}
.footBg a{
    color: rgba(255, 255, 255, 0.85);
}
.footBg a:hover{
    color: #FFFFFF;
}
.ftTop{
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    padding: .6rem 0;
}

.ftLeft{
    flex-shrink: 0;
    width: 33%;
    max-width: 410px;
    margin-right: 2%;
}
.ftLogo{
    width: 80%;
    max-width: 3.32rem;
    /* margin-bottom: .4rem; */
}
.ftLogo img{
    max-width: 100%;
    height: auto;
}
.ftText{
    padding: .2rem 0;
    padding-right: .3rem;
    border-right: 1px solid #676767;
}
.ftText strong{
    font-size: 150%;
}
.wxList{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 -10px;
    text-align: center;
}
.wxList li{
    width: 50%;
    max-width: 160px;
    padding: 0 10px;
}
.wxList li img{
    width: 100%;
    height: auto;
    margin: 0 0 5px;
}
.ftNav{
    /* flex: auto; */
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
    width: 65%;
    max-width: 780px;
    overflow: hidden;
}
.ftNav li{
    flex: 1;
    flex: auto;
    padding: 0 10px;
}
.ftNav li h3{
    margin-bottom: 10px;
    font-weight: normal;
}
.ftNav li h3 a {
    font-size: 20px;
    line-height: 1.8;
    transition: all .3s;
}
.ftCon p{
    margin: 5px 0;
}
.ftCon p a{
    transition: all .3s;
}
.ftNav li.even{
    flex: 1.8;
}
.ftCon.even{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.ftCon.even p{
    width: 50%;
    padding: 0 5px;
}
.copyright{
    line-height: 1.5;
    padding: .15rem 0;
    color: rgba(255, 255, 255, 0.6);
    background-color: #333940;
    text-align: center;
}
.copyright a{
    color: rgba(255, 255, 255, 0.6);
}

.hmTit{
    line-height: 1.5;
}
.swiper-pagination{
    position: static;
    margin-top: .3rem;
    z-index: 2;
}
.swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    border: none;
    background-color: #000000;
    opacity: .2;
    margin: 0 .05rem;
    vertical-align: middle;
    transition: all .5s;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--baseColor);
    opacity: 1;
}

.banIn{
    position: relative;
    height: 380px;
    max-height: 25vw;
    overflow: hidden;
}
.banIn .inImg{
    height: 100%;
}
.banIn .inText{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: #FFFFFF;
    line-height: 1.6;
}
.banIn .inTit{
    line-height: 1.4;
    margin-bottom: .1rem;
}
.inSearch{
    position: relative;
    width: 100%;
    max-width: 880px;
    background-color: #FFFFFF;
    border-radius: 4px;
    margin: .4rem auto;
    overflow: hidden;
    padding-right: .8rem;
}
.inInput{
    display: block;
    width: 100%;
    line-height: 30px;
    padding: .15rem .2rem;
    border: none;
}
.inBtn{
    position: absolute;
    right: 0;
    top: 0;
    width: .8rem;
    height: 100%;
    border: none;
    background-color: transparent;
    background: url(../image/search.webp) center center no-repeat;
    cursor: pointer;
}
.inBtn::before{
    display: block;
    content: "";
    width: 1px;
    height: 60%;
    background-color: #D8D8D8;
    position: absolute;
    left: 0;
    top: 20%;
}

.breadBg{
    padding: .15rem 0;
    background-color: #F2F7FF;
}
.breadNav{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}
.breadNav li a{
    color: #666666;
    transition: all .3s;
}
.breadNav li a:hover{
    color: var(--baseColor);
}
.breadNav li.current{
    flex: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadNav li + li + li::before{
    content: ">";
    color: #666666;
    padding: 0 5px;
}

.mainH2{
    color: #000000;
    line-height: 1.2;
    margin: .6rem 0 .3rem;
    margin: .6rem 0;
}

.playIco{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../image/play1.webp) center center no-repeat;
    background-size: 9.65% auto;
    cursor: pointer;
}

.page{
    margin: .4rem 0;
    text-align: center;
}
.page a,
.page span{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #999999;
    line-height: 30px;
    min-width: 30px;
    transition: all .3s;
}
.page a:hover,
.page .active{
    color: var(--baseColor);
    border-color: var(--baseColor);
}

.main{
    padding: .6rem 0;
}
.left{
    float: left;
    position: sticky;
    top: 80px;
    width: 23.33%;
    margin-right: 3%;
}
.leftBox{
    padding: 0 .2rem;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    margin-bottom: .2rem;
}
.leftH2{
    color: #000000;
    line-height: 1.8;
    margin: .22rem 0;
}
.leftH2 img{
    max-width: .18rem;
    min-width: 14px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -2px;
}
.sortList{
    list-style: none;
    padding: .1rem 0 .2rem;
}
.sortList > li > a{
    position: relative;
    display: block;
    color: #666666;
    line-height: 24px;
    padding: .15rem .2rem;
    padding-right: 20px;
    transition: all .3s;
}
.sortList > li > a::after{
    display: block;
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 13px;
    background: url(../image/sortIco1.webp) center center no-repeat;
    background-size: contain;
    transition: all .3s;
}
.sortList > li.open > a,
.sortList > li > a:hover{
    color: var(--baseColor);
}
.sortList > li.active > a{
    color: #FFFFFF;
    background-color: var(--baseColor);
}
.sortList > li.active > a::after{
    background-image: url(../image/sortIco2.webp);
}
.sortList > li.dropdown  > a{
    color: #666666;
    background-color: transparent;
}
.sortList > li.dropdown  > a::after{
    background-image: url(../image/sortIco1.webp);    
}
.sortList > li.active .sortSub{
    display: block;
}
.sortList > li.open > a::after{
    transform: rotate(90deg);
    margin-top: -4px;
}
.sortSub{
    list-style: none;
    display: none;
} 
.sortSub li a{
    display: block;
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    padding: .15rem .2rem;
    padding-left: .4rem;
    transition: all .3s;
}
.sortSub li a:hover{
    color: var(--baseColor);
}
.sortSub li.active a{
    color: #FFFFFF;
    background-color: var(--baseColor);
}


.leftText{
    margin: .15rem 0 .2rem;
    font-size: 12px;
    line-height: 18px;
}
.leftText p{
    padding-left: 20px;
    margin: .15rem 0;
    background-position: left 3px;
    background-repeat: no-repeat;
}
.leftText p.leftIco1{
    background-image: url(../image/leftIco1.webp);
}
.leftText p.leftIco2{
    background-image: url(../image/leftIco2.webp);
}
.leftText p.leftIco3{
    background-image: url(../image/leftIco3.webp);
}

.comDisease{
    list-style: none;
    margin: 0 -.1rem;
}
.comDisease li{
    padding: 0 .1rem;
    margin-bottom: .2rem;
}
.comDisease li a{
    display: block;
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    padding: .1rem .15rem;
    border-radius: calc(11px + .1rem);
    border: 1px solid #D8D8D8;
    transition: all .3s;
}
.comDisease li a:hover{
    color: #FFFFFF;
    border-color: var(--baseColor);
    background-color: var(--baseColor);
}

.right{
    float: right;
    width: 73.67%;
}
.rightTit{
    color: #333333;
    line-height: 1;
    padding-bottom: 10px;
    border-bottom: 1px solid #D8D8D8;
}
.rightTit span{
    display: block;
    padding-left: 5px;
    border-left: 4px solid var(--baseColor);
}
.editor{
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin: .3rem 0;
}
.editor strong{
    color: #333333;
}
.editor strong span{
    color: var(--baseColor);
}
.editor img{
    max-width: 100% !important;
    height: auto !important;
    border-radius: 5px;
}
.editor video{
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
}
.editor a{
    color: var(--baseColor);
}
.editor .two{
    text-align: center;
}
.editor .two li{
    width: 48%;
}
.editor *{
    text-wrap: wrap !important;
}

.dLef{
    float: left;
    width: 62.5%;
    width: 70%;
}
.dTop{
    font-size: 14px;
    color: #999999;
    line-height: 2;
    padding-bottom: 10px;
    border-bottom: 1px solid #D8D8D8;
}
.dTit{
    color: #000000;
    line-height: 1.4;
    margin-bottom: 5px;
}
.dPage{
    font-size: 14px;
    line-height: 1.4;
    margin: .3rem 0 0;
    padding: .3rem 0;
    border-top: 1px solid #D8D8D8;
}
.dPage p{
    margin: .1rem 0;
}
.dPage p a{
    color: #999999;
    transition: all .3s;
}
.dPage p a:hover{
    color: #3261AD;
}
.dRig{
    float: right;
    position: sticky;
    top: 80px;
    width: 32.5%;
    width: 25%;
}
.dRigH2{
    color: #000000;
    padding-bottom: 10px;
    margin-bottom: .3rem;
    border-bottom: 1px solid #D8D8D8;
    font-weight: bold;
}
.dVideo{
    list-style: none;
}
.dVideo li{
    margin-bottom: .2rem;
}
.dvLink{
    display: block;
}
.dvImg{
    padding-bottom: 56.55%;
}
.dvTag{
    position: absolute;
    left: .15rem;
    top: .15rem;
    min-width: 44px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 22px;
    padding: 0 5px;
    text-align: center;
    background-color: #3261AD;
    border-radius: 2px;
}
.dvTag2{
    background-color: #F3AB3A;
}
.dvTit{
    font-size: 14px;
    color: #333333;
    line-height: 24px;
    padding: .1rem;
    background-color: #F2F7FF;
    font-weight: normal;
}
.dvLink:hover .imgBg{
    transform: scale(1.05);
}
.dvLink:hover .dvTit{
    color: var(--baseColor);
}
.dRead{
    list-style: none;
}
.dRead li{
    margin-bottom: .2rem;
}
.drLink{
    display: flex;
    align-items: center;
}
.drImg{
    flex-shrink: 0;
    width: 31.28%;
    max-width: 122px;
    height: 71px;
    margin-right: 3.8%;
    overflow: hidden;
}
.drImg img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.drText{
    flex: auto;
    overflow: hidden;;
}
.drTit{
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    max-height: 48px;
    -webkit-line-clamp: 2;
    font-weight: normal;
    overflow: hidden;
}
.drDate{
    font-size: 12px;
    color: #999999;
    line-height: 1.2;   
}
.drLink:hover img{
    transform: scale(1.1);
}
.drLink:hover .drTit{
    color: var(--baseColor);
}

.mainBotBg{
    background-color: #FAFAFA;
    overflow: hidden;
}
.mainBotTit{
    color: #000000;
    line-height: 1.1;
    margin: .4rem 0;
}

.swiperBtn{
    display: block;
    width: 23px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.swiperPrev{
    left: 0;
    background-image: url(../image/prev.png);
}
.swiperNext{
    right: 0;
    background-image: url(../image/next.png);
}

.equipIco{
    width: 24px;
    height: 24px;
    max-width: .32rem;
    max-height: .32rem;
    background: url(../image/equipIco1.webp) center center no-repeat;
    background-size: contain;
}

/* video */
.videoBg{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 11;
    display: none;
}
.videoBox{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-45%);
    border: 6px solid #FFFFFF;
    border-radius: 4px;
    margin: 0 auto;
}
.videoBox .close{
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    font-size: 36px;
    line-height: 1;
    opacity: .8;
    color: #FFFFFF;
    cursor: pointer;
    transition: all .4s;
}
.videoBox .close:hover{
    opacity: 1;
}
.videoBox video{
    display: block;
    width: auto;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
}

.conMap{
    height: 5rem;
}
.conMap:last-child{
    margin: .2rem 0 .6rem;
}
.conBot{
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: .2rem 0 0;
    padding: 0 .4rem;
    background-color: #F9F9F9;
    overflow: hidden;
}
.conList{
    margin: .3rem -.3rem;
}
.conList li{
    width: 33.33%;
    padding: 0 .3rem;
    margin: .2rem 0;
}
.conList li strong{
    color: var(--baseColor);
}
.infoBox{
    filter: drop-shadow(0 .04rem .1rem rgba(0,0,0,0.2));
}
.infoBox::after{
    display: block;
    content: "";
    border-top: 10px solid #FFFFFF;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: 100%;
}
.infoBox > img{
    display: none;
}
.mapText h2{
    font-size: 16px;
    color: #666666;
    line-height: 1.2;
    margin: 5px 0 10px;
    font-weight: bold;
}
.mapCon p{
    font-size: 14px;
    color: #999999;
    padding-left: 20px;
    background-position: left 8px;
    background-size: auto 14px;
    background-repeat: no-repeat;
}
.mapCon p.address{
    background-image: url(../image/address.webp);
}

@media (min-width:1201px) {
    .hdBotBg{
        display: block !important;
    }
    .sortList{
        display: block !important;
    }
}
@media (max-width:1600px) {
    .welcome{
        line-height: 38px;
    }
    .language a{
        line-height: 24px;
        padding: 0 8px;
    }
    .logo{
        height: 90px;
    }
    .logo img{
        height: 56px;
    }
    .navRig li.navTel > a{
        font-size: 22px;
    }

    .navList > li > a{
        font-size: 16px;
        line-height: 64px;
    }
    .navSub a{
        padding: 6px 15px;
    }
    .footBg{
        font-size: 14px;
    }
    .ftLogo{
        /* margin-bottom: .3rem; */
    }
    .ftNav li h3 a{
        font-size: 18px;
    }
    .banner,
    .banIn,
    .header + .breadBg{
        margin-top: 193px;
    }
    
}
@media (max-width:1400px) {

}
@media (min-width:992px) {
    .ftCon{
        display: block !important;
    }
    .ftCon.even{
        display: flex !important;
    }
}
@media (max-width:1200px) {
    .header{
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.05);
    }
    .wrap {
        width: 100%;
        max-width: 970px;
    }
    .header .wrap{
        max-width: 100%;
    }
    .logo {
        float: left;
        height: 64px;
    }
    .logo img {
        height: 40px;
    }
    .logoText{
        padding-left: .2rem;
        margin-left: .2rem;
    }
    .logoText p{
        margin: 0;
        background-size: 12px auto;
        background-position: left 6px;
    }
    .navRig {
        position: relative;
        float: right;
        margin: 0;
        margin-right: -15px;
        transition: all .5s;
        z-index: 3;
    }
    .navRig li {
        position: static;
        margin-left: 0;
        font-size: 14px;
    }
    .navRig li + li{
        margin-left: 0;
    }
    .navRig li.navTel > a{
        font-size: 18px;
    }
    .navRig li.navTel > a i{
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
    .navRig li.navBtn {
        display: inline-block;
    }
    .hdBotBg {
        position: fixed;
        top: auto;
        top: calc(38px + 64px);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background-color: #FFFFFF;
        overflow-y: auto;
        z-index: 2;
        display: none;
    }
    .hdBotBg .wrap{
        height: 100%;
    }
    .mobile-nav-open{
        overflow: hidden;
    }
    
    .navList {
        position: relative;
        text-align: left;
        display: block;
        margin: 0 auto;
        padding: .2rem 0;
    }
    .navList > li {
        display: block;
        margin: 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px dashed #EEEEEE;
    }
     .navList > li:last-child{
         border-bottom: none;
     }
    .navList > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: auto;
        line-height: 50px;
    }
    .navList > li > a i{
        transition: all .3s;
    }
    .navList > li > a::before {
        display: none;
    }
    .navList > li.cur > a i{
        transform: rotate(-180deg);
    }
    .navList > li > a:hover,
    .navList > li.cur > a,
    .navList > li.active > a{
        font-weight: bold;
    }
    .navList > li:hover a{
        color: #333333;
    }
    .navList > li:hover a span {
        transform: translateY(0);
    }
    .navList > li.cur a:hover span,
    .navList > li.cur a span {
        transform: translateY(-100%);
    }
    .navSub{
        position: static;
        left: 100%;
        width: 100%;
        padding: 0;
        transform: none;
        background-color: transparent;
        box-shadow: none;
    }
    .navSub li{
        width: 100%;
        padding: 0;
    }
    .navSub a:hover{
        color: var(--baseColor);
    }
    .navSub a::before{
        display: none;
    }    
    .header-hide .hdTopBg,
    .header-hide .hdCenBg{
        max-height: none;
    }
    .ftTop{
        padding: 30px 0;
    }
    .copyright{
        padding: 10px 0;
    }    
    .banner,
    .banIn,
    .header + .breadBg{
        margin-top: 102px;
    }
    .banIn .inTit{
        margin-bottom: 0;
    }
    .inSearch{
        max-width: 640px;
        margin: .2rem auto;
    }
    .inInput{
        line-height: 24px;
        padding: .1rem .2rem;
    }
    .inBtn{
        width: 40px;
        background-size: 50% auto;
    }
    .mainH2{
        margin: .5rem 0 .2rem;
        margin: .5rem 0;
    }
    .main{
        padding: .3rem 0;
    }
    .left{
        position: static;
        float: none;
        width: 100%;
        max-width: 100%;
        margin: .2rem 0 .4rem;
    }
    .leftBox{
        padding: 0 10px;
    }
    .leftH2{
        position: relative;
        margin: 10px 0;
        cursor: pointer;
    }
    .leftH2::after{
        display: block;
        content: "";
        width: 11px;
        height: 6px;
        background: url(../image/arrow.webp) center bottom no-repeat;
        background-size: contain;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -3px;
        transition: all .3s;
    }
    .leftBox.active .leftH2::after{
        transform: rotate(180deg);
    }
    .sortList{
        display: none;
    }
    .comDisease{
        margin: 0 -5px 10px;
    }
    .comDisease li{
        padding: 0 5px;
        margin-bottom: .1rem;
    }
    .comDisease li a{
        line-height: 18px;
        padding: 5px .2rem;
    }
    .leftBox:nth-child(2){
        display: none;
    }
    .leftBox:nth-child(2) .leftH2::after{
        display: none;
    }
    .right{
        float: none;
        width: 100%;
        margin: .2rem 0;
    }
    .sortBg{
        padding: .1rem 0;
        margin-top: 0;
    }
    .sortBg + .breadBg{
        padding-top: 0;
    }
    .sortList{
        max-width: 100%;
    }
    .sortList .swiper-container{
        padding-bottom: 10px;
    }
    .breadBg{
        padding: .1rem 0;
    }

    .dLef,
    .dRig{
        float: none;
        width: 100%;
    }
    .dVideo{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -.1rem .1rem;
    }
    .dVideo li{
        width: 50%;
        padding: 0 .1rem;
    }
    .dRead{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -.1rem .1rem;
    }
    .dRead li{
        width: 50%;
        padding: 0 .1rem;
    }
    .drImg{
        margin-right: .1rem;
    }
}

@media (max-width:991px) {
    .logoText{
        display: none;
    }
    .navMob{
        display: block;
        border-top: 1px dashed #EEEEEE;
        overflow: hidden;
    }
    .navMob .language{
        display: none;
        margin: .3rem 0;
        justify-content: center;
    }
    .navMob .language a{
        margin-left: 0;
        margin: 0 .1rem;
    }
    .navMob .logoText{
        display: flex;
        flex-wrap: wrap;
        padding-left: 0;
        margin-left: 0;
        margin: .3rem 0;
        text-align: left;
        justify-content: center;
    }
    .navMob .logoText p{
        margin: 0 .15rem;
    }

    .ftTop{
        display: block;
    }
    .ftLeft{
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .ftLogo{
        width: 100%;
        max-width: 100%;
    }
    .ftLogo img{
        width: 332px;
        max-width: 70%;
    }
    .ftText{
        padding: 0;
        border: none;
    }
    .wxList{
        max-width: none;
        justify-content: center;
        margin: .3rem auto 0;
    }
    .ftNav{
        display: none;
    }
    .ftNav li h3{
        margin-bottom: 0;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }
    .ftNav li:last-child h3{
        border-bottom: none;
    }
    .ftNav li h3 a{
        position: relative;
        display: block;
        font-size: 16px;
        line-height: 40px;
    }
    .ftNav li h3 a:hover{
        color: var(--baseColor);
    }
    .ftNav li.dropdown h3 a::after{
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        content: "";
        width: 14px;
        height: 40px;
        background: url(https://ru.yz-proton.com/html/images/icon-down@2x.png) right center no-repeat;
        background-size: 16px auto;
        transition: all .3s;
    }
    .ftNav li.cur h3 a::after{
        transform: rotate(-180deg);
    }
    .ftCon{
        display: none;
        padding: .1rem;
        padding-left: .2rem;
        overflow: hidden;
    }

    .swiper-pagination{
        bottom: .2rem;
    }
    .swiper-pagination .swiper-pagination-bullet{
        width: 6px;
        height: 6px;
        margin: 0 .06rem;
    }
    .swiper-pagination .swiper-pagination-bullet-active{
        width: 10px;
        height: 10px;
    }

    .conList{
        display: block;
    }
    .conList li{
        width: 100%;
    }

}
@media (max-width:767px) {
    .hdTopBg .language{
        display: none;
    }
    .welcome{
        line-height: 28px;
    }
    .logo img{
        height: 30px;
    }
    .logoText{
        font-size: 12px;
        line-height: 20px;
        padding-left: .1rem;
        margin-left: .1rem;
    }
    .logoText p {
        padding-left: 12px;
        background-size: 10px auto;
        background-position: left 5px;
    }
    .navRig li.navTel > a{
        font-size: 0;
    }
    .navRig li.navTel > a i{
        margin-right: 0;
    }
    .hdBotBg{
        top: 92px;
    }
    .navMob .language{
        display: flex;
    }
    
    .banner,
    .banIn,
    .header + .breadBg{
        margin-top: 92px;
    }

    
    .banIn{
        height: 3rem;
        max-height: none;
    }
}

@media (max-width:640px) {
    .ftNav{
        flex-wrap: wrap;
    }
    .ftNav li{
        width: 100%;
    }
    .copyright{
        font-size: 12px;
    }
    .dRead li{
        width: 100%;
    }
}
@media (max-width:460px) {
    .logo{
        height: 50px;
    }
    .logoText{
        display: none;
    }
    .hdBotBg{
        top: 78px;
    }

    .ftNav li h3 a{
        font-size: 15px;
    }

    .banIn .inTit{
        font-size: .36rem;
    }
    .mainH2{
        font-size: 16px;
    }
    .page a,
    .page span{
        font-size: 12px;
        min-width: 24px;
        line-height: 24px;
    }
    
    .banner,
    .banIn,
    .header + .breadBg{
        margin-top: 78px;
    }

    .sortList > li > a{
        background-size: 6px auto;
    }
}