/* 头部 */
#head_box{
    width:85%;
    position: fixed;
    left:7.5%;
    top:0;
    z-index: 20;
}
.head{
    width:100%;
    height:80px;
    padding:0 2.5vw;
    box-sizing: border-box;
    background: #fff;
    /*border-radius: 0 0 80px 80px / 0 0 40px 40px;
    */border-top: none;
    border-radius: 0px 0px 50px 50px;   
    -webkit-border-radius: 0px 0px 50px 50px;
    -moz-border-radius: 0px 0px 50px 50px;
    -ms-border-radius: 0px 0px 50px 50px;
    -o-border-radius: 0px 0px 50px 50px;
    box-shadow: none;
    /*box-shadow: 0px 0px 8px 5px rgb(20, 101, 239);
   -webkit-animation: pulsate 3s infinite;
    -webkit-animation: pulsate 3s infinite;
    animation: pulsate 3s infinite; */
}
.head .logo{
    float:left;
    width:auto;
    /* height:32px; */
    /* margin-top: 24px; */
    height:60px;
    margin-top: 10px;
}
.head .logo img{
    width:auto;
    height:100%;
}
.head .nav_box{
    float:right;
}
.head .head_nav{
    height:100%;
    float:left;
}
.head .head_nav .head_nav_one{
    float:left;
    height:100%;
    line-height: 80px;
    margin:0 20px;
    position: relative;
}
.head .head_nav .head_link_one{
    font-size:16px;
    color:#222;
    display: block;
    height:100%;
}
.head .head_nav .head_link_one:hover{
    color:#1465ea;
}
.head .head_nav_one .head_nav_two_box{
    position: absolute;
    top:80px;
    left:calc(50% - 70px);
    width:140px;
    height:auto;
    padding:15px 0;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    display: none;
    z-index: 10;
}
.head .head_nav_one:nth-child(3) .head_nav_two_box,
.head .head_nav_one:nth-child(4) .head_nav_two_box{
    left:calc(50% - 90px);
    width:180px;
}
.head .head_nav_one:hover .head_nav_two_box{
    display: block;
}
.head_nav_two_box{
    height:auto;
    text-align: center;
}
.head_nav_two{
    line-height: 40px;
    transition: all 0.4s ease;
}
.head_link_two{
    font-size: 16px;
    color:#333;
    transition: all 0.4s ease;
}
.head_nav_two:hover{
    background: #1465ea;
}
.head_nav_two:hover .head_link_two{
    color:#fff; 
    /* color:#1465ea; */
}
.head .language{
    float:right;
    height:80px;
    margin-left: 20px;
    padding-left: 40px;
    box-sizing: border-box;
    position: relative;
}
.head .language::before{
    content: "";
    width:1px;
    height:16px;
    background: #333;
    position: absolute;
    top:32px;
    left:0;
}
.head .language li{
    height:100%;
    line-height: 80px;
}
.head .language li a{
    font-size:16px;
    color:#222;
}

/* footer */
.footer{
    width:100%;
    height:100vh;
    overflow: hidden;
    position: relative;
    background: #efefef;
}
.footer .footer_content{
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    padding:50px 10% 0 10%;
    box-sizing: border-box;
    z-index: 5;
}


