@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-text-size-adjust: none;
}

:root {
    /* ====== Transition ====== */
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
    --tran-06: all 0.6s ease;
}


body {
    font-family: "Source Han Sans CN","Microsoft YaHei", "PingFang SC", "Calibri", "opensans", "GothicArial", "Arial", "San Francisco", 'Hiragino Sans GB', "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    min-height: 100vh;
    background: #ffffff;
}


body.hd {
    overflow: hidden;
}


input,
textarea,
select,
button {
    border: none;
    outline: none;
    resize: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-family: "Microsoft YaHei", "PingFang SC", "Calibri", "opensans", "GothicArial", "Arial", "San Francisco", 'Hiragino Sans GB', "Helvetica Neue", Helvetica, sans-serif;
}

button {
    cursor: pointer;
}


ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

i,
b {
    font-style: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
}

/* 引入字体 */
@font-face {
    font-family: "Source Han Sans CN";
    src: url(/static/font/SourceHanSansCN-Regular.otf);
}

@font-face {
    font-family: "YouSheBiaoTiHei";
    src: url(/static/font/YouSheBiaoTiHei.ttf);
}

@font-face {
    font-family: "Gotham";
    src: url(/static/font/Gotham-Thin.otf);
}

@font-face {
    font-family: "Gotham bord";
    src: url(/static/font/Gotham-Bold.otf);
}

/* 清除默认样式 */
.swiper-button-next,
.swiper-button-prev {
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 14px;
    color: #DBDBDB;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 14px;
    color: #DBDBDB;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 14px;
    color: #DBDBDB;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    font-size: 14px;
    color: #DBDBDB;
}

/* 滚动条 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-button:vertical {
    display: none;
}

::-webkit-scrollbar-track:vertical {
    background-color: #ffffff;
}

::-webkit-scrollbar-track-piece {
    background: #e3e3e3;
}

::-webkit-scrollbar-thumb:vertical {
    background-color: #ffffff;
    border-radius: 30px;
}

/* 浮动 */
.fl {
    float: left;
}

.fr {
    float: right;
}

/* 清除 */
.ov {
    overflow: hidden;
}

/* 隐藏 */
.op0 {
    opacity: 0;
    visibility: hidden;
}

.op1 {
    opacity: 1;
    visibility: visible;
}

/* flex布局 */
.fl-f {
    display: flex;
    display: -webkit-flex;
}

/* flex上下布局 */
.fl-ac {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.fl-as {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
}

.fl-ae {
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
}

/* flex左右布局 */
.fl-jc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
}

.fl-jb {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}

.fl-ja {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
}

.fl-js {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
}

.fl-je {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
}

/* flex上下左右布局 */
.fl-cc {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}

.fl-cb {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
}

.fl-ca {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-around;
}

.fl-cs {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
}

.fl-ce {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
}

.fl-sa {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    justify-content: space-around;
}

.fl-sb {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    justify-content: space-between;
}


