*{
    margin:0;padding:0;
}
.w1440 {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10.4vw;
}
@font-face {
    font-family: 'HuXiaoBoNanShenTi';
    src: url('../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;
}



.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 39, 53, 0.25);
    border-bottom: 1px solid #fff;
    z-index: 999;
    height: 128px;
    box-sizing: border-box;
    padding: 0 10.4vw;
    color: #fff;
    font-size: 0.16rem;
    flex-wrap: wrap;
}

.header.active {
    background: #f6f8f9;
    -webkit-box-shadow: 0px 0px 12px #eee;
    box-shadow: 0px 0px 12px #eee;
    color: #333;
}

.header .logo {
    display: flex;
    align-items: center;

}

.header .logo .logo-img {
    width: 4rem;
    height: 0.56rem;
    background: url("../images/logo.png") no-repeat;
    background-size: 100% 100%;
}

.header.active .logo-img {
    width: 4rem;
    height: 0.56rem;
    background: url("../images/logo2.png") no-repeat;
    background-size: 100% 100%;
}

.header .logo img {
    width: 4rem;
    height: 0.56rem;
}

.header .nav-tab {
    margin-left: 3vw;
}

.header .nav-tab .nav-item {
    padding: 0 0.2rem;
    line-height: 0.8rem;
}
.header .nav-tab .nav-item.active{
    position: relative;
}
.header .nav-tab .nav-item.active::after{
    content: '';
    width: 0.6rem;
    height: 4px;
    background: #052583;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.header .top-right {
    /* margin-right: 70px; */

}

.header .top-right .t-icon1 {
    position: relative;
    padding: 0 0.2rem 0 0.25rem;
    margin-right: 0.2rem;
}

.header .top-right .t-icon1::before {
    content: '';
    width: 0.2rem;
    height: 0.2rem;
    background: url("../images/icon1.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header.active .top-right .t-icon1::before {
    content: '';
    width: 0.2rem;
    height: 0.2rem;
    background: url("../images/icon1_on.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .top-right .t-icon1::after {
    content: '';
    width: 1px;
    height: 0.2rem;
    ;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .top-right .t-icon2 {
    position: relative;
    padding-left: 0.3rem;
}

.header .top-right .t-icon2::before {
    content: '';
    width: 0.26rem;
    height: 0.2rem;
    background: url("../images/icon2.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.header.active .top-right .t-icon2::before {
    content: '';
    width: 0.26rem;
    height: 0.2rem;
    background: url("../images/icon2_on.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.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 {
    width: 3rem;
    display: flex;
}

.m-header .logo img {
    width: 100%;
    display: block;
    /* vertical-align: top; */
}

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

.m-header .m-icon span {
    display: block;
    width: 0.3rem;
    height: 2px;
    background: #073190;
    margin: 5px 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 {
    color: #fff;
    background: #1e1e1e;
    /* height:6rem; */
    padding: 0.5rem 10.4vw 0.5rem;
    box-sizing: border-box;
}

.footer .f-left {
    width: 4rem;
}

.footer .l-t1 {
    font-size: 0.18rem;

}

.footer .l-tel {
    font-size: 0.32rem;
    font-weight: bold;
    margin: 0.1rem 0;
}

.footer .l-address {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.16rem;
}

.footer .f-icon1,
.footer .f-icon2,
.footer .f-icon3 {
    width: 0.7rem;
    height: 0.66rem;

}

.footer .f-icon1 {
    background: url('../images/f_icon1.png') no-repeat;
    background-size: 100% 100%;
}

.footer .f-icon2 {
    background: url('../images/f_icon2.png') no-repeat;
    background-size: 100% 100%;
}

.footer .f-icon3 {
    background: url('../images/f_icon3.png') no-repeat;
    background-size: 100% 100%;
}

.footer .f-text {
    color: rgba(255, 255, 255, 0.74);
    text-align: center;
    font-size: 0.14rem;
    margin-top: 0.05rem;
}

.footer .l-box2 {
    margin-top: 0.5rem;
    padding-top: 0.2rem;
    border-top: 1px solid #4f4f4f;
}

.footer .l-box2 .l-list {
    margin-top: 0.2rem;
}

.footer .f-right {
    margin-left: 1.5rem;
}

.footer .f-right .m-title {
    font-size: 0.26rem;
}

.footer .f-right .menu-item {
    position: relative;
    padding: 0 0.3rem;
    text-align: right;
}

.footer .f-right .menu-item .s-text {
    font-size: 0.14rem;
    line-height: 0.35rem;
    color: rgba(255, 255, 255, 0.74);
    margin-top: 0.2rem;
}

.footer .f-right .menu-item .s-text p {
    cursor: pointer;
}

.footer .f-right .menu-item::before {
    content: '';
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 0;
    top: 0;
    /* transform: translateY(-50%); */
}

.footer .f-right .menu-item:last-child::before {
    display: none;

}
.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;
}
@media (max-width: 1520px) {
    .footer .l-t1 {
        font-size: 0.16rem;
    }

    .footer .f-right .menu-item .s-text {
        font-size: 0.12rem;
    }

    .footer .l-tel {
        font-size: 0.3rem;
    }

    .footer .f-right {
        margin-left: 1rem;
    }

    .footer .f-left {
        width: 3rem;
    }
}
@media (max-width: 1025px) {
    .w1440{
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .header {
        display: none !important;
    }

    .m-header {
        display: flex !important;
    }
    .banner{
        margin-top: 1rem;
    }
    .footer .f-right {
        display: none !important;
    }
    .title{
        font-size: 0.3rem;
        margin-top: 0.15rem;
    }
}
@media screen and (max-width:670px){
    .title{
        font-size: 0.26rem;
        margin-top: 0.1rem;
    }
}

