@charset "UTF-8";



body {
    padding-top: 1.27rem;
}

@font-face {
    font-family: 'sys-b';
    src: url(./font/SOURCEHANSERIFCN-BOLD.OTF);
}

@font-face {
    font-family: 'Bebas';
    src: url(./font/Bebas.ttf);
}

/* 定位搜索框 */

.b-top {
    line-height: 0.4rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.t-search-zzc {
    position: fixed;
    z-index: 99998;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
}

.t-search {
    display: block;
    /* width: 3rem; */
    display: flex;
    justify-content: flex-end;
    transition: all 0.5s;
    border: 1px solid #fff;
    border-radius: .2rem;
}

.t-search>div {
    width: 1.7rem;
    position: relative;
    padding-right: 0.5rem;
    border-radius: .15rem;
    border-radius: .2rem;
}

.t-search>div input[type="text"] {
    display: block;
    width: 100%;
    padding: 0 0 0 .1rem;
    font-size: 0.16rem;
    height: .24rem;
    box-sizing: border-box;
    color: #fff;
    background: no-repeat;
    line-height: .24rem;
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: .5rem;
}

.search-btn:before {}

.search-btn input {
    display: block;
    width: 100%;
    background: url(../images/search2.svg) no-repeat;
    background-position: center center;
    background-size: .14rem auto;
    height: 100%;
    cursor: pointer;
}

.head {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: all 0.8s;
    background: #CDA670;
}

.head::before {}

.head.hide {
    transform: translateY(-100%);
}

/* head-nav */
.head .head-top::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, .6);
    z-index: -1;
    transition: all 0.3s;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, .2);
    background: linear-gradient(to bottom, #004CB0 4%, #0091D3 95%);
}

.head.on .head-top::after {
    height: 100%;
}


.head.on::before {
    bottom: 0;
}


.b-top-l {
    float: left;
    font-size: 0.14rem;
    color: #fff;
    color: rgba(229, 229, 229, 0.8);
}


.head-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 3;
    height: 1.27rem;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.head.on .nav-r a {
    color: #333333;
    border-color: #333;
}

.head.on .nav-r a img {
    display: inline-block;
}

.head.on .nav-r a img:first-child {
    display: none;
}



.logo2 {
    display: none;
}

.head.on .logo2 {
    display: block;
}

.head.on .logo1 {
    display: none;
}

.logo {
    float: left;
    overflow: hidden;
    margin-top: .19rem;
}

.logo a {
    position: relative;
    transition: all 0.5s;
    top: 0;
}

.logo a {
    display: block;
}

.logo a img {
    vertical-align: middle;
    height: .89rem;
}