.fl-ss {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.fl-se {
    display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.fl-ea {
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    justify-content: space-around;
}

.fl-eb {
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    justify-content: space-between;
}

.fl-es {
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.fl-ee {
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* flex自适应布局 */
.fl-fw {
    display: flex;
    flex-wrap: wrap;
}

.fl-fc {
    display: flex;
    flex-direction: column
}

/* 手机端按钮 */
.toggle {
    display: none;
    padding: 0 0;
    background-color: transparent;
    border: none !important;
    position: absolute;
    z-index: 201;
    right: 20px;
    
}

.toggle .line-top,
.toggle .line-middle,
.toggle .line-bottom {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: 0.4s;
}

.open.toggle .line-top,
.open.toggle .line-middle,
.open.toggle .line-bottom {
    background-color: #ffffff;
}

body.dark .toggle .line-top,
body.dark .toggle .line-middle,
body.dark .toggle .line-bottom {
    background-color: #FFFFFF;
}

body.dark .open.toggle .line-top,
body.dark .open.toggle .line-middle,
body.dark .open.toggle .line-bottom {
    background-color: #FFFFFF;
}

.open .line-top {
    -webkit-transform: rotate(45deg) translate(4px, 9px);
    transform: rotate(45deg) translate(4px, 9px);
}

.open .line-middle {
    opacity: 0;
}

.open .line-bottom {
    -webkit-transform: rotate(-45deg) translate(2px, -7px);
    transform: rotate(-45deg) translate(2px, -7px);
}


.wap-sub {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    box-sizing: border-box;
    padding-top: 25vw;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: all cubic-bezier(0.75, 0, 0.29, 1.03) 0.5s;
    display: none;
}

.wap-sub.on {
    transform: translateX(0);
}

.wap-sub .s-main {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.s-main .s-row {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 4.166667vw;
}

.s-main .s-row .title {
    padding: 15px 0;
}

.s-main .s-row .title a {
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
}

.s-main .s-row .title .img {
    width: 16px;
    transition: all ease-out 0.3s;
}

.s-main .s-row.on .img {
    transform: rotate(90deg);
}

.s-main .s-row .s-sub {
    width: 100%;
    overflow: hidden;
    display: none;
    background: #333;
    padding: 0;
    border-radius: 0;
    margin: 10px 0;
}

.s-sub dd a {
    width: 100%;
    display: block;
    font-size: 14px;
    color: #fff;
    padding: 10px 20px;
    transition: all 0.6s;
}

.op-bg {
    background-color: #000000;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    pointer-events: none;
}

.op-bg.show {
    opacity: 0.7;
}

.zw {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

.zw::after,
.zw::before {
    display: none !important;
}


.header{
    position: fixed;
    z-index: 100;
    padding: 0 6.25vw;
    /* border-bottom:1px solid rgba(255, 255, 255, 0.2); */
    width: 100%;
}

.header li{
    border-bottom: 3px solid transparent;
}

header.black{
    background: #FFFFFF;
    position: relative;
    color: #000;
}

.header.black.on{
    background: #FFFFFF;
    position: fixed;
}

header.black-t{
    background: #000000;
    position: relative;
    color: #fff;

}

.header.black-t.on{
    background: #000000;
    position: fixed;
}

.header .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .box .logo img{
    width: 204px;
}

.header .nav-box>ul{
    display: flex;
}

.header .nav-box>ul>li{
    margin: 0 1.563vw;
    padding: 1.667vw 0;
    position: relative;
}

.header .nav-box>ul>li{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
}


.header.on .nav-box ul.white li ul{
    /* background: #505050; */
    padding: 10px;
}

.phone-menu{
    display: none;
}



.phone-menu.black .line-top, .phone-menu.black .line-middle, .phone-menu.black .line-bottom{
    background: #000;
}

.phone-menu.black-t .line-top, .phone-menu.black-t .line-middle, .phone-menu.black-t .line-bottom{
    background: #FFFFFF;
}

.phone-menu .line-top, .phone-menu .line-middle, .phone-menu .line-bottom {
    display: block;
    width: 20px;
    height: 3px;
    margin: 3px 0;
    transition: 0.4s;
    z-index: 101;
    transition: all 0.3s;
}

.phone-menu.on .line-top{
    transform: rotate(45deg) translate(9px,8px);
}
.phone-menu.on .line-middle{
    opacity: 0;

} 
.phone-menu.on .line-bottom {
    transform: rotate(-45deg);
}

.phone-menu.white .line-top, .phone-menu.white .line-middle, .phone-menu.white .line-bottom {
    background: #FFFFFF;
}

.dianji{
    width: 100%;
    height: 100%;
    left: 80px;
    top: 0;
    position: absolute;
}

.phone-box{
    position: relative;
    padding: 0 4%;
}

.phone-nav-box{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.phone-nav-box ul.white li {
    color: #FFFFFF;
    width: max-content;
}
.phone-nav-box ul li {
    position: relative;
    white-space: nowrap;
}

.phone-nav-box>ul>li{
    position: relative;
    margin: 10px 0;
}

.phone-nav-box>ul>li.have::before{
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    height: 1px;
    width: 10px;
}

.phone-nav-box>ul>li.have::after{
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    height: 10px;
    width: 1px;
    transform: translate(-4.5px,-4.5px);
    transition: all 0.3s;
}

.phone-nav-box>ul>li.on.have::after{
    opacity: 0;
}

.phone-nav-box ul li {
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
}

.phone-nav-box ul li ul{
    display: none;
}

.phone-nav-box ul li ul li{
    margin: 10px;
    font-size: 16px;
}

.phone-nav-box.white{
    color: #FFFFFF;
}

.phone-nav-box.white>ul>li::after,
.phone-nav-box.white>ul>li::before{
    background: #FFFFFF;
}

.phone-nav-box .right-box{
    display: flex;
}
.phone-nav-box .right-box .search{
    margin-right: 10px;
    padding-right:10px ;
    border-right: 1px solid #FFFFFF;
}

.phone-nav-box .language{
    display: flex;
    position: relative;
    align-items: center;
}

.phone-nav-box .language img{
    margin-right: 10px;
}

.phone-nav-box .language .down-nav-box{
    position: absolute;
    transform: translateY(45px);
    display: none;
}

.phone-box{
    transform: translateX(100%);
    position: fixed;
    height: 100%;
    width: 30%;
    background: #505050;
    z-index: 90;
    top: 0;
    transition: all 0.3s;
    right: 0%;
}
.phone-box.on{
    transform: translateX(0);
}
.header .right-box .language .down-nav-box{
    position: absolute;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    background: #505050;
    padding: 10px;
    transform: translateY(55px);
    white-space: nowrap;
    display: none;
}

.header .right-box .language .down-nav-box.white{
    color: #FFFFFF;
}

.header .nav-box ul.white li{
    color: #FFFFFF;
    width: max-content;
}

.header .nav-box ul.white li.on{
    border-bottom: 3px solid #fff;
}
.header .nav-box ul.white>li:hover{
    border-bottom: 3px solid #fff;
}

.header.black .nav-box ul li.on::before{
    content: "";
    position: absolute;
    width: 40px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-bottom: 3px solid #0028AA;
}
.header.black .nav-box>ul>li:hover::before{
    content: "";
    position: absolute;
    width: 40px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-bottom: 3px solid #0028AA;
}

.header.black-t .nav-box ul li.on::before{
    content: "";
    position: absolute;
    width: 40px;
    bottom: 0;
    border-bottom: 3px solid #fff;
}
.header.black-t .nav-box ul>li:hover{
    border-bottom: 3px solid #fff;
}

.header .nav-box .down-nav-box{
    position: absolute;
    display: none;
    text-align: center;
    left: 50%;
    transform: translate(-50%,32px);
    padding-top: 1.563vw;
    z-index: 100;
}

.header.black .nav-box .down-nav-box{
    background: #fff;
    padding: 10px;
}

.header.black-t .nav-box .down-nav-box{
    background: #000;
    padding: 10px;
}

.header .nav-box ul li{
    position: relative;
    white-space: nowrap;
}

.header .nav-box .down-nav-box li:not(:nth-last-child(1)){
    margin-bottom: 10px;
}

.header .nav-box .down-nav-box li{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 0.94vw;
    color: #2B2E2E;
}

.header .right-box{
    display: flex;
}

.header .right-box .search{
    position: relative;
}

.header .right-box .search img{
    z-index: 100;
    cursor: pointer;
    position: relative;
}

.header .right-box .search .white{
    padding-right: 15px;
    border-right: 1px solid #FFFFFF;
    margin-right: 15px;
    cursor: pointer;
}

.header .right-box .search .black{
    padding-right: 15px;
    border-right: 1px solid #000000;
    margin-right: 15px;
    cursor: pointer;
}

.header .right-box .language{
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.header .right-box .language img:nth-child(1){
    margin-right: 5px;
}

.footer-box{
    padding: 3.125vw 17.708vw;
    background: #F4F4F4;
}

.footer-box .row{
    margin-top: 2.083vw;
    display: flex;
    justify-content: space-between;
}

.footer-box .row .item{
    display: flex;
    flex-direction: column;
}

.header .right-box .language .down-nav-box.black{
    background: #ffffff;
}

.header .right-box .language .down-nav-box.black-t{
    background: #000;
}

.footer-box .row .item h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 20px;
color: #2B2E2E;
margin-bottom: 20px;
}

.footer-box .row .item a{
font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 18px;
color: #2B2E2E;
opacity: 0.8;
transition: color 0.3s;
}

.footer-box .row .item a:hover{
    color: #0028AA;
}

.footer-box .row .item a:not(:nth-last-child(1)){
    margin-bottom: 11px;
}

.footer-box .row .item .box-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-box .row .item .box-item:nth-child(3){
    margin-bottom: 20px;
}

.footer-box .row .item .box-item p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #4A4A4A;
    max-width: 16.146vw;
}

.footer-box .row .item .box-item .left .box,
.footer-box .row .item .box-item .right .box{
    display: flex;
    align-items: center;
}

.footer-box .row .item .box-item h3{
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #2B2E2E;
    margin-top: 5px;
    margin-bottom: 10px;
}

.footer-box .row .item .box-item img{
    margin-top:4px;
    margin-right: 8px;
}

.footer-box .gotop{
    position: absolute;
    background: #0028AA;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    right: 6.25vw;
}

.footer .bottom-box{
    display: flex;
    justify-content: center;
    padding: 1.563vw 0 1.458vw;
}

.footer .bottom-box p{
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #9C9C9C;
}

.banner{
    overflow: hidden;
    position: relative;
}

.banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}

.banner .swiper-slide img{
    width: 100%;
}

.banner.big{
    height: 50.521vw;
}

.banner .swiper-slide{
    position: relative;
}

.banner .swiper .img{
    position: relative;
    display: flex;
}

.banner .swiper .img::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(earth-1388003_1920.jpg);
}

.banner .swiper .text-box{
    position: absolute;
    top: 50%;
    left: 17.708vw;
    transform: translateY(-50%);
}

.banner .swiper .text-box h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 700;
    font-size: 2.813vw;
    color: #FFFFFF;
}

.banner .swiper .text-box p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    max-width: 36.458vw;
    color: #FFFFFF;
    margin: 20px 0 2.083vw;
}

.banner .swiper .text-box a{
    Width:150px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    transition: all 0.3s;
}

.banner .h1-pagination{
    position: absolute;
    bottom: 2.083vw !important;
    text-align: center;
    z-index: 10;
}

.banner .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    opacity: 0.3;
    border-radius: 0%;
    transition: all 0.3s;
    margin: 0 10px !important;
}

.banner .swiper-pagination-bullet-active{
    opacity: 1;
    width: 25px;
}

.currency-box{
    padding: 6.25vw 17.708vw;
}

.home1 .title{
    display: flex;
    justify-content: space-between;
}

.home1 .title h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 2.292vw;
    color: #2B2E2E;
}

.home1 .title a{
    width: 150px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.home1 .title a:hover,
.banner .swiper .text-box a:hover{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.home1 .row{
    margin-top: 2.083vw;
    display: flex;
    justify-content: space-between;
}

.home1 .row .item{
    padding: 1.667vw 2.083vw;
    width: 32%;
    background: #FAFAFA;
    transition: all 0.3s;
}

.home1 .row .item:hover,
.a1 .item:hover{
    background: #FFFFFF;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.06);
}

.home1 .row .item .num-box{
    margin-top:7.813vw;
    display: flex;
    align-items: flex-end;
}

.home1 .row .item .img-box{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.home1 .row .item .img-box img{
    max-width: 4.167vw;
}

.home1 .row .item .img-box span{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 1.25vw;
    color: #231815;
}

.home1 .row .item .num-box span{
    font-family: 'Gotham';
font-style: normal;
font-weight: 700;
font-size: 4.063vw;
color: #231815;
}

.home1 .row .item .num-box p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #231815;
}

.home2{
    position: relative;
}

.home2 .img-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(92.2deg, rgba(0, 0, 0, 0.8) 15.43%, rgba(0, 0, 0, 0.29) 99.31%);
}

.home2 .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.home2 .title h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 2.292vw;
    color: #FFFFFF;
}

.home2 .title a{
    width: 150px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFFFFF;
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
transition: all 0.3s;
}

.home2 .title a:hover{
    border: 1px solid #0028AA;
    background: #0028AA;
    color: #FFFFFF;
}

