*{
    margin:0;padding:0;
}
body{
    font-family:"微软雅黑"
}
.w1440 {
    width: 100%;
    box-sizing: border-box;
    max-width: 1440px;
    margin: 0 auto;
}
.banner-box{
    position: relative;
}
.banner-box img {
    display: block;
    width: 100%;
    min-height: 6rem;
    object-fit: cover;
}
.banner-box video{
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 6rem;
}
/* @font-face {
    font-family: 'HuXiaoBoNanShenTi';
    src: url('/static/index/font/HuXiaoBoNanShenTi-2.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

/* 使用示例 */
/* body {
    font-family: 'HuXiaoBoNanShenTi', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'HuXiaoBoNanShenTi', serif;
} */
.huxiaobo{
    font-family: 'HuXiaoBoNanShenTi', sans-serif;
}
.sub-title {
    font-size: 0.2rem;
    color: #999;
    letter-spacing: 0px;
    text-transform: uppercase;
    
}

.title {
    font-size: 0.36rem;
    color: #333;
    letter-spacing: 5px;
    font-family: 'HuXiaoBoNanShenTi', sans-serif;
    margin-top: 0.2rem;
}
.banner {
    width: 100%;
    margin-top: 128px;
}

.banner img {
    width: 100%;
}

/*单行截断*/
.one-cut {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1 !important;
    overflow: hidden;
}

.two-cut {
    display: -webkit-box;
    /* word-break: break-all; */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2 !important;
    overflow: hidden;
}

.three-cut {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3 !important;
    overflow: hidden;
}

.four-cut {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4 !important;
    overflow: hidden;
}

.five-cut {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5 !important;
    overflow: hidden;
}

.pointer {
    cursor: pointer;
}
a{
    text-decoration: none;
    color: inherit;
}
img{
    vertical-align: top;
}
ul,li{
    list-style: none;
}
/*弹性布局*/
/*弹性容器,横向*/
.m-flex-box {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex !important;
}

