/* CSS Document */
.mc{ margin: 0 auto !important;}
.wow {
    opacity: 0;
    transition-delay: 0.3s;
}
.animated{
    opacity: 1;
}
body.gray{
    filter: grayscale(1);
}
.pc {
    display: block;
}
.mob {
    display: none;
}
.wrap{
	width: 86%;
    max-width: 1510px;
    padding: 0 15px;
	margin:0 auto;
}
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 320px;
    padding: 0;
    z-index: 10;
    box-shadow: none;
    transition: all .3s;
    padding: 0;
}
.header.no-show{
    transform: translateY(-100%);
    box-shadow: none !important;
}
.logo {
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all .3s;
    height: 100px;
}
.logo a {
    display: block;
    transition: all .3s;
}
.logo img {
    height: 58px;
    transition: all .3s;
}
.nav {
    float: right;
}
.navBox {
    margin: 0 auto;
    text-align: right;
}
.navList {
    list-style: none;
    margin: 0;
    font-size: 0;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    transition: all .3s;
}
.navList > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 0 1vw;
}
.navList > li > a {
    position: relative;
    display: block;
    line-height: 100px;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: bold;
    transition: all .3s;
}
.navList > li:hover > a,
.navList > li.active > a{
    opacity: 1;
}
.nav-dropdown{
    position: absolute;
    left: 50%;
    top: 100%;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.13);
    text-align: center;
    min-width: 150px;
    transform: translateX(-50%);
    display: none;
}
.nav-dropdown-list{
    list-style: none;
    font-size: 16px;
    padding: .1rem 0;
    border-radius: 0 0 .1rem .1rem;
    min-width: 100%;
    background-color: #FFFFFF;
    border-radius: 4px;
}
.nav-dropdown-list li a{
    display: block;
    color: #333333;
    line-height: 1.6;
    padding: .1rem 0;
}
.nav-dropdown-list li a:hover{
    color: var(--baseColor);
}


.navRig {
    position: relative;
    float: right;
    line-height: 100px;
    text-align: right;
    font-size: 0;
    transition: all .3s;
}
.navRig li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    margin-left: .3rem;
}
.navRig a,
.navRig i,
.navRig span {
    display: inline-block;
    vertical-align: middle;
    color: #FFFFFF;
}

.navRig li.navSearch i {
    font-size: 24px;
    cursor: pointer;
}
.navSearchBox{
    position: absolute;
    height: 40px;
    right: -7px;
    top: 50%;
    margin-top: -18px;
    width: 240px;
    width: 0;
    border-radius: 20px;
    background-color: var(--baseColor);
    overflow: hidden;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    z-index: 2;
}
.searchInput{
    display: block;
    width: 100%;
    height: 40px;
    font-size: 14px;
    line-height: 38px;
    border: 0;
    padding: 0 40px 0 15px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0);
    color: #ffffff;
}
.searchInput::placeholder{
    color: #FFFFFF;
}
.searchInput:-moz-placeholder{
    color: #FFFFFF;
}
.searchInput::-moz-placeholder{
    color: #FFFFFF;
}
.searchInput:-ms-input-placeholder{
    color: #FFFFFF;
}
.searchBtn{
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    border: 0;
    right: -1px;
    top: -1px;
    color: #FFFFFF;
    background-color: transparent;
    text-align: center;
}
.searchBtn i{
    display: block;
    line-height: 40px;
    color: #FFFFFF !important;
}
/*@media (min-width:1201px) {*/
/*    .navSearchBox{*/
/*        display: block !important;*/
/*    }*/
/*    .navRig li:hover .navSearchBox{*/
/*        width: 240px;*/
/*    }*/
/*}*/
.navRig li.navLang a{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 38px;
    padding: 0 15px;
    border-radius: 20px;
    border: 1px solid #FFFFFF;
    transition: all .3s;
}
.navRig li.navLang i{
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: url(../images/language%402x.webp) center center no-repeat;
    background-size: contain;
}
.navRig li.navLang a:hover{
    color: #FFFFFF;
    border-color: var(--baseColor);
    background-color: var(--baseColor);
}
.navRig li.navLang a:hover i{
    background-image: url(../images/language%402x.webp);
}
.navRig li.navBtn {
    cursor: pointer;
    display: none;
}
.navRig li.navBtn::before{
    display: none;
}
.navBtn span {
    width: 22px;
    height: 30px;
    position: relative;
}
.navBtn span b {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    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;
}