.home2 .lunbo-box{
    margin-top: 2.083vw;
    overflow: hidden;
}

.home2 .lunbo-box .h2TopSwiper{
    border-bottom: 1px solid #EDEDED;
}

.home2 .lunbo-box .h2TopSwiper .swiper-slide p{
    position: relative;
    padding-bottom: 15px;
    width: fit-content;
}

.home2 .lunbo-box .swiper-slide-thumb-active p::before{
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 0px;
    border-bottom: 4px solid #ffffff;
    animation: xian 0.5s;
}

@keyframes xian{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}

.home2 .lunbo-box .h2TopSwiper .swiper-slide{
    position: relative;
    /* width: auto !important; */
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #FFFFFF;
/* padding-bottom: 15px; */
}

.home2 .lunbo-box .h2TopSwiper .swiper-wrapper{
    justify-content: space-between;
}

.home2 .h2Top-pagination.swiper-pagination-progressbar{
    border: 0.5px solid #EDEDED;
    position: relative;
}

.home2 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    border: 2px solid #FFFFFF;
}

.home2 .h2BottomSwiper{
    margin-top: 2.083vw;
}

.home2 .h2BottomSwiper h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 1.667vw;
color: #FFFFFF;
}

.home2 .h2BottomSwiper .xian{
    margin: 28px 0;
    width: 120px;
    opacity: 0.2;
    border: 1px solid #FFFFFF;
}

.home2 .h2BottomSwiper p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    max-width: 32.813vw;
}
.home2 .h2BottomSwiper span{
    display: block;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 2.083vw;
}

.home2 .h2BottomSwiper a{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    position: relative;
    display: block;
    max-width: 80px;
    margin-top: 6.25vw;
}

.home2 .h2BottomSwiper a::before{
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/right-fff.png);
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s;
}  

.home2 .h2BottomSwiper a:hover::before{
    left: 75%;
}

.home2 .lunbo-box .img-box{
    position: relative;
    display: flex;
    margin-top: 4.688vw;
}

.home2 .lunbo-box .img-box .item:not(:nth-last-child(1)){
    margin-right: 30px;
}

.home2 .lunbo-box .img-box .item{
    padding: 2px 20px;
    display: flex;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s;
}

.home2 .lunbo-box .img-box .item.on{
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.home2 .lunbo-box .img-box .item:hover{
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.home3{
    background: #F7F7F7;
    overflow: hidden;
}

.home3 .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home3 .title h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;
}

.home3 .title a{
    width: 182px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.home3 .title a:hover{
    background: #0028AA;
    color: #FFFFFF;
}

.home3 .lunbo-box{
    margin-top: 2.083vw;
}

.home3 .lunbo-box .swiper-slide{
    display: flex;
    background: #FFFFFF;
}

.home3 .lunbo-box .swiper-slide .right img{
    transition: all 0.3s;
}

.home3 .lunbo-box .swiper-slide .right:hover img{
    transform: rotate(1.1);
}

.home3 .left{
    width: 40%;
    padding: 3.125vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home3 .left h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 1.667vw;
line-height: 48px;
color: #2B2E2E;
}

.home3 .left p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #505050;
    margin-top: 2.083vw;
    max-width: 350px;
}

.home3 .left a{
    width: 150px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.home3 .left a:hover{
    border-color: #0028AA;
    background: #0028AA;
    color: #FFFFFF;
}

.home3 .right{
    width: 60%;
}

.home3 .swiper{
    position: relative;
}

.home3 .lunbo-anniu{
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.home3 .lunbo-anniu .h3-button-prev,
.home3 .lunbo-anniu .h3-button-next{
    width: 46px;
    height: 46px;
    border: 1px solid #2B2E2E;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.home3 .lunbo-anniu .h3-button-prev{
    left: -4.688vw;
}
.home3 .lunbo-anniu .h3-button-next{
    right: -4.688vw;
}

.home3 .lunbo-anniu .h3-button-prev::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/lunbo-left.png);
    background-repeat: no-repeat;
    background-position: center;
}

.home3 .lunbo-anniu .h3-button-prev:hover::before{
    background-image: url(/static/img/lunbo-left-fff.png);
}
.home3 .lunbo-anniu .h3-button-next:hover::before{
    background-image: url(/static/img/lunbo-right-fff.png);
}
.home3 .lunbo-anniu .h3-button-prev:hover,
.home3 .lunbo-anniu .h3-button-next:hover{
    background: #0028AA;
}

.home3 .lunbo-anniu .h3-button-next::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/lunbo-right.png);
    background-repeat: no-repeat;
    background-position: center;
}

.home4 .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home4 .title h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 2.292vw;
    color: #2B2E2E;
}

.home4 .title a{
    width: 150px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.home4 .title a:hover{
    width: 150px;
    height: 46px;
    background: #0028AA;
    color: #FFFFFF;
}

.home4 .news-box{
    margin-top: 20px;
}

.home4 .row{
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.home4 .new-main{
    width: 32%;
}

.home4 .new-main .img img{
    width: 100%;
}

.home4 .big-new:hover .text-box h3{
    color: #0028AA;
}

.home4 .row .text-box{
    padding: 25px;
    background: #FAFAFA;
    height: 100%;
}

.home4 .row .lable-date{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8D8D8D;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home4 .row .text-box h3{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: #2B2E2E;
    margin-top: 20px;
    transition: all 0.3s;
}

.home4 .row .text-box p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8D8D8D;
    margin-top: 20px;
}

.home4 .row .column h2{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    color: #2B2E2E;
    margin-bottom: 20px;
}

.home4 .row .column{
    padding: 30px;
    background: #FAFAFA;
}

.home4 .row .column .date{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #8D8D8D;
}

.home4 .row .column p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    margin-top: 8px;
}

.home4 .row .column .new-item{
    padding: 20px 0;
    border-top: 1px solid #DEDEDE;
}

.home4 .row .column .new-item a .p{
    transition: all 0.3s;
}

.home4 .row .column .new-item a:hover p{
    color: #0028AA;
}

.home4 .row .column .new-item:nth-last-child(1){
    border-bottom: 1px solid #DEDEDE;
}

.home4 .home-about{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
}

.home4 .home-about .left{
    width: 30%;
}

.home4 .home-about .right{
    width: 65%;
}

.home4 .home-about .right img{
    width: 100%;
}

.home4 .home-about .left h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;

}

.home4 .home-about .left p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #505050;
    margin: 2.083vw 0;
}

.home4 .home-about .left a{
    width: 150px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.banner .lunbo-anniu{
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.banner .lunbo-anniu .h1-button-prev,
.banner .lunbo-anniu .h1-button-next{
    width: 46px;
    height: 46px;
    /* border: 1px solid #fff; */
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.banner .lunbo-anniu .h1-button-prev{
    left: 4.688vw;
}
.banner .lunbo-anniu .h1-button-next{
    right: 4.688vw;
}

.banner .lunbo-anniu .h1-button-prev::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/left.svg);

    background-repeat: no-repeat;
    background-position: center;
}

.banner .lunbo-anniu .h1-button-prev:hover::before{
    background-image: url(/static/img/left.svg);
}
.banner .lunbo-anniu .h3-button-next:hover::before{
    background-image: url(/static/img/right.svg);
}
.banner .lunbo-anniu .h1-button-prev:hover,
.banner .lunbo-anniu .h1-button-next:hover{
    /* background: #0028AA; */
}

.banner .lunbo-anniu .h1-button-next::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/right.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.home4 .home-about .left a:hover{
    border-color: #0028AA;
    background: #0028AA;
    color: #FFFFFF;
}

.banner.about .text-box{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: 17.708vw;
}

.banner.about .text-box h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 700;
font-size: 2.813vw;
color: #FFFFFF;
}

.banner.about .text-box p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 20px;
    max-width: 38.021vw;
}

.about-nav{
    padding: 0 17.708vw;
    display: flex;
    background: #FAFAFA;
    border-bottom: 1px solid #DEDEDE;
    width: 100%;
    transition: all 0.5s;
}

.about-nav .item:not(:nth-last-child(1)){
    margin-right: 3.125vw;
}

.about-nav .item{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2B2E2E;
    opacity: 0.5;
    padding: 20px 0;
    transition: all 0.3s;
}