.footer_box{
    position: absolute;
    bottom: 0;
    left: 0;
    width:100%;
    background: url('../images/footer.png') no-repeat;
    background-position: top center;
    height: 268px;

}
.index_width{
    width:80%;
    height:100vh;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.foot_main.index_width,.beian_text.index_width{
    padding-top: 0px!important;
    width:80%;
}
.footer_box .foot_main{
    display: flex;
    flex-direction: row;
     justify-content: space-between;
     height: 200px;
     overflow: hidden;
     /* align-items: center; */
}
.footer_box .foot_main .left{
    width:50%;
    height: 200px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.footer_box .foot_main .right{
    width:50%;
    height: 200px;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:end;

}
.footer_box .foot_main .right img{
    width: 431px;
}
.footer_box .foot_main .left .name{font-size: 37px;
    font-weight: 700;}
.footer_box .foot_main .left .adds{font-size: 16px;
    font-weight: 700;}
.footer_box .foot_main .left .lxfs{margin-top: 10px; font-size: 16px;
    font-weight: 700;}
    .footer_box .foot_main .left .lxfs span{
        font-size: 32px;
    font-weight: 700;
    }


    
.footer_box .beian_text{
 
    height: 63px;
    line-height: 63px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  
}
.footer_box .beian_text a{
    color:#fff;
    font-size: 14px;
}
.footer_box .beian_text .copyright{
 text-align: left;
}
.footer_box .beian_text .beian{
    text-align: right; flex: 1;
}


@keyframes waterWave {
    0% {
        transform: translateX(0)translateY(0)scale(1);
    }
    25% {
        transform: translateX(0)translateY(28px)scale(1.1);
    }
    50% {
        transform: translateX(0)translateY(56px)scale(1.2);
    }
    75% {
        transform: translateX(0)translateY(28px)scale(1.1);
    }
    100% {
        transform: translateX(0)translateY(0)scale(1);
    }
}


.footer .footer_tit{
    font-size: 2vw;
    color:#000;
}
.footer .footer_nav{
    margin-top: 1vw;
    border-top: 1px solid #d2d2d2;
    /* border-bottom: 1px solid #d2d2d2; */
    padding:1vw 0;
    box-sizing: border-box;
}
.footer .footer_nav .nav_one{
    float:left;
    width:15%;
}
.footer .footer_nav .nav_one:not(:last-child){
    margin-right:2%;
}
.footer .footer_nav .nav_one_link{
    font-size: 1.2vw;
    color:rgb(77, 77, 77);
    display: block;
    position: relative;
    padding-bottom: 8px;
    box-sizing: border-box;
}
.footer .footer_nav .nav_one_link::after{
    content:"";
    position: absolute;
    left:0;
    bottom:0;
    width:5vw;
    height:1px;
    background: #d2d2d2;
}
.footer .footer_nav .nav_two_box{
    margin-top: 1vw;
}
.footer .footer_nav .nav_two{
    line-height: 2.2;
}
.footer .footer_nav .nav_two_link{
    font-size: 0.8vw;
    color:rgb(77, 77, 77);
}
.footer .footer_nav .nav_three_box{
   
}
.footer .footer_nav .nav_three{
    line-height: 2;
    padding-left: 10px;
    box-sizing: border-box;
    position: relative;
}
.footer .footer_nav .nav_three::before{
    content:"";
    width:4px;
    height:4px;
    position: absolute;
    left:0;
    top:calc(50% - 2px);
    border-radius: 50%;
    background: #333;
}
.footer .footer_nav .nav_three_link{
    font-size: 0.7vw;
    color:rgb(77, 77, 77);
}
.footer_btn_box{
    margin-top: 50px;
    width:32%;
    margin-left: auto;
    margin-right: auto;
}
.footer_btn{
    width:10vw;
    height:2.4vw;
    line-height: 2.4vw;
    text-align: center;
    border-radius: 10px;
    background:rgb(20, 101, 239);
}
.footer_btn.zxly{
    float:left;
}
.footer_btn.lxwm{
    float:right;
}
.footer_btn a{
    font-size: 16px;
    color:#fff;
}

.footer_nav a:hover{
    color:rgb(20, 101, 239) !important;
    transition: all 0.2s ease;
}


@media (max-width: 1440px){
    .footer .footer_tit{
        font-size: 1.8vw;
    }
    .head{
        height:66px;
    }
    .head .logo {
        height: 28px;
        margin-top: 19px;
    }
    /* .head .nav {
        line-height: 66px;
    } */
    .head .head_nav .head_nav_one{
         line-height: 66px;
    }
    .head .head_nav_one .head_nav_two_box{
        top:67px;
    }
    .head .language{
        height:66px;
    }
    .head .language li {
        line-height: 66px;
    }
    .head .language::before{
        top:25px;
    }
    .head .nav li a,
    .head .language li a{
        font-size: 15px;
    }
    .footer .footer_content {
        padding: 100px 10% 0 10%;
    }
    .footer .footer_nav {
        margin-top: 10px;
        padding: 10px 0;
    }
    .footer .footer_nav .nav_two_box {
        margin-top: 5px;
    }
    .footer .footer_nav .nav_two {
        line-height: 1.5;
    }
    .footer .footer_nav .nav_three {
        line-height: 1.5;
    }
    .footer_btn_box{
        margin-top: 2vw;
    }
}

@media (max-width: 1280px){
    .head .nav li {
        margin: 0 15px;
    }
    .head .language {
        margin-left: 15px;
        padding-left: 30px;
    }
    .footer .footer_nav .nav_two_link{
        font-size: 1vw;
    }
    .footer .footer_nav .nav_three_link{
        font-size: 0.9vw;
    }
}