/*弹性容器，纵向*/
.m-flex-column {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/*换行*/
.flex-wrap {
    flex-wrap: wrap;
}

/*不变化*/
.flex-none {
    flex: none;
}

/*自动*/
.flex-auto {
    flex: auto;
    min-width: 0;
}

.flex-1 {
    flex: 1;
}
/*主轴两端对齐*/
.flex-s {
    justify-content: space-between;
}

/*主轴居中*/
.flex-center {
    justify-content: center;
}

/*主轴底对齐*/
.flex-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/*交叉轴居中*/
.flex-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*交叉轴底对齐*/
.flex-align-end {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

/*交叉轴拉伸对齐
如果项目未设置高度或设为auto，将占满整个容器的高度
*/
.flex-align-s {
    -webkit-align-items: stretch;
    align-items: stretch;
}

/*对齐*/
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}



.head-box{}
.head-box.fixed{
    position: fixed;
    width:100%;
    left:0;
    top:0;
    background:#fff;
    z-index:10;
    animation: slideInDown 1s;
}
@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}
body{
    font-size:0.16rem;
    color:#333;
}
.head-top-box{
    border-bottom: 1px solid #d8d8d8;
    font-size:0.16rem;
}
.head-top{
    height: 0.69rem;
    line-height: 0.69rem;
    color:#8d97ad;
}
.head-box .email{
    position:relative;
    padding-left:0.4rem;
}
.head-box .email::after{
    content:'';
    width:0.26rem;
    height:0.18rem;
    background:url("../images/email.png") no-repeat;
    background-size:100% 100%;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:0;
}
.head-box .tel{
    position:relative;
    padding-left:0.35rem;
    margin-left:0.47rem;
}
.head-box .tel::after{ 
    content:'';
    width:0.21rem;
    height:0.21rem;
    background:url("../images/tel.png") no-repeat;
    background-size:100% 100%;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    left:0;
}
.select-box{
    position: relative;
}
.select-box .language{
    cursor: pointer;
    position:relative;
}
.select-box .language::after{
    content:'';
    width:0.12rem;
    height:0.06rem;
    background:url("../images/arrow.png") no-repeat;
    background-size:100% 100%;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    right:-0.2rem;
}
.select_list {
    width:1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0.69rem;
    background: #fff;
    border-radius: 10px;
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index:1;
}
.select_list li {
    cursor: pointer;
}
.select-box .zh-cn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.select-box .zh-cn .icon {
    display: inline-block;
    width: 0.2rem;
    height: 0.2rem;
    background: url('/static/index/images/zh.png') no-repeat;
    background-size: 100% 100%;
    margin-right: 0.1rem;
}
.select-box .en {
    display: flex;
    align-items: center;
    justify-content: center;
}
.select-box .en .icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('/static/index/images/en.png') no-repeat;
    background-size: 100% 100%;
    margin-right: 10px;
}
.nav-list{
    height: 0.68rem;
    line-height: 0.68rem;
}
.nav-list ul{
    flex:1;
    justify-content: space-around;
}
.nav-list li{
    /* margin:0 0.3rem; */
}
.nav-list li:hover{
    font-weight: bold;
    color: #0153b9;
    /* font-size:0.18rem; */
}
.nav-list li.active{
    font-weight: bold;
    color: #0153b9;
    /* font-size:0.18rem; */
}
.nav-list .logo{
    width:2.9rem;
    height:1.39rem;
    background:#fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size:0.24rem;
    font-weight: bold;
    margin-top:-0.7rem;
}
.nav-list .logo img{
    width:1.06rem;
    height:0.58rem;
    margin-top:0.26rem;
}
.nav-list .logo-text{
    position:relative;
    top:-0.15rem;
}
.m-header-box{
    display: none;
    height: 1rem;
}
.m-header {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px 01px 0px 1px #f5f5f5;
    z-index: 999;
    box-sizing: border-box;
    padding: 0 5vw;
    /* position: relative; */
    height: 1rem;
}

.m-header .logo {
    display: flex;
    align-items: center;
    font-size: 0.3rem;
    font-weight: 600;
}
.m-header .logo a{
    display: flex;
    align-items: center;
}
.m-header .logo img {
    /* width: 100%;
    display: block; */
    vertical-align: middle;
    height: 0.5rem;
    margin-right: 5px
}

.m-header .m-icon {
    cursor: pointer;
    position: relative;
}

.m-header .m-icon span {
    display: block;
    width: 0.5rem;
    height: 2px;
    background: #073190;
    margin: 0.12rem 0;
}

.m-header .m-icon::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: #073190;
    top: 50%;
    margin-top: -1px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.m-header .m-icon::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: #073190;
    top: 50%;
    margin-top: -1px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.m-header .menu-btn.active span {
    opacity: 0;
}

.m-header .menu-btn.active .m-icon::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.m-header .menu-btn.active .m-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.m-header .menu-list {
    position: absolute;
    left: 0;
    top: 1rem;
    width: 100%;
    height: 100vh;
    background: #fff;
    font-size: 0.28rem;
    display: none;

}

