* {
    margin: 0px;
    padding: 0px;
}

/* @font-face {
    font-family: 'SansSC-Regular';
    src: url(../font/SourceHanSansSC-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

@font-face {
    font-family: 'SansSC-Medium';
    src: url(../font/SourceHanSansSC-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* @font-face {
    font-family: 'SansSC-Bold';
    src: url(../font/SourceHanSansSC-Bold.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

input,
textarea,
select,
button {
    outline: none;
    border: none;
}

html {
    transition: font-size 0.3s ease;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 10px;
}

body {
    font-size: 1.5rem;
    /* 15px - 这样更清晰 */
    font-family: 'SansSC-Medium', "Microsoft YaHei", "微软雅黑", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
}


/* 公共类名 */
.container {
    width: 100%;
    max-width: 160rem;
    margin: 0 auto;
    height: 100%;
}

/* 导航开始 */
.nav {
    width: 100%;
    height: 10rem;
    background: #FFF;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    transition: 0.5s ease;
}

.nav .out {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav .out .logo {
    height: 5.6rem;
    max-width: 35.5rem;
    display: block;
    position: relative;
}

.nav .out .logo img {
    height: 100%;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.nav .out .right {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav .out .right .nav-list {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav .out .right .nav-list li {
    position: relative;
    height: 100%;
    margin-right: 8.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav .out .right .nav-list li:last-child {
    margin-right: 0px;
}

.nav .out .right .nav-list .nav-item {
    font-weight: 500;
    font-size: 2rem;
    color: #3E3E3E;
    font-family: 'SansSC-Medium';
    text-transform: capitalize;
}

.nav .out .right .nav-list li.active .nav-item {
    color: #165091;
}

.nav .out .right .language {
    display: flex;
    margin-left: 4.5rem;
        height: 100%;
    align-items: center;
        cursor: pointer;
}

.nav .out .right .language i {
    width: 0.1rem;
    height: 1.4rem;
    background: #E1E1E1;
    display: block;
    margin: 0px 0.4rem;
}


.language{
    position: relative;
}

.language .icon-img {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language .icon-img img {
    width: 2.4rem;
    height: 2.4rem;
    display: block;
    margin-right: 1rem;
}

.language .icon-img span {
    color: #3e3e3e;
    font-size: 1.6rem;
    display: block;
}

.language-drop-down {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 16rem;
    background: #FFF;
    transform: translate(-50%, 0%);
    box-sizing: border-box;
    padding: 0.5rem;
    border: 0.1rem solid #E1E1E1;
    display: none;
    text-align: center ;
}

.language-drop-down a {
    width: 100% ;
    padding: 0.5rem 1rem ;
    box-sizing: border-box ;
    display: block;
    font-size: 1.6rem;
    color: #3E3E3E;
}

.language-drop-down a:hover {
    background: #165091 ;
    color: #FFF !important;
}

.nav .out .right .language:hover .language-drop-down {
display: block; 
}

.nav.active {
    height: 8rem;
    box-shadow: 0px 0px 1rem 0.1rem #00000027;
}

.Sub-navigation {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 24rem;
    background: #FFF;
    transform: translate(-50%, 0%);
    box-sizing: border-box;
    padding: 0.5rem;
    border: 0.1rem solid #E1E1E1;
    display: none;
}

.Sub-navigation a {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    box-sizing: border-box;
    color: #333;
    font-size: 1.6rem;
}

.Sub-navigation a:hover {
    background: #165091;
    color: #FFF;
}

/* 首页banner */
.banner_swiper {
    width: 100%;
}

.banner_swiper .swiper-slide {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner_swiper .swiper-slide .img {
    width: 100%;
    display: block;
}

.banner_swiper .swiper-slide .img img {
    width: 100%;
    height: auto;
    display: block;
}

.banner_swiper .swiper-slide .text {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.banner_swiper .swiper-slide .text .container {
    padding-top: 6rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_swiper .swiper-slide .text h2 {
    font-weight: 500;
    font-size: 6.2rem;
    color: #FFFFFF;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.36);
    margin-bottom: 5rem;
    font-family: 'SansSC-Medium';
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: 1s ease;
}

.banner_swiper .swiper-slide .text p {
    font-weight: 400;
    font-size: 3.1rem;
    color: #FFFFFF;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.48);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: 1s ease;
    transition-delay: 0.3s;
}

.banner_swiper .swiper-slide-active .text h2,
.banner_swiper .swiper-slide-active .text p {
    opacity: 1;
    transform: none;
}

.banner_swiper .mouse-icon {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.banner_swiper .mouse-icon img {
    width: 1.7rem;
    height: 2.5rem;
    display: block;
    object-fit: contain;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.banner_swiper .mouse-icon span {
    font-weight: 300;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.banner_swiper .swiper-pagination {
    left: 16rem;
    bottom: 9.8rem;
    display: flex;
    align-items: center;
}

.banner_swiper .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    display: block;
    opacity: 0.5;
    transition: 0.5s ease;
    border-radius: 2rem;
    background: #FFF;
}

.banner_swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 2.9rem;
}

/* 首页产品中心 */
.Product-Home {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 10rem;
    margin-bottom: 10rem;
    box-sizing: border-box;
}

.Product-Home .icon-img {
    position: absolute;
    right: -5.7rem;
    top: -9.2rem;
    width: 100.08rem;
    height: 70rem;
    display: block;
}

.Product-Home .icon-img img {
    width: 100%;
    height: 100%;
    display: block;
}

.Product-Home .public-title p {
    width: 50%;
    font-weight: 500;
    font-size: 1.8rem;
    color: #7E7E7E;
    line-height: 1.6em;
    margin-top: 2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;

    height: calc(1.8rem * 1.6 * 3);

}

.Product-Home .Top-Product-list {
    width: 100%;
    background: #165091;
    border-radius: 2.5rem;
    margin-top: 15rem;
    /*min-height: 54rem;*/
}

.Product-Home .Top-Product-list .Product-item {
    width: 100%;
    height: 100%;
    padding: 5rem 5rem 15.7rem 5rem;
    box-sizing: border-box;
    position: relative;
}

.Product-Home .Top-Product-list .left {
    width: 50%;
    padding-right: 4.3rem;
    box-sizing: border-box;
}

.Product-Home .Top-Product-list .left .title {
    width: 100%;
}

.Product-Home .Top-Product-list .left .title h3 {
    font-weight: bold;
    font-size: 4rem;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
    white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
}

.Product-Home .Top-Product-list .left .title span {
    font-weight: 300;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.Product-Home .Top-Product-list .left .button-list {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 4rem;
    display: flex;
    gap: 0.8rem;
}

.Product-Home .Top-Product-list .left .button-list a {
    padding: 1rem 1.8rem;
    box-sizing: border-box;
    border: 0.1rem solid rgba(255, 255, 255, 0.68);
    border-radius: 1.1rem;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.Product-Home .Top-Product-list .left .button-list a:hover {
    background: #4195f5;
    border: 0.1rem solid #4195f5;
}

.Product-Home .Top-Product-list .left .txt {
    width: 100%;
        line-height: 1.8em;
        display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4 ;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Product-Home .Top-Product-list .left .txt p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #FFFFFF;
}

.Product-Home .Top-Product-list .left .more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18.4rem;
    height: 5.1rem;
    background: #FFFFFF;
    border-radius: 2.6rem;
    font-weight: 500;
    font-size: 1.7rem;
    color: #165091;
    margin-top: 7.5rem;
}

.Product-Home .Top-Product-list .left .more img {
    height: 0.8rem;
    display: block;
    margin-left: 1.5rem;
    transform: translateY(0.5rem);
}

.Product-Home .Top-Product-list .right {
    width: 46.875%;
    height: 59.7rem;
    box-sizing: border-box;
    position: absolute;
    right: 5rem;
    bottom: 3.7rem;
    background: #F5F5F5;
    box-shadow: 0px 0px 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 1.4rem;
    padding: 2.8rem 3rem;
    box-sizing: border-box;
    overflow: hidden;
}

.Product-Home .Top-Product-list .right .logo {
    position: absolute;
    left: 3rem;
    top: 2.8rem;
    width: 17.8rem;
    height: 5.3rem;
    z-index: 10 ;
}

.Product-Home .Top-Product-list .right .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Product-Home .Top-Product-list .right .img {
    width: 100%;
    height: 100%;
        position: relative;
    z-index: 5;
}

.Product-Home .Top-Product-list .right .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: 0.6s ease;
}

.Product-Home .Top-Product-list .right .img:hover img {
    transform: scale(1.1);
}

.Product-Home .Product-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3.1rem;
    align-items: stretch;
}

.Product-Home .Product-list .Product-item {
    background: #F3F3F3;
    box-shadow: 0px 0px 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 1.6rem;
    width: 37.7rem;
    /*height: 34.1rem;*/
    position: relative;
    box-sizing: border-box;
}

.Product-Home .Product-list .Product-item a {
    display: block;
    box-sizing: border-box;
    padding: 1.3rem 1.6rem 2.5rem 1.6rem;
    width: 100%;
    height: 100%;
}

.Product-Home .Product-list .Product-item .logo {
    width: 9.7rem;
    height: 2.9rem;
    display: block;
    position: relative ;
    /*left: 1.6rem;*/
    /*top: 1.3rem;*/
    z-index: 10;
}

.Product-Home .Product-list .Product-item .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Product-Home .Product-list .Product-item .img {
    width: 100%;
    height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Product-Home .Product-list .Product-item .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: 0.6s ease;
}

.Product-Home .Product-list .Product-item:hover .img img {
    transform: scale(1.1);
}

.Product-Home .Product-list .Product-item .tit {
    width: 100%;
    text-align: center;
}

.Product-Home .Product-list .Product-item .tit h3 {
    font-weight: 500;
    font-size: 2rem;
    color: #262626;
    z-index: 10;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;

}

.Product-Home .Product-list .Product-item:hover .tit h3 {
    color: #165091;
}

/* 公共标题 */
.public-title {
    width: 100%;
}

.public-title .title span {
    font-weight: 500;
    font-size: 2.5rem;
    color: #165091;
    text-transform: capitalize;
    display: block;
    margin-bottom: 0.8rem;
}

.public-title .title h2 {
    font-weight: bold;
    font-size: 4rem;
    color: #202020;
    text-transform: capitalize ;
}

.public-title .title h2 b {
    color: #165091;
    text-transform: capitalize ;
}

/* 首页行业解决方案 */
.Industry-Solutions {
    width: 100%;
    margin: 10rem 0px 11rem 0px;
}

.Industry-Solutions .public-title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Industry-Solutions .public-title .txt {
    transform: translateY(1.6rem);
    max-width: 105rem;
    width: 100%;
    padding-right: 5.1rem;
    box-sizing: border-box;
    flex: none;
    font-weight: 400;
    font-size: 2rem;
    color: #7E7E7E;
    line-height: 1.7em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 显示2行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.Industry-Solutions .Solutions-swiper {
    width: 100%;
    padding-left: 29.1rem;
    padding-right: 39.1rem;
    box-sizing: border-box;
    margin-top: 9rem;
}

.Industry-Solutions .Solutions-swiper .swiper-slide {
    width: 100%;
    height: 52.4rem;
    margin-right: 13.1rem;
}

.Industry-Solutions .Solutions-swiper .swiper-slide:last-child {
    margin-right: 0px;
}

.Industry-Solutions .Solutions-swiper .swiper-slide-active {
    /* margin-left: 29.1rem; */
}

.Industry-Solutions .Solutions-swiper .swiper-slide img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.Industry-Solutions .swiper-button-prev {
    left: 19rem;
}

.Industry-Solutions .swiper-button-next {
    right: 27.6rem;
}

.Industry-Solutions .out {
    position: relative;
    width: 100%;
}

.Industry-Solutions .text-swiper {
    position: absolute;
    left: 50%;
    z-index: 10;
    top: 50%;
    transform: translate(-0%, -50%);
    width: 49rem;
    height: 45rem;
    background: #FFFFFF;
    border-radius: 1.2rem;
}

.Industry-Solutions .text-swiper .swiper-slide {
    padding: 6rem 6rem 4.8rem 4.8rem;
    box-sizing: border-box;
}

.Industry-Solutions .text-swiper .swiper-slide h3 {
    font-weight: bold;
    font-size: 2.3rem;
    color: #262626;
    margin-bottom: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.Industry-Solutions .text-swiper .swiper-slide p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #7E7E7E;
    line-height: 1.9em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    /* 显示2行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.Industry-Solutions .text-swiper .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18.4rem;
    height: 5.1rem;
    background: #FFFFFF;
    border: 0.1rem solid #165091;
    border-radius: 2.6rem;
    font-weight: 500;
    font-size: 1.7rem;
    color: #165091;
    margin-top: 7.5rem;
    transition: 0.6s ease;
}

.Industry-Solutions .text-swiper .swiper-slide a img {
    height: 0.8rem;
    display: block;
    margin-left: 1.5rem;
    transform: translateY(0.5rem);
}

.Industry-Solutions .text-swiper .swiper-slide a:hover {
    transform: scale(1.1);
}


.swiper-button-prev,
.swiper-button-next {
    width: 7.4rem;
    height: 7.4rem;
    background: rgba(22, 80, 145, 0.17);
    border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 2.6rem;
    color: #165091;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(22, 80, 145, 1);
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: #FFF;
}


/* 首页关于我们 */
.About-Us {
    width: 100%;
    position: relative;
}

.about-us-opening {
    width: 100%;
    background: url('../images/10069.webp') no-repeat center center / cover;
    height: 91.9rem;
    background-size: cover;
    position: sticky;
    top: 0px;
    z-index: 1;
    padding-top: 18.1rem;
    box-sizing: border-box;
    text-align: center;
}

.about-us-opening h2 {
    text-align: center;
    font-weight: bold;
    font-size: 4rem;
    color: #262626;
    margin-bottom: 1rem;
}

.about-us-opening h2 b {
    color: #165091;
}

.about-us-opening .scroll {
    position: absolute;
    bottom: 9rem;
    width: 27.7rem;
    height: 27.7rem;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

.About-Hmoe {
    width: 100%;
    height: 91.9rem;
    background: url(../images/10070.webp) no-repeat center center / cover;
    background-size: cover;
    position: sticky;
    top: 0px;
    background-attachment: fixed;
    z-index: 10;
    padding-top: 18.6rem;
    box-sizing: border-box;
}

.About-Hmoe .out {
    width: 100%;
    display: flex;
    align-items: center;
}

.About-Hmoe .out .left {
    width: 65%;
}

.About-Hmoe .out .left .public-title .title span,
.About-Hmoe .out .left .public-title .title h2 {
    color: #FFF;
}

.About-Hmoe .out .left .public-title .txt {
    color: #FFF;
    margin-top: 6.5rem;
    font-weight: 400;
    font-size: 1.8rem;
    color: #FFFFFF;
    line-height: 1.9em;
    max-height: 34rem ;
    overflow: auto ;
}

.About-Hmoe .out .left .public-title a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18.4rem;
    height: 5.1rem;
    background: #165091;
    border: 0.1rem solid #165091;
    border-radius: 2.6rem;
    font-weight: 500;
    font-size: 1.7rem;
    color: #fff;
    margin-top: 7.5rem;
    transition: 0.6s ease;
}

.About-Hmoe .out .left .public-title a img {
    height: 0.8rem;
    display: block;
    margin-left: 1.5rem;
    transform: translateY(0.5rem);
}

.About-Hmoe .out .right {
    width: 16.6rem;
    height: 16.6rem;
    border-radius: 50%;
    position: relative;
    margin-left: 21.8rem;
    cursor: pointer;
}

.About-Hmoe .out .right .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 7rem;
    height: 7rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.27);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
}

.About-Hmoe .out .right .icon img {
    width: 3.6rem;
    height: 3.6rem;
    display: block;
    transform: translate(-0.1rem, -0.2rem);
}

.About-Hmoe .out .right::after {
    width: 100%;
    height: 100%;
    background: #164f91b4;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    content: '';
    z-index: 2;
    transform: scale(0.8);
    animation: identifier 2s ease infinite alternate;
}

.About-Hmoe .out .right::before {
    width: 100%;
    height: 100%;
    background: rgba(22, 80, 145, 0.5);
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    content: '';
    z-index: 1;
    animation: identifier2 2s ease infinite alternate;
}

@keyframes identifier {
    0% {
        transform: scale(0.6);
    }

    100% {
        transform: scale(0.8);
    }
}



@keyframes identifier2 {
    0% {
        transform: scale(0.8);
    }

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

.About-Hmoe .Number-scroll {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 135.5rem;
    height: 19.4rem;
    background: rgba(255, 255, 255, 0.91);
    border-radius: 3.9rem 0px 0px 0px;
    padding: 5.6rem 3rem 4.7rem 13.6rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.About-Hmoe .Number-scroll .item {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 0.1rem solid #CCCCCC;
    box-sizing: border-box;
    position: relative;
}

.About-Hmoe .Number-scroll .item::after {
    width: 0.3rem;
    height: 3rem;
    background: #165091;
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    content: '';
    transform: translateX(-0.15rem);
}

.About-Hmoe .Number-scroll .item .Number {
    display: flex;
    align-items: end;
    margin-bottom: 1rem;
}

.About-Hmoe .Number-scroll .item .Number b {
    font-weight: 500;
    font-size: 5.7rem;
    color: #111111;
    line-height: 1;
}

.About-Hmoe .Number-scroll .item .Number span {
    font-weight: 400;
    font-size: 1.5rem;
    color: #666666;
    display: block;
    margin-left: 0.6rem;
}

.About-Hmoe .Number-scroll .item>span {
    font-weight: 400;
    font-size: 1.6rem;
    color: #959595;
    padding: 0px 5% ;
    box-sizing: border-box ;
    text-align: center ;
}

/* 新闻中心 */
.News-Home {
    width: 100%;
    background: #F0F1F3;
    padding: 10rem 0px;
}

.News-Home .public-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap ;
    width: 100%;
    gap: 3rem 0px ;
}

.News-Home .public-title .button-list {
    display: flex;
    align-items: center;
    gap: 0px 6.2rem;
}

.News-Home .public-title .button-list a {
    font-weight: 400;
    font-size: 2.3rem;
    color: #505050;
}

.News-Home .public-title .button-list a.active,
.News-Home .public-title .button-list a:hover {
    color: #165091;
}

.News-Home .News-swiper {
    width: 100%;
    margin-top: 6rem;
}

.News-Home .News-swiper .swiper-slide {
    width: 32%;
    margin-right: 2%;
    border-radius: 2rem;
    overflow: hidden;
    background: #FFF;
}

.News-Home .News-swiper .swiper-slide .img {
    width: 100%;
    height: 31.2rem;
    overflow: hidden;
    border-radius: 2rem;
    position: relative;
}

.News-Home .News-swiper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease;
}

.News-Home .News-swiper .swiper-slide:hover .img img {
    transform: scale(1.1);
}

.News-Home .News-swiper .swiper-slide .img .tiem {
    width: 16rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 80, 145, 0.7);
    border-radius: 2rem 0px 2rem 0px;
    z-index: 10;
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.News-Home .News-swiper .swiper-slide .text {
    width: 100%;
    padding: 3rem 3.9rem 2.9rem 3.9rem;
    box-sizing: border-box;
}

.News-Home .News-swiper .swiper-slide .text h3 {
    font-weight: 500;
    font-size: 2.4rem;
    color: #111111;
    margin-bottom: 1.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    /* 显示2行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.News-Home .News-swiper .swiper-slide:hover .text h3 {
    color: #165091;
}

.News-Home .News-swiper .swiper-slide .text p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 显示2行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.News-Home .News-swiper .swiper-slide .text .more {
    margin-top: 2.1rem;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
}

.News-Home .News-swiper .swiper-slide .text .more img {
    height: 1.2rem;
    display: block;
    margin-left: 1rem;
}

#footer {
    width: 100%;
    background: #000000;
    box-shadow: 0px -0.1rem 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
}

#footer .Top-logo {
    width: 100%;
}

#footer .Top-logo .out {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5.4rem 0px 5rem 0px;
    box-sizing: border-box;
    border-bottom: 0.1rem solid #707070;
    box-sizing: border-box;
}

#footer .Top-logo .out .logo {
    width: 31rem;
    height: 9.2rem;
}

#footer .Top-logo .out .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

#footer .Top-logo .out .QR-code {
    display: flex;
    align-items: center;
}

#footer .Top-logo .out .QR-code span {
    font-weight: 400;
    font-size: 1.8rem;
    color: #EBEBEB;
    margin-right: 1rem ;
}

#footer .Top-logo .out .QR-code .img {
    width: 4.2rem;
    height: 4.2rem;
    display: block;
    cursor: pointer;
}

#footer .Top-logo .out .QR-code .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

#footer .footer-information {
    width: 100%;
    margin-top: 4rem;
}

#footer .footer-information .out {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#footer .footer-information .out .left {
    width: 30%;
}

#footer .footer-information .out .left li {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

#footer .footer-information .out .left li:last-child {
    margin-bottom: 0px;
}

#footer .footer-information .out .left li span,
#footer .footer-information .out .left li a {
    font-weight: 400;
    font-size: 1.8rem;
    color: #DCDCDC;
}

#footer .footer-information .out .right {
    display: flex;
    width: 60%;
    justify-content: space-between ;
}

#footer .footer-information .out .right .box {
    width: 18%;
}

#footer .footer-information .out .right .box h2 a {
    font-weight: 500;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    display: block;
}

#footer .footer-information .out .right .box li a {
    font-weight: 400;
    font-size: 1.7rem;
    color: #DCDCDC;
    margin-bottom: 2.6rem;
    display: block;
    width: 100% ;
    white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
}

#footer .footer-information .out .right .box li:last-child a {
    margin-bottom: 0px;
    display: block;
}

#footer .Friendship-Link {
    width: 100%;
    padding-bottom: 6.5rem;
    border-bottom: 0.1rem solid rgba(114, 114, 114, 0.37);
}

#footer .Friendship-Link .out {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}

#footer .Friendship-Link .out h3 {
    font-weight: 400;
    font-size: 1.8rem;
    color: #DCDCDC;
}

#footer .Friendship-Link .out li a {
    font-weight: 400;
    font-size: 1.8rem;
    color: #DCDCDC;
    display: block;
    margin: 0px 0.5rem;
}

#footer .Filing-number {
    width: 100%;
    padding: 1.5rem 0px;
}

#footer .Filing-number .out {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

#footer .Filing-number .out p {
    font-weight: 400;
    font-size: 1.4rem;
    color: #CCCCCC;
}

#footer .Filing-number .out a {
    font-weight: 400;
    font-size: 1.4rem;
    color: #CCCCCC;
}

#footer .Filing-number .out .support {
    position: absolute;
    right: 0px;
}

.video-popup,
.img-popup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.36);
    display: none;
}


.video-popup .out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    max-width: 90rem;
    background: #FFF;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
    border-radius: 1rem;
    box-shadow: 0px 0px 1rem 0.1rem #00000041;
    border: 0.1rem solid #CCCCCC;
}

.video-popup .out video {
    width: 100%;
    display: block;
}

.video-popup .out .Close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 3rem;
    height: 3rem;
    border: 0.1rem solid #CCCCCC;
    background: #ffffff69;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    line-height: 1;
    cursor: pointer;
    transform: translate(100%, -100%);
}

.video-popup .out .Close svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #333;
}

.img-popup .out {
    width: 30rem;
    height: 30rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    padding: 1rem;
    box-sizing: border-box;
}

.img-popup .out img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* 内页公共标题 */
.pages-Public-Title {
    width: 100%;
    text-align: center;
}

.pages-Public-Title span {
    font-weight: 500;
    font-size: 2.5rem;
    color: #0C4DA2;
    text-transform: capitalize;
    display: block;
    margin-bottom: 0.7rem;
}

.pages-Public-Title h2 {
    font-weight: bold;
    font-size: 4rem;
    color: #262626;
    text-transform: capitalize ;
}

.pages-Public-Title h2 b {
    font-weight: bold;
    font-size: 4rem;
    color: #165091;
}

/* 发展历程 */
.Development-history {
    width: 100%;
    padding-top: 9rem;
    box-sizing: border-box;
    background: url(../images/10084.webp) no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.Development-history .text-container {
    width: 122.9rem;
    background: #FFFFFF;
    box-shadow: 0px 0px 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 2.4rem;
    margin: 6rem auto 6.3rem auto;
    padding: 3rem 10.9rem 2rem 7rem;
    box-sizing: border-box;
}

.Development-history .text-container .box {
    width: 100%;
    display: flex;
    align-items: center;
    display: none;
}

.Development-history .text-container .box.active {
    display: flex;
}

.Development-history .text-container .box .txt {
    width: 70%;
}

.Development-history .text-container .box .txt p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #555555;
    line-height: 1.8em;
}

.Development-history .text-container .box .tit {
    width: 30%;
    text-align: right;
}

.Development-history .text-container .box .tit h3 {
    font-weight: bold;
    font-size: 8.7rem;
    color: #165091;
}

.Development-history .out {
    width: 85.7rem;
    height: 28.3rem;
    position: relative;
    margin: 0 auto;
    margin-top: 17.5rem;
}

.Development-history .out .history-img::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../images/img-11.png) no-repeat center;
    background-size: cover;
    z-index: 5;
}

.Development-history .out .history-img {
    width: 85.7rem;
    height: 85.7rem;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

.Development-history .out .history-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.Development-history .out::after {
    width: 0.1rem;
    height: 2.9rem;
    background: #0C4DA2;
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -100%);
    content: '';
    z-index: 6;
}

.Development-history .out .tiem-list {
    width: 85.7rem;
    height: 85.7rem;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.Development-history .out .tiem-list .item {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 50%;
    transform-origin: center bottom;
}

.Development-history .out .tiem-list .item span {
    position: absolute;
    bottom: calc(100% + 1.5vw);
    left: 50%;
    transform: translateX(-50%) scale(0.75);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
    font-size: 5.5rem;
    color: #BBBBBB;
}

.Development-history .out .tiem-list .item.active span {
    color: #0C4DA2;
    transform: translateX(-50%) scale(1);
    bottom: calc(100% + 3vw);
}

/* 企业优势 */

.Corporate-Advantages {
    width: 100%;
    margin: 6rem 0px 10rem 0px;
}

.Corporate-Advantages .container {
    max-width: 163rem;
}

.Corporate-Advantages .out {
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2%;
}

.Corporate-Advantages .out .box {
    width: 23.5%;
    background: #F0F4F8;
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.15);
    padding: 6.2rem 3.7rem 6.2rem 3.7rem;
    box-sizing: border-box;
}

.Corporate-Advantages .out .box .icon {
    width: 4.2rem;
    height: 4.2rem;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.Corporate-Advantages .out .box .icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Corporate-Advantages .out .box h3 {
    font-weight: 500;
    font-size: 2.1rem;
    color: #111111;
    margin-bottom: 2.2rem;
    text-align: center;
}

.Corporate-Advantages .out .box p {
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 1.7em;
}

/* 生产基地 */
.production-base {
    width: 100%;
    position: relative;
    padding-top: 7.2rem;
    box-sizing: border-box;
}

.production-base .container {
    position: relative;
    z-index: 5;
    max-width: 100%;
    padding-left: 16rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.production-base::after {
    width: 100%;
    height: 100%;
    max-width: 153.4rem;
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    background: url(../images/10087.webp) no-repeat center;
    background-size: cover;
}

.production-base .left .pages-Public-Title {
    text-align: left;
}

.production-base .left .pages-Public-Title span,
.production-base .left .pages-Public-Title h2 {
    color: #FFF;
}

.production-base .left {
    width: 23%;
}

.production-base .left .out {
    margin-top: 11rem;
    width: 100%;
    position: relative;
}

.production-base .left .out .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    margin-top: 10rem;
    margin-left: 2%;
}

.production-base .left .out .swiper-pagination .swiper-pagination-bullet {
    margin: 0px 0.5rem;
    background: #FFF;
    opacity: 0.45;
    width: 1rem;
    height: 1rem;
}

.production-base .left .out .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 3rem;
    border-radius: 1.5rem;
}

.production-base .left .out .base-swiper {
    width: 100%;
    height: 22rem;
}

.production-base .left .out .base-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    cursor: pointer;
    width: 100% ;
}

.production-base .left .out .base-swiper .swiper-slide:last-child {
    margin-bottom: 0px;
}

.production-base .left .out .base-swiper .swiper-slide b {
    font-weight: bold;
    font-size: 3.2rem;
    color: #D6D6D6;
    transform: scale(0.75);
    line-height: 1;
    transition: 0.3s ease;
}

.production-base .left .out .base-swiper .swiper-slide span {
    font-weight: 500;
    font-size: 2.2rem;
    color: #D6D6D6;
    transform: translateX(-1.2rem) scale(0.75);
    line-height: 1.2em;
    transition: 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.production-base .left .out .base-swiper .swiper-slide-thumb-active b {
    transform: scale(1);
    color: #FFF;
}

.production-base .left .out .base-swiper .swiper-slide-thumb-active span {
    transform: translateX(1.5rem) scale(1);
    color: #FFF;
}

.production-base .right {
    width: 73.5%;
}

.production-base .right .Top-out {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5.8rem;
}

.production-base .right .Top-out .txt {
    width: 61%;
    font-weight: 400;
    font-size: 1.8rem;
    color: #FFFFFF;
    line-height: 2em;
    padding-top: 1rem;
    box-sizing: border-box;
}

.production-base .right .Top-out .button-list {
    position: relative;
    width: 39%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px 6.1rem;
}

.production-base .right .Top-out .swiper-button-prev,
.production-base .right .Top-out .swiper-button-next {
    width: auto;
    height: auto;
    background: none;
    position: static;
}

.production-base .right .Top-out .swiper-button-prev::after,
.production-base .right .Top-out .swiper-button-next::after {
    color: #4E4E4E;
}

.production-base .right .Top-out .swiper-button-prev:hover::after,
.production-base .right .Top-out .swiper-button-next:hover::after {
    color: #165091;
}

.production-base .right .base-swiper2 {
    width: 100%;
    height: 62.75rem;
}

.production-base .right .base-swiper2 .swiper-slide {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 3rem 0px 0px 0px;
    overflow: hidden;
}

.production-base .right .base-swiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* 荣誉资质 */
.Honors-and-Qualifications {
    margin: 11.7rem 0px 8rem 0px;
}

.Honors-and-Qualifications .out {
    margin-top: 5.6rem;
    width: 100%;
    position: relative;
}

.Honors-and-Qualifications .out .Honors-swiper {
    width: 100%;
}

.Honors-and-Qualifications .out .Honors-swiper .swiper-slide {
    width: 26.2rem;
    margin-right: 6.7rem;
}

.Honors-and-Qualifications .out .Honors-swiper .swiper-slide:last-child {
    margin-right: 0px;
}

.Honors-and-Qualifications .out .Honors-swiper .swiper-slide .img {
    width: 100%;
    height: 35.9rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Honors-and-Qualifications .out .Honors-swiper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Honors-and-Qualifications .out .Honors-swiper .swiper-slide span {
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    margin-top: 1.4rem;
    text-align: center;
    display: block;
}

.Honors-and-Qualifications .swiper-button-prev,
.Honors-and-Qualifications .swiper-button-next {
    width: 5.5rem;
    height: 5.5rem;
    background: rgba(0, 0, 0, 0.17);
}

.Honors-and-Qualifications .swiper-button-prev::after,
.Honors-and-Qualifications .swiper-button-next::after {
    font-size: 2rem;
    color: #FFF;
}

.Honors-and-Qualifications .swiper-button-prev {
    left: -9rem;
}

.Honors-and-Qualifications .swiper-button-next {
    right: -7rem;
}

.Honors-and-Qualifications .swiper-button-prev:hover,
.Honors-and-Qualifications .swiper-button-next:hover {
    background: #165091;
}

/* 合作案例 */
.Cooperation-Cases {
    width: 100%;
    background: url(../images/9943.webp) no-repeat center;
    background-size: cover;
    padding: 7rem 0px 9rem 0px;
    box-sizing: border-box;
}

.Cooperation-Cases .out {
    width: 100%;
    margin-top: 3rem;
}

.Cooperation-Cases .out .swiper {
    padding: 3rem 0px;
}

.Cooperation-Cases .out .swiper .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear;
}

.Cooperation-Cases .out .swiper-slide {
    width: 28.8rem;
    height: 9rem;
    background: #FFFFFF;
    box-shadow: 0px 0px 1.2rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 1.4rem;
    overflow: hidden;
    margin-right: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.Cooperation-Cases .out .swiper-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.Cooperation-Cases .out .swiper:nth-child(1) {
    padding: 3rem 6%;
    box-sizing: border-box;
}

.Cooperation-Cases .out .swiper:nth-child(2) {
    padding-left: 15%;
    box-sizing: border-box;
}

.Cooperation-Cases .out .swiper:nth-child(3) {
    padding-left: 10%;
    box-sizing: border-box;
}

/* 内容页banner */
.banenr-pages {
    width: 100%;
    position: relative;
}

.banenr-pages .img {
    width: 100%;
}

.banenr-pages .img img {
    width: 100%;
    height: auto;
    display: block;
}

.banenr-pages .text {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;
    width: 100%;
    height: 100%;
    padding-top: 6rem;
    box-sizing: border-box;
}

.banenr-pages .text .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banenr-pages .text h2 {
    font-weight: 400;
    font-size: 4.2rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 0;
    opacity: 0;
    animation-fill-mode: forwards;
}

.banenr-pages .text p {
    font-weight: 400;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 4rem;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.banenr-pages .text i {
    width: 5rem;
    height: 0.4rem;
    background: #00B2E3;
    display: block;
    position: relative;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.banenr-pages .text i::after {
    width: 11rem;
    height: 0.4rem;
    background: #165091;
    content: '';
    display: block;
    position: absolute;
    left: 100%;
}


/* 产品中心页面 */
.Product-Center {
    margin: 8rem 0px 10rem 0px;
    width: 100%;
}

.Product-Center .out {
    margin-top: 6rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.Product-Center .out .left {
    width: 19%;
}

.Product-Center .out .left .tit {
    width: 100%;
    height: 8.3rem;
    background: #003E97;
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 1.2rem 1.2rem 0px 0px;
    display: flex;
    align-items: center;
    padding-left: 5rem;
    box-sizing: border-box;
}

.Product-Center .out .left .tit h2 {
    font-weight: bold;
    font-size: 2.5rem;
    color: #FFFFFF;
}

.Product-Center .out .left ul {
    width: 100%;
    background: #ECECEC;
    border-radius: 0px 0px 1.2rem 1.2rem;
}

.Product-Center .out .left ul li {
    width: 100%;
    border-bottom: 0.1rem solid #FFFFFF;
    box-sizing: border-box;
}

.Product-Center .out .left ul li a {
    display: block;
    padding: 2rem 4.9rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1.8rem;
    color: #505050;
}

.Product-Center .out .left ul li.active a,
.Product-Center .out .left ul li:hover a {
    background: #165091;
    color: #FFF;
}

.Product-Center .out .Product-list {
    width: 79%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 2.9rem;
}

.Product-Center .out .Product-list .Product-item {
    background: #F3F3F3;
    box-shadow: 0px 0px 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 1.6rem;
    width: 29.4rem;
    height: 30.9rem;
    position: relative;
    box-sizing: border-box;
}

.Product-Center .out .Product-list .Product-item a {
    display: block;
    box-sizing: border-box;
    padding: 1.3rem 1.6rem 2rem 1.6rem;
    width: 100%;
    height: 100%;
}

.Product-Center .out .Product-list .Product-item .logo {
    width: 9.7rem;
    height: 2.9rem;
    display: block;
    position: absolute;
    left: 1.6rem;
    top: 1.3rem;
        z-index: 10;

}

.Product-Center .out .Product-list .Product-item .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Product-Center .out .Product-list .Product-item .img {
    width: 100%;
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
    box-sizing: border-box;
}

.Product-Center .out .Product-list .Product-item .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: 0.6s ease;
}

.Product-Center .out .Product-list .Product-item:hover .img img {
    transform: scale(1.1);
}

.Product-Center .out .Product-list .Product-item .tit {
    width: 100%;
    text-align: center;
}

.Product-Center .out .Product-list .Product-item .tit h3 {
    font-weight: 500;
    font-size: 1.8rem;
    color: #262626;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
        z-index: 10;
    position: relative;
}

.Product-Center .out .Product-list .Product-item:hover .tit h3 {
    color: #165091;
}

/* 产品详情 */
.Product-Dilute {
    width: 100%;
}

.Product-Dilute .Top-Product {
    margin: 11rem 0px 6rem 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Product-Dilute .Top-Product .left {
    width: 46%;
    height: 44.1rem;
}

.Product-Dilute .Top-Product .left .swiper {
    width: 100%;
    height: 100%;
}

.Product-Dilute .Top-Product .left .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #eee;
}

.Product-Dilute .Top-Product .left .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Product-Dilute .Top-Product .left .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    background: #165091;
    opacity: 0.42;
}

.Product-Dilute .Top-Product .left .swiper-pagination-bullet-active {
    background: #165091;
    opacity: 1;
}

.Product-Dilute .Top-Product .right {
    width: 64%;
    padding-left: 11.2rem;
    box-sizing: border-box;
}

.Product-Dilute .Top-Product .right h2 {
    font-weight: bold;
    font-size: 3.4rem;
    color: #242424;
    margin-bottom: 2.6rem;
}

.Product-Dilute .Top-Product .right .text {
    width: 100%;
    padding: 2rem 0px;
    border: 0.1rem solid #EBEBEB;
    border-left: none;
    border-right: none;
    position: relative;
}

.Product-Dilute .Top-Product .right .text::after {
    content: '';
    height: 0.1rem;
    display: block;
    width: 10%;
    position: absolute;
    top: -0.1rem;
    left: 0px;
    background: #165091;
}

.Product-Dilute .Top-Product .right .text::before {
    content: '';
    height: 0.1rem;
    display: block;
    width: 10%;
    position: absolute;
    bottom: -0.1rem;
    left: 0px;
    background: #165091;
}

.Product-Dilute .Top-Product .right .text h3 {
    font-weight: 500;
    font-size: 2rem;
    color: #242424;
    margin-bottom: 1rem;
}

.Product-Dilute .Top-Product .right .text ul {
    width: 100%;
    list-style: disc;
    padding-left: 3%;
    box-sizing: border-box;
}

.Product-Dilute .Top-Product .right .text ul li {
    width: 100%;
    font-weight: 400;
    font-size: 1.6rem;
    color: #7E7E7E;
    margin-bottom: 1.5rem;
}

.Product-Dilute .Top-Product .right .text ul li:last-child {
    margin-bottom: 0px;
}

.Product-Dilute .Top-Product .right .text ul li::marker {
    width: 0.5rem;
    height: 0.5rem;
    background: #165091;
    display: block;
    color: #165091;
}

.Product-Dilute .Top-Product .right .btn {
    width: 17.1rem;
    height: 5.4rem;
    background: #165091;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.4rem;
    color: #FFFFFF;
    border-radius: 3rem;
    margin-top: 3.8rem;
}

.Product-Dilute .text-container {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 1.6rem;
    padding: 5rem;
    box-sizing: border-box;
    margin-bottom: 4rem;
}

.Product-Dilute .text-container .button-list {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid #E9E9E9;
}

.Product-Dilute .text-container .button-list .box {
    display: flex;
    align-items: center;
}

.Product-Dilute .text-container .button-list .box span,
.Product-Dilute .text-container .button-list a {
    font-weight: 500;
    font-size: 2rem;
    color: #5E5E5E;
    margin: 0px 2.4rem;
    cursor: pointer;
    position: relative;
}

.Product-Dilute .text-container .button-list .box span::after {
    width: 0;
    height: 0.2rem;
    background: #165091;
    display: block;
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.1rem;
    transition: 0.5s ease;
}

.Product-Dilute .text-container .button-list .box span.active::after {
    width: 12.9rem;
}

.Product-Dilute .text-container .list {
    width: 100%;
    padding: 3rem 2.4rem 0px 2.4rem;
    box-sizing: border-box;
}

.Product-Dilute .text-container .list .item {
    width: 100%;
    display: none;
}

.Product-Dilute .text-container .list .item:first-child {
    display: block;
}

.Product-Dilute .text-container .list .item p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #848484;
    line-height: 2em;
    margin: 0.05rem;
}

.Product-Dilute .text-container .list .item img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.05rem auto;
}

.Product-Dilute .Related {
    width: 100%;
    margin-bottom: 5rem;
}

.Product-Dilute .Related h2 {
    font-weight: bold;
    font-size: 4rem;
    color: #111111;
}

.Product-Dilute .Related h2 b {
    color: #165091;
}

.Product-Dilute .Related .out {
    padding: 6rem 1rem;
    width: 100%;
    box-sizing: border-box;
}

.Product-Dilute .Related .out .Product-item {
    background: #F3F3F3;
    box-shadow: 0px 0px 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 1.6rem;
    width: 37.7rem;
    height: 34.1rem;
    position: relative;
    box-sizing: border-box;
    margin-right: 2.4rem;
}

.Product-Dilute .Related .out .Product-item:last-child {
    margin-right: 0px;
}

.Product-Dilute .Related .out .Product-item a {
    display: block;
    box-sizing: border-box;
    padding: 1.3rem 1.6rem 2.5rem 1.6rem;
    width: 100%;
    height: 100%;
}

.Product-Dilute .Related .out .Product-item .logo {
    width: 9.7rem;
    height: 2.9rem;
    display: block;
    position: absolute;
    left: 1.6rem;
    top: 1.3rem;
        z-index: 10;

}

.Product-Dilute .Related .out .Product-item .logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.Product-Dilute .Related .out .Product-item .img {
    width: 100%;
    height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Product-Dilute .Related .out .Product-item .img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: 0.6s ease;
}

.Product-Dilute .Related .out .Product-item:hover .img img {
    transform: scale(1.1);
}

.Product-Dilute .Related .out .Product-item .tit {
    width: 100%;
    text-align: center;
}

.Product-Dilute .Related .out .Product-item .tit h3 {
    font-weight: 500;
    font-size: 2rem;
    color: #262626;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
        z-index: 10;
    position: relative;
}

.Product-Dilute .Related .out .Product-item:hover .tit h3 {
    color: #165091;
}

/* 案例展示 */
.Case-Showcase {
    width: 100%;
    margin: 9rem 0px 10rem 0px;
}

.Case-Showcase .out {
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 2%;
}

.Case-Showcase .out .box {
    width: 32%;
}

.Case-Showcase .out .box .img {
    width: 100%;
    height: 32rem;
    overflow: hidden;
    border-radius: 2rem;
}

.Case-Showcase .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.Case-Showcase .out .box span {
    display: block;
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
    font-size: 2rem;
    color: #262626;
}

/* 行业解决方案 */
.Solution-banner {
    width: 100%;
}

.Solution-banner .text .container {
    align-items: center;
}

.Solution-banner .text .container span {
    font-weight: 500;
    font-size: 1.9rem;
    color: #FFFFFF;
    margin-bottom: 0.9rem;
}

.Solution-banner .text h2 {
    margin-bottom: 4rem;
}

.Solution-banner .text p {
    max-width: 71.9rem;
    width: 100%;
    text-align: center;
    line-height: 1.8em;
}

.Solution-button {
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    position: relative;
}

.Solution-button .list {
    width: 100%;
    min-height: 21.1rem;
    background: #FFF;
    box-shadow: 0px 0.3rem 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 2.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5rem;
    box-sizing: border-box;
}

.Solution-button .list .item {}

.Solution-button .list .item .icon {
    width: 4.1rem;
    height: 4.1rem;
    position: relative;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.Solution-button .list .item .icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.Solution-button .list .item span {
    text-align: center;
    display: block;
    font-weight: 400;
    font-size: 1.8rem;
    color: #393939;
    text-transform: capitalize ;
}

.Solution-pages {
    width: 100%;
    margin-bottom: 7rem;
}

.Solution-pages .box {
    width: 100%;
    border-radius: 3rem;
    overflow: hidden;
    background: #FFF;
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
}

.Solution-pages .box:nth-child(2n) {
    flex-direction: row-reverse;
}

.Solution-pages .box .left {
    width: 46.3%;
    height: 65.6rem;
}

.Solution-pages .box .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Solution-pages .box .right {
    width: 63.7%;
    padding-left: 6%;
    box-sizing: border-box;
    background: #FFF;
    padding-right: 5.2rem;
}

.Solution-pages .box:nth-child(2n) .right {
    padding-right: 6%;
    padding-left: 5.2rem;
}

.Solution-pages .box .right h2 {
    font-weight: bold;
    font-size: 3.9rem;
    color: #242424;
    margin-bottom: 2rem;
    white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
}

.Solution-pages .box .right p {
    font-weight: 400;
    font-size: 1.6rem;
    color: #535353;
    line-height: 1.7em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 限制显示3行 */
    overflow: hidden;
}

.Solution-pages .box .right ul {
    padding-top: 2.5rem;
    margin-top: 3rem;
    border-top: 0.1rem solid #EEEEEE;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.Solution-pages .box .right ul::after {
    content: '';
    width: 15%;
    height: 0.1rem;
    background: #165091;
    position: absolute;
    top: -0.1rem;
    left: 0px;
    display: block;
}

.Solution-pages .box .right ul li {
    width: 50%;
    padding: 1.2rem 2rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1.6rem;
    color: #7E7E7E;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.Solution-pages .box .right ul li::after {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #165091;
    display: block;
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.Solution-pages .box .right .MORE {
    width: 17.1rem;
    height: 5.4rem;
    background: #165091;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-top: 4rem;
}

.Solution-pages .box .right .MORE img {
    width: 1.428rem;
    height: 1.428rem;
    display: block;
    object-fit: contain;
    margin-left: 2rem;
}

/* 新闻中心 */
.News-pages {
    padding: 8rem 0px 10rem 0px;
    width: 100%;
}

.News-pages .Top-out {
    margin: 6rem 0px 5rem 0px;
    width: 100%;

}

.News-pages .Top-out a {
    width: 100%;
    display: flex;
    align-items: center;
}

.News-pages .Top-out .left {
    width: 42.938%;
    height: 37.8rem;
    overflow: hidden;
    border-radius: 3rem;
}

.News-pages .Top-out .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.News-pages .Top-out a:hover .left img {
    transform: scale(1.1);
}

.News-pages .Top-out .right {
    width: 57.062%;
    padding-left: 7rem;
    box-sizing: border-box;
}

.News-pages .Top-out .right span {
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    margin-bottom: 0.5rem;
    display: block;
}

.News-pages .Top-out .right h3 {
    font-weight: 500;
    font-size: 2.4rem;
    color: #333333;
    margin-bottom: 2rem;
}

.News-pages .Top-out a:hover .right h3 {
    color: #165091;
}

.News-pages .Top-out .right p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 限制显示3行 */
    overflow: hidden;
}

.News-pages .Top-out .right .Moer {
    width: 17.1rem;
    height: 5.4rem;
    background: #165091;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.4rem;
    color: #FFFFFF;
    border-radius: 3rem;
    margin-top: 4rem;
}

.News-pages .Top-out .right .Moer img {
    width: 1.428rem;
    height: 1.428rem;
    display: block;
    margin-left: 3rem;
    object-fit: contain;
}

.News-pages .out-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 2%;
    padding-top: 5rem;
    border-top: 0.1rem solid #DDDDDD;
    box-sizing: border-box;
}

.News-pages .out-list .item {
    width: 32%;
    border-radius: 2rem;
    overflow: hidden;
    background: #FFF;
}

.News-pages .out-list .item .img {
    width: 100%;
    height: 31.2rem;
    overflow: hidden;
    border-radius: 2rem;
    position: relative;
}

.News-pages .out-list .item .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease;
}

.News-pages .out-list .item:hover .img img {
    transform: scale(1.1);
}

.News-pages .out-list .item .img .tiem {
    width: 16rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 80, 145, 0.7);
    border-radius: 2rem 0px 2rem 0px;
    z-index: 10;
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.News-pages .out-list .item .text {
    width: 100%;
    padding: 3rem 3.9rem 2.9rem 3.9rem;
    box-sizing: border-box;
}

.News-pages .out-list .item .text h3 {
    font-weight: 500;
    font-size: 2.4rem;
    color: #111111;
    margin-bottom: 1.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    /* 显示2行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.News-pages .out-list .item:hover .text h3 {
    color: #165091;
}

.News-pages .out-list .item .text p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 1.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 显示2行 */
    overflow: hidden;
    text-overflow: ellipsis;
}

.News-pages .out-list .item .text .more {
    margin-top: 2.1rem;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
}

.News-pages .out-list .item .text .more img {
    height: 1.2rem;
    display: block;
    margin-left: 1rem;
}

/* 联系我们 */
.Contact-pages {
    width: 100%;
    margin: 9rem 0px 10rem 0px;
}

.Contact-pages .out {
    margin-top: 6rem;
    display: flex;
    background: #FFF;
    border-radius: 3rem;
    overflow: hidden;
}

.Contact-pages .out .left {
    background: url(../images/10093.png) no-repeat center;
    background-size: cover;
    width: 47.5%;
    padding: 9rem 8rem 8rem 8rem;
    box-sizing: border-box;
}

.Contact-pages .out .left .box {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 5.7rem;
}

.Contact-pages .out .left .box:last-child {
    margin-bottom: 0px;
}

.Contact-pages .out .left .box img {
    width: 6.1rem;
    height: 6.1rem;
    display: block;
    object-fit: contain;
    margin-right: 3rem;
}

.Contact-pages .out .left .box .txt h3 {
    font-weight: 400;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 0.1rem;
}


.Contact-pages .out .left .box .txt span {
    font-weight: 500;
    font-size: 2.2rem;
    color: #FFFFFF;
}

.Contact-pages .out .right {
    width: 52.5%;
}

.Contact-pages .out .right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.Online-Message {
    width: 100%;
    background: url(../images/9958.webp) no-repeat center;
    background-size: cover;
    padding: 6rem 0px 11rem 0px;
    box-sizing: border-box;
}

.Online-Message .tit {
    display: flex;
    align-items: end;
}

.Online-Message .tit h2 {
    font-weight: 500;
    font-size: 3rem;
    color: #003E97;
    line-height: 1;
}

.Online-Message .tit span:nth-child(2) {
    margin: 0px 1rem;
    display: block;
}

.Online-Message .tit span {
    font-weight: 400;
    font-size: 1.7rem;
    color: #666666;
}

.Online-Message h3 {
    font-weight: bold;
    font-size: 4.6rem;
    color: #232323;
    margin-top: 2rem;
    margin-bottom: 8rem;
}

.Online-Message form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Online-Message form label {
    width: 48%;
    margin-bottom: 3rem;
}

.Online-Message form label span {
    font-weight: 400;
    font-size: 2.3rem;
    color: #535353;
}

.Online-Message form label input,
.Online-Message form label textarea {
    width: 100%;
    background: none;
    padding: 2.1rem 0.5rem;
    border-bottom: 0.1rem solid #DFDFDF;
    margin-top: 1.6rem;
}

.Online-Message form label input::placeholder,
.Online-Message form label textarea::placeholder {
    font-weight: 400;
    font-size: 2rem;
    color: #ABABAB;
}

.Online-Message .button {
    width: 100%;
    margin-top: 7rem;
    text-align: center;
}

.Online-Message .button button {
    max-width: 47.7rem;
    width: 100%;
    height: 6.7rem;
    background: #003E97;
    border-radius: 3.3rem;
    font-weight: 400;
    font-size: 2.2rem;
    color: #FFFFFF;
    margin: 0 auto;
}

.News-Dilute {
    width: 100%;
    padding: 7rem 0px 9rem 0px;
    box-sizing: border-box;
}

.News-Dilute .out {
    width: 100%;
    background: #FFF;
    padding: 4rem 6rem;
    box-sizing: border-box;
    border-radius: 1rem;
    box-shadow: 0px 0px 1rem 0.1rem #cccccc1e;
}

.News-Dilute .title {
    width: 100%;
    padding-bottom: 3rem;
    border-bottom: 0.1rem solid #2020203b;
}

.News-Dilute .title h2 {
    font-size: 3.4rem;
    font-weight: 500;
    color: #3E3E3E;
    margin-bottom: 0.2rem;
}

.News-Dilute .title span {
    font-size: 1.6rem;
    color: #666666;
    display: block;
    font-weight: 400;
}

.News-Dilute .text {
    width: 100%;
    padding: 3rem 1.5rem;
    box-sizing: border-box;
    border-bottom: 0.1rem solid #2020203b;
    color: #3E3E3E;
    line-height: 2em;
    font-size: 1.7rem;
    font-weight: 400;
    overflow: hidden;
}

.News-Dilute .text p {
    color: #3E3E3E;
    line-height: 1.7em;
    font-size: 1.7rem;
    font-weight: 400;
    margin: 0.2rem 0px;
}

.News-Dilute .text img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0.5rem auto;
}

.News-Dilute .button-list {
    width: 100%;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.News-Dilute .button-list a {
    max-width: 47%;
    width: auto;
    padding: 1rem 1rem;
    box-sizing: border-box;
    color: #333;
    font-size: 1.6rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.News-Dilute .button-list a:hover {
    color: #165091;
}

.Mobile-navigation {
    width: 100%;
    height: 100vh;
    background: #165091;
    padding: 4rem 4rem 4rem 4rem;
    box-sizing: border-box;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.no-touchs .Mobile-navigation {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

.Mobile-navigation ul {
    width: 100%;
    margin: 0 auto;
}

.Mobile-navigation ul li {
    padding: 0px 1rem;
    box-sizing: border-box;
    width: 100%;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.28);
}

.Mobile-navigation ul li .tit {
    display: flex;
    width: 100%;
    align-items: center;
    height: 5.8rem;
}

.Mobile-navigation ul li .tit a {
    height: 100%;
    width: 100%;
    line-height: 5.8rem;
    font-size: 2rem;
    color: #FFF;
    font-weight: 400;
}

.Mobile-navigation ul li .tit .icon {
    width: 5.8rem;
    height: 5.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    cursor: pointer;
}

.Mobile-navigation ul li .tit .icon img {
    width: 3rem;
    height: 3rem;
    display: block;
    transition: 0.5s ease;
}

.Mobile-navigation ul li .tit .icon.active img {
    transform: rotate(180deg);
}

.Mobile-navigation ul li .box {
    width: 100%;
    padding: 1rem 1rem 3rem;
    box-sizing: border-box;
    display: none;
    overflow: hidden;
}

.Mobile-navigation ul li .box a {
    width: 48%;
    float: left;
    height: 4rem;
    line-height: 4rem;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.Mobile-navigation ul li .box a::before {
    width: 0.6rem;
    height: 0.6rem;
    display: block;
    border-radius: 50%;
    background: #00B2E3;
    content: '';
    margin-right: 0.6rem;
}

.Mobile-navigation .button-list {
    width: 100%;
    margin-top: 4rem;
}

.Mobile-navigation .button-list a {
    width: 100%;
    height: 5rem;
    border-radius: 1rem;
    background: #00B2E3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.Mobile-navigation .button-list a:last-child {
    margin-bottom: 0px;
}

/* 手机版导航 */
.menu-toggle {
    display: none;
    width: 60px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 9999;
    cursor: pointer;
}

.cd-nav-trigger {
    width: 100%;
    height: 100%;
    display: block;
    /* background-color: var(--a_hover_color); */
}

.menu-toggle span.hamburger,
.menu-toggle span.hamburger:after,
.menu-toggle span.hamburger:before {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: #165091;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 38%;
    margin-left: -12px;
    -webkit-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -moz-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -o-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -o-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    transition-delay: 0.15s;
}

.menu-toggle span.hamburger {
    width: 20px !important;
}

.menu-toggle span.hamburger,
.menu-toggle span.hamburger:after,
.menu-toggle span.hamburger:before {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: #165091;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 38%;
    margin-left: -12px;
    -webkit-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -moz-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -o-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -o-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    transition-delay: 0.15s;
}

.menu-toggle span.hamburger:after {
    margin-top: -7px;
    top: 0;
    transition-delay: 0.27s;
}

.menu-toggle span.hamburger:before {
    margin-top: 7px;
    top: 0;
    transition-delay: 0.2s;
}

.no-touchs .menu-toggle span.hamburger,
.no-touchs .menu-toggle span.hamburger:after,
.no-touchs .menu-toggle span.hamburger:before {
    transition-delay: 0.12s;
    -webkit-transform: translateX(-70px);
    -moz-transform: translateX(-70px);
    -ms-transform: translateX(-70px);
    -o-transform: translateX(-70px);
    transform: translateX(-70px);
}

.no-touchs .menu-toggle span.hamburger,
.no-touchs .menu-toggle span.hamburger:after,
.no-touchs .menu-toggle span.hamburger:before {
    -webkit-transform: translateX(70px);
    -moz-transform: translateX(70px);
    -ms-transform: translateX(70px);
    -o-transform: translateX(70px);
    transform: translateX(70px);
}

.no-touchs .menu-toggle span.hamburger:after {
    transition-delay: 0s;
}

.no-touchs .menu-toggle span.hamburger:before {
    transition-delay: 0.07s;
}

.menu-toggle span.cross:before,
.menu-toggle span.cross:after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: #165091;
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
    left: 45%;
    margin-left: -12px;
    -webkit-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -moz-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -o-transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    transition: transform 0.3s cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -o-transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    transition-timing-function: cubic-bezier(0.600, 0.000, 0.200, 1.000);
    -webkit-transform: translateY(-70px) translateX(-70px) rotate(45deg);
    -moz-transform: translateY(-70px) translateX(-70px) rotate(45deg);
    -ms-transform: translateY(-70px) translateX(-70px) rotate(45deg);
    -o-transform: translateY(-70px) translateX(-70px) rotate(45deg);
    transform: translateY(-70px) translateX(-70px) rotate(45deg);
    transition-delay: 0.12s;
}

.menu-toggle span.cross:after {
    transition-delay: 0s;
    -webkit-transform: translateY(70px) translateX(-70px) rotate(-45deg);
    -moz-transform: translateY(70px) translateX(-70px) rotate(-45deg);
    -ms-transform: translateY(70px) translateX(-70px) rotate(-45deg);
    -o-transform: translateY(70px) translateX(-70px) rotate(-45deg);
    transform: translateY(70px) translateX(-70px) rotate(-45deg);
}

.menu-toggle span.cross:after {
    -webkit-transform: translateY(-70px) translateX(70px) rotate(-45deg);
    -moz-transform: translateY(-70px) translateX(70px) rotate(-45deg);
    -ms-transform: translateY(-70px) translateX(70px) rotate(-45deg);
    -o-transform: translateY(-70px) translateX(70px) rotate(-45deg);
    transform: translateY(-70px) translateX(70px) rotate(-45deg);
}

.no-touchs .menu-toggle span.cross:before {
    transition-delay: 0.12s;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.no-touchs .menu-toggle span.cross:after {
    transition-delay: 0.24s;
    -webkit-transform: rotate(-45deg) !important;
    -moz-transform: rotate(-45deg) !important;
    -ms-transform: rotate(-45deg) !important;
    -o-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
}


.Pagination_out {
    display: flex;
    margin-top: 7rem;
    width: 100%;
    justify-content: center;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    /*margin: 2rem auto;*/
    border-radius: 0.4rem;
}

.pagination>li {
    display: inline;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #165091;
    background-color: #eee;
    border-color: #ddd;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    background-color: #165091;
    border-color: #165091;
    cursor: default;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.Verification-code {
    width: 100%;
    position: relative;
}

.Verification-code img {
    position: absolute;
    right: 0px;
    height: 6rem;
    width: 18rem;
    display: block;
    object-fit: contain;
    bottom: 1rem;
    cursor: pointer;
    border: 0.1rem solid #0000001f;
}


@media (max-width:1300px) {
    .Industry-Solutions .text-swiper {
        left: 46%;
    }
}

@media (max-width:1250px) {
    .Honors-and-Qualifications .swiper-button-next {
        right: -4.1rem;
    }

    .Honors-and-Qualifications .swiper-button-prev {
        left: -7rem;
    }
}



@media (max-width: 1199.98px) {

    .menu-toggle {
        display: block;
    }

    .container {
        padding: 0px 5%;
        box-sizing: border-box;
    }

    .nav .out .right .nav-list {
        display: none;
    }

    .banner_swiper {
        margin-top: 10rem;
    }

    .banner_swiper .swiper-slide .text .container {
        padding-top: 0px;
        padding-bottom: 7%;
    }

    .banner_swiper .swiper-slide .text h2 {
        font-size: 4.6rem;
        margin-bottom: 3.2rem;
    }

    .banner_swiper .swiper-slide .text p {
        font-size: 2.1rem;
    }

    .Product-Home .icon-img {
        width: 60%;
        height: auto;
    }

    .Product-Home .Top-Product-list .left .title h3 {
        font-size: 3rem;
    }

    .Product-Home .Top-Product-list .left {
        width: 56%;
    }

    .Product-Home .Top-Product-list .right {
        width: 43%;
        height: 100%;
        right: 3rem;
    }

    .Product-Home .Top-Product-list .left .button-list a {
        font-size: 1.3rem;
    }

    .Product-Home .Top-Product-list .left .txt p {
        font-size: 1.5rem;
        height: calc(1.5rem * 1.8 * 4 );
    }

    .Product-Home .Top-Product-list .Product-item {
        padding: 4rem 3rem 3.7rem 4rem;
    }

    .Product-Home .Top-Product-list {
        margin-top: 7rem;
    }

    .Product-Home .Product-list {
        gap: 3rem 2%;
    }

    .Product-Home .Product-list .Product-item {
        width: 23.5%;
        /*height: 25.1rem;*/
    }

    .Product-Home .Product-list .Product-item .img {
        height: 19rem;
        padding: 2rem 0px 1rem 0px;
        box-sizing: border-box;
    }

    .Product-Home .Product-list .Product-item .tit h3 {
        font-size: 1.8rem;
    }

    .Industry-Solutions .Solutions-swiper .swiper-slide {
        width: 100%;
    }

    .Industry-Solutions .Solutions-swiper {
        padding: 0px 5%;
    }

    .Industry-Solutions .Solutions-swiper .swiper-slide-active {
        margin-left: 0%;
    }

    .Industry-Solutions .text-swiper {
        transform: translate(-16%, -50%);
    }

    .Industry-Solutions .swiper-button-prev {
        left: 2%;
    }

    .Industry-Solutions .swiper-button-next {
        right: 2%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        background: #FFF;
        box-shadow: 0px 0px 1rem 0.1rem #0000003a;
    }

    .Industry-Solutions .text-swiper .swiper-slide {
        padding: 4rem 3.5rem;
    }

    .Industry-Solutions .text-swiper {
        height: auto;
    }

    .About-Hmoe {
        padding-top: 10%;
    }

    .About-Hmoe .Number-scroll {
        width: 100%;
    }

    .About-Hmoe .Number-scroll .item .Number b {
        font-size: 5rem;
    }

    .News-Home .News-swiper .swiper-slide {
        width: 46%;
    }

    #footer .footer-information .out .left {
        width: 37%;
    }

    .About-Hmoe .out .right {
        margin-left: 10%;
    }

    #footer .footer-information .out .right .box li a,
    #footer .footer-information .out .left li span,
    #footer .footer-information .out .left li a,
    #footer .Friendship-Link .out li a,
    #footer .Friendship-Link .out h3 {
        font-size: 1.6rem;
    }

    #footer .footer-information .out .right .box h2 a {
        font-size: 1.8rem;
    }

    .Industry-Solutions .text-swiper {
        left: 50%;
    }

    .banner_swiper .mouse-icon {
        display: none;
    }

    .banner_swiper .swiper-pagination {
        left: 50%;
        transform: translateX(-50%);
        bottom: 3rem;
        width: auto;
    }

    .nav .out .right .language {
        display: none;
    }

    .Development-history .text-container {
        width: 100%;
    }

    .production-base .container {
        padding-right: 0px;
        padding-left: 5%;
    }

    .production-base .right .Top-out .txt {
        width: 79%;
    }

    .production-base .right .Top-out .button-list {
        width: 20%;
    }

    .production-base .right .Top-out .swiper-button-prev,
    .production-base .right .Top-out .swiper-button-next {
        box-shadow: none;
    }

    .production-base .right .base-swiper2 {
        height: 42rem;
    }

    .production-base .right .Top-out .swiper-button-prev::after,
    .production-base .right .Top-out .swiper-button-next::after {
        color: #FFF;
    }

    .Honors-and-Qualifications .swiper-button-prev {
        left: 0px;
    }

    .Honors-and-Qualifications .swiper-button-next {
        right: 0px;
    }

    .Honors-and-Qualifications .out .Honors-swiper .swiper-slide {
        margin-right: 4rem;
    }

    .Product-Center .out .left ul li a {
        font-size: 1.6rem;
        padding: 1.2rem 2rem;
    }

    .Product-Center .out .left .tit {
        height: auto;
        padding: 2rem;
        box-sizing: border-box;
    }

    .Product-Center .out .left .tit h2 {
        font-size: 2rem;
    }

    .Product-Center .out .Product-list {
        gap: 3rem 2%;
    }

    .Product-Center .out .Product-list .Product-item {
        width: 32%;
    }

    .banenr-pages {
        margin-top: 10rem;
    }

    .banenr-pages .text {
        padding-top: 0px;
    }

    .Solution-button .list {
        min-height: auto;
    }

    .Solution-pages .box {
        align-items: normal;
    }

    .Solution-pages .box .right {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .Solution-button {
        transform: translateY(0px);
        margin: 3rem 0px 5rem 0px ;
    }

    .Solution-button .list {
        gap: 3rem 0px ;
    }

    .Solution-button .list .item {
        width: 15% ;
    }
    
    .Solution-pages .box .left {
        height: auto;
    }

}

@media (max-width: 750px) {
    .Product-Home .Top-Product-list .left {
        width: 100%;
    }

    .Product-Home .Top-Product-list .right {
        width: 35%;
        height: 85%;
        padding: 1rem;
        padding-top: 6rem;
        display: none;
    }

    .Product-Home .icon-img {
        top: 3rem;
    }

    .Product-Home .Top-Product-list .right .logo {
        left: 2rem;
        top: 1.8rem;
        width: 15rem;
        height: 4rem;
    }

    .Product-Home .Product-list .Product-item {
        width: 48.5%;
        /*height: 28.1rem;*/
    }

    .Product-Home .Product-list {
        gap: 3rem 3%;
    }

    .Product-Home .Top-Product-list {
        margin-top: 3rem;
    }

    .Product-Home .Product-list .Product-item .img {
        height: 22rem;
    }

    .Industry-Solutions .Solutions-swiper .swiper-slide {
        width: 100%;
        border-radius: 1rem;
        overflow: hidden;
    }

    .banner_swiper .swiper-slide .text h2 {
        font-size: 4rem;
    }

    .banner_swiper .mouse-icon {
        bottom: 3rem;
    }

    .Product-Home {
        padding-top: 6rem;
        margin-bottom: 6rem;
    }

    .Industry-Solutions {
        margin: 6rem 0px;
    }

    .Industry-Solutions .text-swiper {
        width: 70%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.68);
        backdrop-filter: blur(2rem);
    }

    .swiper-button-prev,
    .swiper-button-next {
        z-index: 100;
    }

    .Industry-Solutions .text-swiper .swiper-slide a {
        margin-top: 4rem;
    }

    .About-Hmoe .Number-scroll {
        padding: 3rem;
        border-radius: 0px;
        flex-wrap: wrap;
        gap: 2rem 0px;
    }

    .About-Hmoe .Number-scroll .item .Number b {
        font-size: 4rem;
    }

    .About-Hmoe .out .left .public-title .txt {
        max-height: 28rem;
        overflow: auto;
    }

    .News-Home .News-swiper .swiper-slide {
        width: 55%;
    }

    #footer .footer-information .out .right {
        display: none;
    }

    #footer .footer-information .out .left {
        width: 100%;
    }

    #footer .footer-information .out .left ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem 2rem;
        justify-content: center;
    }

    #footer .footer-information .out .left li {
        margin-bottom: 0px;
    }

    #footer .Friendship-Link {
        display: none;
    }

    #footer .Top-logo .out {
        padding: 3rem 0px;
    }

    #footer .Top-logo .out .logo {
        width: auto;
        height: 6rem;
    }

    .News-Home {
        padding: 6rem 0px;
    }

    .News-Home .public-title {
        align-items: end;
    }

    .Product-Home .Top-Product-list .left .button-list {
        flex-wrap: wrap;
    }

    .About-Us {
        margin-top: 8rem;
    }

    .Corporate-Advantages .out .box {
        width: 48%;
    }

    .Cooperation-Cases .out .swiper-slide {
        width: 20rem;
        height: 7rem;
        margin-right: 4rem;
    }

    .Development-history .text-container {
        padding: 2rem 4rem;
    }

    .Development-history .text-container .box .tit h3 {
        font-size: 6.5rem;
        line-height: 1;
    }

    .Development-history .out {
        width: 70rem;
        height: 26.3rem;
    }

    .Development-history .out .history-img,
    .Development-history .out .tiem-list {
        width: 70rem;
        height: 70rem;
    }

    .Product-Center .out {
        flex-wrap: wrap;
    }

    .Product-Center .out .left {
        width: 100%;
    }

    .Product-Center .out .left ul {
        display: flex;
        flex-wrap: wrap;
    }

    .Product-Center .out .left ul li {
        width: 33%;
    }

    .Product-Center .out .Product-list {
        width: 100%;
        margin-top: 5rem;
    }

    .Product-Dilute .Top-Product {
        width: 100%;
        flex-wrap: wrap;
    }

    .Product-Dilute .Top-Product .left {
        width: 100%;
    }

    .Product-Dilute .Top-Product .right {
        width: 100%;
        padding-left: 0px;
        margin-top: 4rem;
    }

    .Case-Showcase .out .box .img {
        height: 23rem;
    }

    .News-pages .out-list .item {
        width: 49%;
    }

    .Contact-pages .out {
        flex-wrap: wrap;
    }

    .Contact-pages .out .left {
        width: 100%;
        padding: 3rem 3rem;
    }

    .Contact-pages .out .right {
        width: 100%;
    }


}

@media (max-width:576px) {
    .nav .out .right .language {
        display: none;
    }

    .banner_swiper .swiper-slide .text h2 {
        font-size: 3rem;
        margin-bottom: 0px ;
        text-align: center ;
    }

    .banner_swiper .swiper-slide .text p {
        font-size: 1.6rem;
        display: none ;
    }

    .banner_swiper .mouse-icon {
        display: none;
    }

    .banner_swiper .swiper-slide .text .container {
        padding-bottom: 0px;
    }

    .Product-Home .public-title p {
        width: 100%;
        height: calc(1.8rem * 1.6 * 3);
    }

    .public-title .title h2 {
        font-size: 3.4rem;
    }

    .Product-Home .Top-Product-list .Product-item {
        padding: 3rem 2rem;
    }

    .Product-Home .Top-Product-list .left .button-list {
        margin: 2rem 0px 2rem 0px;
    }

    .Product-Home .Top-Product-list .left .more {
        margin-top: 5rem;
    }

    .Product-Home .Top-Product-list .left {
        padding-right: 0px;
    }

    .Industry-Solutions .Solutions-swiper .swiper-slide {
        height: 32.4rem;
    }

    .Industry-Solutions .Solutions-swiper {
        margin-top: 5rem;
    }

    .Industry-Solutions .text-swiper {
        position: static;
        transform: translate(0px, 0px);
        width: 100%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 5.4rem;
        height: 5.4rem;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 2rem;
    }

    .about-us-opening {
        display: none;
    }

    .About-Hmoe .out .right {
        display: none;
    }

    .About-Hmoe .out .left {
        width: 100%;
    }

    .About-Hmoe .Number-scroll {
        height: auto;
    }

    .About-Hmoe .Number-scroll .item .Number b {
        font-size: 2.6rem;
    }

    .News-Home .News-swiper .swiper-slide {
        width: 100%;
    }

    #footer .Filing-number .out .support {
        position: static;
    }

    #footer .Filing-number .out p {
        font-size: 1.3rem;
    }

    .banner_swiper .swiper-pagination {
        display: none;
    }

    .nav {
        height: 8rem;
    }

    .nav .out .logo {
        height: 4.6rem;
    }

    .banner_swiper {
        margin-top: 7rem;
    }

    .About-Hmoe .Number-scroll .item {
        width: 50%;
    }

    .Development-history .text-container .box {
        flex-direction: column-reverse;
    }

    .Development-history .text-container .box .txt {
        width: 100%;
    }

    .Development-history .text-container {
        padding: 3rem 2rem;
    }

    .Development-history .text-container .box .tit h3 {
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    .Development-history .text-container .box .tit {
        width: 100%;
        text-align: left;
    }

    .Development-history .out .history-img,
    .Development-history .out .tiem-list {
        width: 40rem;
        height: 40rem;
    }

    .Development-history .out {
        width: 40rem;
        height: 16.3rem;
    }

    .Development-history .out .tiem-list .item.active span {
        bottom: calc(100% + 6vw);
    }

    .Development-history .out .tiem-list .item span {
        font-size: 3rem;
        bottom: calc(100% + 3.5vw);
    }

    .Corporate-Advantages .out .box {
        width: 100%;
        padding: 4rem 2rem;
    }

    .production-base .left .out {
        display: none;
    }

    .production-base .container {
        flex-wrap: wrap;
        padding-right: 5%;
    }

    .production-base .right,
    .production-base .left {
        width: 100%;
    }

    .production-base .right .Top-out {
        flex-wrap: wrap;
        margin-bottom: 0px;
    }

    .production-base .right .Top-out .txt {
        width: 100%;
    }

    .production-base .right .Top-out .button-list {
        width: 100%;
        height: 11rem;
    }

    .production-base .right .base-swiper2 {
        height: 26rem;
    }

    .production-base .right .base-swiper2 .swiper-slide {
        border-radius: 0px;
    }

    .Honors-and-Qualifications .out .Honors-swiper .swiper-slide {
        width: 22rem;
    }

    .Honors-and-Qualifications .out .Honors-swiper .swiper-slide .img {
        height: 30rem;
    }

    .Honors-and-Qualifications {
        margin: 7rem 0px 6rem 0px;
    }

    .Cooperation-Cases .out .swiper-slide {
        width: 16rem;
        height: 6rem;
        margin-right: 2rem;
    }


    .Product-Center .out .left ul li {
        width: 50%;
    }

    .Product-Center .out .Product-list {
        justify-content: space-between;
    }

    .Product-Center .out .Product-list .Product-item {
        width: 48%;
    }

    .banenr-pages {
        margin-top: 8rem;
    }

    .banenr-pages .img img {
        object-fit: cover;
    }

    .banenr-pages .text h2 {
        font-size: 3.4rem;
        margin-bottom: 0px;
        text-align: center;
    }

    .banenr-pages .text p {
        margin-bottom: 2rem;
        display: none;
    }

    .banenr-pages .text i {
        display: none;
    }

    .Product-Center {
        margin: 6rem 0px 7rem 0px;
    }

    .pages-Public-Title h2,
    .Product-Dilute .Related h2 {
        font-size: 3rem;
    }

    .pages-Public-Title span {
        font-size: 2rem;
    }

    .pages-Public-Title h2 b,
    .Product-Dilute .Related h2 {
        font-size: 3rem;
    }

    .Product-Dilute .Top-Product .left {
        height: 27rem;
    }

    .Product-Dilute .Top-Product {
        margin-top: 6rem;
    }

    .Product-Dilute .Top-Product .right .text ul {
        padding-left: 6%;
    }

    .Product-Dilute .Top-Product .right h2 {
        font-size: 3rem;
    }

    .Product-Dilute .text-container {
        width: 100%;
        background: none;
        box-shadow: none;
        padding: 0px;
    }

    .Product-Dilute .text-container .list {
        padding: 3rem 0px;
    }

    .Solution-button {
        transform: translateY(0px);
        margin: 5rem 0px;
    }

    .Solution-button .list {
        gap: 3rem 0px;
        padding: 3rem 0px;
    }

    .Solution-button .list .item {
        width: 25%;
    }

    .Solution-pages .box {
        flex-wrap: wrap;
    }

    .Solution-pages .box .left {
        width: 100%;
        height: 24rem;
    }

    .Solution-pages .box .right {
        width: 100%;
        padding: 3rem;
    }

    .Solution-pages .box .right h2 {
        font-size: 3.2rem;
    }

    .Case-Showcase {
        margin: 6rem 0px 7rem 0px;
    }

    .Case-Showcase .out {
        justify-content: space-between ;
    }

    .Case-Showcase .out .box {
        width: 48%;
    }

    .Case-Showcase .out .box .img {
        height: 18rem;
        border-radius: 1rem;
    }

    .Case-Showcase .out .box span {
        font-size: 1.6rem;
    }

    .News-pages .Top-out a {
        flex-wrap: wrap;
    }

    .News-pages .Top-out .left {
        width: 100%;
        display: none;
    }

    .News-pages .Top-out .right {
        width: 100%;
        display: block;
        padding-left: 0px;
    }

    .News-pages {
        padding: 6rem 0px 7rem 0px;
    }

    .News-pages .out-list .item {
        width: 100%;
    }

    .Contact-pages {
        margin: 6rem 0px 7rem 0px;
    }

    .Contact-pages .out .left .box img {
        width: 5rem;
        height: 5rem;
    }

    .Contact-pages .out .left .box .txt h3 {
        font-size: 1.7rem;
    }

    .Contact-pages .out .left .box .txt span {
        font-size: 1.8rem;
    }

    .Contact-pages .out .left .box {
        margin-bottom: 3rem;
    }

    .Online-Message form label {
        width: 100%;
    }

    .Online-Message h3 {
        font-size: 3.6rem;
    }

    .News-Dilute .out {
        padding: 0px;
        box-sizing: border-box;
        background: none;
        box-shadow: none;
    }

    .News-Dilute .title h2 {
        font-size: 3rem;
    }

    .News-Dilute {
        padding: 6rem 0px;
        background: #FFF !important;
    }

}
















@media (min-width: 1911px) {
    html {
        font-size: 10px;
    }
}

@media (min-width: 1200px) and (max-width: 1910px) {
    html {
        font-size: 8.5px;
        font-size: clamp(7px, calc(100vw / 192), 10px);
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    html {
        font-size: 7.2px;
        font-size: clamp(7px, calc(100vw / 192), 10px);
    }
}

/* @media (min-width: 1025px) and (max-width: 1199.98px) {
    html {
        font-size: 8px ;
        font-size: clamp(8px, calc(100vw / 120), 9px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    html {
        font-size: 8px ;
        font-size: clamp(8px, calc(100vw / 102.4), 10px);
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    html {
        font-size: 7px ;
        font-size: clamp(7px, calc(100vw / 75), 9px);
    }
} */

@media (min-width: 576px) and (max-width: 1199.98px) {
    html {
        font-size: 7px;
        font-size: clamp(7px, calc(100vw / 120), 10px);
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 6px;
        font-size: clamp(6px, calc(100vw / 50), 8px);
    }
}