/* CSS Document */
.mc{ margin: 0 auto !important;}
.wow {
    transition-delay: 0.3s;
}
.pc {
    display: block;
}
.mob {
    display: none;
}
.wrap{
	width: 90%;
    max-width: 1470px;
    padding: 0 15px;
	margin: 0 auto;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 320px;
    z-index: 10;
    transition: all .3s;
    background-color: #FFFFFF;
    box-shadow: 0px 0 15px 0px rgba(63, 66, 78, 0.15);
    border-radius: 0 0 .2rem .2rem;
    transition: all .3s;
}
.header.no-show{
    transform: translateY(-100%);
}
.logo {
    position: relative;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all .3s;
    height: 90px;
}
.logo::before{
    display: block;
    content: "";
    width: 380px;
    height: 15px;
    background: url(../image/logoBg.png) center bottom no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}
.logo a {
    display: block;
    transition: all .3s;
}
.logo img {
    height: 50px;
    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;
}
.navList > li > a {
    display: block;
    height: 90px;
    font-size: 16px;
    color: #666666;
    position: relative;
    padding: 0 1vw;
    padding-top: 15px;
    transition: all .3s;
}
.navList > li > a:hover,
.navList > li.cur > a,
.navList > li.active > a{
    color: #333333;
}
.navIco{
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto 2px;
    text-align: center;
}
.navIco img{
    width: 100%;
    height: 100%;
}
.navIco img.active{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.5);
    transition: all .5s;
}
.navList > li > a:hover .navIco img.active,
.navList > li.cur > a .navIco img.active,
.navList > li.active > a .navIco img.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.navRig {
    position: relative;
    float: right;
    line-height: 90px;
    text-align: right;
    font-size: 0;
    margin-left: 30px;
    transition: all .3s;
}
.navRig li {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    position: relative;
}
.navRig li + li{
    margin-left: 20px;
}
.navRig a,
.navRig i,
.navRig span {
    display: inline-block;
    vertical-align: middle;
    color: #000000;
    line-height: 38px;
}
.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: #f6ab2c;
    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;
}

.mainBg{
    position: relative;
    overflow: hidden;
    font-size: 16px;
    color: #333333;
    line-height: 28px;
    background-color: #FFFFFF;
    z-index: 1;
    min-height: 50vh;
}
.grayBg{
    background-color: #f5f6fa;
}
.whiteBg{
    background-color: #FFFFFF;
}
.footBg{
    position: relative;
    color: #FFFFFF;
    padding: .3rem 0;
    background-color: #4f5052;
    overflow: hidden;
}
.ftTit{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: .15rem;
}
.ftCon{
    font-size: 14px;
    line-height: 1.6;
    opacity: .5;
}
.ftCon p{
    margin: 6px 0;
}
.ftCon p a{
    color: #FFFFFF;
}
.ftLef{
    float: left;
    width: 20%;
}
.ftCen{
    float: left;
    width: 30%;
}
.ftShare{
    list-style: none;
    font-size: 0;
    margin-bottom: 70px;
}
.ftShare li{
    display: inline-block;
    vertical-align: top;
}
.ftShare li + li{
    position: relative;
    margin-left: 15px;
}
.ftIco{
    display: block;
    width: 40px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .5;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all .3s;
}
.ftIco1{
    background-image: url(../image/icon_wx.png);
}
.ftIco2{
    background-image: url(../image/icon_wb.png);
}
.ftIco3{
    background-image: url(../image/icon_sina.png);
}
.ftIco:hover{
    opacity: .7;
}
.ftRig{
    float: right;
    width: 50%;
    text-align: right;
    max-width: 556px;
}
.copyright{
    font-size: 14px;
    color: #999999;
    line-height: 24px;
}
.copyright a{
    color: #999999;
}

