body{
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: auto;
    overflow-x: hidden;
    background: #fff;
    font-family: "Source Han Sans CN","Source Han Serif SC";
}
ul,li,a{
    margin: 0;
    list-style: none;
    color: #fff;
    text-decoration-line: none;
}
p{
    margin: 0;
}
.main{
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 0.8rem
}
.head{
    width: 6.89rem;
    margin: 0 auto;
    height: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    flex-basis: 50%;
    text-align: center;
}
.logo img{
    width: 1.09rem;
    height: 0.32rem;
    text-align: center
}
.menu{
    position: relative;
}
.nav{
    width: 100%;
    height: auto;
    font-size: .28rem;
    position: absolute;
    top: -10rem;
    left: 0;
    padding: 0;
    background: rgba(255, 255, 255, .8);
    z-index: 100;
}
.nav_active{
    padding-bottom: 0.4rem;
    animation: animation .5s linear forwards;
}
.nav_inactive{
    animation: animation6 .5s linear forwards;
}
@keyframes animation{
    0% {
        top: -10rem;
    }
    50% {
        top: -5rem;
    }
    100% {
        top: 0.8rem;
    }
}
@keyframes animation6{
    0% {
        top: 0.8rem
    }
    50% {
        top: -5rem;
    }
    100% {
        top: -10rem;
    }
}
.nav li{
    text-align: center;
    position: relative;   
}

.nav li a{
    color: #000;
    line-height: 0.7rem;
    height: 0.7rem;
    width: 100%;
    display: block;
}
.nav .active a{
    color: red;
}
.nav li:hover a{
    color:#209fe8;
}

.language{
    padding: 0;
    margin: 0 auto;
    width: 1.5rem;
    display: flex;
    justify-content: space-between;
}
.language li{
    font-size: .28rem;
    cursor: pointer;
    display: inline-block;
    text-align: center; 
    color: #999;
    line-height: 0.8rem;
    height: 0.8rem;
}
.language .active{
    color: #000;
}
.nav_control{
    z-index: 200;
    width: 1.5rem;
}
.nav_close :nth-child(1){
    animation: animation1 .5s linear forwards;
}
.nav_close :nth-child(3){
    animation: animation4 .5s linear forwards;
}
.nav_close :nth-child(2){
    animation: animation5 .5s linear forwards;
}
.nav_show :nth-child(1){
    animation: animation2 .5s linear forwards;
}
.nav_show :nth-child(2){
    display: none;
}
.nav_show :nth-child(3){
    animation: animation3 .5s linear forwards;
}
@keyframes animation5{
    0% {
        opacity: 0;
        display: none;
    }
    50% {
        opacity: .5;
        display: none;
    }
    100% {
        opacity: 1;
        display: block;

    }
}
@keyframes animation1{
    0% {
        transform: translate(0, 0.12rem) rotateZ(45deg);
    }
    100% {
        transform: translate(0, 0) rotateZ(0deg);

    }
}
@keyframes animation4{
    0% {
        transform: translate(0, -0.04rem) rotate(-45deg);
    }
    100% {
        transform: translate(0, 0) rotateZ(0deg);

    }
}
@keyframes animation2{
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: translate(0, 0.12rem) rotate(45deg);
    }
}
@keyframes animation3{
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: translate(0, -0.04rem) rotate(-45deg);
    }
}
.nav_control span{
    display:block;
    width: .34rem;
    margin-bottom: 0.1rem;
    height: 0.06rem;
    background: #000;
    border-radius: 0.1rem;
}
.footer{
    width: 100%;
    background: #000;
    padding-bottom: 0.4rem;
}
.footer .fl ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: .24rem;
    margin: 0 auto;
    padding: .6rem 0 .4rem;
    
}
.footer .fl ul li{
    line-height: .24rem;
}

.footer .fr ul{
    width: 6.5rem;
    font-size: .2rem;
    padding: 0;
    margin: 0 auto;
    line-height: .48rem;
}
.footer .fr ul li{
    color: #eee;
}
.fl_img img{
    width:.24rem;
    height: .24rem
}
div ::-webkit-scrollbar{
    display: none;
}