.h-right {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.h-link {
    text-align: right;
    font-size: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.h-link a:first-child {
    border: none;
}

.h-link a {
    font-size: .14rem;
    line-height: .2rem;
    letter-spacing: 0.01rem;
    color: #A874A6;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.h-link span {
    background: #A874A6;
    margin: 0 .15rem;
    height: .12rem;
    width: 1px;
}

.h-link a img {
    margin-right: .1rem;
    height: .16rem;
}



.h-link a:hover {
    color: #fff;
}

.nav {
    text-align: right;
    margin-top: .1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.nav>ul {
    font-size: 0;
    /* float: left; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav>ul>li {
    display: inline-block;
    text-align: center;
    position: relative;
    margin-left: .3rem;
}

.nav>ul>li:nth-child(1) {
    margin-left: 0;
}

.nav>ul>li>a {
    display: block;
    line-height: .48rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    font-size: .2rem;
    color: #fff;
    font-weight: normal;
}

.nav>ul>li>a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: .33rem;
    transform: translateX(-50%);
    transition: all 0.5s;
    border-top: 0.01rem solid #D0B27E;
    opacity: 0;
}

.nav>ul>li>a::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    height: 0;
    transform: translateX(-50%);
    background: #D0B27E;
    transition: all 0.5s;
    width: 0.01rem;
    opacity: 0;
}

.nav>ul>li.on>a::before {
    width: 100%;
}

.nav>ul>li.on>a::after {
    height: 0.33rem;
}

.nav>ul>li.active {
    padding: 0 .2rem;
}

.ejnav {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    background-position: right bottom;
    z-index: 9999;
    overflow: hidden;
    line-height: normal;
    box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, .2);
    min-width: 1.8rem;
    opacity: 0;
    display: none;
    padding: .15rem .1rem .22rem .1rem;
    align-items: center;
    border-top: .04rem solid #CEA874;
    margin-top: .2rem;
}

.ejnav>.pics {
    width: 3rem;
    display: none;
}

.ejnav>.pics img {
    display: block;
    width: 100%;
}

.ejnav>ul {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.ejnav>ul>li {
    border-top: 0.01rem solid rgba(198, 206, 229, .3);
}

.ejnav>ul>li:nth-child(1) {
    border-top: none;
}

.ejnav>ul>li a {
    display: block;
    transition: .3s;
    white-space: nowrap;
    text-align: center;
    font-size: .16rem;
    font-weight: normal;
    line-height: .5rem;
    background-position: left center;
    color: #333333;
}

.ejnav>ul>li a:hover {
    color: #CEA874;
}



body.overhide .t-search {
    margin-top: .25rem;
}



.top {
    max-width: 19.2rem;
    margin: 0 auto;
    position: fixed;
    right: 0.1rem;
    top: 0.18rem;
    width: 0.25rem;
    height: 0.25rem;
    z-index: 9999;
}

.top>img {
    display: block;
    width: 100%;
}

.wap-menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99999;
    font-size: 0;
}

.wap-menu img {
    height: 0.25rem;
}

.close-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
}

/* icon摇晃 */
@keyframes jello {

    from,
    11.1%,
    to {
        -webkit-transform: none;
        -moz-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        -moz-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        -moz-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        -moz-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }

}


/* nav */

.next-back img {
    display: block;
    width: auto !important;
    height: auto !important;
}

.h-right {
    position: relative;
    padding-top: .3rem;
}

/* foot */
.footer {
    position: relative;
    z-index: 9;
    padding-top: 1.05rem;

}
.footer::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/foot-bg.png) no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}
.footer::before{
    content: "";
    position: absolute;
    background: url(../images/s7-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 9rem;
    height: 10.03rem;
    bottom:calc(100%  - .5rem);
    left: 0;
    pointer-events: none;
    z-index: -2;
    pointer-events: none;
}

.foot-t {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.foot-l {}

.foot-l a {
    display: block;
}

.foot-l a img {
    display: block;
    height: 0.88rem;
}

.foot-m {
    display: flex;
    align-items: flex-start;
}

.foot-m img {
    width: 0.76rem;
    margin-right: .29rem;
}

.foot-m dl {}

.foot-m dl dt {
    font-size: 0.22rem;
    font-weight: normal;
    line-height: 0.26rem;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #FFFFFF;
    margin-bottom: .06rem;
}

.foot-m dl dd {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.32rem;
    letter-spacing: normal;
    color: #FFFFFF;
}


.foot-r {
    display: flex;
    align-items: flex-start;
}

.foot-r img {
    width: 0.76rem;
    margin-right: .29rem;
}

.foot-r dl dt {
    font-size: 0.22rem;
    font-weight: normal;
    line-height: 0.26rem;
    text-transform: capitalize;
    letter-spacing: normal;
    color: #FFFFFF;
    margin-bottom: .16rem;
}

.foot-r dl dd {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.24rem;
    letter-spacing: normal;
    color: #FFFFFF;
}

.foot-b {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: .34rem;
    margin-top: .5rem;
}

.foot-b div {
    display: flex;
    align-items: center;
    margin: 0 .4rem;
}

.foot-b div img {
    max-height: .36rem;
    margin-right: 0.05rem;
}

.foot-b div p {
    font-family: Poppins;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.24rem;
    letter-spacing: normal;
    color: #FFFFFF;
}


@media screen and (max-width:1024px) {
    body {
        padding-top: 60px !important;
    }

    .pc {
        display: none !important;
    }

    .wap {
        display: block !important;
    }

    .m-head {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 10px;
        background: #CDA670;
    }

    .m-logo {
        font-size: 0;
    }

    .m-logo a {
        font-size: 0;
        line-height: 40px;
        display: block;
    }

    .m-logo img {
        max-height: 40px;
        max-width: 80%;
        vertical-align: middle;
    }

    .m-tlink {
        padding: 10px 15px 0 15px;
    }

    .m-tlink a {
        font-size: 12px;
        margin-right: 5px;
        color: #fff;
        display: inline-block;
        line-height: 24px;
        background: #fff;
        color: #304174;
        line-height: 24px;
        padding: 0 15px;
        border-radius: 5px;
    }

    .m-search {
        margin: 0 15px;
        padding-right: 50px;
        padding-left: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        position: relative;
        line-height: 35px;
        /* background: #fff; */
        margin-top: 15px;
        border: 1px solid rgba(225, 225, 225, .4);
    }

    .m-search input[type="text"] {
        display: block;
        width: 100%;
        line-height: 25px;
        background: none;
        color: #fff;
    }

    .m-search input[type="text"]::placeholder {
        color: #fff;
    }

    .m-search input[type="image"] {
        position: absolute;
        right: 10px;
        top: 10px;
        height: 15px;
    }

    .m-nav {
        position: fixed;
        top: 60px;
        right: -100%;
        bottom: 0;
        z-index: 999;
        background: #CDA670;
        overflow-y: scroll;
        width: 100%;
        /* max-width: 375px; */
        /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
    }

    .m-nav ul {
        padding: 0 15px;
        /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
    }

    .m-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
    }

    .m-nav ul li>span.on {
        transform: rotateZ(90deg);
    }

    .m-nav ul li ul {
        display: none;
    }

    .m-nav ul li ul li {
        border: none;
    }

    .m-nav>ul>li a {
        display: block;
        font-size: 14px;
        line-height: 20px;
        padding: 15px 0;
        position: relative;
        color: #fff;
    }

    .m-nav>ul>li ul li a {
        padding: 10px 0;
    }

    .m-nav>ul>li>span {
        position: absolute;
        width: 20px;
        height: 20px;
        background: url(../images/m-nav_down.png) no-repeat;
        background-size: 14px 14px;
        background-position: center center;
        right: 0;
        top: 15px;
        cursor: pointer;
        display: block;
        color: #fff;
        transition: all 0.3s;
    }

}

@media screen and (max-width:1024px) {
    .gotop {
        width: 0.6rem;
        height: 0.6rem;
        background-size: .2rem auto !important;
        right: 0.1rem;
    }
    .footer{
        background: #CDA670;
        padding-top: .35rem;
    }
    .foot-t{
        display: block;
    }
    .foot-l a img{
        height: auto;
        max-height: .8rem;
        max-width: 100%;
    }
    .foot-m img,.foot-r img{
        width: .5rem;
        margin-right: .15rem;
    }
    .foot-m dl dt,.foot-r dl dt{
        font-size: .18rem;
    }
    .foot-m{
        margin: .2rem 0;
    }
    .foot-b{
        display: block;
        padding: .2rem .1rem;
        margin-top: .3rem;
    }
    .foot-b div{
        margin: .1rem 0;
    }

    .footer::before{
        display: none;
    }
    .footer::after{
        display: none;
    }

}

@media screen and (max-width:768px) {}