/* 页码 */
.page{
    margin: 70px 0;
    text-align: center;
    font-size: 0;
}
.page a,
.page span{
    display: inline-block;
    vertical-align: middle;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 70px;
    font-size: 16px;
    color: #FFFFFF;
    background: url(../image/icon_page.png) center center no-repeat;
    background-size: contain;
}
.page a{
    margin: 0 .06rem;
}
.page a:hover,
.page a.active{
    color: #FFFFFF;
    background-image: url(../image/icon_page_active.png);
}
.page span.prev{
    display: block;
    background-image: url(../image/icon_prev.png);
    background-position: center 62%;
    background-size: 16px auto;
}
.page span.next{
    display: block;
    background-image: url(../image/icon_next.png);
    background-position: center 62%;
    background-size: 16px auto;
}


.hmPrev,
.hmNext{
    position: absolute;
    top: 50%;
    display: block;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.15);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    transition: all .5s;
}
.hmPrev{
    left: 0;
    background-image: url(../image/btn_prev.png);
}
.hmNext{
    right: 0;
    background-image: url(../image/btn_next.png);
}
.hmPrev:hover,
.hmNext:hover{
    background-color: rgba(0, 0, 0, 0.3);
}
.hmTit{
    margin-bottom: 2.5vw;
    color: #333333;
}
.hmEn{
    font-size: 4.375vw;
    line-height: 1;
    opacity: .1;
    text-transform: uppercase;
    font-weight: 100;
    margin-bottom: -2vw;
}
.hmCn{
    font-size: 2.5vw;
    line-height: 1;
    margin-bottom: 2vw;
}
.hmLine{
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffd102;
}
.hmLine::after{
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ffd102;
    position: absolute;
    left: 100%;
    top: 0;
}
.hmLine .cur{
    position: absolute;
    left: 0;
    top: -1px;
    background-color: #a3b1d8;
    width: 80px;
    width: 4.167vw;
    height: 3px;
}
.hmTit_yellow{
    color: #ffd102;
}
.hmTit_yellow .hmEn{
    color: #FFFFFF;
}
.hmTitLeft .hmLine,
.hmTit_yellow .hmLine{
    max-width: 400px;
}
.hmTitLeft .hmLine:after,
.hmTit_yellow .hmLine:after{
    left: auto;
    right: 100%;
}
.hmTit_yellow .hmLine .cur{
    background-color: #FFFFFF;
}
.hmMore{
    display: block;
    width: 160px;
    line-height: 50px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #e28731;
    text-align: center;
    border-radius: .04rem .2rem;
    transition: all .5s;
}
.hmMore i{
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background: url(../image/icon_arrow.png) right center no-repeat;
    background-size: cover;
    margin-left: .15rem;
    transition: all .5s;
}
.hmMore:hover{
    background-color: #e28731;
    color: #FFFFFF;
}
.hmMore:hover i{
    background-image: url(../image/icon_next.png);
    transform: translateX(-.05rem);
}