.about-nav .item.on,
.about-nav .item:hover{
    color: #0028AA;
    opacity: 1;
    border-bottom: 3px solid #0028AA;;
}

.a1 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;
}

.a1 p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #505050;
margin-top: 1.563vw;
}

.a1 .row{
    margin-top: 3.125vw;
    display: flex;
    justify-content: space-between;
}

.a1 .item{
    width: 32%;
    background: #FAFAFA;
    padding: 1.667vw 2.083vw;
    transition: all 0.3s;
    height: 17.708vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.a1 .item .top span{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #231815;
}

.a1 .item .top{
    display: flex;
    justify-content: space-between;
}

/* .a1 .item .num-box{
    margin-top: 5.208vw;
} */

.a1 .item .num{
    font-family: 'Gotham';
font-style: normal;
font-weight: bold;
font-size: 4.063vw;
color: #231815;
}

.a1 .item .danwei{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 20px;
color: #231815;

}

.a2{
    height: 41.667vw;
    position: relative;
}

.a2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.59);
}

.a2 .text-box{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.a2 .text-box span{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #FFFFFF;
}

.a2 .text-box h1{
    font-family: 'YouSheBiaoTiHei';
font-style: normal;
font-weight: 400;
font-size: 5vw;
color: #FFFFFF;
margin: 20px 0;
line-height: 0.7em;
}

.a2 .text-box p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 20px;
max-width: 44.271vw;
color: #FFFFFF;
margin: 0 auto;
}

.a3{
    overflow: hidden;
}

.a3 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
text-align: center;
color: #2B2E2E;
}

.a3 .row{
    margin-top: 1.563vw;
    display: flex;
    justify-content: space-between;
    margin: 1.563vw 8.104vw;
}

.a7 .img{
    width: 100%;
    display: flex;
    justify-content: center;
}

.a7 .img img{
    width: 85%;
}

.a3 .row .item{
    width: 150px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    transition: all 0.3s;
    cursor: pointer;
}

.a3 .row .swiper-slide-thumb-active .item{
    background: #0028AA;
    color: #fff;
}

.a3 .lunbo-box .swiper-slide img{
    transition: all 0.3s;
}

.a3 .lunbo-box .swiper-slide:hover>img{
    filter: drop-shadow(0px 16px 20px rgba(0, 0, 0, 0.2));
}

.a3 .row .item:hover{
    background: #0028AA;
    color: #fff;
}

.a3 .lunbo-anniu{
    position: absolute;
    top: 50%;
    display: flex;
    width: 100%;
    justify-content: space-between;
    transform: translateY(-50%);

}

.a3 .lunbo-box .item{
    position: relative;
}

.a3 .lunbo-box .a3-button-prev,
.a3 .lunbo-box .a3-button-next{
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid #2B2E2E;
transform: matrix(-1, 0, 0, 1, 0, 0);
cursor: pointer;
}

.a3 .lunbo-box .a3-button-prev:hover{
    background: #0028AA;
}

.a3 .lunbo-box .a3-button-prev{
transition: background 0.3s;
    left: -4.479vw;
}
.a3 .lunbo-box .a3-button-prev:hover:before{
    background-image: url(/static/img/lunbo-right-fff.png);
}
.a3 .lunbo-box .a3-button-next:hover:before{
    background-image: url(/static/img/lunbo-left-fff.png);
}
.a3 .lunbo-box .a3-button-prev::before{
    content: "";
    background-image: url(/static/img/lunbo-right.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    position: absolute;
    width: 100%;
}

.a3 .lunbo-box .a3-button-next:hover{
    background: #0028AA;
}
.a3 .lunbo-box .a3-button-next{
    transition: background 0.3s;

    right: -4.479vw;
}

.a3 .lunbo-box .a3-button-next::before{
    content: "";
    background-image: url(/static/img/lunbo-left.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    position: absolute;
    width: 100%;
}

.a3 .a3-pagination{
    text-align: center;
    margin-top: 20px;
}

.a3 .swiper-pagination-bullet{
    background: #0028AA;
opacity: 0.3;
 width: 10px;
 height: 10px;
 margin: 0 10px !important;
 transition: all 0.3s;
 border-radius: 0;

}

.a3 .swiper-pagination-bullet-active{
    opacity: 1;
    width: 25px;
}

.a4{
    position: relative;
    overflow: hidden;
}

.a4 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;
}

.a4 .lunbo{
    margin-top: 6.25vw;
    position: relative;
}

.a4 .lunbo h2{
    font-family: 'Gotham Pro';
font-style: normal;
font-weight: bold;
font-size: 2.083vw;
color: #505050;
}

.a4 .lunbo .swiper-slide-active h2{
    font-family: 'Gotham blod';
font-style: normal;
font-weight: 700;
font-size: 7.813vw;
}

.a4 .lunbo-anniu .a4-button-next:hover,
.a4 .lunbo-anniu .a4-button-prev:hover{
    background: #0028AA;
}


.a4 .lunbo-anniu .a4-button-prev:hover:before{
    background-image: url(/static/img/lunbo-right-fff.png);
}
.a4 .lunbo-anniu .a4-button-next:hover:before{
    background-image: url(/static/img/lunbo-left-fff.png);
}

.a4 .lunbo .swiper-slide-next h2{
    text-align: right;
}

.a4 .swiper-slide .text-box{
    margin-top: 20%;
    transform: translateY(-50%);
}

.a4 .swiper-slide-active .text-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    transform: translateY(0);
}

.a4 .lunbo .swiper-slide-active .right{
 color: #0028AA;
}

.a4 .lunbo p{
    display: none;
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #505050;
width: 31.25vw;
text-align: center;
}

.a4 .lunbo .swiper-slide-active p{
    display: block;
}

.a4 .lunbo-anniu{
    position: relative;
    display: flex;
    justify-content: space-between;
    transform: translateY(-100%);
    z-index: 10;
}


.a4 .lunbo-anniu .a4-button-prev,
.a4 .lunbo-anniu .a4-button-next{
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid #2B2E2E;
transform: matrix(-1, 0, 0, 1, 0, 0);
cursor: pointer;
transition: background 0.3s;
}

.a4 .lunbo-anniu .a4-button-next::before{
    content: "";
    background-image: url(/static/img/lunbo-left.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    position: absolute;
    width: 100%;
}

.a4 .lunbo-anniu .a4-button-prev::before{
    content: "";
    background-image: url(/static/img/lunbo-right.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    position: absolute;
    width: 100%;
}

.currency-pagination .swiper-pagination-bullet{
    background: #0028AA;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    border-radius: 0%;
    margin: 0 10px !important;
    transition: all 0.3s;
}

.currency-pagination .swiper-pagination-bullet-active{
    width: 25px;
    opacity: 1;
}

.a4 .swiper-slide-active .text-box::after{
    content: "";
    position: absolute;
    top: 35%;
    left: 110%;
    border: 1px solid #DEDEDE;
    width: 12.5vw;
}

.a4 .swiper-slide-active .text-box::before{
    content: "";
    position: absolute;
    top: 35%;
    right: 110%;
    border: 1px solid #DEDEDE;
    width: 12.5vw;
}

.a4 .xian{
    position: absolute;
    top: 35%;
    width: 16.042vw;
    border: 1px solid #DEDEDE;
    transition: all 0.5s;
}

.a4 .xian1{
    transform: translateX(-300%);
}

.a4 .xian1.on{
    transform: translateX(-110%);
}

.a4 .xian2{
    right: 0;
    transform: translateX(300%);
}

.a4 .xian2.on{
    transform: translateX(110%);
}

.a5 h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 2.292vw;
    color: #2B2E2E;
}

.a5 .row{
    margin-top: 3.125vw;
    display: flex;
    justify-content: space-between;
}

.a5 h2{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 1.667vw;
    color: #0028AA;

}

.a5 .row p{
    max-width: 51.042vw;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #505050;
}

.a5 .item .swiper{
    margin-top: 2.083vw;
}

.a5 .item:not(:nth-last-child(1)){
    border-bottom: 1px solid #DEDEDE;
}

.a5 .item .a51Swiper .img{
    display: flex;
    align-items: center;
}

.a5 .item .a51Swiper p{
    width: 20.833vw;
    margin: 0 18px;
    text-align: center;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #0028AA;
}

.a5 .a51-pagination{
    margin: 2.083vw 0 3.125vw;
    text-align: center;
}

.a5 .a52-pagination{
    margin-top: 2.083vw;
    text-align: center;
}

.a5 .a52Swiper .img{
    width: 80%;
    height: 60px;
    border: 1px solid #0028AA;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.a5 .a52Swiper .img img{
    width: 80%;
}

.a6{
    overflow: hidden;
    height: 47.708vw;
    position: relative;
}

.a6::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(96.96deg, rgba(0, 0, 0, 0.7) 17.76%, rgba(0, 0, 0, 0.3) 98.76%);
}