.m-header .menu-list li {
    padding: 0.2rem 0.3rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.m-header .menu-list li:last-child {
    border: none;
}
.footer{
    padding: 0.4rem 0 0.8rem;
    background: #fff;
}
.footer-box{
    display: flex;
}
.footer-l{ 
    margin-right: 1.2rem;
}
.footer-box .footer-gz{
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
}
.footer-box .footer-gz .gz-title{ 
    margin-right: 0.2rem;
    font-size: 0.24rem;
    font-weight: 600;
}
.footer-box .footer-gz .gz-list{ 
    display: flex;
}
.footer-box .footer-gz .gz-list img{ 
    width: 0.44rem;
    height: 0.44rem;
    margin-right: 0.2rem;
}
.footer-logo{
    display: flex;
    align-items: center;
    margin-bottom: 0.21rem;
}
.footer-logo img{
    width: 0.35rem;
    margin-right: 5px;
}
.footer-logo span{ 
    font-size: 0.14rem;
    font-weight: 600;
}
.footer-des{
    font-size: 0.14rem;
   
}
.footer-r{ 
    flex:1;
    display: flex;
}
.footer-nav{
    width: 2.7rem;
}
.footer-contact{ 
    width: auto;
}
.footer-nav .nav-title{ 
    font-size: 0.16rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.footer-nav .f-nav{ 
    font-size: 0.14rem;
    line-height: 2;
}
.footer-nav .f-nav a{
    display: block;
}
.footer .copyright{
    font-size: 0.12rem;
    color: #999;
    margin-top: 0.3rem;
    text-align: center;
}
.pagination{
    display: flex;
    justify-content: center;
}
.pagination li{
    font-size: 0.24rem;
    color: #333;
    margin: 0.3rem 0.15rem;
}
.pagination li a{
    color: #333;
}
.pagination li.active{
    color: #052583;
    font-weight: bold;
}
.pagination li.disabled{
    color: #999;
}
.contact-form .m-title1,
.contact-form .m-title2 {
    display: none;
}
.mask-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}
.mask-box .mask-bg{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top:0;left:0;
}
.mask-box .contact-form {
    background: url('../images/form_bg.png') no-repeat;
    background-size: 100% 100%;
    width: 7rem;
    padding: 0 0.5rem 0.5rem;
    border-radius: 0.12rem;
    position: relative;
}

.mask-box .m-icon {
    width: 2.21rem;
    height: 1.88rem;
    background: url('../images/form_icon.png') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
}

.mask-box .m-title1 {
    font-size: 0.3rem;
    padding: 0.3rem 0 0;
    display: block;
}

.mask-box .m-title2 {
    font-size: 0.16rem;
    padding-bottom: 0.5rem;
    display: block;
}
.mask-box .contact-form input,
.mask-box .contact-form select,
.mask-box .contact-form textarea {
    border: 1px solid #ccc;
    background: none;
    width: 100%;
    padding: 0.1rem;
    border-radius: 4px;
    font-size: 0.14rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}


.mask-box .submit-btn {
    margin: 0.2rem auto 0;
    background-color: #0163dd;
    color: white;
    width: 2.2rem;
    height: 0.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.18rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    line-height: 0.5rem;
}

.mask-box .close-btn {
    width: 0.3rem;
    height: 0.3rem;
    background: url('../images/close_btn.png') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0.1rem;
    right: 1.9rem;
    cursor: pointer;
}
.mask-box .form-row {
    display: flex;
    margin-bottom: 0.2rem;
    justify-content: space-between;
}

.mask-box .form-row .form-group {
    width: calc(50% - 0.15rem);
    ;
    min-width: 0;
}
.mask-box label {
    display: block;
    margin-bottom: 0.1rem;
    font-weight: 600;
    font-size: 0.14rem;
}

.mask-box label span {
    color: red;
}
.joinus-btn{
    cursor: pointer;
}
@media (max-width: 1520px) {
    
}
@media (max-width: 1440px) { 
   .w1440{
        padding:0 0.3rem;
    }
}
@media (max-width: 1025px) {
    
    .head-box {
        display: none !important;
    }
    .m-header-box{
        display: block !important;
    }
    .m-header {
        display: flex !important;
    }
    .banner{
        margin-top: 1rem;
    }
    
    
}
@media screen and (max-width:700px){
    .footer-box{
        flex-wrap: wrap;
    }
    .footer-l{
        margin-right: 0;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    .mask-box .contact-form{
        width: 70%;
    }
    .form-row{
        display: block!important;
    }
    .form-row .form-group{
        width: 100%!important;
        margin-top:0.15rem;
    }
}