.header.blackBg{ padding: .2rem 0; background-color: #333333; box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05); padding: 0;}
.header.blackBg .nav-dropdown{ padding: .2rem 0 0; background-color: #333333;}

.header.whiteBg{ padding: 0; background-color: #FFFFFF; box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05);}
.header.whiteBg .logo img.shows{ display: none;}
.header.whiteBg .logo img.hides{ display: block;}
.header.whiteBg .navList > li > a{ color: #333333; text-shadow: none;}
.header.whiteBg .navList > li.cur > a,
.header.whiteBg .navList > li.active > a{ color: var(--baseColor);}
.header.whiteBg .navRig a,
.header.whiteBg .navRig i,
.header.whiteBg .navRig span{ color: #333333;}
.header.whiteBg .navRig li.navLang a{ border-color: #D6000F; background-color: #D6000F; color: #FFFFFF;}
.header.whiteBg .navBtn span b{ background-color: #333333;}


.header.bg{ background-color: #FFFFFF; box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05);}
.header.bg .navList > li > a{ color: #222222; text-shadow: none;}
.header.bg .logo .shows{ display: none;}
.header.bg .logo .hides{ display: block;}
.header.bg .navList > li > a{ color: #222222; text-shadow: none;}
.header.bg .navRig a,
.header.bg .navRig i,
.header.bg .navRig span{ color: #333333;}
.header.bg .navRig li.navLang a{ border-color: #D6000F; background-color: #D6000F; color: #FFFFFF;}
.header.bg .navBtn span b{ background-color: var(--baseColor);}

.header.sticky{ position: sticky; padding: 0; background-color: #FFFFFF; box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05);}
.header.sticky .logo .shows{ display: none;}
.header.sticky .logo .hides{ display: block;}
.header.sticky .navList > li > a{ color: #222222; text-shadow: none;}
.header.sticky .navList > li.active > a{ color: var(--baseColor);}
.header.sticky .navRig a,
.header.sticky .navRig i,
.header.sticky .navRig span{ color: #333333;}
.header.sticky .navRig li.navLang a{ border-color: #D6000F; background-color: #D6000F; color: #FFFFFF;}
.header.sticky .navBtn span b{ background-color: var(--baseColor);}

.footBg{
    position: relative;
    overflow: hidden;
    background-color: #3A3A3A;
}
.footBg a{
    color: rgba(255, 255, 255, 0.5);
    transition: all .3s;
}
.footBg a:hover{
    color: rgba(255, 255, 255, 0.8);
}
.footTop{
    margin: .4rem 0;
}
.footInfo{
    flex-shrink:0;
    width: 460px;
    max-width: 35%;
}
.footLogo{
    margin: 0 0 .2rem;
}
.footLogo img{
    height: .8rem;
    max-height: 57px;
}
.footText{
    flex: auto;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    overflow: hidden;
}
.footText h3{
    font-size: 128.57%;
    color: #FFFFFF;
    line-height: 1.2;
    margin: .2rem 0;
}
.footNav{
    flex: auto;
    overflow: hidden;
    padding-right: 0;
}
.footNav li{
    margin-left: 1rem;
}
.footNav li a{
    color: rgba(255, 255, 255, 0.5);
}
.footNav li a:hover{
    color: var(--baseColor);
}
.footNav li h3 a{
    color: rgba(255, 255, 255, 0.8);
}
.footCon{
    line-height: 1.6;
}
.footCon p{
    margin: 5px 0;
}
.footTit{
    color: #666666;
    margin-bottom: .2rem;
}
.footTit a{
    color: #666666;
}
.footWx{
    flex-shrink: 0;
    width: 20%;
    max-width: 140px;
    min-width: 120px;
    color: #999999;
    line-height: 28px;
}
.wxList{    
    text-align: center;
}
.wxList li{
    width: 43%;
}
.wxList img{
    width: 100%;
}
.footWx p{
    padding: 5px;
}
.copyright{
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
    padding: 8px 0;;
    text-align: center;
    background-color: #232323;
}
.copyright a{
    color: rgba(255, 255, 255, 0.8);
}
.copyright a:hover{
    color: var(--baseColor);
}



.scrollDown{
    position: absolute;
    left: 50%;
    bottom: calc(.7rem + 3%);
    transform: translateX(-50%);
    z-index: 1;
}
.scrollDown .line{
    position: relative;
    display: block;
    width: 33px;
    height: 50px;
    max-width: .4rem;
    max-height: .6rem;
    border: 2px solid #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
}
.scrollDown .line::after{
    display: block;
    content: "";
    width: 2px;
    height: 25%;
    position: absolute;
    left: 50%;
    top: 10%;
    margin-left: -1px;
    background-color: #FFFFFF;
    border-radius: 2px;
    animation: inScroll 2s ease-in-out infinite;
}

.hmH2{
    line-height: 1.2;
}
.hmH2 i{
    display: block;
    width: 80px;
    height: 4px;
    max-width: 1rem;
    max-height: .04rem;
    background: #D70C1A;
    margin-right: .2rem;
}
.hmDes{
    line-height: 1.25;
    margin-top: .3rem;
    font-weight: bold;
}
.hmTitRight{
    flex-shrink: 0;
    margin-left: .2rem;
}


.hmMore{
    position: relative;
    display: block;
    width: 200px;
    max-width: 2.4rem;
    line-height: calc(33px + .3rem);
    color: var(--baseColor);
    text-align: center;
    z-index: 1;
}
.hmMore::before{
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    background-color: var(--baseColor);
    transition: all .3s linear;
}
.hmMore::after{
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--baseColor);
    transform: scale(1);
    box-sizing: border-box;
    transition: all .3s linear;
}
.hmMore:hover{
    color: #FFFFFF;
}
.hmMore:hover::before{
    opacity: 1;
    transform: scale(1);
}
.hmMore:hover::after{
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
}
.hmMore.auto{
    margin: .3rem auto;
}
.hmMore.white{
    color: #FFFFFF;
}
.hmMore.white::before{
    background-color: #FFFFFF;
}
.hmMore.white::after{
    border-color: #FFFFFF;
}
.hmMore.white:hover{
    color: var(--baseColor);
}
.banIn{
    position: relative;
    height: 450px;
    overflow: hidden;
}
.banIn .img{
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banIn .banText {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.inTit{
    line-height: 1.2;
    margin: .1rem 0;
}
.inLine{
    display: block;
    width: 50px;
    height: 2px;
    max-width: .5rem;
    background: var(--baseColor);
    opacity: 0.5;
    margin: .2rem auto;
}
.inDes{
    color: var(--baseColor);
    line-height: 1.4;
    margin: 0 auto;
}



/* 面包屑导航+分类 */
.topBg{
    height: auto;
    line-height: 98px;
    background-color: var(--baseColor);
}
.breadNav{
    float: left;
    font-size: 0;
    list-style: none;
    margin-right: 15px;
}
.breadNav li{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #FFFFFF;
}
.breadNav li a{
    color: #FFFFFF;
}
.breadNav li a:hover{
    color: #FFFFFF;
}
.breadNav li + li{
    padding-left: 14px;
    margin-left: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.breadNav li + li::before{
    display: block;
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 100%;
    margin-right: 5px;
    color: #FFFFFF;
    font-weight: normal;
}
.breadNav li:last-child{
    max-width: 3rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.breadNav.color9{
    float: none;
    color: #999999;
    margin: .4rem 0;
}
.breadNav.color9 li{
    color: #999999;
}
.breadNav.color9 li + li::before{
    color: #999999;
}
.breadNav.color9 li a{
    color: #999999;
}
.breadNav.color9 li a:hover{
    color: var(--baseColor);
}
.breadNav + .sort{
    float: right;
    text-align: right;
}
.sort{
    font-size: 0;
    list-style: none;
    margin: 0 -.2rem;
    z-index: 10;
}
.sort li{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    padding: 0 .2rem;
}
.sort li a{
    position: relative;
    display: block;
    color: #FFFFFF;
    transition: all .5s;
}
.sort li a::after{
    display: block;
    content: "";
    width: 0;
    height: 3px;
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: all .4s;
}
.sort li a:hover::after,
.sort li.active a::after{
    left: 0;
    width: 100%;
}


.mainBg{
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: #000000;
    line-height: 30px;
    background-color: #FFFFFF;
    z-index: 1;
    min-height: 50vh;
}
.grayBg{
    background-color: #FAFAFA;
}
.whiteBg{
    background-color: #FFFFFF;
}

.boxH2{
    line-height: 1.4;
    margin-bottom: .15rem;
}
.boxLine{
    width: 120px;
    height: 8px;
    background: var(--baseColor);
    max-width: 1.2rem;
    max-height: .08rem;
}
.boxTit.text-center .boxLine{
    margin: 0 auto;
}

/* 页码 */
.page{
    margin: .6rem 0;
    text-align: center;
}
.page a,
.page span{
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    margin: 0 1px;
    text-align: center;
    line-height: 26px;
    font-size: 12px;
    color: #333333;
    border-radius: 4px;
    transition: all .3s;
}
.page a:hover,
.page a.active{
    color: #FFFFFF;
    background-color: var(--baseColor);
    border-color: var(--baseColor);
}
.page span{
    border: none;
    background-color: transparent;
    font-weight: bold;
}
.page a.prev{
    font-size: 14px;
    border: none;
    color: #999999;
    background-color: transparent;
    font-weight: bold;
}
.page a.next{
    font-size: 14px;
    border: none;
    color: #999999;
    background-color: transparent;
    font-weight: bold;
}
.page a.prev:hover,
.page a.next:hover{
    color: var(--baseColor);
}
.page.text-right{
    text-align: right;
}
.pagination{
    list-style: none;
    margin: .6rem 0;
    text-align: center;
}
.pagination li{
    display: inline-block;
    vertical-align: middle;
}
.pagination a,
.pagination span{
    display: inline-block;
    vertical-align: middle;
    width: 26px;
    height: 26px;
    margin: 0 1px;
    text-align: center;
    line-height: 26px;
    font-size: 12px;
    color: #333333;
    border-radius: 4px;
    transition: all .3s;
}
.pagination a:hover,
.pagination .active span{
    color: #FFFFFF;
    background-color: var(--baseColor);
    border-color: var(--baseColor);
}

.editor{
    line-height: 1.8;
}
.editor img{
    max-width: 100% !important;
    height: auto !important;
}

.cursor {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    z-index: 999999;
    pointer-events: none;
    background-color: #fff;
    border-radius: 50%;
    transform-origin: left top;
    transition: transform 0.35s, -webkit-transform 0.35s;
    transform: scale(0) translate(-50%, -50%);
    mix-blend-mode: exclusion;
}
.cursor .cursor-helper {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    text-align: center;
}
.cursor .cursor-helper span {
    line-height: 42px;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 20px 20px 20px #000;
    color: #000;
    display: none;
}
.cursor-drag img {
    width: 50%;
}
.cursor.cursor-drag{
    -webkit-transform: scale(.6) translate(-50%, -50%);
    -ms-transform: scale(.6) translate(-50%, -50%);
    transform: scale(.6) translate(-50%, -50%);
    mix-blend-mode: unset;
    background-color: rgba(233, 228, 220, 1);
}
.cursor.cursor-drag span{
    display: block;
}
.cursor.cursor-drag .cursor-next,
.cursor.cursor-drag .cursor-prev {
    position: absolute;
    top: 0;
    right: -25px;
}
.cursor.cursor-drag span.cursor-prev {
    color: #FFFFFF;
}
.cursor.cursor-drag span.cursor-next {
    color: #FFFFFF;
}
.cursor.cursor-drag .cursor-prev {
    right: auto;
    left: -25px;
}
.cursor.cursor-next span.cursor-next {
    display: block;
}

@media (max-width:1600px) {
    .logo{
        height: 80px;
    }
    .logo img{
        height: 54px;
    }
    .navList > li > a{
        font-size: 16px;
        line-height: 80px;
    }
    .nav-dropdown-list{
        font-size: 14px;
    }
    .navRig{
        line-height: 80px;
    }
    .navRig li{
        font-size: 14px;
    }
    
    .banIn{
        height: 400px;
        max-height: 28vw;
    }
    .topBg{
        line-height: 70px;
    }
    .breadNav li:last-child{
        max-width: 2rem;
    }
    .sort{
        margin: 0 -.1rem;
    }
    .sort li{
        font-size: 16px;
        padding: 0 .1rem;
    }

}
@media (max-width:1400px) {
    .topBg{
        line-height: 60px;
    }
    .breadNav li{
        font-size: 14px;
    }
    .breadNav li:last-child{
        max-width: 1.8rem;
    }
    .sort li{
        font-size: 14px;
    }

}
@media (min-width:1201px) {
    .navBox{
        display: block !important;
    }
    .navMobile{
        display: none;
    }
}
@media (max-width:1200px) {
    .header{
        position: sticky;
        background-color: #FFFFFF;
    }
    .wrap {
        width: 100%;
        max-width: 970px;
    }
    .header .wrap{
        width: 100%;
        max-width: 100%;
    }
    .logo {
        float: left;
        height: 50px;
    }
    .logo a{
        height: 40px;
    }
    .logo img {
        height: 100%;
    }
    .logo img.shows{
        display: none;
    }
    .logo img.hides{
        display: block;
    }
    .navRig {
        position: static;
        float: right;
        line-height: 50px;
        margin: 0;
    }
    .navRig li {
        margin-left: .2rem;
        font-size: 14px;
    }
    .navRig li:first-child{
        margin-left: 0;
    }
    .navSearchBox{
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 50px;
        width: 100%;
        padding: 10px;
        height: auto;
        margin-top: 0;
        border-radius: 0;
        transition: none;
    }
    .searchInput{
        background-color: rgba(255, 255, 255, 0.2);
    }
    .searchBtn{
        right: 10px;
        top: 10px;
    }
    .searchBtn i{
        font-size: 160% !important;
    }
    .navRig li.navSearch.m-open{
        color: var(--baseColor);
    }
    .navRig li.navSearch.m-open > i{
        color: var(--baseColor);
    }
    .navRig li.navSearch.m-open > i::before{
        content: "\e659";
        content: "\eca0";
    }
    .navRig li.navLang a{
        font-size: 12px;
        color: #FFFFFF;
        line-height: 30px;
        padding: 0 10px;
        border-color: var(--baseColor);
        background-color: var(--baseColor);
    }
    .navRig li.navLang i{
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }
    .navRig li.navBtn {
        display: inline-block;
    }
    .navRig li.navBtn span b{
        background-color: #333333;
    }
    .header .navRig a,
    .header .navRig i,
    .header .navRig span{
        color: #333333;
    }
    .navBox {
        position: fixed;
        left: 0;
        right: 0;
        top: 50px;
        bottom: 0;
        width: 100%;
        overflow: hidden;
        z-index: 2;
        background-color: #FFFFFF;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: none;
    }
    .navList {
        text-align: left;
        height: 100%;
        height: calc(100% - .2rem - 60px);
        overflow-y: auto;
        display: block;
        padding: 0 .3rem;
        margin: 0 auto;
    }

    .navList>li {
        display: block;
        margin: 0;
        padding: 0;
        text-align: left;
    }

    .navList>li>a {
        height: auto;
        color: #333333;
        line-height: 46px;
        padding: 0 !important;
        padding-right: 46px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navList>li>a::before {
        display: none;
    }

    .navList>li.cur>a::after {
        transform: rotate(180deg);
    }
    .navMobile{
        position: relative;
        padding: .1rem 0;
        background-color: #000000;
        padding: 0;
    }
    .navMobile .navBtn span b{
        background-color: #FFFFFF !important;
    }
    .navMobile .navRig a,
    .navMobile .navRig i,
    .navMobile .navRig span{
        color: #FFFFFF !important;
    }

    .navList > li.dropdown > a::after{
        display: block;
        content: "\e65e";
        position: absolute;
        right: 0;
        top: 0;
        font-size: 14px;
        color: #333333;
        font-family: "iconfont" !important;
        font-weight: normal;
        transition: all .3s;
    }
    .nav-dropdown{
        position: static;
        padding: 0;
        transform: translateX(0);
        box-shadow: none;
    }
    .nav-dropdown-list{
        background-color: transparent;
        box-shadow: none;
    }
    .nav-dropdown-list li a{
        display: block;
        color: #666666;
        text-align: left;
        padding-left: .3rem;
    }
    .header.whiteBg .navMobile .navRig li.navTel i{ background-image: url(../images/tel-white.html);}
    
    .footInfo{
        flex: auto;
        width: auto;
        max-width: none;
        padding-right: .3rem;
        overflow: hidden;
    }
    .footNav{
        display: none;
    }

    .scrollDown{
         bottom: calc(.6rem + 3%);
    }
    .scrollDown .line{
        width: 28px;
        height: 44px;
    }
    
    .hmDes{
        margin-top: .1rem;
    }
    .hmMore{
        width: 140px;
        line-height: 44px;
    }

    .banIn{
        height: 300px;
        max-height: 3rem;
    }
    .topBg{
        padding: .15rem 0;
        line-height: 24px;
        overflow: hidden;
    }
    .breadNav{
        float: none;
        margin-left: 0;
        margin: .1rem 0;
    }
    .breadNav li{
        font-size: 14px;
    }
    .breadNav li + li{
        max-width: 40%;
    }
    .breadNav + .sort{
        float: none;
        text-align: left;
    }
    .sort{
        float: none;
        text-align: left;
    }
    .sort li{
        font-size: 16px;
        margin: 5px 0;
    }
    .sort li a{
        padding-bottom: 5px;
    }
    .sort li a::after{
        height: 2px;
    }
    .sort li a::before{
        margin-left: -6px;
        border-top: 8px solid var(--baseColor);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
    }
    
    .boxH2{
        line-height: 1.4;
        margin-bottom: .1rem;
    }
    .boxLine{
        width: 60px;
        height: 4px;
        max-height: .08rem;
    }

}

@media (max-width:991px) {
    .banIn{
        height: 300px;
        max-height: 3rem;
    }
    .hmTop{
        display: block;
    }
    .hmTitRight{
        margin: .2rem 0 0;
    }
    .hmTitRight .hmMore{
        display: none;
    }

}
@media (max-width:767px) {
}

@media (max-width:640px) {
    .navRig li.navTel{
        font-size: 0;
    }
    .navRig li.navTel i{
        margin: 0;
    }    
    .footTop{
        display: block;
    }
    .footInfo{
        padding: 0;
        text-align: center;
    }
    .footWx{
        width: 100%;
        margin: .3rem auto 0;
    }
    .footWx .footTit{
        text-align: center;
        margin: 0;
    }
    .copyright{
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .hmH2{
        font-size: 16px;
    }
    .boxH2{
        font-size: 16px;
    }
}
@media (max-width:460px) {
    .logo a{
        height: 26px;
    } 
    .sort{
        margin: 0 -.15rem;
    }
    .sort li{
        font-size: 14px;
        padding: 0 .15rem;
    }

    .page{
        font-size: 0;
    }
    .page a,
    .page span{
        width: 26px;
        height: 26px;
        line-height: 24px;
        font-size: 12px;
        margin: 1px;
        border-radius: 2px;
    }
    .pagination span,
    .pagination a{
        margin: 1px;
    }
}