.amap-info .info-middle img{
    width: 100%;
}

.a6 h1{
    font-family: 'Source Han Sans CN';
    position: relative;
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #FFFFFF;
}

.a6 .lunbo-1 .swiper{
    overflow: inherit;
}

.a6 .date{
    margin-top: 32px;
    font-family: 'Gotham';
font-style: normal;
font-weight: bold;
font-size: 18px;
color: #FFFFFF;
padding-bottom: 20px;
position: relative;
}

.a6 .date::before{
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    left: 25%;
    transform: translate(0%,50%);
    background: #505050;
    transition: background 0.5s;
}

.a6 .swiper-slide-thumb-active .date::before{
    background: #fff;
}

.a6 .xian{
    border: 1px solid #FFFFFF;
    opacity: 0.2;
    width: 200%;
    transform: translateX(-25%);
}

.a6 .lunbo{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.a6 .lunbo-2{
    margin-bottom: 6.25vw;
}

.a6 .lunbo-2 h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 1.667vw;
color: #FFFFFF;
}

.a6 .lunbo-2 p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
margin: 20px 0 2.083vw;
max-width: 42.708vw;
}

.a6 .lunbo-2 .more{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
position: relative;
max-width: 64px;
}

.a6 .lunbo-2 .more:hover::before{
    right: -20px;
}

.a6 .lunbo-2 .more::before{
    content: "";
    position: absolute;
    width: 7px;
    height: 14px;
    top: 50%;
    right: 0;
    transition: all 0.3s;
    transform: translate( 16px,-50%);
    background-image: url(/static/img/right-fff.png);
    background-position:center;
    background-repeat: no-repeat;
}

.a6 .a62-button-prev{
    margin-right: 15px;
}

.a6 .a62-button-prev,
.a6 .a62-button-next{
    width: 46px;
    height: 46px;
    border: 1px solid #FFFFFF;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: relative;
    transition: background 0.3s;
    transition: border 0.3s;
    cursor: pointer;
}

.a6 .a62-button-prev:hover,
.a6 .a62-button-next:hover{
    border: 0px;
    background:#0028AA;
}

.a6 .lunbo-2{
    position: relative;
}

.a6 .lunbo-anniu{
    position: absolute;
    display: flex;
    right: 0;
    transform: translateY(-100%);
    z-index: 10;
}

.header.on{
    background: #505050;
}

.a6 .a62-button-prev::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/lunbo-right-fff.png);
    background-repeat: no-repeat;
    background-position: center;
}
.a6 .a62-button-next::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/lunbo-left-fff.png);
    background-repeat: no-repeat;
    background-position: center;
}   

.a7{
    background: #FAFAFA;
}

.a7 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;

}

.a7 .row{
    display: flex;
    justify-content: space-between;
}

.a7 .item{
    width: 9.74vw;
    height: 3.958vw;
    background: #F0F0F0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s;
    color: #505050;
}

.a7 .item:hover{
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.06);
}

.a7 .item.on::before{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 20px solid #fff;
    border-color: transparent transparent #fff transparent;
    top: 75%;
}

.a7 .item.on{
    background: #fff;
}

.a7 .text-box{
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    height: 150px;
    width: 100%;
}

.a7 .text{
    transition: all 0.3s;
    background: #FFFFFF;
    padding: 2.344vw;
    width: 100%;
    position: absolute;
}

.a7 .text p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #505050;
    opacity: 0.7;
}

.banner.smail{
    height: 31.25vw;
}

.banner.smail h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 700;
    font-size: 2.813vw;
    color: #FFFFFF;
    position: relative;
    top: 50%;
    left: 17.708vw;
    transform: translateY(-50%);
}

.product-nav{
    padding: 0 17.708vw;
    display: flex;
    background: #FAFAFA;
    border-bottom: 1px solid #DEDEDE;
}

.product-nav .item:not(:nth-last-child(1)){
    margin-right: 3.125vw;
}

.product-nav .item{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2B2E2E;
    opacity: 0.5;
    padding: 20px 0;
    transition: all 0.3s;
}

.product-nav .item.on,
.product-nav .item:hover{
    color: #0028AA;
    opacity: 1;
    border-bottom: 3px solid #0028AA;;
}

.p1{
    padding: 20px 17.708vw 6.25vw;
    background: #FAFAFA;

}

.p1 .p1-one-box .p1-two-nav ul{
    display: flex;
}

.p1 .p1-one-box .p1-two-nav ul li{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #505050;
    opacity: 0.5;
    cursor: pointer;
}

.p1 .p1-one-box .p1-two-nav ul li.on{
    color: #0028AA;
    opacity: 1;
}

.p1 .p1-one-box .p1-two-nav ul li:not(:nth-last-child(1)){
    margin-right: 2.083vw;
}

.p1 .p1-two-box{
    margin-top: 2.083vw;
}

.p1 .p1-two-box .item-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p1 .p1-two-box .item-box .item{
    margin-bottom: 20px;
    width: 32%;
    background: #FFFFFF;
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.04);
    padding: 28px;
}

.p1 .p1-two-box .item-box .item a{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1 .p1-two-box .item-box .item span{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #2B2E2E;
margin-top: 20px;
}

.p1 .p1-two-box .item-box{
    width: 0;
    height: 0;
    transition: all 0.3s;
}

.p1 .p1-two-box .item-box .item{
    padding: 0;
    transition: all 0.3s;
}

.p1 .p1-two-box .item-box .item span{
    font-size: 0;
    transition: all 0.3s;
}

.p1 .p1-two-box .item-box.on{
    width: 100%;
    height: 100%;
}

.p1 .p1-two-box .item-box.on .item{
    position: relative;
    padding: 28px;
}

.p1 .p1-two-box .item-box.on .item span{
    font-size: 1.25vw;
}
.p1 .p1-two-box .item-box.on .item img{
    transition: all 0.3s;
}

.p1 .p1-two-box .item-box.on .item:hover a img{
    transform: scale(1.1);
}

.p1 .p1-two-box .item-box.on .item::before{
    content: "";
    transition: width 0.3s;
    bottom: 0%;
    left: 0;
    width: 0;
}

.p1 .p1-two-box .item-box.on .item:hover::before{
    width: 100%;
    position: absolute;
    border-bottom: 6px solid #0028AA;
}

.p1 .p1-two-nav.none{
    display: none;
}

.p1 .p1-one-box{
    width: 0;
    height: 0;
    overflow: hidden;
}

.p1 .p1-one-box.on{
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.product-page-nav{
    background: #FAFAFA;
}

.product-page-nav.black{
    background: #2B2E2E;
}

.product-page-nav .row{
    padding: 18px 17.708vw;
}

.product-page-nav{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #8D8D8D;
}

.product-page-nav .row a:nth-last-child(1){
    color: #000;
}

.product-page-nav.black .row a:nth-last-child(1){
    color: #FFFFFF;
}

.pp1{
    padding: 3.125vw 17.708vw;
    display: flex;
    justify-content: space-between;
}

.pp1 .left{
    width: 48%;
}

.pp1 .left h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 700;
font-size: 2.083vw;
color: #2B2E2E;
}

.pp1 .left .top{
    border-bottom: 1px solid #DEDEDE;
}

.pp1 .left .top>p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #505050;
/* padding-bottom: 2.083vw; */
margin: 20px 0 2.083vw;

}

.pp1 .left .top ul,
.pp1 .left .top li{
    padding-bottom: 10px;
}

.pp1 .left li{
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #505050;
display: flex;
align-items: center;
}

