@charset "utf-8";

/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    --header_h: 6.25rem;
    --container: 14.8125rem;
    outline: none;
    font-weight: 500;
}

img {
    image-rendering: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.p_top {
    position: absolute;
    top: -6.25rem;
}

.bg {
    background: #0093D1;
}

.c {
    color: #0093D1;
}

.bgf8 {
    background: linear-gradient(180deg, #F7F8FC 0%, #F7F8FC 100%);
}

.bgcolor {
    background: #F8F8F8;
}

.bgcolor2 {
    background: #F7F8FC;
}

.ptb {
    padding-top: 7.1875rem;
    padding-bottom: 7.1875rem;
}

.phone_show_990,
.phone_show_767 {
    display: none;
}

.pagination {
    display: flex;
    padding-left: 0;
    margin: 1.25rem 0;
    border-radius: 0.25rem;
    justify-content: center;
}

.pagination>li {
    margin: 0 0.3125rem;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: 1px solid #DBDBDB;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

.pagination>li:hover {
    background: #0093D1;
    color: #fff;
    text-align: center;
}

.pagination>li:hover a {
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 3.125rem;
}

.pagination>li.active {
    background: #0093D1;
    color: #fff;
}

.pagination>li.active a {
    color: #fff;
}

.pagination>li.disabled:hover {
    color: #333;
    background: #FFF;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.grid3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gap15 {
    gap: 0.9375rem;
}

.gap20 {
    gap: 1.25rem;
}

.gap30 {
    gap: 1.875rem;
}

.gap40 {
    gap: 2.5rem;
}

.gap50 {
    gap: 3.125rem;
}

.foot-fot {
    background: #FFF;
    display: none;
}

.foot-fot .foota2 {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
}

.foot-fot .foota2 a {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
}

/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
    resize: none;
    border: none;
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
    /* ie8 */
    -ms-interpolation-mode: bicubic;
    /*为了照顾ie图片缩放失真*/
}

.search_more {
    margin-top: 1.25rem;
    font-size: 1rem;
    color: #444;
    position: relative;
    display: inline-block;
}

.search_more:hover {
    color: #0093D1;
}

.search_more:hover::before {
    background: #0093D1;
}

.search_more::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E5E5E5;
}

.line1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.line3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.line4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.trans {
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.er-ul {
    position: absolute;
    width: 14rem;
    left: 50%;
    box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
    right: 0;
    top: 100%;
    z-index: 999;
    background: #fff;
    transition: 400ms ease-in-out;
    transform: scaleY(0) translateX(-50%);
    transform-origin: top center;
    opacity: 0;
    border-radius: 0 0 0.5rem 0.5rem;
}

.er-ul li {
    line-height: 2.25rem;
    text-align: center;
    font-size: 0.875rem;
}

.er-ul li .san-ul {
    position: absolute;
    width: 19rem;
    left: 101%;
    box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
    right: 0;
    top: 0%;
    z-index: 999;
    background: #fff;
    transition: 400ms ease-in-out;
    transform: scaleY(0);
    transform-origin: top center;
    opacity: 0;
    border-radius: 0 0 0.5rem 0.5rem;
}

.er-ul li:hover>a {
    color: #0093D1 !important;
}

.er-ul li:hover .san-ul {
    transform: scaleY(1);
    opacity: 1;
}

.er-ul li:hover .san-ul>a {
    color: #0093D1 !important;
}

.er-ul li:nth-child(1) {
    padding-top: 0.625rem;
}

.er-ul li:last-child {
    padding-bottom: 0.625rem;
}

header .center>ul>li:hover .er-ul {
    transform: scaleY(1) translateX(-50%);
    opacity: 1;
}

header .nav_ul>li:hover .er-ul {
    transform: none;
    opacity: 1;
}

.logo_phone img {
    width: 7.5rem;
}

.cf {
    color: #fff !important;
}

.c0 {
    color: #000 !important;
}

.phone_weibu {
    background: #0A0A0A;
    display: none;
}

.phone_weibu .mobMenu>li>a {
    font-size: 14px;
    padding: 10px 0;
    color: #fff;
}

.phone_weibu .mobMenu>li {
    border-bottom: #424245 1px solid;
}

.phone_weibu .mobMenu>li>.subDepth>li>a {
    font-size: 1em;
    color: #9a9797;
    line-height: 28px;
}

.phone_weibu .mobMenu>li>a::before {
    background-color: #fff;
}

.phone_weibu .mobMenu>li>a::after {
    background-color: #fff;
}

.phone_weibu .mobMenu>li>.subDepth {
    display: none;
}

body {
    --container: 14.8125rem;
}

@media (max-width: 1600px) {
    body {
        --container: 10rem;
    }
}

@media (max-width: 1440px) {
    body {
        --container: 8rem;
    }
}

@media (max-width: 1366px) {
    body {
        --container: 7rem;
    }
}

@media (max-width: 1280px) {
    body {
        --container: 6rem;
    }
}

@media (max-width: 990px) {
    body {
        --container: 15px;
    }
}

.container {
    padding: 0 var(--container);
    width: 100%;
    max-width: 100%;
}

.container.container_l {
    padding: 0 0 0 var(--container);
}

.container.container_r {
    padding: 0 var(--container) 0 0;
}

/* 搜索 */
.search {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* background: #000; */
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
}

.search-box {
    width: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25%;
}

.inp {
    width: 100%;
    height: 6.25rem;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.inp::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.bu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    z-index: 9999;
}

.bu .iconfont {
    font-size: 3.125rem;
}

.search-con {
    position: absolute;
    right: 7%;
    top: 7%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.search-con .iconfont {
    font-size: 2.125rem;
    font-weight: 100;
}

.ds {
    cursor: pointer;
}

.fenxiang .flex {
    justify-content: flex-start;
}

.fenxiang .social-share li {
    float: left;
    margin-right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.375rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.fenxiang .social-share li a {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    line-height: 2.375rem;
    color: rgba(0, 0, 0, 0.5) !important;
    border: none !important;
    font-size: 1rem;
}

.serbtn {
    background: #0093D1;
}

.searchbox {
    border-color: #0093D1;
}

@media (max-width: 990px) {
    body {
        padding-bottom: 0;
        overflow: hidden;
    }
}

@media (max-width: 990px) {
    .pc-hidden {
        display: none;
    }

    .pc_show_990 {
        display: none;
    }

    .phone_show_990 {
        display: block;
    }
}

.m-hidden {
    display: none;
}

@media (max-width: 990px) {
    .m-hidden {
        display: block;
    }
}

.foot1-m {
    display: none;
    width: 100%;
    position: relative;
    z-index: 1;
}

/*手机底部*/
@media (max-width: 990px) {
    .foot1-m {
        display: block;
    }
}

/*手机端头部*/
.m-bm-head {
    position: fixed;
    top: 0;
    z-index: 999999;
    left: 0;
    right: 0;
    background: #000;
}

.m-bm-head .m-bm-head-box {
    position: relative;
    height: 60px;
}

.m-bm-head .m-bm-head-box .m-bm-logo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto 4%;
    max-width: 100%;
    height: 34px;
}

.m-bm-head .m-bm-head-box .m-bm-logo h1,
.m-bm-head .m-bm-head-box .m-bm-logo a {
    display: inline;
    font-size: 0;
}

.m-bm-head .m-bm-head-box .m-bm-logo img {
    height: 40px;
    width: 120px;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn {
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 4% auto 0;
    width: 20px;
    height: 15px;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span,
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
    display: block;
    height: 1.5px;
    width: 100%;
    background: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span {
    margin: 4.5px 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
    content: '';
    -webkit-transform-origin: 7.5%;
    -moz-transform-origin: 7.5%;
    -ms-transform-origin: 7.5%;
    -o-transform-origin: 7.5%;
    transform-origin: 7.5%;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.m-bm-head .phone_lanu {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 65px;
}

.m-bm-head .m-bm-menu {
    display: none;
    position: absolute;
    z-index: 9999;
    left: 0;
    right: 0;
    height: 100vh;
    background: #050505;
}

.m-bm-head .m-bm-menu .m-bm-menu-box {
    height: -webkit-calc(40vh);
    height: -moz-calc(40vh);
    height: calc(100vh - 60px);
    overflow: auto;
    padding-bottom: 80px;
}

.m-bm-head .mrhgxt {
    color: #fff;
    font: 500 1.125rem/60px;
    margin-left: 63%;
    position: relative;
    z-index: 9;
}

.m-bm-head .mrhgxt i {
    font-size: 1.125rem;
    margin-right: 0.25em;
}

.m-bm-nav .aniut.aniut_son {
    height: 35px;
    line-height: 35px;
}

.m-bm-nav>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.m-bm-nav>li>a {
    display: block;
    line-height: 50px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    padding: 0 4%;
    font-weight: 600;
}

.m-bm-nav>li>a span {
    display: inline-block;
    min-width: 40%;
    max-width: 50%;
    font-weight: 500;
}

.m-bm-nav>li .sec {
    display: none;
    padding: 10px 15px 10px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.m-bm-nav>li .sec a {
    display: block;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 35px;
}

.m-bm-nav>li .sec a span {
    display: inline-block;
    min-width: 40%;
    max-width: 50%;
}

.m-bm-nav>li .aniut {
    position: absolute;
    width: 40px;
    height: 50px;
    line-height: 50px;
    right: 2%;
    top: 0;
    text-align: center;
    z-index: 9;
}

.m-bm-nav>li .aniut i {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
}

.m-bm-head.white {
    background: #fff;
}

.m-bm-head.white .m-bm-head-box .m-bm-navbtn span,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
    background: #000;
}

.m-bm-head.white .m-bm-menu {
    background: #fff;
}

.m-bm-head.white .m-bm-nav>li,
.m-bm-head.white .m-bm-nav>li .sec {
    border-color: rgba(51, 51, 51, 0.1);
}

.m-bm-head.white .m-bm-nav>li>a,
.m-bm-head.white .m-bm-nav .aniut i,
.m-bm-head.white .m-bm-nav>li .sec a,
.m-bm-head.white .mrhgxt {
    color: #000;
}

.ajhhsd {
    color: #777;
    font: 500 1rem/1.5em;
    padding: 1em 0;
}

.ajhhsd a {
    color: #777;
}

.ajhhsd a:hover {
    color: #0093D1;
}

.ajhhsd span {
    padding: 0 0.3em;
}

.ajhhsd span:last-child {
    display: none;
}

.xw_ny_banner {
    background: #333;
    -o-background-size: cover;
    background-size: cover;
    padding: 13.5rem 0 7.25rem;
}

.xw_ny_banner h2 {
    color: #FFFFFF;
    font: 600 3.125rem/1.2em;
}

@media (max-width: 990px) {
    .xw_ny_banner {
        padding: 7.25rem 0;
    }
}

@media (max-width: 768px) {
    .xw_ny_banner {
        padding: 4rem 0;
    }

    .xw_ny_banner h2 {
        font-size: 1.8rem;
    }
}

.ssy-sskaa {
    margin-bottom: 2rem;
}

.ssy-sskaa .searchsa form {
    width: 50%;
    border: 1px solid #999;
    padding: 0 1.5em;
    border-radius: 2rem;
    margin: 0 auto;
}

.ssy-sskaa .searchsa form input {
    width: 70%;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 4rem;
    background: transparent;
    color: #999;
}

.ssy-sskaa .searchsa form button {
    width: auto;
    outline: none;
    border: none;
    background: transparent;
}

.ssy-sskaa .searchsa form button i {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 4rem;
    color: #333;
}

@media (max-width: 768px) {
    .ssy-sskaa {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .ssy-sskaa .searchsa form {
        width: 90%;
    }

    .pc_show_767 {
        display: none;
    }

    .phone_show_767 {
        display: block;
    }
}

@media (max-width: 768px) {
    .ssy-sskaa .searchsa form input {
        font-size: 1.125rem;
        line-height: 3rem;
    }
}

@media (max-width: 768px) {
    .ssy-sskaa .searchsa form button i {
        font-size: 1.35rem;
        line-height: 3rem;
    }
}

.sssjga {
    color: #333;
    font-weight: 200;
    font-size: 1.25rem;
    line-height: 1.5em;
    margin-bottom: 1em;
}

.ss-list li+li {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .ss-list li+li {
        margin-top: 1rem;
    }
}

.ss-list li div.img {
    width: 25%;
}

.ss-list li div.img a.img {
    display: block;
    border: 1px solid #f2f2f2;
}

.ss-list li .xw-nycont {
    width: 72%;
}

.ss-list li .xw-nycont h2 a {
    display: block;
    color: #656363;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.35em;
    overflow: hidden;
    margin-bottom: 0.2em;
}

.ss-list li .xw-nycont.w100 {
    width: 100%;
}

@media (max-width: 768px) {
    .ss-list li div.img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ss-list li .xw-nycont {
        width: 100%;
        margin-top: 1.2em;
    }
}

@media (max-width: 768px) {
    .ss-list li .xw-nycont h2 a {
        font-size: 1.125rem;
    }
}

.ss-list li .xw-nycont span {
    color: #0093D1;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5em;
}

.ss-list li .xw-nycont .datea {
    color: #999999;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5em;
}

.ss-list li .xw-nycont .p {
    color: #999999;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5em;
    margin-top: 0.5em;
}

.ss-list li .xw-nycont a.more-msl {
    margin-top: 1em;
}

@media (max-width: 990px) {
    body {
        padding: 60px 0 0 !important;
    }
}

/* end */
.list_website ul li {
    padding: 1.875rem 0;
    border-bottom: 1px solid #ddd;
}

.list_website ul li:first-child {
    padding-top: 0;
}

.list_website ul li .top {
    font-size: 1.375rem;
    line-height: 1.875rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.list_website ul li .bot {
    font-size: 1rem;
    line-height: 1.875rem;
    color: #717171;
    margin-right: 1.25rem;
}

@media (max-width: 1600px) {

    body,
    html {
        font-size: calc(100vw / 110);
    }

    .container {
        padding: 0 var(--container);
    }
}

@media (max-width: 1440px) {

    body,
    html {
        font-size: calc(100vw / 100);
    }

    .container {
        padding: 0 var(--container);
    }
}

@media (max-width: 1366px) {

    body,
    html {
        font-size: calc(100vw / 105);
    }

    .container {
        padding: 0 var(--container);
    }
}

@media (max-width: 1280px) {

    body,
    html {
        font-size: calc(100vw / 110);
    }

    .container {
        padding: 0 var(--container);
    }
}

@media (max-width: 990px) {

    body,
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--container);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--container);
    }
}

.phone {
    line-height: 60px;
    padding: 0 30px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    background: #000;
}

.phone.white {
    background: #fff;
}

.phone.white .left img {
    filter: brightness(0);
}

@media (max-width: 767px) {
    .phone {
        padding: 0 15px;
    }
}

.phone>.clearfix {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone.noLanuage .center {
    width: 60%;
    text-align: left;
    order: 1;
}

.phone.noLanuage .left {
    width: 40%;
    text-align: right;
    order: 2;
}

.phone.noLanuage .right {
    display: none;
}

.phone .left {
    width: 10%;
    text-align: right;
}

.phone .left img {
    height: 22px;
}

.phone .right {
    width: 10%;
    text-align: left;
}

.phone .right span {
    width: 1px;
    height: 10px;
    background: #1D1D1F;
    display: inline-block;
    margin: 0 5px;
    position: relative;
    top: 1px;
}

.phone .right a {
    font-weight: bold;
    font-size: 12px;
    color: #A7A7A8;
}

.phone .right a.c {
    color: #1D1D1F;
}

.phone .center {
    width: 80%;
    margin: 0 auto;
}

.phone .center img {
    height: 45px;
}

.sjj_nav {
    position: fixed;
    z-index: 9999;
    background: #FFF;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 40px;
    top: 0;
    left: -100%;
    overflow: auto;
    overflow-x: hidden;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.nav_show {
    left: 0;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.sjj_nav>ul>li:first-child {
    overflow: hidden;
    border-top: 0;
}

.sjj_nav>ul>li:first-child>a {
    width: 60%;
}

.sjj_nav>ul>li:first-child .language {
    width: 100%;
    overflow: hidden;
    line-height: 30px;
    margin-top: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
}

.sjj_nav>ul>li:first-child .language a {
    width: 25%;
    float: left;
    border-left: 1px #ddd solid;
    text-align: center;
    color: #999;
    display: inline-block;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.sjj_nav>ul>li:first-child .language a.active {
    background: #0093D1;
    color: #fff !important;
}

.sjj_nav>ul>li:first-child .language a:last-child {
    border-right: 1px #ddd solid;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    transform: rotate(0deg);
}

.sjj_nav ul li {
    position: relative;
    line-height: 40px;
    font-size: 14px;
}

.sjj_nav>ul>li:last-child {
    border-bottom: 1px #ddd solid;
}

.sjj_nav ul li ul {
    display: none;
}

.sjj_nav ul li i svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #0093D1;
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px;
}

.sjj_nav .top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #FFF;
}

.sjj_nav .top .ta {
    text-align: left;
}

.sjj_nav .top .ta img {
    height: 45px;
}

.sjj_nav .top .fr img {
    height: 22px;
}

.sjj_nav .bot {
    padding: 25px 20px 0;
    margin-top: 60px;
    height: calc(100% - 60px);
    overflow: scroll;
}

.sjj_nav .bot>li:first-child {
    margin-bottom: 0px;
}

.sjj_nav .bot>li:first-child input {
    padding-left: 28px;
    width: 100%;
    font-size: 14px;
    color: #a7a7a7;
    line-height: 35px;
    border: 1px solid #A7A7A8;
    background: transparent;
}

.sjj_nav .bot>li:first-child button {
    background: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 28px;
    height: 100%;
    border: none;
}

.sjj_nav .bot>li:first-child button .iconfont {
    position: static;
    text-align: center;
    color: #2F2D2D;
    font-size: 16px;
    padding: 0;
    border: none;
}

.sjj_nav .bot>li {
    font-size: 18px;
    line-height: 20px;
    color: #2F2D2D;
    border-bottom: none !important;
    margin-bottom: 30px;
}

.sjj_nav .bot>li>ul {
    padding-left: 1.25rem;
}

.sjj_nav .bot>li>div>a {
    width: calc(100% - 3.75rem);
}

.sjj_nav .bot>li>a {
    display: inline-block;
}

.sjj_nav .bot>li img {
    height: 30px;
}

.sjj_nav .bot>li .list .left {
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.9px;
    color: #2F2D2D;
    float: left;
}

.sjj_nav .bot>li .list .left a {
    color: #2F2D2D;
}

.sjj_nav .bot>li .list .right.w100 {
    width: 100%;
    float: none;
    padding-bottom: 20px;
}

.sjj_nav .bot>li .list .right {
    width: 80%;
    float: right;
    font-size: 14px;
    color: #2F2D2D;
    line-height: 20px;
}

.sjj_nav .bot>li .list .right a {
    color: #2F2D2D;
    margin-bottom: 18px;
}

.sjj_nav .bot>li ul {
    margin-top: 20px;
}

.sjj_nav .bot>li>div {
    color: #2F2D2D;
    position: relative;
    padding-bottom: 8px;
    line-height: 1.875rem;
    display: flex;
    align-items: center;
}

.sjj_nav .bot>li>div>a {
    color: #2F2D2D;
}

.sjj_nav .bot>li>div .iconfont {
    width: 3.75rem;
    text-align: right;
    display: block;
    font-size: 1rem;
    color: #2F2D2D;
}

.sjj_nav .bot>li>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    background: #a7a7a7;
}

.sjj_nav .bot>li:hover>a::before,
.sjj_nav .bot>li.active>a::before {
    width: 100%;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.sjj_nav .top .container {
    padding: 0 40px;
}

@media (max-width: 767px) {
    .sjj_nav .top .container {
        padding: 0 15px;
    }
}

.rightfix {
    bottom: 10%;
    top: auto;
    transform: translateY(0);
    right: 1.25rem;
    width: auto;
    box-shadow: none;
    border: none;
    background: transparent;
}

.rightfix li {
    cursor: pointer;
    width: 3.375rem;
    height: 3.375rem;
    border-radius: 50%;
    line-height: 3.375rem;
    padding: 0;
    border: none;
    background: transparent;
    margin-bottom: 1.25rem;
    position: relative;
    border: none !important;
}

.rightfix li .iconfont {
    font-size: 1.375rem;
    display: block;
    color: #fff;
    border-radius: 50%;
    background: #0074CA;
}

.rightfix li:hover .iconfont {
    background: #ec8402;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.rightfix li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: #DEDDDD;
    width: 1.1875rem;
}

.rightfix li:last-child::before {
    display: none;
}

.rightfix li::before {
    display: none;
}

.fixright_li_last {
    display: none;
}

.right_div.img {
    min-width: 7.5rem !important;
}

.right_div.img img {
    height: 7.5rem;
    object-fit: contain;
}

@-webkit-keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-moz-keyframes sticky {
    0% {
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -moz-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-o-keyframes sticky {
    0% {
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

header {
    position: fixed;
    line-height: 6.25rem;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: #FFF;
    backdrop-filter: blur(0.4688rem);
}

header:hover,
header.active {
    background: #fff;
}

header:hover .center ul li a,
header.active .center ul li a {
    color: #000;
}

header:hover .center ul li a::before,
header.active .center ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0093D1;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

header:hover .center ul li.active>a,
header.active .center ul li.active>a {
    color: #0093D1;
}

header:hover .center ul li.active>a::before,
header.active .center ul li.active>a::before {
    width: 100%;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

header:hover .lanuage a,
header.active .lanuage a {
    color: #000;
}

header:hover .ds1 .iconfont,
header.active .ds1 .iconfont {
    color: #000;
}

header:hover .ds1:hover,
header.active .ds1:hover {
    cursor: pointer;
}

header:hover .logo img,
header.active .logo img {
    filter: unset;
}

header.active {
    animation: sticky 0.65s;
}

@media (max-width: 990px) {
    header {
        display: none;
    }
}

header .logo img {
    height: 4rem;
}

header .logo img img {
    filter: brightness(0) invert(1);
}

header .ds1 .iconfont {
    font-size: 1.75rem;
    display: block;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

header .lanuage {
    margin-left: 3.125rem;
    display: block;
}

header .lanuage a {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
    display: flex;
    align-items: center;
}

header .lanuage a .iconfont {
    font-size: 1.5rem;
    padding-right: 0.4375rem;
}

header .lanuage a.c {
    color: #0093D1;
}

header .center>ul>li {
    float: left;
    padding: 0 1.25rem;
}

header .center>ul>li>a {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.8);
    position: relative;
}

header .center>ul>li>a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

header .center>ul>li:hover>a {
    color: #0093D1;
}

header .center>ul>li:hover>a::before {
    width: 100%;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

header .center>ul>li.active>a {
    color: #0093D1;
}

header .center>ul>li.active>a::before {
    width: 100%;
    background-color: #0093D1;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFF;
}

footer .foot_top {
    padding-top: 5.125rem;
    padding-bottom: 4.6875rem;
}

footer .foot_top .left {
    color: #fff;
}

footer .foot_top .left .logo {
    width: 7.3125rem;
}

footer .foot_top .right {
    flex: 1;
    padding-left: 5rem;
    padding-right: 5rem;
}

footer .foot_top .right .footnav {
    display: flex;
    justify-content: space-between;
}

footer .foot_top .right .footnav .tt {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.125rem;
    font-weight: 500;
}

footer .foot_top .right .footnav .subfootnav {
    margin-top: 0.8125rem;
}

footer .foot_top .right .footnav .subfootnav .subfootli>a {
    color: rgba(0, 0, 0, 0.8);
    opacity: 0.6;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
}

footer .foot_top .right .footnav .subfootnav .subfootli>a:hover {
    font-weight: 600;
}

footer .foot_top .ewm_box {
    width: 8.125rem;
}

footer .foot_top .ewm_box .text {
    margin-top: 1.125rem;
    color: rgba(0, 0, 0, 0.4);
    font-family: "Noto Sans SC";
    font-size: .875rem;
    font-weight: 400;
}

footer .foot_middle {
    padding: 1.3125rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer .foot_middle .foot-contact {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .foot_middle .foot-contact li {
    display: flex;
    width: auto;
}

footer .foot_middle .foot-contact .icon {
    margin-right: 0.625rem;
    width: 1.625rem;
    height: 1.625rem;
}

footer .foot_middle .foot-contact p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    flex: 1;
}

footer .copyright {
    background-color: #0093D1;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    padding: 1.125rem 0 1rem;
}

footer .copyright a {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

footer .copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

footer .copyright .left span:nth-last-child(1) {
    display: none;
}

@-webkit-keyframes banscaleDraw {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    75% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes banscaleDraw {

    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
        /*开始为原始大小*/
    }

    25% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        /*放大1.1倍*/
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    75% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes banscaleDraw {

    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        -o-transform: scale(1);
        transform: scale(1);
        /*开始为原始大小*/
    }

    25% {
        -o-transform: scale(1.1);
        transform: scale(1.1);
        /*放大1.1倍*/
    }

    50% {
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

    75% {
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes banscaleDraw {

    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        /*开始为原始大小*/
    }

    25% {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
        /*放大1.1倍*/
    }

    50% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    75% {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.banner {
    overflow: hidden;
}

.banner .hover {
    position: absolute;
    bottom: 8.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: right;
}

.banner .hover .p1 {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 2.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.banner .hover .p2 {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 2rem;
    font-weight: 400;
    line-height: 3rem;
}

.banner .img {
    position: relative;
}

.banner .img::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 147, 209, 0) 56%, #0093d1 85%);
    position: absolute;
    top: 0;
    left: 0;
}

.banner .hover2 {
    position: absolute;
    right: 10%;
    bottom: 3.125rem;
}

.banner .swiper-slide.swiper-slide-active .img img {
    -webkit-animation-name: banscaleDraw;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 20s;
}

.banner .swiper-pagination {
    display: flex;
    align-items: center;
    bottom: 3.125rem;
    padding: 0 var(--container);
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: unset;
    opacity: 1;
    border: 1px solid #fff;
}

.banner .swiper-pagination-bullet {
    width: 2.875rem;
    height: 2.875rem;
    line-height: 2.875rem;
    margin-right: 1.1875rem;
    opacity: unset;
    background: unset;
    color: #FFF;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.5;
    border: none;
}

.banner .scroll {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    animation: xiangxia 2s infinite;
}

@keyframes xiangxia {
    0% {
        transform: translateX(-50%) translateY(-0.625rem);
    }

    50% {
        transform: translateX(-50%) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(0.625rem);
    }
}

.swiper-pagination {
    display: flex;
}

.swiper-button-next,
.swiper-button-prev {
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #0093D1;
    line-height: 3.25rem;
    text-align: center;
}

.swiper-button-next i,
.swiper-button-prev i {
    color: #fff;
    font-size: 1.5rem;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: -6.25rem;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: -6.25rem;
}

.swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.5);
    opacity: 1;
    background: unset;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #0093D1;
    border: unset;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.neibanner {
    position: relative;
}

.neibanner .neibanner_txt {
    position: absolute;
    bottom: 5.3125rem;
}

.neibanner .neibanner_txt.neibanner_txt22 {
    bottom: 8rem;
}

.neibanner .neibanner_txt h3 {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 2.75rem;
    font-weight: 700;
}

.neibanner .neibanner_txt h3 span {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 700;
}

.neibanner .neibanner_txt p {

    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 2.75rem;
}

.neibanner .tab_box {
    position: absolute;
    bottom: 5.3125rem;
    right: 0;
}

.neibanner .tab_box.tab_box22 {
    width: 100%;
    bottom: 3rem;
}

.neibanner .tab_box .tabul {
    display: flex;
    align-items: center;
    margin: 0 -1.5625rem;
}

.neibanner .tab_box .tabul .tabli {
    margin: 0 1.5625rem;
}

.neibanner .tab_box .tabul .tabli a {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.0625rem;
}

.neibanner .tab_box .tabul .tabli a::before {
    content: '';
    display: block;
    width: 0%;
    height: 0.125rem;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.neibanner .tab_box .tabul .tabli:hover a,
.neibanner .tab_box .tabul .tabli.active a {
    color: #fff;
}

.neibanner .tab_box .tabul .tabli:hover a::before,
.neibanner .tab_box .tabul .tabli.active a::before {
    width: 100%;
}

.mbxdh {
    z-index: 99;
}

.mbxdh .ajhhsd {
    display: flex;
    align-items: center;
}

.mbxdh .ajhhsd .i {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5625rem;
}

.mbxdh .ajhhsd .i img {
    width: 50%;
}

.mbxdh .ajhhsd a,
.mbxdh .ajhhsd span {
    color: #9A9A9A;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

.search-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99999999;
    top: 0;
    left: 0;
    display: none;
}

.search-box {
    display: none;
    width: 40%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 0.625rem;
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.search-box input[type="text"] {
    padding: 1.5625rem;
    border: unset;
    border-radius: 1.25rem;
    width: 100%;
    outline: none;
}

.search-box button {
    background: unset;
    color: #999;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 1.875rem;
    top: 1.4375rem;
}

.search-box button i {
    font-size: 1.25rem;
    color: #000;
    font-weight: 700;
}

.all_more {
    width: 8.75rem;
    height: 3.125rem;
    border-radius: 3.125rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    border: 2px solid #0093D1;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    cursor: pointer;
}

.all_more::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0093D1;
    position: absolute;
    left: 0;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.all_more span {
    position: relative;
    z-index: 2;
}

.all_more:hover {
    background-color: unset;
    color: #0093D1;
}

.all_more:hover::before {
    left: 100%;
}

.index_one {
    background-size: cover;
    padding-top: 10.3125rem;
    padding-bottom: 10.3125rem;
}

.index_one .left {
    padding-right: 6.4375rem;
}

.index_one .left h3 {
    position: relative;
    color: #2F2D2D;
    font-family: "Noto Sans SC";
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 1.6875rem;
}

.index_one .left h3::before {
    content: '';
    display: block;
    width: 2.375rem;
    height: 0.125rem;
    background-color: #0093D1;
    position: absolute;
    bottom: 0;
    left: 0;
}

.index_one .left .desc {
    color: #000;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2rem;
}

.index_one .right .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
}

.index_one .right .grid_box .grid_item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFF;
    padding: 1.875rem 1.875rem 2.3125rem 2.5rem;
    position: relative;
}

.index_one .right .grid_box .grid_item:hover .img {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.index_one .right .grid_box .grid_item:hover .num_box .icon {
    filter: brightness(0) invert(1);
}

.index_one .right .grid_box .grid_item:hover .num_box .text h3 span {
    color: #EDC300;
}

.index_one .right .grid_box .grid_item:hover .num_box .text h3 sub,
.index_one .right .grid_box .grid_item:hover .num_box .text h3 sup {
    color: #fff;
}

.index_one .right .grid_box .grid_item:hover .num_box .text p {
    color: #fff;
}

.index_one .right .grid_box .grid_item .img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transform: scale(0);
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.index_one .right .grid_box .grid_item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_one .right .grid_box .grid_item .num_box {
    position: relative;
    z-index: 2;
}

.index_one .right .grid_box .grid_item .num_box .icon {
    width: 3.75rem;
    height: 3.75rem;
}

.index_one .right .grid_box .grid_item .num_box .text h3 span {
    color: #BB0E39;
    text-align: justify;
    font-family: Inter;
    font-size: 3.75rem;
    font-weight: 700;
}

.index_one .right .grid_box .grid_item .num_box .text h3 sup {
    color: #595757;
    text-align: justify;
    font-family: Inter;
    font-size: 1.25rem;
    font-weight: 700;
    top: -1.5em;
    padding-left: 0.625rem;
}

.index_one .right .grid_box .grid_item .num_box .text h3 sub {
    color: #595757;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 700;
    left: -1em;
}

.all_title.tacenter h3 {
    text-align: center;
}

.all_title.tacenter h3::before {
    left: 50%;
    transform: translateX(-50%);
}

.all_title.white h3 {
    color: #fff;
}

.all_title.white h3::before {
    background-color: #fff;
}

.all_title h3 {
    color: #2F2D2D;
    font-family: "Noto Sans SC";
    font-size: 2.125rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.625rem;
}

.all_title h3::before {
    content: '';
    display: block;
    width: 2.375rem;
    height: 0.125rem;
    background-color: #0093D1;
    position: absolute;
    bottom: 0;
}

.all_title p {
    margin-top: 1.375rem;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.75rem;
    /* 127.273% */
}

.all_title .p {
    margin-top: 1rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.65;
    /* 191.667% */
}

.index_two {
    background: #F7FBFF;
    padding-top: 6.1875rem;
    padding-bottom: 5.5rem;
}

.index_two .pro_tab {
    display: flex;
    align-items: center;
    justify-content: center;
}

.index_two .pro_tab .pro_tabli {
    margin: 0 4.0625rem;
}

.index_two .pro_tab .pro_tabli.active a .text,
.index_two .pro_tab .pro_tabli:hover a .text {
    color: #0093D1;
    font-weight: 700;
}

.index_two .pro_tab .pro_tabli.active a .icon,
.index_two .pro_tab .pro_tabli:hover a .icon {
    filter: invert(49%) sepia(49%) saturate(5106%) hue-rotate(170deg) brightness(92%) contrast(101%);
}

.index_two .pro_tab .pro_tabli a {
    display: inline-flex;
    align-items: center;
}

.index_two .pro_tab .pro_tabli a .icon {
    width: 3.5rem;
    height: 3.5rem;
}

.index_two .pro_tab .pro_tabli a .text {
    padding-left: 0.625rem;
    color: #000;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    width: 7.5rem;
}

.index_two .content .swiper_box {
    display: none;
}

.index_two .content .swiper_box.active {
    display: block;
}

.index_two .content .swiper_box .swiper {
    position: relative;
    margin: 0 -1.25rem;
}

.index_two .content .swiper_box .swiper .swiper-slide {
    padding: 0 1.25rem;
}

.index_two .content .swiper_box .swiper .swiper-slide:hover .pro_box {
    box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 147, 209, 0.05);
    border: 1px solid #0093D1;
    background: linear-gradient(180deg, rgba(244, 250, 255, 0) 0%, #F4FAFF 100%), #FFF;
}

.index_two .content .swiper_box .swiper .swiper-slide .pro_box {
    background: #FFF;
    box-shadow: 0 0.25rem 0.9375rem 0 rgba(3, 110, 184, 0.05);
    padding: 3.625rem 3.25rem 2.625rem;
}

.index_two .content .swiper_box .swiper .swiper-slide .pro_box .text h3 {
    color: #000;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 500;
}

.index_two .content .swiper_box .swiper .swiper-slide .pro_box .text p {
    margin-top: 1.1875rem;
    color: #000;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.625rem;
}

.zd_erha {
    position: fixed;
    right: 1.82292%;
    bottom: 12%;
    z-index: 999;
    width: 3.75rem;
    background: #0093D1;
    border: none;
    box-shadow: 0.125rem 0.1875rem 0.375rem rgba(150, 148, 148, 0.25);
    border-radius: 1.875rem;
}

@media (max-width: 768px) {
    .zd_erha {
        display: none;
    }
}

.zd_erha .aat_list li {
    position: relative;
    z-index: 2;
    padding: 0.5rem 0;
}

.zd_erha .aat_list li i {
    font-size: 1.625rem;
    color: #fff;
}

.zd_erha .aat_list li svg {
    width: 1.625rem !important;
    height: 1.625rem !important;
    filter: brightness(0) invert(1);
}

.zd_erha .aat_list li+li:after {
    content: "";
    width: 50%;
    height: 1px;
    background: #DEDDDD;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hidden {
    display: none;
}

.zd_erha .aat_list li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    position: relative;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.zd_erha .aat_list li>a i {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zd_erha .aat_list li>a:hover {
    background: #f0f0f0;
}

.zd_erha .aat_list li>a:hover i {
    color: #0093D1;
}

.zd_erha .aat_list li>a:hover svg {
    filter: unset;
}

.zd_erha .aat_list li>a svg {
    width: 1.75rem;
    height: 1.75rem;
}

.zd_erha .aat_list li .cbl-cont {
    position: absolute;
    z-index: -1;
    padding: 0.5em 1rem;
    width: auto;
    right: -webkit-calc(115%);
    right: -moz-calc(115%);
    right: calc(110% + 5px);
    top: 10%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    -o-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
    box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
    color: #333;
    font-size: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.zd_erha .aat_list li .cbl-cont.erghgsb {
    width: 9.375rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.zd_erha .aat_list li .cbl-cont.erghgsb img {
    width: 100%;
}

.zd_erha .aat_list li:hover .cbl-cont {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.index_three {
    position: relative;
}

.index_three .i_box .i {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #0093D1;
    clip-path: polygon(100% 0, 100% 30%, 0 100%, 0 100%, 0 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.index_three .i_box .i:nth-child(2) {
    background-color: #EDC300;
}

.index_three .i_box .i:nth-child(3) {
    background-color: #BB0E39;
}

.index_three .i_box .i.active {
    display: block;
}

.index_three .row {
    align-items: center;
}

.index_three .left {
    padding-right: 2.5rem;
    padding-top: 4.375rem;
}

.index_three .left .tab_ul {
    position: relative;
}

.index_three .left .tab_ul::before {
    content: '';
    display: block;
    width: 1px;
    height: 35rem;
    border-left: 1px dashed rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 3.125rem;
    z-index: 1;
}

.index_three .left .tab_ul .tab_li {
    position: relative;
    z-index: 2;
    margin-bottom: 3.75rem;
}

.index_three .left .tab_ul .tab_li:nth-child(1).active a .icon,
.index_three .left .tab_ul .tab_li:nth-child(1):hover a .icon {
    border-color: #33a9da;
}

.index_three .left .tab_ul .tab_li:nth-child(1).active a .icon img,
.index_three .left .tab_ul .tab_li:nth-child(1):hover a .icon img {
    filter: invert(51%) sepia(60%) saturate(6614%) hue-rotate(174deg) brightness(99%) contrast(101%);
}

.index_three .left .tab_ul .tab_li:nth-child(2).active a .icon,
.index_three .left .tab_ul .tab_li:nth-child(2):hover a .icon {
    border-color: #f1cf33;
}

.index_three .left .tab_ul .tab_li:nth-child(2).active a .icon img,
.index_three .left .tab_ul .tab_li:nth-child(2):hover a .icon img {
    filter: invert(50%) sepia(80%) saturate(1413%) hue-rotate(23deg) brightness(123%) contrast(106%);
}

.index_three .left .tab_ul .tab_li:nth-child(3).active a .icon,
.index_three .left .tab_ul .tab_li:nth-child(3):hover a .icon {
    border-color: #BB0E39;
}

.index_three .left .tab_ul .tab_li:nth-child(3).active a .icon img,
.index_three .left .tab_ul .tab_li:nth-child(3):hover a .icon img {
    filter: invert(21%) sepia(69%) saturate(6380%) hue-rotate(328deg) brightness(68%) contrast(130%);
}

.index_three .left .tab_ul .tab_li a {
    display: inline-flex;
    align-items: center;
}

.index_three .left .tab_ul .tab_li a .icon {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    background-color: #fff;
    border: 0.3125rem solid rgba(0, 147, 209, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.index_three .left .tab_ul .tab_li a .icon img {
    width: 48%;
}

.index_three .left .tab_ul .tab_li a .text {
    flex: 1;
    padding-left: 1.25rem;
}

.index_three .left .tab_ul .tab_li a .text h3 {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
}

.index_three .left .tab_ul .tab_li a .text h3 i {
    color: #EDC300;
    font-size: 2.25rem;
    font-weight: 400;
    vertical-align: middle;
    opacity: 0;
    position: relative;
    right: -1.25rem;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    display: none;
}

.index_three .left .tab_ul .tab_li a .text p {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.875rem;
}

.index_three .right {
    padding-left: 4.375rem;
}

.index_three .right .ri_content .ri_box {
    display: none;
}

.index_three .right .ri_content .ri_box.active {
    display: block;
}

.index_three .right .ri_content .ri_box.active:nth-child(2) .text .top_flex .icon {
    filter: invert(50%) sepia(80%) saturate(1413%) hue-rotate(23deg) brightness(123%) contrast(106%);
}

.index_three .right .ri_content .ri_box.active:nth-child(2) .text .top_flex .tt {
    color: #EDC300;
}

.index_three .right .ri_content .ri_box.active:nth-child(3) .text .top_flex .icon {
    filter: invert(21%) sepia(69%) saturate(6380%) hue-rotate(328deg) brightness(68%) contrast(130%);
}

.index_three .right .ri_content .ri_box.active:nth-child(3) .text .top_flex .tt {
    color: #BB0E39;
}

.index_three .right .ri_content .ri_box .text {
    padding-right: var(--container);
    margin-top: -3.125rem;
}

.index_three .right .ri_content .ri_box .text .top_flex {
    display: flex;
    align-items: center;
}

.index_three .right .ri_content .ri_box .text .top_flex .icon {
    width: 3.125rem;
    filter: invert(51%) sepia(64%) saturate(5447%) hue-rotate(172deg) brightness(95%) contrast(101%);
}

.index_three .right .ri_content .ri_box .text .top_flex .tt {
    padding-left: 0.9375rem;
    color: #0093D1;
    font-family: "Noto Sans SC";
    font-size: 2rem;
    font-weight: 500;
}

.index_three .right .ri_content .ri_box .text .desc {
    margin-top: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2rem;
}

.index_four {
    padding-top: 6.5rem;
    background: #F7FBFF;
}

.index_four .accordion-container {
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.index_four .accordion-container .accordion-item {
    list-style: none;
    height: 37.5rem;
    transition: width 0.5s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index_four .accordion-container .accordion-item::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}

.index_four .accordion-container .accordion-item:nth-child(1)::before {
    background: linear-gradient(0deg, rgba(188, 13, 56, 0.6) 0%, rgba(188, 13, 56, 0.6) 100%);
}

.index_four .accordion-container .accordion-item:nth-child(2)::before {
    background: linear-gradient(0deg, rgba(0, 147, 209, 0.6) 0%, rgba(0, 147, 209, 0.6) 100%);
}

.index_four .accordion-container .accordion-item:nth-child(3)::before {
    background: linear-gradient(0deg, rgba(237, 195, 0, 0.6) 0%, rgba(237, 195, 0, 0.6) 100%);
}

.index_four .accordion-container .accordion-item:not(:hover) {
    width: 15.375rem;
}

.index_four .accordion-container .accordion-item:hover,
.index_four .accordion-container .accordion-item.active {
    width: 59.625rem;
}

.index_four .accordion-container .accordion-item:hover .accordion-title,
.index_four .accordion-container .accordion-item.active .accordion-title {
    display: none;
}

.index_four .accordion-container .accordion-item:hover::before,
.index_four .accordion-container .accordion-item.active::before {
    background: unset;
}

.index_four .accordion-container .accordion-item:hover .item_box,
.index_four .accordion-container .accordion-item.active .item_box {
    display: block;
}

.index_four .accordion-container .accordion-item .item_box {
    width: 65%;
    margin: 0 auto;
    display: none;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.index_four .accordion-container .accordion-item .item_box:hover .icon img {
    transform: rotateY(180deg);
}

.index_four .accordion-container .accordion-item .item_box .icon {
    width: 8.125rem;
    height: 8.125rem;
    border-radius: 50%;
    border: 1px dashed #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.index_four .accordion-container .accordion-item .item_box .icon img {
    width: 50%;
    backface-visibility: unset;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.index_four .accordion-container .accordion-item .item_box .text {
    padding-top: 2.1875rem;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.index_four .accordion-container .accordion-item .item_box .text h3 {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 500;
    text-align: center;
}

.index_four .accordion-container .accordion-item .item_box .text p {
    margin-top: 1.125rem;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2rem;
}

.index_four .accordion-container .accordion-item .item_box .text a.more {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: #0093D1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.index_four .accordion-container .accordion-item .item_box .text a.more i {
    font-size: 1.5rem;
    color: #fff;
}

.index_four .accordion-container .accordion-item .accordion-title {
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 500;
    z-index: 2;
    transform: rotate(90deg);
    white-space: nowrap;

}

.index_six {
    padding-top: 9.5625rem;
    padding-bottom: 15.625rem;
    background-size: cover;
}

.index_six .content {
    margin-top: 6.875rem;
}

.index_six .content .grid_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.index_six .content .grid_box .grid_item:hover .icon img {
    transform: rotateY(180deg);
}

.index_six .content .grid_box .grid_item .icon {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    border: 1.5px dashed #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.index_six .content .grid_box .grid_item .icon img {
    width: 45%;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    backface-visibility: unset;
}

.index_six .content .grid_box .grid_item .tit {
    margin-top: 2.1875rem;
}

.index_six .content .grid_box .grid_item .tit h3 {
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.index_six .content .grid_box .grid_item .tit p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}

.index_six .content .grid_box .grid_item .desc {
    margin-top: 0.875rem;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.index_seven {
    padding-top: 6.5rem;
    background: #F7FBFF;
}

.index_seven .content .grid_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.index_seven .content .grid_box .grid_item .over img {
    aspect-ratio: 440/320;
    object-fit: cover;
}

.index_seven .content .grid_box .grid_item .text {
    padding-top: 1.5rem;
}

.index_seven .content .grid_box .grid_item .text h3 {
    color: #333;
    text-align: justify;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
}

.index_seven .content .grid_box .grid_item .text p {
    margin-top: 1.1875rem;
    color: rgba(0, 0, 0, 0.5);
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.index_seven .content .grid_box .grid_item .text p.time {
    margin-top: 1rem;
    color: #A1A1A1;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
}

.list_contact_one {
    padding-bottom: 8.75rem;
}

.list_contact_one .left .title {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 3rem;
}

.list_contact_one .left .tag {
    width: 8.75rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    background: #0093D1;
    color: #FFF;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 700;
}

.list_contact_one .left .tag svg {
    width: 1.625rem !important;
    height: 1.625rem !important;
    margin-right: 0.6875rem;
}

.list_contact_one .left .tel {
    margin-top: 0.5625rem;
    color: #0093D1;
    font-family: Poppins;
    font-size: 3.25rem;
    font-weight: 700;
}

.list_contact_one .left ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.list_contact_one .left ul li .i {
    margin-right: 1.25rem;
}

.list_contact_one .left ul li .i svg {
    width: 1.625rem !important;
    height: 1.625rem !important;
}

.list_contact_one .left ul li .tt {
    color: #5F5F5F;
    font-family: Poppins;
    font-size: 1rem;
    font-weight: 400;
}

.list_contact_one .left .ewm_box {
    display: flex;
    align-items: center;
}

.list_contact_one .left .ewm_box .img {
    width: 8.625rem;
    height: 8.625rem;
}

.list_contact_one .left .ewm_box .text {
    padding-left: 0.625rem;
    color: rgba(0, 0, 0, 0.4);
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.list_contact_one .right #map {
    height: 33.125rem;
}

.leaflet-control,
.leaflet-top,
.leaflet-bottom {
    z-index: 990 !important;
}

.list_contact_two .row {
    align-items: center;
}

.list_contact_two .right {
    padding-left: 5.625rem;
}

.list_contact_two .right .msg-a1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.875rem;
}

.list_contact_two .right .msg-a1 .inpt input {
    width: 100%;
    height: 3.125rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFF;
    padding: 0 0.625rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

.list_contact_two .right .msg-a1 .inpt input::placeholder {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

.list_contact_two .right .msg-a3 {
    margin-top: 1.25rem;
}

.list_contact_two .right .msg-a3 .inpt {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFF;
    padding: 0.625rem;
}

.list_contact_two .right .msg-a3 .inpt p {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

.list_contact_two .right .msg-a3 .inpt textarea {
    flex: 1;
    border: none;
    color: rgba(0, 0, 0, 0.3);
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

.list_contact_two .right .msg-a3 .inpt textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

.list_contact_two .right .div_aghgha button {
    width: 10rem;
    height: 3.5rem;
}

.list_news_box .swipernews {
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
}

.list_news_box .swipernews .news_new_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_news_box .swipernews .news_new_box .left {
    width: 50%;
    padding-right: 2.25rem;
}

.list_news_box .swipernews .news_new_box .right {
    width: 50%;
    padding-left: 2.8125rem;
}

.list_news_box .swipernews .news_new_box .right h3 {
    color: #484848;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
}

.list_news_box .swipernews .news_new_box .right p.p {
    margin-top: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.list_news_box .swipernews .news_new_box .right p.p1 {
    margin-top: 1.875rem;
    color: #A1A1A1;
    text-align: justify;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
}

.list_news_box .swipernews .swiper-pagination {
    justify-content: center;
}

.list_yyhy_content {
    background: #F7F8FC;
}

.list_yyhy_content .yyhy_con {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.75rem 2.5rem;
}

.list_yyhy_content .yyhy_con .yyhy_item .text {
    padding: 1.625rem 0 0;
}

.list_yyhy_content .yyhy_con .yyhy_item .text h3 {
    color: #484848;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
}

.list_yyhy_content .yyhy_con .yyhy_item .text p {
    margin-top: 1.1875rem;
    color: #5F5F5F;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.list_yyhy_content .yyhy_con .yyhy_item .text .time {
    margin-top: 1rem;
    color: #A1A1A1;
    text-align: justify;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
}

.news_show_box {
    background: linear-gradient(180deg, rgba(247, 248, 252, 0) 0%, #F7F8FC 100%);
}

.news_show_box .news_cont {
    width: 62.5rem;
    margin: 0 auto;
}

.news_show_box .title {
    color: #484848;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 2.25rem;
    font-weight: 700;
}

.news_show_box .subtit {
    padding-bottom: 1.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news_show_box .subtit .time {
    color: #5F5F5F;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75rem;
    letter-spacing: 0.8px;
}

.news_show_box .subtit .fx_box .tt {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
}

.news_show_box .subtit .fx_box .social-share .social-share-icon {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    border-radius: 2rem;
    background: rgba(0, 147, 209, 0.15);
    border: unset;
    color: #0093D1;
}

.news_show_box .content {
    color: #5F5F5F;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.news_show_box .shangxia_p .shangxia {
    color: #5F5F5F;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.news_show_box .shangxia_p .shangxia a {
    color: #5F5F5F;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.mt135 {
    margin-top: 8.4375rem;
}

.pb100 {
    padding-bottom: 6.25rem;
}

.list_about_one {
    /* 右侧视频盒子 */
    /* 模拟图片中的播放按钮 */
}

.list_about_one .right-box {
    float: right;
    /* 关键：向右浮动 */
    width: 50%;
    /* 占据约一半宽度 */
    margin-left: 3.125rem;
    position: relative;
}

.list_about_one .video-container {
    position: relative;
    width: 100%;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.list_about_one .video-container video {
    width: 100%;
    display: block;
}

@keyframes breathe {
    0% {
        transform: translate(-50%, -50%) scale(1);
        /* 初始状态，正常大小 */
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
        /* 初始阴影 */
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        /* 放大 5%，模拟吸气 */
        box-shadow: 0 4px 20px rgba(0, 85, 164, 0.2);
        /* 阴影变大、变暖，增强立体感 */
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        /* 回到初始状态，模拟呼气 */
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }
}

.list_about_one .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.75rem;
    height: 3.75rem;
    background: #036EB8;
    /* 蓝色背景 */
    color: #fff;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.list_about_one .play-btn i {
    position: relative;
    z-index: 2;
}

.list_about_one .play-btn::before {
    content: '';
    display: block;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    background-color: rgba(3, 110, 184, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 动画配置 */
    animation-name: breathe;
    /* 应用上面定义的动画 */
    animation-duration: 3s;
    /* 每次呼吸持续 3 秒 */
    animation-iteration-count: infinite;
    /* 无限循环 */
    animation-timing-function: ease-in-out;
    /* 关键：平滑地开始和结束，更像真实呼吸 */
}

.list_about_one .left-text {
    color: #5F5F5F;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 350;
    line-height: 2rem;
}

@media (max-width: 768px) {
    .list_about_one .right-box {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
}

.list_about_one .grid_box {
    display: flex;
    justify-content: space-between;
}

.list_about_one .grid_box .grid_item h3 span {
    color: #BC0D38;
    text-align: justify;
    font-family: Inter;
    font-size: 4.375rem;
    font-weight: 700;
}

.list_about_one .grid_box .grid_item h3 sup {
    top: -2em;
    left: 0.7em;
}

.list_about_one .grid_box .grid_item h3 sub {
    left: 0;
}

.list_about_one .grid_box .grid_item h3 sup,
.list_about_one .grid_box .grid_item h3 sub {
    color: #BC0D38;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 700;
}

.list_about_one .grid_box .grid_item p {
    color: #5F5F5F;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
}

.list_about_two {
    background: #F7FBFF;
    padding-bottom: 6.25rem;
}

.list_about_two .content .grid_box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 2.3125rem;
}

.list_about_two .content .grid_box .grid_item {
    padding: 2rem 1rem 2rem;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.list_about_two .content .grid_box .grid_item .icon {
    width: 4.75rem;
    height: 4.75rem;
    margin: 0 auto;
}

.list_about_two .content .grid_box .grid_item .text h3 {
    margin-top: 1.75rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
}

.list_about_two .content .grid_box .grid_item .text p {
    margin-top: 0.8125rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625;
    text-align: center;
    opacity: 0;
}

.list_about_two .content .grid_box .grid_item:hover,
.list_about_two .content .grid_box .grid_item.active {
    background: #0093D1;
    box-shadow: 0 0.25rem 0.9375rem 0 rgba(3, 110, 184, 0.05);
}

.list_about_two .content .grid_box .grid_item:hover .icon img,
.list_about_two .content .grid_box .grid_item.active .icon img {
    filter: brightness(0) invert(1);
}

.list_about_two .content .grid_box .grid_item:hover .text h3,
.list_about_two .content .grid_box .grid_item.active .text h3,
.list_about_two .content .grid_box .grid_item:hover .text p,
.list_about_two .content .grid_box .grid_item.active .text p {
    color: #fff;
}

.list_about_two .content .grid_box .grid_item:hover .text p,
.list_about_two .content .grid_box .grid_item.active .text p {
    opacity: 1;
}

.list_about_three {
    background-size: cover;
    padding-top: 8.125rem;
    padding-bottom: 8.125rem;
}

.list_about_three .content {
    margin-top: 6.25rem;
}

.list_about_three .content .swiper_btn {
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    padding-top: 1.25rem;
}

.list_about_three .content .swiper_btn::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 50%;
    top: 1.7rem;
    transform: translateX(-50%);
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.list_about_three .content .swiper_btn .swiper_btn_li {
    text-align: center;
}

.list_about_three .content .swiper_btn .swiper_btn_li .yuan {
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background-color: #BFBFBF;
    margin: 0 auto 0;
}

.list_about_three .content .swiper_btn .swiper_btn_li .text {
    margin-top: 1.375rem;
    color: #484848;
    font-family: Inter;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
}

.list_about_three .content .swiper_btn .swiper-slide-thumb-active .yuan {
    background-color: #0093D1;
    margin: 0 auto;
}

.list_about_three .content .swiper_btn .swiper-slide-thumb-active .text {
    color: #0093D1;
    font-weight: 700;
}

.list_about_three .content .swiper_history {
    overflow: hidden;
}

.list_about_three .content .swiper_history .swiper-wrapper {
    align-items: center;
}

.list_about_three .content .swiper_history .history_box {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_about_three .content .swiper_history .history_box .left {
    width: 40%;
}

.list_about_three .content .swiper_history .history_box .left .img_box img {
    aspect-ratio: 470/259;
    object-fit: contain;
}

.list_about_three .content .swiper_history .history_box .left h3 {
    color: #BC0D38;
    font-family: Inter;
    font-size: 6rem;
    font-weight: 700;
    text-align: left;
}

.list_about_three .content .swiper_history .history_box .right {
    width: 50%;
    padding-left: 1.875rem;
}

.list_about_three .content .swiper_history .history_box .right ul>li {
    margin-bottom: 1.875rem;
}

.list_about_three .content .swiper_history .history_box .right ul>li h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.625rem;
    position: relative;
    padding-left: 1.625rem;
}

.list_about_three .content .swiper_history .history_box .right ul>li h3::before {
    content: '';
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #0093D1;
    position: absolute;
    left: 0;
    top: 0.625rem;
}

.list_about_three .content .swiper_history .history_box .right ul>li p {
    padding-left: 1.625rem;
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.list_about_three .content .swiper_history .history_box .right h3 {
    color: #BC0D38;
    font-family: Inter;
    font-size: 3rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1.25rem;
}

.list_about_three .content .swiper-button-next,
.list_about_three .content .swiper-button-prev {
    border: unset;
}

.list_about_three .content .swiper-button-prev,
.list_about_three .content .swiper-container-rtl .swiper-button-next {
    background-image: unset;
    left: 0%;
    right: auto;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background-color: #0093D1;
    text-align: center;
    z-index: 99;
    box-shadow: 0px 0px 10px rgba(13, 111, 184, 0.3);
}

.list_about_three .content .swiper-button-prev i,
.list_about_three .content .swiper-container-rtl .swiper-button-next i {
    font-weight: 400;
    font-size: 1.25rem;
    color: #fff;
    line-height: 3.5rem;
}

.list_about_three .content .swiper-button-next,
.list_about_three .content .swiper-container-rtl .swiper-button-prev {
    background-image: unset;
    left: auto;
    right: 0%;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background-color: #0093D1;
    text-align: center;
    z-index: 99;
}

.list_about_three .content .swiper-button-next i,
.list_about_three .content .swiper-container-rtl .swiper-button-prev i {
    font-size: 1.25rem;
    color: #fff;
    line-height: 3.5rem;
    font-weight: 400;
}

.list_about_three .content .history_ul .history_li {
    margin-top: 15px;
}

.list_about_three .content .history_ul .history_li h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #BC0D38;
}

.list_about_three .content .history_ul .history_li ul {
    margin-top: 20px;
}

.list_about_three .content .history_ul .history_li ul li {
    margin-bottom: 15px;
}

.list_about_three .content .history_ul .history_li ul li h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.625rem;
    position: relative;
    padding-left: 1.625rem;
    margin-bottom: 1rem;
}

.list_about_three .content .history_ul .history_li ul li h3::before {
    content: '';
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #0093D1;
    position: absolute;
    left: 0;
    top: 0.625rem;
}

.list_about_three .content .history_ul .history_li ul p {
    padding-left: 1.625rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75rem;
}

.list_about_three .content .history_ul .history_li .img_box {
    text-align: center;
}

.list_about_three .content .history_ul .history_li .img_box img {
    aspect-ratio: 470/259;
    object-fit: contain;
}

.list_about_four {
    background-color: #f9f9f9;
}

.list_about_four .swiper_honor {
    position: relative;
    overflow: hidden;
    padding-bottom: 3.75rem;
    margin: -1.25rem;
}

.list_about_four .swiper_honor .swiper-pagination {
    justify-content: center;
}

.list_about_four .swiper_honor .grid_box {
    padding: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem 2.5rem;
}

.list_about_four .swiper_honor .grid_box .honor_box {
    background: #FFF;
    box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 0, 0, 0.05);
    padding: 1.6875rem;
}

.list_about_four .swiper_honor .grid_box .honor_box .over {
    height: 17.625rem;
    width: 100%;
    text-align: center;
    object-fit: contain;
}

.list_about_four .swiper_honor .grid_box .honor_box .over img {
    width: auto;
    height: 100%;
}

.list_about_four .swiper_honor .grid_box .honor_box .tit {
    text-align: center;
    padding-top: 1rem;
    color: #484848;
    height: 4rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
    position: relative;
    padding-left: 1.625rem;
}

.list_zhuoyue_one {
    padding-top: 10rem;
    background: linear-gradient(180deg, #F7FBFF 0%, rgba(247, 251, 255, 0) 100%);
}

.list_zhuoyue_one .content .right {
    padding-left: 3.75rem;
}

.list_zhuoyue_one .content .right h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 3rem;
    margin-bottom: 1.125rem;
}

.list_zhuoyue_one .content .right p {
    color: rgba(0, 0, 0, 0.8);
    font-family: Inter;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    padding-left: 1.25rem;
    position: relative;
    margin-top: 0.5rem;
}

.list_zhuoyue_one .content .right p span {
    color: #BC0D38;
    font-family: Inter;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.75rem;
}

.list_zhuoyue_one .content .right p::before {
    content: '';
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #0093D1;
    position: absolute;
    left: 0;
    top: 0.625rem;
}

.list_zhuoyue_one .content .right .table table {
    width: 100%;
}

.list_zhuoyue_one .content .right .table table tr {
    border: 1px solid #E6E6E6;
}

.list_zhuoyue_one .content .right .table table tr:nth-child(1) td {
    font-weight: 500;
}

.list_zhuoyue_one .content .right .table table tr td {
    color: #5F5F5F;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    padding: 0.6875rem !important;
}

.list_zhuoyue_one .content .right .img {
    margin-top: -4.375rem;
}

@keyframes bigamin2 {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bigamin {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes bigaminxs {
    0% {
        display: none;
    }

    to {
        display: block;
    }
}

@keyframes txtshowt {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-1.25rem);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes txtshowb {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(-1.25rem);
    }
}

@keyframes txtshow {
    0% {
        opacity: 0;
        transform: translateX(-1.25rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes txtshowr {
    0% {
        opacity: 0;
        transform: translateX(1.25rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes txtshowl {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(1.25rem);
    }
}

.list_zhuoyue_two {
    background: linear-gradient(180deg, #F7FBFF 0%, rgba(247, 251, 255, 0) 100%);
    padding-top: 10.625rem;
}

.list_zhuoyue_two .content {
    overflow: hidden;
    position: relative;
    padding-top: 1.25rem;
}

.list_zhuoyue_two .content .yuan {
    margin: -7.5rem auto 0;
    width: 45rem;
    height: 101vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    opacity: 0;
}

.list_zhuoyue_two .content .yuan .yuan1 {
    width: 100%;
    margin: 0 auto;
    opacity: 0;
}

.list_zhuoyue_two .content .yuan .yuan2 {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.list_zhuoyue_two .content .yuan .yuan3 {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.list_zhuoyue_two .content .yuan .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list_zhuoyue_two .content .yuan .text .desc {
    margin-top: 1rem;
    color: rgba(50, 50, 50, 0.9);
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 350;
}

.list_zhuoyue_two .content .yuan ul li {
    position: absolute;
    opacity: 0;
    display: flex;
}

.list_zhuoyue_two .content .yuan ul li .icon {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 50%;
    background-color: #0093D1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5rem solid #fff;
}

.list_zhuoyue_two .content .yuan ul li .icon img {
    width: 45%;
}

.list_zhuoyue_two .content .yuan ul li .dd {
    flex: 1;
    width: 17.5rem;
    height: 8.75rem;
}

.list_zhuoyue_two .content .yuan ul li .dd h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.625rem;
    font-weight: 700;
}

.list_zhuoyue_two .content .yuan ul li .dd .p {
    margin-top: 0.75rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 350;
    line-height: 2;
  
}
.list_zhuoyue_two .content .yuan ul li .dd .p p{
      position: relative;
    padding-left: 1.25rem;
}
.list_zhuoyue_two .content .yuan ul li .dd .p p::before{
    content:'';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #5F5F5F;
    position: absolute;
    top: 1rem;
    left: 5px;
}

.list_zhuoyue_two .content .yuan ul li:nth-child(odd) .icon {
    order: 2;
}

.list_zhuoyue_two .content .yuan ul li:nth-child(odd) .dd {
    /*text-align: right;*/
    padding-right: 1.875rem;
}

.list_zhuoyue_two .content .yuan ul li:nth-child(even) .dd {
    padding-left: 1.875rem;
}

.list_zhuoyue_two .content .yuan ul li:nth-child(1) {
    top: 20%;
    left: -40%;
}

.list_zhuoyue_two .content .yuan ul li:nth-child(2) {
    top: 20%;
    right: -40%;
}

.list_zhuoyue_two .content .yuan ul li:nth-child(3) {
    bottom: 20%;
    left: -40%;
}

.list_zhuoyue_two .content .yuan ul li:nth-child(4) {
    bottom: 20%;
    right: -40%;
}

.list_zhuoyue_two.active .content .yuan {
    opacity: 1;
}

.list_zhuoyue_two.active .content .yuan ul li:nth-child(odd) {
    animation: txtshow 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_zhuoyue_two.active .content .yuan ul li:nth-child(even) {
    animation: txtshowr 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_zhuoyue_two.active .content .yuan .yuan1 {
    animation: bigamin2 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_zhuoyue_two.active .content .yuan .yuan3 {
    animation: bigamin 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_zhuoyue_two.active .content .yuan .yuan2 {
    animation: bigamin 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_zhuoyue_two.active .content .yuan .yuan3 {
    animation-delay: 0.2s;
}

.list_zhuoyue_three {
    background: #F7F8FC;
}

.list_zhuoyue_three .swiper_txrz {
    position: relative;
    margin: 0 -1.25rem;
    overflow: hidden;
    padding-bottom: 4.375rem;
}

.list_zhuoyue_three .swiper_txrz .swiper-slide {
    padding: 0 1.25rem;
}

.list_zhuoyue_three .swiper_txrz .swiper-slide .txrz_box {
    padding: 0.5625rem 1.375rem;
    background: #FFF;
    box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 0, 0, 0.05);
}

.list_zhuoyue_three .swiper_txrz .swiper-pagination {
    justify-content: center;
}

.list_xianjin_one .content .title h3 {
    color: #484848;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 3rem;
}

.list_xianjin_one .content .title p {
    margin-top: 1.25rem;
    color: #5F5F5F;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.list_xianjin_one .content .swiper_xjsb {
    position: relative;
    overflow: hidden;
    margin: 0 -2.5rem;
    padding-bottom: 3.75rem;
}

.list_xianjin_one .content .swiper_xjsb .swiper-slide {
    padding: 0 2.5rem;
}

.list_xianjin_one .content .swiper_xjsb .swiper-pagination {
    justify-content: center;
}

.all_subtit {
    position: relative;
}

.all_subtit h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
}

.all_subtit .p {
    margin-top: 1.25rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75;
}

.all_subtit p {
    margin-top: 0.9375rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.all_subtit.white h3,
.all_subtit.white .p {
    color: #fff;
}

.all_subtit .en {
    height: 8.75rem;
    position: absolute;
    bottom: 0;
    right: -14.375rem;
    transition: all 1s;
    -webkit-transform: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
}

.all_subtit .en img {
    width: auto;
    height: 100%;
}

.list_xianjin_two {
    position: relative;
    background-size: cover;
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
}

.list_xianjin_two .row .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 2.5rem;
}

.list_xianjin_two .row .left .swiperbtnflex {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
}

.list_xianjin_two .row .left .swiper-button-next,
.list_xianjin_two .row .left .swiper-button-prev {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    margin-top: 0;
}

.list_xianjin_two .row .right {
    padding-left: 4.0625rem;
}

.list_xianjin_two .row .right .swiper_box {
    overflow: hidden;
}

.list_xianjin_two .row .right .swiper_dingjian {
    width: 65%;
    margin: 0 -1.875rem;
}

.list_xianjin_two .row .right .swiper_dingjian .swiper-slide {
    padding: 0 1.875rem;
}

.list_xianjin_three .swiper_xjsb {
    position: relative;
    overflow: hidden;
    margin: 0 -2.5rem;
    padding-bottom: 3.75rem;
}

.list_xianjin_three .swiper_xjsb .swiper-slide {
    padding: 0 2.5rem;
}

.list_xianjin_three .swiper_xjsb .swiper-slide .text {
    color: #5F5F5F;
    text-align: center;
    font-size: 1.375rem;
    font-weight: 400;
    padding-top: 1.375rem;
}

.list_xianjin_three .swiper_xjsb .swiper-pagination {
    justify-content: center;
}

.list_xianjin_four {
    background: #F7F8FC;
}

.list_xianjin_four.list_hexin_three {
    background: linear-gradient(180deg, rgba(247, 248, 252, 0) 0%, #F7F8FC 100%);
}

.list_xianjin_four .swiper_box {
    width: 56%;
    margin: 0 auto;
}

.list_xianjin_four .swiper_zhijian {
    position: relative;
    margin: 0 -4.0625rem;
    padding-bottom: 3.75rem;
}

.list_xianjin_four .swiper_zhijian.pb0 {
    padding-bottom: 0;
}

.list_xianjin_four .swiper_zhijian .swiper-slide {
    padding: 0 4.0625rem;
}

.list_xianjin_four .swiper_zhijian .swiper-slide.swiper-slide-active .text {
    opacity: 1;
}

.list_xianjin_four .swiper_zhijian .swiper-slide .text {
    padding-top: 1.875rem;
    opacity: 0;
}

.list_xianjin_four .swiper_zhijian .swiper-slide .text h3 {
    color: #323232;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 3rem;
}

.list_xianjin_four .swiper_zhijian .swiper-slide .text .p {
    margin-top: 0.375rem;
    color: rgba(50, 50, 50, 0.4);
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 400;
}

.list_xianjin_four .swiper_zhijian .swiper-pagination {
    justify-content: center;
}

.list_xianjin_four .swiper_zhijian .swiper-button-prev {
    left: -1.875rem;
}

.list_xianjin_four .swiper_zhijian .swiper-button-next {
    right: -1.875rem;
}

.list_gyl_one {
    padding-bottom: 6.875rem;
}

.list_gyl_one .cont .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.25rem 5rem;
    margin-top: 10rem;
}

.list_gyl_one .cont .grid_item:nth-child(2),
.list_gyl_one .cont .grid_item:nth-child(4) {
    transform: translateY(-10rem);
}

.list_gyl_one .cont .grid_item .dd {
    margin-top: 2.8125rem;
}

.list_gyl_one .cont .grid_item .dd h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.75;
}

.list_gyl_one .cont .grid_item .dd p {
    margin-top: 0.9375rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75;
}

.list_zuzhi {
    background: linear-gradient(180deg, rgba(247, 248, 252, 0.6) 0%, #F7F8FC 100%);
    padding-top: 9.375rem;
    padding-bottom: 7.5rem;
}

.list_zuzhi .all_subtit h3 {
    font-size: 1.75rem;
}

.list_zuzhi .cont .row {
    background-color: #fff;
    align-items: center;
}

.list_zuzhi .cont .row .left {
    padding: 0 5.5rem 0 3.75rem;
}

.list_zuzhi .cont .row .left .tt {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.list_zuzhi .cont .two_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.list_zuzhi .cont .two_box .two_item {
    background-color: #fff;
}

.list_zuzhi .cont .two_box .two_item .text {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
    padding: 2.0625rem 1.8125rem 3.75rem;
}

.list_zuzhi .cont .two_box .two_item:nth-last-child(1) {
    grid-row: 2/2;
    grid-column: 1/3;
}

.list_shuzi {
    background: #F7F8FC;
    padding-top: 8.75rem;
    padding-bottom: 7.5rem;
}

.list_shuzi .content .num_box {
    border: 1px solid rgba(0, 75, 106, 0.1);
    background: #FFF;
    padding: 1.0625rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.875rem;
}

.list_shuzi .content .num_box.bgcolor {
    border: 1px solid rgba(0, 75, 106, 0.1);
    background: linear-gradient(180deg, rgba(247, 248, 252, 0) 8.61%, #F4F6FF 100%), #FFF;
}

.list_shuzi .content .num_box .tit {
    width: 18%;
    color: #0093D1;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 700;
}

.list_shuzi .content .num_box .ri {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.625rem;
}

.list_shuzi .content .num_box .ri .num {
    color: #0093D1;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid #0093D1;
    background: #FFF;
    height: 2.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_shuzi .content .num_box .ri .num.nonum {
    color: #F1904E;
    border-color: #F1904E;
}

.list_shuzi .content .num_box2 {
    padding: 0;
}

.list_shuzi .content .num_box2 .tit {
    padding-left: 2.5rem;
}

.list_shuzi .content .num_box2 .ri {
    flex: 1;
}

.list_shuzi .content .num_box2 .ri.ri_flex {
    display: flex;
    justify-content: space-between;
}

.list_shuzi .content .num_box2 .ri.ri_flex .ri_box {
    flex: auto;
    padding-top: 2.625rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex .ri_box:not(:nth-last-child(1)) {
    border-right: 1px solid #E6EDF1;
}

.list_shuzi .content .num_box2 .ri.ri_flex .ri_box .tt {
    color: #484848;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex .ri_box .numbox1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding: 0 2.625rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex .ri_box .numbox2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    padding: 0 1.875rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex .ri_box .numbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    padding: 0 2.625rem 1.3125rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex .ri_box .num {
    width: 11.25rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex2 {
    display: flex;
    justify-content: space-between;
}

.list_shuzi .content .num_box2 .ri.ri_flex2 .ri_box {
    flex: auto;
    padding-top: 2.625rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex2 .ri_box:not(:nth-last-child(1)) {
    border-right: 1px solid #E6EDF1;
}

.list_shuzi .content .num_box2 .ri.ri_flex2 .ri_box .tt {
    color: #484848;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex2 .ri_box .numbox1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding: 0 1.875rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex2 .ri_box .numbox2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    padding: 0 1.875rem 1.5rem;
}

.list_shuzi .content .num_box2 .ri.ri_flex2 .ri_box .num {
    width: 11.25rem;
}

.list_shuzi .content .tuli {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
}

.list_shuzi .content .tuli .tuli_item {
    border: 1px solid #0093D1;
    background: #FFF;
    color: #0093D1;
    text-align: center;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 700;
    width: 6.25rem;
    height: 2.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.625rem;
}

.list_shuzi .content .tuli .tuli_item.d {
    color: #F1904E;
    border-color: #F1904E;
}

.list_ruanjian_four {
    background: #F7FBFF;
}

.list_ruanjian_four .row {
    align-items: center;
}

.list_ruanjian_four .left .cont ul li {
    position: relative;
    padding-left: 2.5rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
}

.list_ruanjian_four .left .cont ul li strong {
    font-weight: 500;
}

.list_ruanjian_four .left .cont ul li span {
    color: #BC0D38;
    font-family: Inter;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 2;
}

.list_ruanjian_four .left .cont ul li::before {
    content: '';
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #5F5F5F;
    position: absolute;
    left: 0.9375rem;
    top: 1rem;
}

.list_ruanjian_four .right {
    padding-left: 1.25rem;
}

.list_chuangxin {
    background: linear-gradient(180deg, rgba(247, 248, 252, 0) 0%, #F7F8FC 100%);
}

.list_chuangxin .content {
    overflow: hidden;
    position: relative;
    padding-top: 28.125rem;
    padding-bottom: 18.3125rem;
    box-sizing: border-box;
}

.list_chuangxin .content .yuan {
    margin: -7.5rem auto 0;
    width: 47.875rem;
    height: 47.875rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    opacity: 0;
}

.list_chuangxin .content .yuan .yuan1 {
    width: 100%;
    margin: 0 auto;
    opacity: 0;
}

.list_chuangxin .content .yuan .yuan2 {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.list_chuangxin .content .yuan .yuan3 {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.list_chuangxin .content .yuan .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list_chuangxin .content .yuan .text .all_title.white h3::before {
    background: #0093D1;
}

.list_chuangxin .content .yuan .text .desc {
    margin-top: 1rem;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 350;
}

.list_chuangxin .content .yuan ul li {
    position: absolute;
    opacity: 0;
    display: flex;
    flex-direction: column;
    z-index: 9;
}

.list_chuangxin .content .yuan ul li .icon {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 50%;
    background-color: #0093D1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5rem solid #fff;
    margin: 0 auto;
}

.list_chuangxin .content .yuan ul li .icon img {
    width: 45%;
}

.list_chuangxin .content .yuan ul li .dd {
    flex: 1;
}

.list_chuangxin .content .yuan ul li .dd h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 700;
}

.list_chuangxin .content .yuan ul li .dd .p {
    margin-top: 0.75rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 350;
    line-height: 1.75rem;
}

.list_chuangxin .content .yuan ul li .dd .p p {
    padding-left: 1.5625rem;
    position: relative;
}

.list_chuangxin .content .yuan ul li .dd .p p::before {
    content: '';
    display: block;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background-color: #5F5F5F;
    position: absolute;
    left: 0.625rem;
    top: 0.875rem;
}

.list_chuangxin .content .yuan ul li:nth-child(1) {
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
}

.list_chuangxin .content .yuan ul li:nth-child(1) .icon {
    order: 2;
    margin: 1.25rem auto 0;
}

.list_chuangxin .content .yuan ul li:nth-child(1) .dd {
    order: 1;
    display: flex;
    flex-direction: column;
}

.list_chuangxin .content .yuan ul li:nth-child(1) .dd h3 {
    order: 2;
    text-align: center;
    margin-top: 0.75rem;
}

.list_chuangxin .content .yuan ul li:nth-child(2) {
    top: 42%;
    right: -40%;
    flex-direction: row;
}

.list_chuangxin .content .yuan ul li:nth-child(2) .dd {
    padding-left: 1.25rem;
    width: 15rem;
}

.list_chuangxin .content .yuan ul li:nth-child(3) {
    bottom: -35%;
    left: 50%;
    transform: translateX(-50%);
}

.list_chuangxin .content .yuan ul li:nth-child(3) .icon {
    margin-bottom: 1.25rem;
}

.list_chuangxin .content .yuan ul li:nth-child(3) .dd h3 {
    text-align: center;
}

.list_chuangxin .content .yuan ul li:nth-child(4) {
    top: 42%;
    left: -45%;
    flex-direction: row;
}

.list_chuangxin .content .yuan ul li:nth-child(4) .icon {
    order: 2;
}

.list_chuangxin .content .yuan ul li:nth-child(4) .dd {
    margin-right: 1.25rem;
    width: 15rem;
}

.list_chuangxin.active .content .yuan {
    opacity: 1;
}

.list_chuangxin.active .content .yuan ul li:nth-child(1) {
    animation: txtshowt 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_chuangxin.active .content .yuan ul li:nth-child(3) {
    animation: txtshowb 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_chuangxin.active .content .yuan ul li:nth-child(2) {
    animation: txtshowr 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_chuangxin.active .content .yuan ul li:nth-child(4) {
    animation: txtshowl 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_chuangxin.active .content .yuan .yuan1 {
    animation: bigamin2 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_chuangxin.active .content .yuan .yuan3 {
    animation: bigamin 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_chuangxin.active .content .yuan .yuan2 {
    animation: bigamin 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.list_chuangxin.active .content .yuan .yuan3 {
    animation-delay: 0.2s;
}

.list_hexin_one .swiper_cailiao {
    position: relative;
    margin: 0 -1.875rem;
    padding-bottom: 5rem;
}

.list_hexin_one .swiper_cailiao .swiper-slide {
    padding: 0 1.875rem;
}

.list_hexin_one .swiper_cailiao .swiper-pagination {
    justify-content: center;
}

.list_hexin_one .swiper-button-prev {
    left: 1.5625rem;
    margin-top: 0;
    transform: translateY(-50%);
}

.list_hexin_one .swiper-button-next {
    right: 1.5625rem;
    margin-top: 0;
    transform: translateY(-50%);
}

.list_hexin_two {
    padding-top: 7.1875rem;
    padding-bottom: 7.1875rem;
    background: #F7F8FC;
}

.list_hexin_two .row {
    align-items: center;
}

.list_hexin_two .row .left {
    padding-right: 3.875rem;
}

.list_hexin_two .row .right {
    padding-left: 1.875rem;
}

.list_huanjing_one .row_box .row {
    align-items: center;
}

.list_huanjing_one .row_box .row:not(:nth-last-child(1)) {
    margin-bottom: 5.625rem;
}

.list_huanjing_one .row_box .row:nth-child(even) .left {
    order: 2;
}

.list_huanjing_one .row_box .row:nth-child(even) .right {
    padding-left: 0.9375rem;
    padding-right: 3.6875rem;
}

.list_huanjing_one .row_box .left .cont {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 350;
    line-height: 1.85;
}

.list_huanjing_one .row_box .left .cont p {
    position: relative;
    padding-left: 2.1875rem;
}

.list_huanjing_one .row_box .left .cont p::before {
    content: '';
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #5F5F5F;
    position: absolute;
    left: 0.625rem;
    top: 1rem;
}

.list_huanjing_one .row_box .left .cont .pp {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 350;
    line-height: 1.65;
}

.list_huanjing_one .row_box .left .cont .pp p {
    padding-left: 0;
    padding: 0.625rem 0;
}

.list_huanjing_one .row_box .left .cont .pp p::before {
    display: none;
}

.list_huanjing_one .row_box .right {
    padding-left: 3.6875rem;
}

.list_huanjing_one .row_box .right .swiper_moreimg {
    position: relative;
    overflow: hidden;
    padding-bottom: 3.4375rem;
}

.list_huanjing_one .row_box .right .swiper_moreimg .swiper-pagination {
    justify-content: center;
    bottom: 0;
}

.list_huanjing_two {
    padding-top: 7.5rem;
    background: #F8F8F8;
}

.list_huanjing_two .swiper_lvse {
    position: relative;
    margin: 0 -1.875rem;
    padding-bottom: 3rem;
}

.list_huanjing_two .swiper_lvse .swiper-pagination {
    justify-content: center;
}

.list_huanjing_two .swiper_lvse .swiper-slide {
    padding: 0 1.875rem;
}

.list_huanjing_two .swiper_lvse .swiper-slide .lvse_box .text {
    padding-top: 1rem;
    color: #5F5F5F;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
}

.list_huanjing_three {
    padding-top: 6.75rem;
}

.list_huanjing_three .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.1875rem;
}

.list_huanjing_three .grid_box .text {
    padding-top: 2.8125rem;
}

.list_huanjing_three .grid_box .text h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
}

.list_huanjing_three .grid_box .text p {
    margin-top: 0.5rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 350;
    line-height: 1.5;
}

.list_shehui .row_box .row {
    align-items: center;
}

.list_shehui .row_box .row:not(:nth-last-child(1)) {
    margin-bottom: 5.625rem;
}

.list_shehui .row_box .row:nth-child(even) .left {
    order: 1;
}

.list_shehui .row_box .row:nth-child(even) .right {
    order: 2;
    padding-left: 3.6875rem;
    padding-right: 0.9375rem;
}

.list_shehui .row_box .left .cont {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 350;
    line-height: 2.875rem;
}

.list_shehui .row_box .left .cont p {
    position: relative;
    padding-left: 2.1875rem;
}

.list_shehui .row_box .left .cont p::before {
    content: '';
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #5F5F5F;
    position: absolute;
    left: 0.625rem;
    top: 1.25rem;
}

.list_shehui .row_box .right {
    padding-right: 3.6875rem;
}

.list_shehui_two {
    padding-bottom: 7.0625rem;
    background: linear-gradient(180deg, #F7F8FC 0%, rgba(247, 248, 252, 0) 100%), #FFF;
}

.list_shehui_two .swiper_kcx {
    position: relative;
    overflow: hidden;
}

.list_shehui_two .swiper_kcx .swiper-slide {
    width: 80%;
    margin: 0 auto;
}

.list_zhili_one .left {
    padding-right: 3.125rem;
    padding-top: 3.4375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list_zhili_one .left .desc {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.list_zhili_one .left .swiperbtn_flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5625rem;
}

.list_zhili_one .left .swiperbtn_flex .swiper-button-next,
.list_zhili_one .left .swiperbtn_flex .swiper-button-prev {
    position: relative;
    margin-top: 0;
    top: unset;
    left: unset;
    right: unset;
}

.list_zhili_one .right .swiper_box {
    padding-right: var(--container);
    overflow: hidden;
}

.list_zhili_one .right .swiper_box .swiper_zhili {
    width: 80%;
    margin: 0 -1.875rem;
}

.list_zhili_one .right .swiper_box .swiper_zhili .swiper-slide {
    padding: 0 1.875rem;
}

.list_zhili_two {
    padding-bottom: 6.875rem;
    background: linear-gradient(180deg, #F7F8FC 0%, #F7F8FC 100%), #FFF;
}

.list_zhili_two .cont .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.25rem 5rem;
    margin-top: 3.125rem;
}

.list_zhili_two .cont .grid_item {
    background-color: #fff;
}

.list_zhili_two .cont .grid_item:nth-child(2),
.list_zhili_two .cont .grid_item:nth-child(4) {
    transform: translateY(-10rem);
}

.list_zhili_two .cont .grid_item .dd {
    margin-top: 0;
    padding: 1.4375rem 1.875rem 2.1875rem 2.5rem;
}

.list_zhili_two .cont .grid_item .dd h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.5;
}

.list_zhili_two .cont .grid_item .dd p {
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 350;
    line-height: 2.125rem;
}

.list_download {
    padding-top: 6.625rem;
    background: linear-gradient(180deg, #F7F8FC 0%, #F7F8FC 100%), #FFF;
}

.list_download .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.list_download .grid_box .grid_item {
    background: #FFF;
    padding: 2.5rem;
}

.list_download .grid_box .grid_item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_download .grid_box .grid_item a .over {
    width: 36%;
}

.list_download .grid_box .grid_item a .text {
    padding-left: 3.75rem;
    flex: 1;
}

.list_download .grid_box .grid_item a .text .subtit {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.list_download .grid_box .grid_item a .text .title {
    margin-top: 0.6875rem;
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
}

.list_download .grid_box .grid_item a .text .more {
    margin-top: 3.75rem;
    color: #0093D1;
    font-family: "Noto Sans SC";
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.625rem;
    padding: 0.625rem 1.375rem;
    display: inline-block;
    border-radius: 1.875rem;
    border: 1px solid #0093D1;
    background: #FFF;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.list_download .grid_box .grid_item a .text .more i {
    font-size: 1.125rem;
    margin-left: 0.3125rem;
}

.list_download .grid_box .grid_item:hover a .text .more {
    background-color: #0093D1;
    color: #fff;
}

.list_yanfa_two {
    padding-bottom: 7.8125rem;
}

.list_yanfa_two .flex {
    align-items: unset;
}

.list_yanfa_two .left {
    flex: 1;
}

.list_yanfa_two .left ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 5rem);
}

.list_yanfa_two .left ul li {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 3.125rem;
}

.list_yanfa_two .left ul li:nth-child(1) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.list_yanfa_two .left ul li .le span {
    color: #BB0E39;
    text-align: justify;
    font-family: Inter;
    font-size: 5rem;
    font-weight: 700;
}

.list_yanfa_two .left ul li .le sup {
    color: #5F5F5F;
    text-align: justify;
    font-family: Inter;
    font-size: 1.25rem;
    font-weight: 700;
    top: -3em;
}

.list_yanfa_two .left ul li .ri {
    width: 45%;
    display: flex;
    align-items: center;
}

.list_yanfa_two .left ul li .ri .icon {
    width: 3rem;
    margin-right: 1.25rem;
}

.list_yanfa_two .left ul li .ri .p {
    color: #5F5F5F;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.625rem;
    flex: 1;
}

.list_yanfa_two .right {
    width: 63%;
}

.list_yanfa_two .right .tt {
    color: #5F5F5F;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.5rem;
    font-weight: 350;
    padding-top: 2.8125rem;
}

.list_yanfa_two .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
}

.list_yanfa_two .grid_box .grid_item .tt {
    color: #5F5F5F;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 350;
    padding-top: 2.8125rem;
}

.list_yiliao_one {
    padding-top: 7rem;
}

.list_yiliao_one .active .JIbXVTNA_0 {
    stroke-dasharray: 621 623;
    stroke-dashoffset: 622;
    animation: JIbXVTNA_draw 2000ms linear 0ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_1 {
    stroke-dasharray: 377 379;
    stroke-dashoffset: 378;
    animation: JIbXVTNA_draw 2000ms linear 111ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_2 {
    stroke-dasharray: 625 627;
    stroke-dashoffset: 626;
    animation: JIbXVTNA_draw 2000ms linear 222ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_3 {
    stroke-dasharray: 530 532;
    stroke-dashoffset: 531;
    animation: JIbXVTNA_draw 2000ms linear 333ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_4 {
    stroke-dasharray: 665 667;
    stroke-dashoffset: 666;
    animation: JIbXVTNA_draw 2000ms linear 444ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_5 {
    stroke-dasharray: 432 434;
    stroke-dashoffset: 433;
    animation: JIbXVTNA_draw 2000ms linear 555ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_6 {
    stroke-dasharray: 356 358;
    stroke-dashoffset: 357;
    animation: JIbXVTNA_draw 2000ms linear 666ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_7 {
    stroke-dasharray: 625 627;
    stroke-dashoffset: 626;
    animation: JIbXVTNA_draw 2000ms linear 777ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_8 {
    stroke-dasharray: 621 623;
    stroke-dashoffset: 622;
    animation: JIbXVTNA_draw 2000ms linear 888ms forwards;
}

.list_yiliao_one .active .JIbXVTNA_9 {
    stroke-dasharray: 783 785;
    stroke-dashoffset: 784;
    animation: JIbXVTNA_draw 2000ms linear 1000ms forwards;
}

.list_yiliao_one .en svg {
    width: 65.8447rem;
    height: 9.2239rem;
}

@keyframes JIbXVTNA_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes JIbXVTNA_fade {
    0% {
        stroke-opacity: 1;
    }

    94.44444444444444% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

.all_text {
    position: relative;
}

.all_text .num {
    height: 7.1875rem;
}

.all_text .num img {
    width: auto;
    height: 100%;
}

.all_text .dd {
    margin-top: -2.5rem;
}

.all_text .dd h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 2.375rem;
    font-weight: 700;
    line-height: 2.25rem;
}

.all_text .dd p {
    margin-top: 1.25rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 350;
    line-height: 1.5;
}

.list_yiliao_two {
    position: relative;
}

.list_yiliao_two.active .swGUIOid_0 {
    stroke-dasharray: 592 594;
    stroke-dashoffset: 593;
    animation: swGUIOid_draw 2000ms linear 0ms forwards;
}

.list_yiliao_two.active .swGUIOid_1 {
    stroke-dasharray: 592 594;
    stroke-dashoffset: 593;
    animation: swGUIOid_draw 2000ms linear 100ms forwards;
}

.list_yiliao_two.active .swGUIOid_2 {
    stroke-dasharray: 532 534;
    stroke-dashoffset: 533;
    animation: swGUIOid_draw 2000ms linear 200ms forwards;
}

.list_yiliao_two.active .swGUIOid_3 {
    stroke-dasharray: 386 388;
    stroke-dashoffset: 387;
    animation: swGUIOid_draw 2000ms linear 300ms forwards;
}

.list_yiliao_two.active .swGUIOid_4 {
    stroke-dasharray: 432 434;
    stroke-dashoffset: 433;
    animation: swGUIOid_draw 2000ms linear 400ms forwards;
}

.list_yiliao_two.active .swGUIOid_5 {
    stroke-dasharray: 625 627;
    stroke-dashoffset: 626;
    animation: swGUIOid_draw 2000ms linear 500ms forwards;
}

.list_yiliao_two.active .swGUIOid_6 {
    stroke-dasharray: 356 358;
    stroke-dashoffset: 357;
    animation: swGUIOid_draw 2000ms linear 600ms forwards;
}

.list_yiliao_two.active .swGUIOid_7 {
    stroke-dasharray: 591 593;
    stroke-dashoffset: 592;
    animation: swGUIOid_draw 2000ms linear 700ms forwards;
}

.list_yiliao_two.active .swGUIOid_8 {
    stroke-dasharray: 822 824;
    stroke-dashoffset: 823;
    animation: swGUIOid_draw 2000ms linear 800ms forwards;
}

.list_yiliao_two.active .swGUIOid_9 {
    stroke-dasharray: 621 623;
    stroke-dashoffset: 622;
    animation: swGUIOid_draw 2000ms linear 900ms forwards;
}

.list_yiliao_two.active .swGUIOid_10 {
    stroke-dasharray: 761 763;
    stroke-dashoffset: 762;
    animation: swGUIOid_draw 2000ms linear 1000ms forwards;
}

@keyframes swGUIOid_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes swGUIOid_fade {
    0% {
        stroke-opacity: 1;
    }

    94.44444444444444% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

.list_yiliao_two .top {
    height: 12.5rem;
    position: absolute;
    top: 6.25rem;
    right: 0;
    z-index: 9;
    transition: all 1s;
    -webkit-transform: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
}

.list_yiliao_two .top svg {
    width: 71.4056rem;
    height: 12.3092rem;
}

.list_yiliao_two .top img {
    width: auto;
    height: 100%;
}

.list_yiliao_two .row {
    align-items: center;
}

.list_yiliao_two .right {
    padding-left: 5.9375rem;
    padding-top: 13.125rem;
}

.list_yiliao_three {
    padding-top: 8.125rem;
    padding-bottom: 16.25rem;
}

.list_yiliao_three .row {
    align-items: center;
}

.list_yiliao_three .left {
    padding-right: 5.625rem;
}

.list_yiliao_three .right .img_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.list_yiliao_three .right .img_box .over:nth-child(2) {
    transform: translateY(7.0625rem);
}

.list_yiliao_four .img_box {
    display: grid;
    gap: 2.125rem;
    grid-template-columns: 68.5rem 1fr;
}

.list_yiliao_four .ri {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list_yiliao_four .ri .over {
    background: #f2f0f2;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.list_yiliao_five .row {
    align-items: center;
}

.list_yiliao_five .row:nth-child(even) {
    margin-top: 6.25rem;
}

.list_yiliao_five .row:nth-child(even) .right {
    order: 1;
    padding-right: 2.5rem;
    padding-left: 0.9375rem;
}

.list_yiliao_five .row:nth-child(even) .left {
    order: 2;
    padding-left: 2.875rem;
    padding-right: 0.9375rem;
}

.list_yiliao_five .left {
    padding-right: 2.875rem;
}

.list_yiliao_five .right {
    padding-left: 1.875rem;
}

.list_food_one {
    padding-bottom: 6.875rem;
}

.list_food_one.active .en.topen {
    right: 35%;
}

.list_food_one.active .en.bottompen {
    left: 51%;
}

.list_food_one .row {
    align-items: center;
    position: relative;
    z-index: 2;
}

.list_food_one .left {
    padding-right: 8.75rem;
}

.list_food_one .right .over {
    border-radius: 50%;
}

.list_food_one .en {
    color: #000;
    text-align: justify;
    font-family: Inter;
    font-size: 12.5rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.05;
    transition: all 2s;
    -webkit-transform: all 2s;
    -moz-transition: all 2s;
    -o-transition: all 2s;
}

.list_food_one .en.topen {
    position: absolute;
    right: -13.75rem;
    top: -1.875rem;
}

.list_food_one .en.bottompen {
    position: absolute;
    bottom: 0;
    left: 0;
}

.list_food_three {
    /* 模拟图片中的播放按钮 */
}

.list_food_three .video-container {
    position: relative;
    width: 100%;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.list_food_three .video-container video {
    width: 100%;
    display: block;
}

@keyframes breathe {
    0% {
        transform: translate(-50%, -50%) scale(1);
        /* 初始状态，正常大小 */
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
        /* 初始阴影 */
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        /* 放大 5%，模拟吸气 */
        box-shadow: 0 4px 20px rgba(0, 85, 164, 0.2);
        /* 阴影变大、变暖，增强立体感 */
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        /* 回到初始状态，模拟呼气 */
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }
}

.list_food_three .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.75rem;
    height: 3.75rem;
    background: #036EB8;
    /* 蓝色背景 */
    color: #fff;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.list_food_three .play-btn i {
    position: relative;
    z-index: 2;
}

.list_food_three .play-btn::before {
    content: '';
    display: block;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    background-color: rgba(3, 110, 184, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 动画配置 */
    animation-name: breathe;
    /* 应用上面定义的动画 */
    animation-duration: 3s;
    /* 每次呼吸持续 3 秒 */
    animation-iteration-count: infinite;
    /* 无限循环 */
    animation-timing-function: ease-in-out;
    /* 关键：平滑地开始和结束，更像真实呼吸 */
}

.list_hufu_one {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
}

.list_hufu_two {
    padding-bottom: 6.875rem;
    position: relative;
}

.list_hufu_two .en,
.list_hufu_two .en2 {
    position: absolute;
    height: 9.375rem;
    z-index: 9;
}

.list_hufu_two .en img,
.list_hufu_two .en2 img {
    height: 100%;
    width: auto;
}

.list_hufu_two.active .en .eGiLPFic_0 {
    stroke-dasharray: 540 542;
    stroke-dashoffset: 541;
    animation: eGiLPFic_draw 2000ms linear 0ms forwards;
}

.list_hufu_two.active .en .eGiLPFic_1 {
    stroke-dasharray: 421 423;
    stroke-dashoffset: 422;
    animation: eGiLPFic_draw 2000ms linear 142ms forwards;
}

.list_hufu_two.active .en .eGiLPFic_2 {
    stroke-dasharray: 441 443;
    stroke-dashoffset: 442;
    animation: eGiLPFic_draw 2000ms linear 285ms forwards;
}

.list_hufu_two.active .en .eGiLPFic_3 {
    stroke-dasharray: 594 596;
    stroke-dashoffset: 595;
    animation: eGiLPFic_draw 2000ms linear 428ms forwards;
}

.list_hufu_two.active .en .eGiLPFic_4 {
    stroke-dasharray: 892 894;
    stroke-dashoffset: 893;
    animation: eGiLPFic_draw 2000ms linear 571ms forwards;
}

.list_hufu_two.active .en .eGiLPFic_5 {
    stroke-dasharray: 611 613;
    stroke-dashoffset: 612;
    animation: eGiLPFic_draw 2000ms linear 714ms forwards;
}

.list_hufu_two.active .en .eGiLPFic_6 {
    stroke-dasharray: 504 506;
    stroke-dashoffset: 505;
    animation: eGiLPFic_draw 2000ms linear 857ms forwards;
}

.list_hufu_two.active .en .eGiLPFic_7 {
    stroke-dasharray: 695 697;
    stroke-dashoffset: 696;
    animation: eGiLPFic_draw 2000ms linear 1000ms forwards;
}

@keyframes eGiLPFic_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes eGiLPFic_fade {
    0% {
        stroke-opacity: 1;
    }

    94.44444444444444% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

.list_hufu_two.active .en2 .PpweCEFY_0 {
    stroke-dasharray: 551 553;
    stroke-dashoffset: 552;
    animation: PpweCEFY_draw 2000ms linear 0ms forwards;
}

.list_hufu_two.active .en2 .PpweCEFY_1 {
    stroke-dasharray: 543 545;
    stroke-dashoffset: 544;
    animation: PpweCEFY_draw 2000ms linear 125ms forwards;
}

.list_hufu_two.active .en2 .PpweCEFY_2 {
    stroke-dasharray: 454 456;
    stroke-dashoffset: 455;
    animation: PpweCEFY_draw 2000ms linear 250ms forwards;
}

.list_hufu_two.active .en2 .PpweCEFY_3 {
    stroke-dasharray: 380 382;
    stroke-dashoffset: 381;
    animation: PpweCEFY_draw 2000ms linear 375ms forwards;
}

.list_hufu_two.active .en2 .PpweCEFY_4 {
    stroke-dasharray: 397 399;
    stroke-dashoffset: 398;
    animation: PpweCEFY_draw 2000ms linear 500ms forwards;
}

.list_hufu_two.active .en2 .PpweCEFY_5 {
    stroke-dasharray: 543 545;
    stroke-dashoffset: 544;
    animation: PpweCEFY_draw 2000ms linear 625ms forwards;
}

.list_hufu_two.active .en2 .PpweCEFY_6 {
    stroke-dasharray: 337 339;
    stroke-dashoffset: 338;
    animation: PpweCEFY_draw 2000ms linear 750ms forwards;
}

.list_hufu_two.active .en2 .PpweCEFY_7 {
    stroke-dasharray: 454 456;
    stroke-dashoffset: 455;
    animation: PpweCEFY_draw 2000ms linear 875ms forwards;
}

.list_hufu_two.active .en2 .PpweCEFY_8 {
    stroke-dasharray: 678 680;
    stroke-dashoffset: 679;
    animation: PpweCEFY_draw 2000ms linear 1000ms forwards;
}

@keyframes PpweCEFY_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes PpweCEFY_fade {
    0% {
        stroke-opacity: 1;
    }

    94.44444444444444% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

.list_hufu_two .en {
    right: 0;
}

.list_hufu_two .en svg {
    width: 52.5rem;
    height: 10rem;
}

@keyframes ZTwmlWje_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes ZTwmlWje_fade {
    0% {
        stroke-opacity: 1;
    }

    94.44444444444444% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

.list_hufu_two .en2 {
    right: 0;
    top: 8%;
}

.list_hufu_two .en2 svg {
    width: 52.5rem;
    height: 9.0625rem;
}

@keyframes vatLgQTO_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes vatLgQTO_fade {
    0% {
        stroke-opacity: 1;
    }

    94.44444444444444% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

.list_hufu_two .hf_box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 68.75rem 1fr;
    gap: 10.5rem 8.125rem;
}

.list_hufu_two .hf_box .hf_item:nth-child(1) .all_text {
    padding-left: 5rem;
}

.list_hufu_two .hf_box .hf_item:nth-child(2) {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list_hufu_two .hf_box .hf_item:nth-child(2) .all_text {
    padding-right: 6rem;
    text-align: justify;
}

.list_hufu_two .hf_box .hf_item:nth-child(3) {
    padding-left: var(--container);
}

.list_glyservice .swiper_moreimg {
    position: relative;
    overflow: hidden;
    padding-bottom: 5rem;
}

.list_glyservice .swiper_moreimg .swiper-pagination {
    justify-content: center;
    bottom: 0;
}

.list_packaging_one {
    /* 模拟图片中的播放按钮 */
}

.list_packaging_one .content .grid_box {
    display: flex;
    align-items: center;
}

.list_packaging_one .content .grid_box .grid_item {
    flex: 1;
    position: relative;
}

.list_packaging_one .content .grid_box .grid_item:hover .yuan {
    transform: translateX(-50%) scale(1.2);
}

.list_packaging_one .content .grid_box .grid_item .yuan {
    width: 11.5rem;
    height: 11.5rem;
    border-radius: 50%;
    position: absolute;
    top: 4.6875rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 3rem;
    padding: 2.5rem;
    z-index: 9;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.list_packaging_one .content .grid_box .grid_item:nth-child(1) .yuan {
    background-color: rgba(0, 147, 209, 0.8);
}

.list_packaging_one .content .grid_box .grid_item:nth-child(2) .yuan {

    background-color: rgba(237, 195, 0, 0.8);
}

.list_packaging_one .content .grid_box .grid_item:nth-child(3) .yuan {
    padding: 1.875rem;
    background-color: rgba(188, 13, 56, 0.8);
}

.list_packaging_one .content .grid_box .grid_item:nth-child(2) {
    flex: unset;
    width: 37%;
    margin-left: -3.125rem;
    margin-right: -3.125rem;
}

.list_packaging_one .content .text h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 3rem;
}

.list_packaging_one .content .text p {
    margin-top: 0.5625rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.list_packaging_one .row_box .row {
    align-items: center;
}

.list_packaging_one .row_box .row .left {
    padding-right: 2.9375rem;
}

.list_packaging_one .row_box .row .right .text h3 {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 3rem;
}

.list_packaging_one .row_box .row .right .text p {
    margin-top: 0.5625rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.list_packaging_one .grid_cont {
    position: relative;
}

.list_packaging_one .grid_cont .grid_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.9375rem;
}

.list_packaging_one .grid_cont .yuan {
    width: 26.5rem;
    height: 26.5rem;
    border-radius: 26.5rem;
    border: 1.25rem solid #0093D1;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.list_packaging_one .grid_cont .yuan h3 {
    width: 100%;
    color: #484848;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 3rem;
}

.list_packaging_one .grid_cont .yuan p {
    margin-top: 0.5625rem;
    width: 100%;
    color: #5F5F5F;
    text-align: center;
    font-family: "Noto Sans SC";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 1rem;
}

.list_packaging_one .video-container {
    position: relative;
    width: 100%;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.list_packaging_one .video-container video {
    width: 100%;
    display: block;
}

@keyframes breathe {
    0% {
        transform: translate(-50%, -50%) scale(1);
        /* 初始状态，正常大小 */
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
        /* 初始阴影 */
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        /* 放大 5%，模拟吸气 */
        box-shadow: 0 4px 20px rgba(0, 85, 164, 0.2);
        /* 阴影变大、变暖，增强立体感 */
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        /* 回到初始状态，模拟呼气 */
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }
}

.list_packaging_one .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.75rem;
    height: 3.75rem;
    background: #036EB8;
    /* 蓝色背景 */
    color: #fff;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.list_packaging_one .play-btn i {
    position: relative;
    z-index: 2;
}

.list_packaging_one .play-btn::before {
    content: '';
    display: block;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    background-color: rgba(3, 110, 184, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 动画配置 */
    animation-name: breathe;
    /* 应用上面定义的动画 */
    animation-duration: 3s;
    /* 每次呼吸持续 3 秒 */
    animation-iteration-count: infinite;
    /* 无限循环 */
    animation-timing-function: ease-in-out;
    /* 关键：平滑地开始和结束，更像真实呼吸*/
}

.list_packaging_two {
    padding: 8.75rem 0;
}

.list_packaging_two .row {
    align-items: center;
}

.list_packaging_two .row .left {
    padding: 0;
}

.list_packaging_two .row .left .text h3 {
    color: #484848;
    text-align: justify;
    font-family: "Noto Sans SC";
    font-size: 2.75rem;
    font-weight: 700;
}

.list_packaging_two .row .left .text p {
    margin-top: 2.5rem;
    color: #5F5F5F;
    /*text-align: justify;*/
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2.25rem;
}

.list_packaging_two .row .right {
    padding-left: 2.9375rem;
}

.list_product .product_box .row {
    align-items: center;
    margin-bottom: 6.25rem;
}

.list_product .product_box .row .left {
    padding-left: var(--container);
}

.list_product .product_box .row .left .title {
    color: #484848;
    font-family: "Noto Sans SC";
    font-size: 3rem;
    font-weight: 700;
}

.list_product .product_box .row .left .desc {
    margin-top: 1rem;
    color: #5F5F5F;
    font-family: "Noto Sans SC";
    font-size: 1.25rem;
    font-weight: 350;
    line-height: 2.25rem;
}

.list_product .product_box .row .right {
    padding-left: 3.75rem;
}

.list_product .product_box .row:nth-child(even) .right {
    order: 1;
    padding-right: 3.75rem;
    padding-left: 0.9375rem;
}

.list_product .product_box .row:nth-child(even) .left {
    order: 2;
    padding-right: var(--container);
    padding-left: 0.9375rem;
}

/* 内部实际的内容框 */
.product_pop .container {
    background: #fff;
    /* 距离顶部一点距离，露出背景 */
    min-height: 100vh;
}

.product_pop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #fff;
    /* 遮罩背景 */
    display: none;
    /* 初始隐藏 */
    overflow-y: auto;
}

.product_pop .close_btn {
    position: absolute;
    top: 5rem;
    right: 5rem;
}

.product_pop .close_btn i {
    font-size: 2rem;
    color: #333333;
}

.product_pop .swiper {
    position: relative;
    overflow: hidden;
}

.product_pop .swiper_product .over {
    height: 34.375rem;
    text-align: center;
}

.product_pop .swiper_product .over img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.product_pop .swiper_probtn {
    width: 80%;
    margin: 3.125rem auto 0;
    position: relative;
}

.product_pop .swiper_probtn .swiper-slide {
    padding: 0 1.25rem;
}

.product_pop .swiper_probtn .swiper-slide-thumb-active .over {
    border: 0.125rem solid #0093D1;
}

.product_pop .swiper-button-next {
    right: 0;
}

.product_pop .swiper-button-prev {
    left: 0;
}