/* 内页banner */
.banIn{
    position: relative;
    height: 400px;
    margin-top: 90px;
    overflow: hidden;
}
.banIn .img{
    width: 100%;
    height: 100%;
}
.inText {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    padding-top: 5vw;
}
.inText .hmEn{
    opacity: .3;
    font-weight: 100;
}



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

}
@media (max-width:1600px) {
    .wrap{
        max-width: 1230px;
    }
    .header{
        border-radius: 0 0 .15rem .15rem;
    }
    .logo{
        height: 70px;
    }
    .logo::before{
        height: 12px;
    }
    .navList > li > a{
        height: 70px;
        padding-top: 10px;
        font-size: 14px;
    }
    .navIco{
        width: 30px;
        height: 30px;
    }
    .hmPrev,
    .hmNext{
        width: 40px;
        height: 40px;
    }
    .hmMore{
        width: 140px;
        line-height: 42px;
        font-size: 14px;
    }
    .banIn{
        height: 300px;
        margin-top: 70px;
    }
    .mainBg{
        font-size: 14px;
    }

}
@media (max-width:1400px) {
    .ftTit{
        font-size: 16px;
    }
    .ftIco{
        width: 32px;
        height: 32px;
    }

}
@media (max-width:1200px) {
    .wrap {
        width: 100%;
        max-width: 970px;
    }
    .header{
        border-radius: 0;
    }
    .header .wrap{
        width: 100%;
        max-width: 100%;
    }
    .logo {
        float: left;
        height: 60px;
    }
    .logo::before{
        height: 10px;
    }
    .logo img {
        height: 35px;
    }
    .navRig {
        float: right;
        line-height: 60px;
        margin: 0;
    }
    .navRig li {
        margin-left: 0;
        font-size: 14px;
    }
    .navRig li + li{
        margin-left: 10px;
    }
    .navRig li.navBtn {
        display: inline-block;
    }
    .navBox {
        position: fixed;
        left: 0;
        right: 0;
        top: 60px;
        /* bottom: 0; */
        width: 100%;
        overflow: hidden;
        z-index: 2;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        background-color: #FFFFFF;
        display: none;
    }
    .navList {
        height: 100%;
        overflow-y: auto;
        display: block;
        padding: .1rem .3rem;
        margin: 0 auto;
    }
    .navList > li {
        display: block;
        margin: 0;
    }
    .navList > li > a {
        height: auto;
        line-height: 46px;
        padding: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .navList > li > a > span{
        display: inline-block;
        vertical-align: middle;
        min-width: 70px;
    }
    .navList > li:last-child > a{
        border-bottom: none;
    }
    .navIco{
        display: inline-block;
        vertical-align: middle;
    }
    .navIco img{
        display: block;
    }
    .navList > li.active > a > span{
        color: #f6ab2c;
    }


    .ftLef,
    .ftCen,
    .ftRig{
        float: none;
        width: 100%;
        max-width: 100%;
        margin: .2rem 0;
    }
    .ftTit{
        margin-bottom: 0;
    }
    .ftLef .ftCon{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -.1rem;
    }
    .ftLef .ftCon p{
        padding: 0px .1rem;
    }
    .ftRig{
        text-align: center;
    }
    .ftShare{
        text-align: center;
        margin: .3rem auto;
    }

    .page{
        margin: .5rem 0;
    }
    .page a,
    .page span{
        font-size: 14px;
        width: 40px;
        height: 40px;
        line-height: 46px;
    }
    .page span.prev,
    .page span.next{
        background-size: 12px auto;
    }
    .page a{
        margin: 0 2px;
    }

    .banMore{
        width: 120px;
        height: 36px;
        border-width: 1px;
        border-radius: 36px;
        font-size: 14px;
        line-height: 34px;
        letter-spacing: 2px;
    }

    .hmTit{
        margin-bottom: .3rem;
        animation: none !important;
    }

    .banIn{
        height: 2.4rem;
        height: auto;
        margin-top: 60px;
    }
    .banIn .imgBg img{
        display: block;
        width: 100%;
        height: auto;
    }
    .anchor {
        display: block;
        padding-top: 60px;
        margin-top: -60px;
    }
}

@media (max-width:991px) {

}
@media (max-width:767px) {
    .hmPrev,
    .hmNext{
        width: 32px;
        height: 32px;
    }
    .hmEn{
        font-size: 24px;
    }
    .hmCn{
        font-size: 20px;
    }
}

@media (max-width:640px) {
    .logo::before{
        height: 8px;
    }
    .logo img{
        height: 33px;
    }
    .navList > li > a{
        font-size: 14px;
    }
    .hmMore{
        width: 120px;
        line-height: 36px;
    }
    .hmMore i{
        width: 12px;
        height: 12px;
        margin-left: .1rem;
    }
}
@media (max-width:460px) {
    .hmEn{
        font-size: .42rem;
    }
    .hmCn{
        font-size: .36rem;
    }
    .banMore{
        width: 100px;
        height: 32px;
        line-height: 30px;
        font-size: 12px;
    }
}