.pp1 .left li::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    /* transform: translateY(100%); */
    left: 0;
    top: 8px;
    background: #0028AA;
}

.pp1 .right{
    width: 48%;
}

.pp2{
    padding: 4.167vw 17.708vw;
    display: flex;
    justify-content: space-between;
}

.pp2 .left-nav{
    width: 23%;
}

.pp2 .left-nav li.on{
    color: #2B2E2E;
    opacity: 1;
}

.pp2 .left-nav li{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 1.25vw;
    margin-bottom: 20px;
    color: #505050;
    opacity: 0.8;
}

.pp2 .right-box{
    width: 77%;
}
.pp2 .right-box h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 1.667vw;
color: #2B2E2E;
}

.pp2 .right-box h2{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 1.667vw;
    color: #0028AA;
    margin-top: 2.083vw;
    margin-bottom: 20px;
}

.pp2 .right-box .text-box p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #505050;

}

.pp2 .right-box .text-box{
    margin-top: 20px;
}

.pp2 .right-box .text-box img{
    margin: 20px 0;
}

.pp2 .right-box>p{
    margin-top: 20px;
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #505050;
}

.pp2 .right-box .item:not(:nth-last-child(1)){
    padding-bottom: 2.083vw;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 2.083vw;
}

.pp2 .right-box .item .main-box p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
}

.pp2 .right-box .item .main-box h3{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 10px;
}

.pp2 .right-box .download-item{
    position: relative;
    width: 41.5%;
}

.pp2 .right-box .main-box{
    padding: 20px;
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pp2 .duijiao{
    right: 0;
    top: 0;
    position:absolute;
    border-bottom: 32px solid #DEDEDE;
    border-right: 35px solid transparent;
}

.pp2 .download-box{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.pp3 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;

}

.pp3 .box{
    margin-top: 2.083vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pp3 .box .item{
    width: 48%;
    position: relative;
    margin-bottom: 2.083vw;
}

.pp3 .box .item img{
    width: 100%;
}

.pp3 .box .item .text-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.083vw;
}

.pp3 .box .item .text-box .date{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.pp3 .box .item .text-box p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #FFFFFF;
margin-top: 8px;
}

.pp3 .box .item .text-box span{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.pp3 .box .item .text-box .more{
    position: relative;
     max-width: 70px;
     z-index: 10;
}

.pp3 .box .item .text-box .more::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(/static/img/right-fff.png);
    background-repeat: no-repeat;
    left: 105%;
    top: 50%;
    transform: translateY(-25%);
    transition: all 0.3s;
}

.pp3 .box .item .text-box .more:hover::before{
    left: 120%;
}

.pp3 .box .item .text-box .row{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.pp3 .box .item .text-box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pp3 .box .item .text-box .img{
    opacity: 0;
    padding: 2px 20px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.pp3 .box .item:hover .text-box .img{
    opacity: 1;
}

.s1 .bottom{
    height: 6.25vw;
    background: #2B2E2E;
    position: relative;
    z-index: 10;
}

.s1 .row-pc>div{
    position: relative;
    width: 20%;
    height: 42.19vw;
}

.s1 .row-pc a{
    height: 100%;
    width: 100%;
    display: block;
}

.s1 .row-pc{
    display: flex;
    flex-wrap: wrap;
}

.s1 .row .item{
    position: relative;
}

.s1 .row .item a{
    position: relative;
}

.s1 .row .item:nth-last-child(1){
    position: relative;
    top: 0;
    width: 100%;
    transition: width 0.3s;
}

.s1 .row-pc .item:hover{
    width: 125%;
    z-index: 10;
}

.s1 .row .item:hover::before{
    background: rgba(0, 40, 170, 0.6);
}

.s1 .row-pc>div:nth-child(5n) a:hover{
    position: absolute;
    width: 125%;
    right: 0;
    z-index: 10;
}

.s1 .row .item .img{
    position: relative;
    display: flex;
}

.s1 .row .item .img img{
    width: 100%;
}

.s1 .lunbo-phone{
    display: none;
}

.s1 .row .item::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36));
}

.s1 .row .item:hover:before{
    background: rgba(0, 40, 170, 0.6);
}


.s1 .text-box{
    position: absolute;
    font-family: 'Source Han Sans CN';
    /* font-style: normal; */
    font-weight: bold;
    font-size: 1.667vw;
    color: #FFFFFF;
    top: 50%;
    width: 90%;
    text-align: center;
    left: 50%;
    transform: translate(-50%,-50%);
}


.s1 .row .item{
    display: block;
}

.s1 .text-box .more{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 20px;
    position: relative;
}

.s1 .text-box .more::before {
    position: absolute;
    content: "";
    top: 0;
    left: 60%;
    width: 30px;
    height: 100%;
    background-image: url(/static/img/right-fff.png);
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s;
}



.s1 .text-box .txt{
    margin-top: 20px;
    display: none;
}

.s1 .text-box .txt p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
text-align: center;
color: #FFFFFF;
}

.about-nav.on{
    position: fixed;
    z-index: 20;

}

.sp1 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;

}

.sp1 p{
    margin-top: 1.563vw;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #505050;
}

.sp2{
    background: #FAFAFA;
}

.sp2 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;
}

.sp2 .row{
    margin-top: 2.083vw;
    display: flex;
    justify-content: space-between;
}

.sp2 .row .item{
    background: #FFFFFF;
    box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.03);
    padding: 2.083vw;
    width: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.sp2 .row .item:hover{
    background: #0028AA;
}

.sp2 .row .item:hover p{
    color: #FFFFFF;
}

.sp2 .row .item p{
    transition: all 0.3s;
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 18px;
text-align: center;

color: #2B2E2E;
margin-top: 40px;
}

.sp3 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;

}

.sp3 .box{
    margin-top: 2.083vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sp3 .box .item{
    width: 48%;
    position: relative;
    margin-bottom: 2.083vw;
}

.sp3 .box .item .text-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.083vw;
}

.sp3 .box .item .text-box .date{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.sp3 .box .item .text-box p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #FFFFFF;
margin-top: 8px;
}

.sp3 .box .item .text-box span{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.sp3 .box .item .text-box .more{
    position: relative;
     max-width: 70px;
     z-index: 10;
}

.sp3 .box .item .text-box .more::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(/static/img/right-fff.png);
    background-repeat: no-repeat;
    left: 105%;
    top: 50%;
    transform: translateY(-25%);
    transition: all 0.3s;
}

.sp3 .box .item .text-box .more:hover::before{
    left: 120%;
}

.sp3 .box .item .text-box .row{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sp3 .box .item .text-box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sp3 .box .item .text-box .img{
    opacity: 0;
    padding: 2px 20px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.sp3 .box .item:hover .text-box .img{
    opacity: 1;
}

.sp3 .page-box{
    display: flex;
    justify-content: center;
}

.sp3 .page-box .page-item{
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    margin: 0 10px;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
    cursor: pointer;
}

.sp3 .page-box .page-item.on{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.sp3 .page-box .page-item:hover{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.sp4{
    background: #F7F7F7;
    overflow: hidden;
}

.sp4 .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sp4 .title h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;
}

.sp4 .title a{
    width: 182px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.sp4 .title a:hover,
.sp4 .left a:hover{
    background: #0028AA;
    border-color: #0028AA;
    color: #FFFFFF;
}

.sp4 .lunbo-box{
    margin-top: 2.083vw;
}

.sp4 .lunbo-box .swiper-slide{
    display: flex;
    background: #FFFFFF;
}

.sp4 .left{
    width: 40%;
    padding: 3.125vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sp4 .left h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 1.667vw;
line-height: 48px;
color: #2B2E2E;
}

.sp4 .left p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #505050;
    margin-top: 2.083vw;
    max-width: 350px;
}

.sp4 .left a{
    width: 150px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.sp4 .right{
    width: 60%;
}

.sp4 .swiper{
    position: relative;
}

.sp4 .lunbo-anniu{
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
}

.sp4 .lunbo-anniu .h3-button-prev,
.sp4 .lunbo-anniu .h3-button-next{
    width: 46px;
    height: 46px;
    border: 1px solid #2B2E2E;
    position: absolute;
    cursor: pointer;
}

.sp4 .lunbo-anniu .h3-button-prev{
    left: -4.688vw;
    background-image: url(/static/img/lunbo-left.png);
    background-repeat: no-repeat;
    background-position: center;
}

.sp4 .lunbo-anniu .h3-button-next{
    right: -4.688vw;
    background-image: url(/static/img/lunbo-right.png);
    background-repeat: no-repeat;
    background-position: center;
}

.sap1 {
    display: flex;
    justify-content: space-between;
}

.sap1 .left{
    width: 46%;
}

.sap1 .right{
    width: 50%;
}

.sap1 .left h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 2.292vw;
    color: #2B2E2E;
}

.sap1 .left .date{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8D8D8D;
    margin-top: 15px;
    display: block;
}

.sap1 .left .text-box{
    margin-top: 1.667vw;
}

.sap1 .left .text-box h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 18px;
color: #2B2E2E;
}

.sap1 .left .text-box p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #8D8D8D;
margin-top: 6px;
padding-bottom: 20px;
max-width: 11.979vw;
}

.sap1 .left .row{
    display: flex;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 20px;
}

.sap1 .left .row .item{
    width: 50%;
}

.sap2{
    background: #FAFAFA;
}

.sap2 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;
}

.sap2 .lunbo1{
    margin-top: 2.083vw;
}

.sap2 .lunbo1 .box{
    display: flex;
}

.sap2 .lunbo1 .left{
    padding: 2.083vw;
    width: 44%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFFFFF;
}

.sap2 h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 1.667vw;
color: #0028AA;
}

.sap2 .lunbo1 .left p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #2B2E2E;
margin-top: 20px;
}

.sap2 .lunbo1 .right{
    width: 56%;
}

.sap2 .sap21-pagination{
    margin-top: 2.083vw;
    text-align: center;
}

.sap2 .maidden{
    margin-top: 4.167vw;
}

.sap2 .maidden .row{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #DEDEDE;
}

.sap2 .maidden .row .item{
    width: 50%;
}

.sap2 .maidden .row h3{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 18px;
color: #2B2E2E;
}

.sap2 .maidden .row p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #8D8D8D;
margin-top: 10px;
}

.sap2 .bottom{
    margin-top: 3.125vw;
}

.sap2 .bottom .row{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sap2 .bottom .row .item{
    width: 48%;
    background: #FFFFFF;
    margin-bottom: 2.083vw;
    padding: 2.083vw;
}

.sap2 .bottom .row .item .num{
    font-family: 'Gotham';
font-style: normal;
font-weight: 700;
font-size: 4.063vw;
color: #231815;
display: flex;
align-items: flex-start;
}



.sap2 .bottom .row .item .num img{
    margin-top: 20px;
    margin-left: 1.302vw;
}

.sap2 .bottom .row .main-top{
    display: flex;
    justify-content: space-between;
}

.sap2 .bottom .row .bottom-text{
    margin-top: 3.125vw;
}

.sap2 .bottom .row .bottom-text h4{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #231815;
}

.sap2 .bottom .row .bottom-text p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #505050;
margin-top: 20px;
}

.n1{
    margin: 2.083vw 17.708vw 4.167vw;
}

.n1 .new-nav{
    display: flex;
}

.n1 .new-nav .item{
    padding: 5px;
    display: flex;
    width: 150px;
    height: 46px;
    border: 1px solid #2B2E2E;
    margin-right: 20px;
    transition: all 0.3s;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
}

.n1 .new-nav .item.on,
.n1 .new-nav .item:hover{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.n1 .new-nav .item a{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.n1 .new-main{
    display: flex;
    justify-content: space-between;
    margin-top: 2.083vw;
}

.n1 .new-main .left-box{
    width: 67%;
}

.n1 .new-main .left-box .item{
    margin-bottom: 20px;
}

.n1 .new-main .left-box .item img{
    width: 100%;
}

.n1 .new-main .left-box .item a{
    display: flex;
}

.n1 .new-main .left-box .item a .text-box{
    margin-left: 1.667vw;
    width: 60%;
}

.n1 .new-main .left-box .item a .text-box .date{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #8D8D8D;
}

.n1 .new-main .left-box .item a .text-box h2{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2B2E2E;
    margin-top: 10px;
    transition: all 0.3s;
}

.n1 .new-main .left-box .item a .text-box p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8D8D8D;    
    margin-top: 15px;
}
.n1 .new-main .left-box .item a .img{
    overflow:hidden;
    display: flex;
    align-items: center;
    width: 31%;
}

.n1 .new-main .left-box .item a img{
    transition: all 0.3s;
}

.n1 .new-main .left-box .item a:hover img{
    transform: scale(1.1);
}

.n1 .new-main .left-box .item a:hover h2{
    color: #0028AA;
}

.n1 .new-main .right-box{
    width: 30%;
}

.n1 .new-main .right-box h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 700;
font-size: 1.25vw;
color: #2B2E2E;
}

.n1 .new-main .right-box .item-box{
    margin-top: 12px;
    background: #FAFAFA;
    padding: 0 20px ;
}

.n1 .new-main .right-box .item-box .item{
    padding: 20px 0;
}

.n1 .new-main .right-box .item-box .item:not(:nth-last-child(1)){
    border-bottom: 1px solid #DEDEDE;
}

.n1 .new-main .right-box .item-box .item h3{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.n1 .new-main .right-box .item-box .item .date{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8D8D8D;
    margin-top: 8px;
}

.n1 .new-main .right-box .item-box .item a:hover h3{
    color: #0028AA;
}

.n1 .page-box{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.n1 .page-box .page-item{
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    margin: 0 10px;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
    cursor: pointer;
}

.n1 .page-box .page-item.on{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.n1 .page-box .page-item:hover{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.np1{
    padding: 3.125vw 17.708vw 4.167vw;
}

.np1 .box{
    display: flex;
    justify-content: space-between;
}

.np1 .left-box{
    width: 67%;
}

.np1 .title{
    border-bottom: 1px solid #DEDEDE;
}

.np1 .left-box h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 700;
font-size: 1.667vw;
color: #2B2E2E;
}

.np1 .left-box .date{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #8D8D8D;
margin-top: 15px;
display: block;
padding-bottom: 15px;
}

.np1 .main{
    margin-top: 15px;
}

.np1 .main p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #8D8D8D;
}

.np1 .main img{
    margin: 20px 0;
    width: 100%;
}

.np1 .right-box{
    width: 30%;
}

.np1 .right-box h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 700;
font-size: 1.25vw;
color: #2B2E2E;
}

.np1 .right-box .item-box{
    margin-top: 12px;
    background: #FAFAFA;
    padding: 0 20px ;
}

.np1 .right-box .item-box .item{
    padding: 20px 0;
}

.np1 .right-box .item-box .item:not(:nth-last-child(1)){
    border-bottom: 1px solid #DEDEDE;
}

.np1 .right-box .item-box .item h3{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.np1 .right-box .item-box .item a:hover h3{
    color: #0028AA;
}

.np1 .right-box .item-box .item .date{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8D8D8D;
    margin-top: 8px;
}

.np2{
    padding: 4.167vw 17.708vw;
    background: #FAFAFA;
}

.np2 .img{
    overflow: hidden;
}

.np2 img{
    width: 100%;
    transition: all 0.3s;
}

.np2 .title{
    display: flex;
    justify-content: space-between;
}

.np2 .lunbo-box{
    margin-top: 20px;
}

.np2 .title h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 2.292vw;
    color: #2B2E2E;
}

.np2 .title a{
    width: 150px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
}

.np2 .title a:hover{
    background: #0028AA;
    color: #FFFFFF;
}

.np2 .text-box{
    padding: 1.302vw;
    background: #FFFFFF;
}

.np2 .lable-date{
    display: flex;
    justify-content: space-between;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8D8D8D;
}

.np2 .text-box h3{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 20px;
line-height: 30px;
transition: all 0.3s;
color: #2B2E2E;
margin: 20px 0;
}

.np2 .text-box p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8D8D8D;
}

.np2 .lunbo-box .swiper-slide a:hover h3{
    color: #0028AA;
}

.np2 .lunbo-box .swiper-slide a:hover img{
    transform: scale(1.1);
}

.m1{
    padding: 2.083vw 17.708vw 6.25vw;
}

.m1 .m1-nav{
    display: flex;
}

.m1 .m1-nav .item{
    border: 1px solid #2B2E2E;
    padding: 11px 2.24vw;
    margin-right: 20px;
    transition: background 0.3s;
    transition: color 0.3s;
}

.m1 .m1-nav .item:hover{
    background: #0028AA;
    color: #FFFFFF;
}

.m1 .m1-nav .item.on{
    background: #0028AA;
    color: #FFFFFF;
}

.m1 .main-box p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
}

.pp2 .main-box .download-img a,
.m1 .main-box .download-img a{
    display: flex;
}

.pp2 .download-item:hover .download-img a .text,
.m1 .download-item:hover .download-img a .text{
    opacity: 1;
}

.pp2 .main-box .download-img a .text,
.m1 .main-box .download-img a .text{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s;
}

.m1 .main-box h3{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 10px;
}

.m1 .download-item{
    position: relative;
    width: 32%;
    margin-bottom: 2.083vw;
}

.m1 .main-box{
    padding: 20px;
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.m1 .duijiao{
    right: 0;
    top: 0;
    position:absolute;
    border-bottom: 1.667vw solid #DEDEDE;
    border-right: 1.823vw solid transparent;
}

.m1 .download-box{
    margin-top: 2.083vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.m1 .page-box{
    display: flex;
    justify-content: center;
}

.m1 .page-box .page-item{
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    margin: 0 10px;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
    cursor: pointer;
}

.m1 .page-box .page-item.on{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.m1 .page-box .page-item:hover{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.c1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 17.708vw;
}

.c1 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;
margin-bottom: 1.563vw;
}

.c1 .box-item{
    display: flex;
    align-items: flex-start;
}

.c1 .box-item img{
    margin-top: 5px;
    margin-right: 5px;
}

.c1 .box-item .box span{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #4A4A4A;
}

.c1 .box-item .box h3{
    font-family: 'Gotham bold';
    font-style: normal;
    font-weight: bold;
    font-size: 1.25vw;
    margin-bottom: 20px;
    color: #2B2E2E;
}

.c1 .top .box-item:nth-child(3){
    margin: 18px 0 10px;
}
.c1 .top .box-item:nth-child(4){
    margin: 18px 0 10px;
}

.c1 .left-box{
    width: 22%;
}

.c1 .right-box{
    width: 74%;
}

.c1 .box-item:nth-last-child(1) .box{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.c1 .box-item .box img{
    margin-top: 0;
    margin-right: 10px;
}

#container{
    height: 35.938vw;

}

.amap-info .info-middle img{
    margin-bottom: 15px;
}
.amap-info .info-bottom{
    border-top-color: #fff !important;
}

.c2{
    padding: 7.552vw 17.708vw;
}

.c2 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #FFFFFF;

}

.c2 .left-box>p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 18px;
color: #FFFFFF;
margin-top: 1.458vw;
}

.c2{
    position: relative;
    display: flex;
    justify-content: space-between;
}

.c2::before{
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(87.54deg, rgba(0, 0, 0, 0.8) 14.84%, rgba(0, 0, 0, 0.26) 97.62%);
}

.c2 .left-box,
.c2 .right-box{
    position: relative;
}

.c2 .left-box{
    width: 40%;
}

.c2 .right-box{
    width: 55%;
}

.c2 .box{
    margin-top: 2.083vw;
}

.c2 .box .item{
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.c2 .box .item span{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 27px;
color: #FFFFFF;
}

.c2 .box .item p{
    font-family: 'Gotham';
font-style: normal;
font-weight: 700;
font-size: 1.25vw;
color: #FFFFFF;
    margin-top: 20px;
    padding-bottom: 20px;
}

.c2 .row{
    display: flex;
    justify-content: space-between;
}

.c2 .row .input{
    width: 48%;
    height: 60px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.c2 .row .input.err-input::placeholder{
    color: #f00;
}

.c2 .row .input::placeholder{
    font-family: 'Noto Sans SC';
font-style: normal;
font-weight: 400;
font-size: 16px;
color: #868789;

}

.c2 textarea{
    width: 100%;
    padding: 15px 20px;
    height: 160px;
}

.c2 textarea::placeholder{
    font-family: 'Noto Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #868789;
    
}

.c2 .right-box a{
    background: #0028AA;
    width: 100%;
    height: 60px;
    display: flex;
    margin-top: 20px;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
}

.c3{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c3 .left-box{
    width:40%
}

.c3 .right-box{
    width: 55%;
}

.c3 h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 2.292vw;
color: #2B2E2E;
margin-bottom: 1.563vw;
}

.c3 p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 18px;
color: #505050;
max-width: 450px;
margin-bottom: 20px;
}

.c3 p a{
    color: #0028AA;
}

.c3 .buttom{
    margin-top: 4.69vw;
    display: flex;
    width: 182px;
    height: 46px;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.c3 .buttom:hover{
    color: #FFFFFF;
    background: #0028AA;
}

.search-box{
    padding:3.75vw 35.469vw;
    text-align: center;
    width: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    height: 30%;
    z-index: 1000;
    background: #FFFFFF;
    transition: top 0.5s;
}

.search-box h2{
    margin-bottom: 20px;
}

.search-box .main{
    position: relative;
}

.search-box .main img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    cursor: pointer;
}

.search-box input{
    background: #FAFAFA;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    padding-left: 1.667vw;
}

.search-box input::placeholder{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: bold;
font-size: 18px;
color: #505050;
}

.search-box .close{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 1.927vw;
    right: 6.25vw;
    cursor: pointer;
}

.search-box .close:hover ::before,
.search-box .close:hover ::after{
    transform: (180deg);
}

.search-box .close::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    transform: rotate(-45deg);
}
.search-box .close::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    background: #000;
    transform: rotate(45deg);
}

.list-main{
    padding: 3.125vw 17.708vw;
}

.list-main h1{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.667vw;
color: #2B2E2E;
}

.list-main h1 span{
    color: #0028AA;
    font-weight: bold;
}

.list-main .search-nav-box{
    display: flex;
    margin: 3.125vw 0;
}

.list-main .search-nav-box .item{
    width: 150px;
    height: 46px;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-right: 20px;
    border: 1px solid #2B2E2E;
    transition: all 0.3s;
}

.list-main .search-nav-box .item a{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.list-main .search-nav-box .item:hover{
    background: #0028AA;
    color: #FFFFFF;
}

.list-main .search-nav-box .item.on{
    background: #0028AA;
    color: #FFFFFF;
}

.list-main .box .item{
    padding-top: 20px;
    border-bottom: 1px solid #DEDEDE;
}

.list-main .box .item .row{
    display: flex;
    align-items: center;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #8D8D8D;
}

.list-main .box .item .row .ge{
    margin: 0 10px;
}

.list-main .box .item h2{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
color: #2B2E2E;
margin-top: 10px;
}

.list-main .box .item p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #8D8D8D;
    margin-top: 15px;
    padding-bottom: 20px;
}

.list-main .product-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.list-main .product-box .item{
    width: 32%;
    padding: 1.458vw;
    background: #FFFFFF;
box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.04);
margin-bottom: 20px;
}

.list-main .product-box .item.zhanwei{
        background:none;
    box-shadow: none;
}

.list-main .product-box .item p{
    font-family: 'Source Han Sans CN';
font-style: normal;
font-weight: 400;
font-size: 1.25vw;
text-align: center;
color: #2B2E2E;
}


.list-main .page-box{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.list-main .page-box .page-item{
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2B2E2E;
    margin: 0 10px;
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #2B2E2E;
    transition: all 0.3s;
    cursor: pointer;
}

.list-main .page-box .page-item.on{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.list-main .page-box .page-item:hover{
    background: #0028AA;
    border: 1px solid #0028AA;
    color: #FFFFFF;
}

.p-s h1{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 2.5vw;
    color: #2B2E2E;
    text-align: center;
}

.p-s p{
    font-family: 'Source Han Sans CN';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #2B2E2E;
    text-indent:2em;
}

header .down-big-box{
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 10;
    display: none;
    background: #FFFFFF;
    height: 300px;
}

.footer .bottom-box a:nth-last-child(2){
    margin: 0 20px;
}

