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

html {
    transition: font-size 0.3s ease;
    font-size: 10px;
}

body {
    font-size: 1.5rem;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}


/* @font-face {
    font-family: 'RANY';
    src: url('/template/en/fonts/RANY-BOLD.OTF');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'RANY';
    src: url('/template/en/fonts/Rany-Medium.ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'RANY';
    src: url('/template/en/fonts/Rany.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap
} */

.container {
    width: 100%;
    max-width: 160rem;
    margin: 0 auto;
    height: 100%;
}

#header {
    position: fixed;
    top: 0px;
    z-index: 100;
    width: 100%;
}

.Top_information_bar {
    width: 100%;
    height: 4rem;
    background: #0E2569;
}

.Top_information_bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.Top_information_bar .left a {
    font-weight: normal;
    font-size: 1.4rem;
    color: #FFFFFF;
}

.Top_information_bar .left i {
    background: #E1E1E1;
    width: 0.1rem;
    height: 1.4rem;
    margin: 0px 1.9rem 0px 1.4rem;
}

.Top_information_bar .right .language {
    display: flex;
    align-items: center;
}

.Top_information_bar .right .language span {
    font-weight: 500;
    font-size: 1.8rem;
    color: #FFFFFF;
    display: block;
    margin-right: 0.9rem;
}

.Top_information_bar .right .language img {
    display: block;
    width: 1.2rem;
    height: 0.7rem;
}

.nav {
    width: 100%;
    background: #FFF;
    height: 9rem;
    box-shadow: 0px 0px 1rem 0.1rem #00000036;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .logo {
    font-weight: 900;
    font-size: 5.2rem;
    color: #0E2569;
}

.nav .logo img {
    display: block;
    height: 6.3rem;
}

.nav ul {
    display: flex;
    height: 100%;
}

.nav ul li {
    height: 100%;
    margin-right: 11.5rem;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

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

.nav ul li .title {
    font-weight: 400;
    font-size: 1.8rem;
    color: #313131;
    text-transform: uppercase;
}

.nav ul li.active .title {
    color: #0E2569;
}

.nav ul li>.icon {
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    bottom: -0.5rem;
    left: 0%;
    fill: #0E2569;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.5s ease;
}

.nav ul li:hover>.icon {
    left: 50%;
    opacity: 1;
}

.drop-down_menu {
    position: absolute;
    top: 9rem;
    min-width: 100%;
    max-width: max-content;
    border-top: 0.2rem solid #e1e1e121;
    box-sizing: border-box;
    transform-style: preserve-3d;
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    box-shadow: 0px 0px 1rem 0.1rem #0000002c;
}

.drop-down_menu .box {
    width: 100%;
    position: relative;
}

.drop-down_menu .box .tit {
    min-width: 100%;
    width: max-content;
}

.drop-down_menu .box .tit a {
    font-size: 1.5rem;
    color: #313131;
    display: block;
    max-width: 30rem;
    background: #FFF;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
}

.drop-down_menu .box .tit a img {
    width: 2.5rem;
    height: auto;
    margin-right: 1rem;
}

.drop-down_menu .box .Down_list {
    position: absolute;
    left: 100%;
    top: 0px;
    background: #FFF;
    width: max-content;
    transform: translate(2rem, 3rem);
    opacity: 0;
    transition: 0.4s ease-in-out;
    visibility: hidden;
    border-left: 0.2rem solid #e1e1e133;
    box-shadow: 0px 0.5rem 0.2rem #0000002a;
    box-sizing: border-box;
}

.drop-down_menu .box .Down_list a {
    display: block;
    max-width: 30rem;
    color: #313131;
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
}

.drop-down_menu .box:hover .Down_list {
    transform: translate(0px, 0rem);
    opacity: 1;
    visibility: inherit;
}

.drop-down_menu .box:hover .tit a,
.drop-down_menu .box .Down_list a:hover {
    background: #0E2569;
    color: #FFF;
}

.Top_information_bar .right .language {
    position: relative;
}

.Top_information_bar .right .language .drop-down_menu {
    top: 4rem;
    z-index: 100;
    left: auto;
    right: 0px;
}

.nav ul li:hover .drop-down_menu,
.Top_information_bar .right .language:hover .drop-down_menu {
    visibility: inherit;
    opacity: 1;
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
}

.banner {
    width: 100%;
    /*height: 91.9rem;*/
    position: relative;
    margin-top: 13rem;
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    width: 100%;
    height: 100%;
}

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

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

.banner .swiper-slide .text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;

    padding-top: 30rem;
    box-sizing: border-box;
}

.banner .swiper-slide .text h2 {
    font-weight: 900;
    font-size: 7.2rem;
    color: #FFFFFF;
    margin-bottom: 3.8rem;
    max-width: 124rem;
    animation-delay: 0s;
}

.banner .swiper-slide .text p {
    font-size: 2.8rem;
    color: #FFFFFF;
    max-width: 108rem;
    line-height: 1.5em;

}

.banner .swiper-slide .text a {
    margin-top: 16rem;
    width: 24.8rem;
    height: 7.8rem;
    background: #0E2569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 2.2rem;
    color: #FFFFFF;

}

.banner .swiper-slide-active .text h2 {
    animation: bounceInUp 1s both;
    animation-delay: 0.0s;
}

.banner .swiper-slide-active .text a {
    animation: bounceInUp 1s both;
    animation-delay: 0.2s;
}

.banner .swiper-slide-active .text p {
    animation: bounceInUp 1s both;
    animation-delay: 0.1s;
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        transform: translate3d(0, 10px, 0)
    }

    90% {
        transform: translate3d(0, -5px, 0)
    }

    to {
        transform: translateZ(0)
    }
}




.Service_Introduction {
    width: 100%;
    margin: 14.4rem 0px 11rem 0px;
    overflow: hidden;
}

.Service_Introduction .container {
    max-width: 140.2rem;
}

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

.Service_Introduction .out .box {
    width: 100%;
    max-width: 62.345rem;
    background: #F1F1F1;
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.15);
    padding: 4.1rem 4rem 3rem 4rem;
    box-sizing: border-box;
    transition: 0.4s ease;
}

.Service_Introduction .out .box h2 {
    text-align: center;
    font-weight: bold;
    font-size: 2.8rem;
    color: #333333;
    margin-bottom: 2.6rem;
}

.Service_Introduction .out .box p {
    font-weight: normal;
    font-size: 1.6rem;
    color: #555555;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /*-webkit-line-clamp: 2;*/
    /* 限制为两行 */
    overflow: hidden;
}

.Service_Introduction .out .box a {
    margin-top: 2.9rem;
    padding: 1.3rem 3.8rem;
    border-radius: 1.2rem;
    border: 0.1rem solid #0E2569;
    font-weight: 400;
    font-size: 1.8rem;
    color: #0E2569;
    display: block;
    margin: 0 auto;
    margin-top: 2.9rem;
    width: max-content;
    transition: 0.4s ease;
}

.Service_Introduction .out .box:hover {
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.25);
}

.Service_Introduction .out .box:hover a {
    background: #0E2569;
    color: #FFF;
}

.Hot_Products {
    width: 100%;
    margin: 11rem 0px 12.2rem 0px;

}

.Home_Products {
    overflow: hidden;
}

.public_title {
    width: 100%;
    text-align: center;
}

.public_title h2 {
    font-weight: bold;
    font-size: 5.2rem;
    color: #333333;
    text-transform: uppercase;
}

.Hot_Products .container {
    max-width: 150.3rem;
}

.Hot_Products .out {
    margin-top: 6.1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.Hot_Products .out .left {
    width: 20%;
}

.Hot_Products .out .left h3 {
    font-weight: bold;
    font-size: 3.1rem;
    color: #333333;
    margin-bottom: 4.5rem;
}

.Hot_Products .out .left .contant {
    padding-right: 2.3rem;
    height: 52.7rem;
    overflow: auto;
    box-sizing: border-box;
    transform: rotateY(180deg);
}

.Hot_Products .out .left .Read_More {
    margin-top: 9rem;
    width: 16.5rem;
    height: 5.4rem;
    border-radius: 0px 0px 3rem 0px;
    border: 0.1rem solid #0E2569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.8rem;
    color: #0E2569;
    position: relative;
    transition: 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.Hot_Products .out .left .Read_More::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 0%;
    background: #0E2569;
    content: '';
    transition: 0.4s ease;
    z-index: -1;
}

.Hot_Products .out .left .Read_More:hover::after {
    height: 100%;
}

.Hot_Products .out .left .Read_More:hover {
    color: #FFF;
}

.Hot_Products .out .left ul {
    width: 100%;
    transform: rotateY(-180deg);
}

.Hot_Products .out .left .contant::-webkit-scrollbar {
    width: 0.2rem;
    height: 4.6rem;
    background-color: #0E2569;
}

.Hot_Products .out .left .contant::-webkit-scrollbar-track {
    background-color: #BFBFBF;
}

.Hot_Products .out .left .contant::-webkit-scrollbar-thumb {
    width: 2rem;
    height: 4.6rem !important;
    background-color: #0E2569;
}


.Hot_Products .out .left .contant::-webkit-scrollbar-thumb:hover {
    width: 2rem;
    background-color: #0E2569;
}

.Hot_Products .out .left ul li .tit {
    font-weight: normal;
    font-size: 1.8rem;
    color: #0E2569;
    margin-bottom: 1.4rem;
    display: block;
    text-transform: capitalize;
}

.Hot_Products .out .left ul li .list {
    padding-left: 1.3rem;
    box-sizing: border-box;
    width: 100%;
}

.Hot_Products .out .left ul li .list a {
    font-weight: normal;
    font-size: 1.6rem;
    color: #555555;
    display: block;
    margin-bottom: 1.7rem;
    text-transform: capitalize;
}

.Hot_Products .out .left ul li .list a:hover {
    color: #0E2569;
}

.Hot_Products .out .right {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 6rem 5.2rem;

}

.Hot_Products .out .right .box {
    width: 36.2rem;
    height: 33.8rem;
    position: relative;
    box-sizing: border-box;
}

.Hot_Products .out .right .box::after {
    content: '';
    width: 100%;
    height: 100%;
    border: 0.2rem solid rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: scale(1.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    pointer-events: none;
    box-sizing: border-box;
}

.Hot_Products .out .right .box .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.Hot_Products .out .right .box .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: 0.5s ease;
}

.Hot_Products .out .right .box .txt {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    transform: translateY(50%);
    transition: 0.5s ease;
}

.Hot_Products .out .right .box .txt h3 {
    font-weight: normal;
    font-size: 2rem;
    color: #000000;
}

.Hot_Products .out .right .box:hover .img img {
    transform: scale(0.9);
}

.Hot_Products .out .right .box:hover .txt h3 {
    color: #0E2569;
}

.Hot_Products .out .right .box:hover::after {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.Hot_Products .out .right .box:hover .txt {
    transform: translateY(0px);
    width: 100%;
    background: #0E2569;
    padding: 1rem;
    box-sizing: border-box;
}

.Hot_Products .out .right .box:hover .txt h3 {
    color: #FFF;
}

.About_Us {
    width: 100%;
    margin: 12.2rem 0px 9.4rem 0px;
    overflow: hidden;
}

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

.About_Us .out .left {
    width: 42.5%;
}

.About_Us .out .left h2 {
    font-weight: bold;
    font-size: 5.2rem;
    color: #333333;
    margin-bottom: 3.2rem;
}

.About_Us .out .left p {
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 1.7em;
    color: #555555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    /* 限制为两行 */
    overflow: hidden;
}

.About_Us .out .left a {
    margin-top: 4.8rem;
    width: 16.5rem;
    height: 5.4rem;
    border-radius: 0px 0px 3rem 0px;
    border: 0.1rem solid #0E2569;
    font-weight: 400;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E2569;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.About_Us .out .left a::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 0%;
    background: #0E2569;
    content: '';
    transition: 0.4s ease;
    z-index: -1;
}

.About_Us .out .left a:hover::after {
    height: 100%;
}

.About_Us .out .left a:hover {
    color: #FFF;
}

.About_Us .out .right {
    width: 49%;
}

.About_Us .out .right img {
    width: 100%;
    display: block;
}

.Enterprise_Advantage {
    width: 100%;
    
    
    
    
}

.Enterprise_Advantage_out {
    width: 100%;
    background: url(../images/Enterprise_Advantage.webp) no-repeat center;
    padding: 4.3rem 0px 5.6rem 0px;
    background-size: cover;
    overflow: hidden;
    margin-top: 6.4rem;
}

.Enterprise_Advantage .public_title h2 {
    /*color: #FFF;*/
}

.Enterprise_Advantage .out {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 9.4rem;
}

.Enterprise_Advantage .out .box {
    width: 38.3rem;
    height: 34.6rem;
    background: rgba(239, 245, 248, 0.84);
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.15);
    padding: 5.3rem 3.7rem;
    box-sizing: border-box;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Enterprise_Advantage .out .box img {
    height: 4.2rem;
    display: block;
    margin-bottom: 3.1rem;
}

.Enterprise_Advantage .out .box h3 {
    font-weight: bold;
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 2.3rem;
    text-transform: capitalize;
}

.Enterprise_Advantage .out .box p {
    font-weight: normal;
    font-size: 1.6rem;
    color: #555555;
    line-height: 1.6em;
    text-align: center;
}

.MANUFACTURER {
    width: 100%;
    margin: 11rem 0px;
    overflow: hidden;
}

.MANUFACTURER .MANUFACTURER_swiper {
    margin-top: 6rem;
}

.MANUFACTURER .MANUFACTURER_swiper .swiper-slide {
    width: 43.2rem;
    height: 24.3rem;
    margin: 0px 1rem;
}

.MANUFACTURER .MANUFACTURER_swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.Solution {
    margin: 11rem 0px 15.5rem 0px;
    width: 100%;
    overflow: hidden;
}

.Solution .out {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.Solution .out .left {
    width: 40%;
}

.Solution .out .left h2 {
    font-weight: bold;
    font-size: 5.2rem;
    color: #333333;
    margin-bottom: 4.1rem;
    line-height: 1.3em;
    text-transform: uppercase
}

.Solution .out .left h3 {
    font-weight: 400;
    font-size: 1.8rem;
    color: #0E2569;
    margin-bottom: 2.8rem;
}

.Solution .out .left p {
    font-weight: normal;
    font-size: 1.8rem;
    color: #555555;
    line-height: 1.6em;
    margin-bottom: 3.5rem;
}

.Solution .out .left p:last-child {
    margin-bottom: 0px;
}

.Solution .out .left a {
    margin-top: 4.8rem;
    width: 16.5rem;
    height: 5.4rem;
    border-radius: 0px 0px 3rem 0px;
    border: 0.1rem solid #0E2569;
    font-weight: 400;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E2569;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.Solution .out .left a::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 0%;
    background: #0E2569;
    content: '';
    transition: 0.4s ease;
    z-index: -1;
}

.Solution .out .left a:hover {
    color: #FFF ;
}

.Solution .out .left a:hover::after {
    height: 100% ;
}

.Solution .out .right {
    width: 55.1rem;
    height: 56.1rem;
    margin-left: 26rem;
    position: relative;
}

.Solution .out .right .img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 10;
}

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

.Solution .out .right .img_min {
    width: 30.4rem;
    height: 32.2rem;
    display: block;
    object-fit: cover;
    position: absolute;
    bottom: -4.5rem;
    left: -10.6rem;
    z-index: 11;
}

.Solution .out .right .ColorBlock {
    width: 100%;
    height: 49.3rem;
    background: #0E2569;
    position: absolute;
    top: 50%;
    right: -4.3rem;
    transform: translateY(-50%);
    z-index: 8;
}

.our_blog {
    margin: 15.5rem 0px 11rem 0px;
    width: 100%;
    overflow: hidden;
}

.our_blog .out {
    margin-top: 6rem;
}

.our_blog .out .swiper-slide {
    width: 33.33%;
    padding: 1rem;
    box-sizing: border-box;
}

.our_blog .out .swiper-slide a {
    width: 100%;
    display: block;
    padding: 3.2rem 3.3rem;
    box-sizing: border-box;
    border: 0.1rem solid #ECECEC;
}

.our_blog .out .swiper-slide .img {
    width: 100%;
    height: 29.4rem;
    overflow: hidden;
}

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

.our_blog .out .swiper-slide .text {
    padding-top: 4rem;
    box-sizing: border-box;
}

.our_blog .out .swiper-slide .text h3 {
    font-weight: 500;
    font-size: 2rem;
    color: #171717;
    height: 5.2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制为两行 */
    overflow: hidden;
}

.our_blog .out .swiper-slide .text .Time_box {
    width: 100%;
    padding-top: 2.5rem;
    border-top: 0.1rem solid #EBEBEB;
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our_blog .out .swiper-slide .text .Time_box time {
    font-weight: 400;
    font-size: 1.5rem;
    color: #666666;
}

.our_blog .out .swiper-slide .text .Time_box .Moer {
    width: 4.8rem;
    height: 4.8rem;
    background: #F2F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our_blog .out .swiper-slide .text .Time_box .Moer svg {
    height: 2rem;
    width: 2rem;
    fill: #7D7D7D;
}

.FAQ_section {
    width: 100%;
    margin: 11rem 0px;
    overflow: hidden;
}

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

.FAQ_section .out .left {
    width: 40.5%;
    height: 62rem;
    background: url(../images/FAQ.webp) no-repeat center;
    background-size: cover;
    position: relative;
}

.FAQ_section .out .left .FAQ_box {
    width: 50.3rem;
    height: 48.3rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0px 0px 0px 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 4.6rem 2.7rem;
    box-sizing: border-box;
}

.FAQ_section .out .left .FAQ_box h2 {
    font-weight: 900;
    font-size: 2.9rem;
    color: #FFFFFF;
    margin-bottom: 3.7rem;
}

.FAQ_section .out .left .FAQ_box ul {
    width: 100%;
}

.FAQ_section .out .left .FAQ_box li {
    padding-bottom: 1.4rem;
    margin-top: 2.6rem;
    border-bottom: 0.1rem solid #4B4B4B;
}

.FAQ_section .out .left .FAQ_box li a {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
}

.FAQ_section .out .left .FAQ_box li a span {
    font-weight: normal;
    font-size: 1.8rem;
    color: #FFFFFF;
    width: calc(100% - 2.7rem);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.FAQ_section .out .left .FAQ_box li a svg {
    width: 2rem;
    height: 2rem;
    fill: #FFFFFF;
}

.FAQ_section .out .left .FAQ_box .Talk {
    width: 18.2rem;
    height: 4rem;
    border-radius: 0px 0px 0px 0px;
    border: 0.1rem solid #CECECE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #EFEFEF;
    margin: 0 auto;
    margin-top: 4.5rem;
}


.FAQ_section .out .right {
    width: 48%;
    padding-top: 2.3rem;
}

.FAQ_section .out .right h2 {
    font-weight: bold;
    font-size: 2.7rem;
    color: #111111;
    margin-bottom: 1.3rem;
}

.FAQ_section .out .right span {
    font-weight: 400;
    font-size: 1.5rem;
    color: #8E8E8E;
}

.FAQ_section .out .right form {
    margin-top: 3.7rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.FAQ_section .out .right form input {
    width: 48%;
    height: 4.9rem;
    border-radius: 0px 0px 0px 0px;
    border: 0.1rem solid #E6E6E6;
    padding: 0px 2rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1.6rem;
    color: #8E8E8E;
    outline: none;
    margin-bottom: 2.8rem;
}

.FAQ_section .out .right form textarea {
    width: 100%;
    height: 18.1rem;
    border: 0.1rem solid #E6E6E6;
    outline: none;
    padding: 2rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1.6rem;
    color: #8E8E8E;
}

.FAQ_section .out .right form button {
    margin-top: 5.2rem;
    width: 22.1rem;
    height: 4.6rem;
    background: #0E2569;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    border: none;
}

#footer {
    background: #0E2569;
    padding-top: 6rem;
    box-sizing: border-box;
}

.footer_logo {
    height: 8.5rem;
    padding-bottom: 2.4rem;
    margin-bottom: 5.1rem;
    border-bottom: 0.1rem solid #343434;
}

.footer_logo img {
    height: 100%;
    display: block;
}

.Footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 5.4rem;
}

.Footer .Contact_Information {
    width: 38.2rem;
}

.Footer .Contact_Information h3{
    font-size: 3rem ;
    color: #FFF ;
    margin-bottom: 3rem ;
}

.Footer .Contact_Information .icon {
    height: 2.9rem;
    display: block;
}

.Footer .Contact_Information .Phone_box {
    width: 100%;
    margin-bottom: 4.7rem;
}

.Footer .Contact_Information .Phone_box span {
    font-weight: bold;
    font-size: 1.8rem;
    color: #DCDCDC;
    display: flex;
    align-items: center;
    margin-top: 2.7rem;
}

.Footer .Contact_Information .Phone_box a {
    font-weight: bold;
    font-size: 1.8rem;
    color: #DCDCDC;
    display: block;
}

.Footer .Contact_Information .Footer_Emall {
    width: 100%;
}

.Footer .Contact_Information .Footer_Emall .box {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.Footer .Contact_Information .Footer_Emall .box img {
    height: 1.5rem;
    display: block;
    margin-right: 1.4rem;
}

.Footer .Contact_Information .Footer_Emall .box span {
    font-weight: 400;
    font-size: 1.6rem;
    color: #DCDCDC;
    line-height: 1.5em;
}

.Footer .Contact_Information .Footer_Emall .box a {
    font-weight: 400;
    font-size: 1.6rem;
    color: #DCDCDC;
    line-height: 1.5em;
}

.Footer .Contact_Information .Footer_Emall .box:nth-child(2) {
    margin-bottom: 0px;
    align-items: flex-start;
}


.Footer .footer_nav {
    width: 67.72rem;
    display: flex;
    justify-content: space-between;
}

.Footer .footer_nav li {
    /*width: 32%;*/
}

.Footer .footer_nav li h2 {
    font-weight: 500;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 4.3rem;
}

.Footer .footer_nav li a {
    font-weight: 400;
    font-size: 1.6rem;
    color: #DCDCDC;
    display: block;
    margin-bottom: 3.6rem;
}

.Footer .footer_nav li a:last-child {
    margin-bottom: 0px;
}

.Footer .Footer_Contact {
    width: 30rem;
}

.Footer .Footer_Contact  .erweima_box {
    width: 100% ;
    display: flex ;
    justify-content: center ;
    gap: 0px 2rem ;
}

.Footer .Footer_Contact  .erweima_box .box {
    text-align: center ;
}

.Footer .Footer_Contact  .erweima_box .box img {
    width: 11rem ;
    display: block ;
    margin-bottom: 1rem ;
}

.Footer .Footer_Contact  .erweima_box .box span {
    color: #FFF ;
    font-size: 1.5rem ;
    text-align: center ;
}

.Footer .Footer_Contact form {
    width: 100%;
    display: flex;
    margin-bottom: 6rem;
}

.Footer .Footer_Contact form img {
    width: 4.8rem;
    height: 4.8rem;
}

.Footer .Footer_Contact form input {
    width: calc(100% - 4.8rem);
    height: 4.8rem;
    background: none;
    border: none;
    border-bottom: 0.1rem solid #707070;
    outline: none;
    padding-left: 1.8rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1.2rem;
    color: #FFFFFF;
}

.Footer .Footer_Contact form input::placeholder {
    color: #FFF;
}



.Footer .Footer_Contact h3 {
    font-weight: 500;
    font-size: 1.9rem;
    color: #FFFFFF;
    margin-bottom: 3.9rem;
}

.Footer  .Contact_icon {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 4rem ;
    justify-content: center ;
}

.Footer  .Contact_icon a {
    width: 3.2rem;
    height: 3.2rem;
    display: block;
    margin-right: 1.1rem;
}

.Footer  .Contact_icon a img {
    width: 100%;
    height: 100%;
    display: block;
}

.Copyright {
    width: 100%;
    padding: 2.4rem 0px;
    border-top: 0.2rem solid #484848;
}

.Copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Copyright .container p,
.Copyright .container a {
    font-weight: 400;
    font-size: 1.4rem;
    color: #CCCCCC;
}


.banner_pages {
    width: 100%;
    /*height: 55rem;*/
    position: relative;
    overflow: hidden;
    margin-top: 13rem;
}

.banner_pages .img {
    width: 100%;
    height: 100%;
}

.banner_pages .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.banner_pages .text {
    position: absolute;
    top: 0px;
    left: 0px;
    /*padding-top: 13rem;*/
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.banner_pages .text .container {
    display: flex;
    align-items: center;
}

.banner_pages .text h2 {
    font-weight: 900;
    font-size: 6.4rem;
    color: #FFFFFF;
}

.About_Us .text {
    font-weight: normal;
    font-size: 1.8rem;
    color: #555555;
    line-height: 1.6em;
    height: 30rem;
    overflow: auto;
}

.Corporate_Culture {
    width: 100%;
    margin: 10rem 0px;
    overflow: hidden;
}

.Corporate_Culture .out {
    width: 100%;
    background: url(../images/9736.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    margin-top: 6rem;
}

.Corporate_Culture .out .box {
    width: 33.33%;
    position: relative;
    padding: 14rem 6rem 6rem 6rem;
    box-sizing: border-box;
    border-right: 0.1rem solid rgba(255, 255, 255, 0.68);
}

.Corporate_Culture .out .box .img {
    width: 9.7rem;
    height: 9.7rem;
    display: block;
    margin: 0 auto;
    margin-bottom: 6rem;
    position: relative;
    z-index: 10;
}

.Corporate_Culture .out .box .xian_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4.9rem;
    position: relative;
    z-index: 10;
}

.Corporate_Culture .out .box .xian_box i {
    width: 6.9rem;
    height: 0.1rem;
    background: #FFF;
    display: block;
}

.Corporate_Culture .out .box .xian_box b {
    width: 0.7rem;
    height: 0.7rem;
    background: #FFFFFF;
    display: block;
    margin: 0px 1.1rem;
    border-radius: 50%;
}

.Corporate_Culture .out .box h3 {
    font-weight: bold;
    font-size: 2.5rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3.4rem;
    position: relative;
    z-index: 10;
}

.Corporate_Culture .out .box p {
    font-weight: 400;
    font-size: 1.6rem;
    color: #ECECEC;
    text-align: center;
    line-height: 1.6em;
    position: relative;
    z-index: 10;
    text-transform: capitalize;
}

.Corporate_Culture .out .box::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: 0.5s ease;
}

.Corporate_Culture .out .box:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

.Products_pages .out .left {
    padding-top: 5.5rem;
    box-sizing: border-box;
}

.Products_pages .out .left .contant {
    position: sticky;
    top: 14rem;
}

.REQUEST {
    width: 100%;
    padding: 7.5rem 0px 8.5rem 0px;
    background: #F7F7F7;
    overflow: hidden;
}

.REQUEST .container {
    max-width: 150rem;
}

.REQUEST .title {
    margin-bottom: 4rem;
}

.REQUEST .title h2 {
    font-weight: bold;
    font-size: 4.2rem;
    color: #333333;
    margin-bottom: 2rem;
}

.REQUEST .title p {
    font-weight: normal;
    font-size: 1.8rem;
    color: #828282;
}

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

.REQUEST .out form input {
    width: 48%;
    height: 4.9rem;
    background: #F2F2F2;
    outline: none;
    margin-bottom: 2.8rem;
    border: none;
    padding: 0.8rem 2rem;
    box-sizing: border-box;
    border-radius: 0.3rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #8E8E8E;
}

.REQUEST .out form textarea {
    width: 100%;
    height: 17.4rem;
    background: #F2F2F2;
    padding: 0.8rem 2rem;
    box-sizing: border-box;
    outline: none;
    border: none;
    border-radius: 0.3rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #8E8E8E;
}

.Verification_code {
    width: 100%;
    display: flex;
    margin-top: 3rem;
    align-items: center;
}

.Verification_code input {
    margin-bottom: 0px !important;
    width: 30rem !important;
    max-width: calc(100% - 20rem) !important;
    margin-right: 1rem;

}

.Verification_code img {
    height: 4.9rem;
    width: 18rem;
    display: block;
    border: 0.1rem solid #e1e1e121;
    object-fit: cover;
    cursor: pointer;
}

.REQUEST .out form input:focus {
    border: 0.1rem solid #0E2569;
}

.REQUEST .out form textarea:focus {
    border: 0.1rem solid #0E2569;
}

.REQUEST .out button {
    width: 22rem;
    height: 4.6rem;
    background: #0E2569;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    cursor: pointer;
    border: none;
    font-size: 1.6rem;
    margin-top: 5rem;
}

.APPLICATION {
    margin: 11rem 0px 10rem 0px;
    width: 100%;
}

.APPLICATION .out {
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5.5rem 5.3rem;
}

.APPLICATION .out .box {
    width: 49.7rem;
    height: 32.2rem;
    position: relative;
}

.APPLICATION .out .box .img {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.APPLICATION .out .box .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease;
}

.APPLICATION .out .box .text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 2.7rem 0px 2.3rem 0px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.38);
    text-align: center;
    transition: 0.5s ease;
}

.APPLICATION .out .box .text h3 {
    font-weight: 400;
    font-size: 2.2rem;
    color: #FFFFFF;
    text-transform: capitalize;
}

.APPLICATION .out .box:hover .img img {
    transform: scale(1.1);
}

.APPLICATION .out .box:hover .text {
    background: #0e2569bd;
}

.Requests_and_Contacts {
    width: 100%;
    margin: 10rem 0px;
}

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

.Requests_and_Contacts .out .left {
    width: 56.5%;
    padding-right: 12rem;
    box-sizing: border-box;
    border-right: 0.2rem solid #C4C4C4;
}

.Requests_and_Contacts .out .left h2 {
    font-weight: bold;
    font-size: 2.7rem;
    color: #111111;
    margin-bottom: 1.5rem;
}

.Requests_and_Contacts .out .left p {
    font-weight: 400;
    font-size: 1.5rem;
    color: #8E8E8E;
}

.Requests_and_Contacts .out .left form {
    width: 100%;
    padding-right: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3.7rem;
}

.Requests_and_Contacts .out .left form input {
    width: 48.5%;
    height: 4.9rem;
    margin-bottom: 2.8rem;
    border: 0.1rem solid #E6E6E6;
    padding: 1rem 2rem;
    box-sizing: border-box;
    outline: none;
    font-weight: 400;
    font-size: 1.6rem;
    color: #8E8E8E;
}

.Requests_and_Contacts .out .left form textarea {
    font-weight: 400;
    font-size: 1.6rem;
    outline: none;
    color: #8E8E8E;
    border: 0.1rem solid #E6E6E6;
    padding: 1rem 2rem;
    box-sizing: border-box;
    width: 100%;
    height: 18rem;
}

.Requests_and_Contacts .out .left form button {
    color: #FFF;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    width: 22.1rem;
    height: 4.6rem;
    background: #0E2569;
    margin-top: 5rem;
}

.Requests_and_Contacts .out .right {
    width: 40.5%;
    padding-left: 7.8rem;
    box-sizing: border-box;
}

.Requests_and_Contacts .out .right span {
    font-weight: normal;
    font-size: 1.9rem;
    color: #1D1D1D;
    display: block;
    margin-bottom: 1.9rem;
}

.Requests_and_Contacts .out .right h2 {
    font-weight: 900;
    font-size: 3rem;
    color: #333333;
    margin-bottom: 3rem;
    line-height: 1;
}

.Requests_and_Contacts .out .right h3 {
    font-weight: bold;
    font-size: 3.7rem;
    color: #1D1D1D;
    margin-bottom: 4.9rem;
    line-height: 1;
}

.Requests_and_Contacts .out .right .box {
    display: flex;
    align-items: self-start;
    margin-bottom: 3.5rem;
}

.Requests_and_Contacts .out .right .box img {
    height: 1.9rem;
    display: block;
    margin-right: 1.5rem;
    transform: translateY(0.5rem);
}

.Requests_and_Contacts .out .right .box b {
    font-weight: 900;
    font-size: 3.1rem;
    color: #333333;
    line-height: 1;
    margin-bottom: 1.6rem;
    text-transform: uppercase;
    display: block;
}

.Requests_and_Contacts .out .right .box a {
    font-weight: 400;
    font-size: 1.6rem;
    color: #434343;
    display: block;
}

.Requests_and_Contacts .out .right .box span {
    font-weight: 400;
    font-size: 1.6rem;
    color: #434343;
    display: block;
}

.Requests_and_Contacts .out .right .All_contacts {
    width: 44.6rem;
    height: 4.6rem;
    background: #E8EBEC;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #404040;
    justify-content: center;
    transition: 0.4s ease;
}

.Requests_and_Contacts .out .right .All_contacts:hover {
    background: #0E2569;
    color: #FFF;
}

.Requests_and_Contacts .out .right .content {
    padding-left: 4.5rem;
    box-sizing: border-box;
}

.News_pages {
    width: 100%;
    margin: 11rem 0px;
}

.News_pages .out {
    margin-top: 6rem;
}

.News_pages .out .box {
    padding: 4.6rem 0px 2.8rem 0px;
    width: 100%;
}

.News_pages .out .box a {
    display: flex;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.News_pages .out .box a time {
    width: 25.4rem;
    height: 25.9rem;
    /* background: #0E2569; */
    border-radius: 0px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
}

.News_pages .out .box a time b {
    font-weight: 400;
    font-size: 4.5rem;
    color: #0E2569;
    line-height: 1;
    margin-bottom: 2.3rem;
}

.News_pages .out .box a time span {
    font-weight: 400;
    font-size: 1.6rem;
    color: #0E2569;
}

.News_pages .out .box a .text {
    width: 65.9rem;
}

.News_pages .out .box a .text h3 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    font-weight: 500;
    font-size: 2.4rem;
    color: #333333;
    margin-bottom: 3.4rem;
    line-height: 1.3em;
}

.News_pages .out .box a .text p {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.7em;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制为两行 */
    overflow: hidden;
    margin-bottom: 4.2rem;
}

.News_pages .out .box a .right {
    height: 23rem;
    width: 37.8rem;
    overflow: hidden;
}

.News_pages .out .box a .right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.5s ease;
}

.News_pages .out .box a .Moer {
    width: 5.4rem;
    /* width: 17.1rem ; */
    height: 5.4rem;
    background: #0E2569;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2.7rem;
    transition: 0.4s ease;
    overflow: hidden;
    position: relative;
}

.News_pages .out .box a .Moer span {
    font-weight: 500;
    font-size: 1.4rem;
    color: #FFFFFF;
    display: block;
    margin-right: 1rem;
    width: max-content;
}

.News_pages .out .box a .Moer .Moer_txt {
    width: 0px;
    overflow: hidden;
    transition: 0.5s ease;
}

.News_pages .out .box a .Moer img {
    height: 1.4rem;
    display: block;
}

.News_pages .out .box:hover {
    background: #FAFAFA;
}

.News_pages .out .box:hover a time {
    background: #0E2569;
}

.News_pages .out .box:hover a time b,
.News_pages .out .box:hover a time span {
    color: #FFF;
}

.News_pages .out .box:hover a .text h3 {
    color: #0E2569;
}

.News_pages .out .box:hover a .right img {
    transform: scale(1.1);
}

.News_pages .out .box:hover a .Moer {
    width: 17.1rem;
}

.News_pages .out .box:hover .Moer .Moer_txt {
    width: max-content;
}

.FAQ_pages {
    width: 100%;
    margin: 10rem 0px;
}

.FAQ_pages .container {
    max-width: 150rem;
}

.FAQ_pages .out {
    margin-top: 6rem;
}

.FAQ_pages .out .box {
    width: 100%;
    padding: 2.3rem 0px 2.7rem 0px;
    border-bottom: 0.1rem solid #E7E3E0;
}

.FAQ_pages .out .box .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.FAQ_pages .out .box .title .tit {
    display: flex;
    align-items: center;
}

.FAQ_pages .out .box .title .tit b {
    font-weight: bold;
    font-size: 2.7rem;
    color: #0E2569;
    margin-right: 3.5rem;
}

.FAQ_pages .out .box .title .tit h3 {
    font-weight: 400;
    font-size: 2.2rem;
    color: #555555;
}

.FAQ_pages .out .box .title .icon {
    width: 4.1rem;
    height: 4.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.FAQ_pages .out .box .title svg {
    height: 2rem;
    width: 2rem;
    fill: #0E2569;
    display: block;
}

.FAQ_pages .out .box .title.active .tit h3 {
    color: #0E2569;
}

.FAQ_pages .out .box .title.active .icon {
    background: #0E2569;
}

.FAQ_pages .out .box .title.active svg {
    fill: #FFF;
}

.FAQ_pages .out .box .text {
    width: 100%;
    display: none;
    margin-top: 3.1rem;
}

.FAQ_pages .out .box .text .text_flex {
    display: flex;
    align-items: self-start;
}

.FAQ_pages .out .box .text b {
    font-weight: bold;
    font-size: 2.7rem;
    color: #9D9D9D;
    margin-right: 3.5rem;
    display: block;
}

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

.Contact_pages {
    width: 100%;
    margin: 11rem 0px;
}

.Contact_pages .out {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
}

.Contact_pages .out .left {
    width: 40%;
}

.Contact_pages .out .left .img {
    width: 100%;
    height: 25.3rem;
    overflow: hidden;
    box-shadow: 0px 0px 1rem 0.1rem #00000015;
    margin-bottom: 4.9rem;
}

.Contact_pages .out .left .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.Contact_pages .out .left h2 {
    font-weight: 900;
    font-size: 3rem;
    color: #333333;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3rem;
}

.Contact_pages .out .left h3 {
    font-weight: bold;
    font-size: 3.7rem;
    color: #1D1D1D;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 4.9rem;
}

.Contact_pages .out .left .box {
    display: flex;
    align-items: self-start;
    margin-bottom: 3.4rem;
}

.Contact_pages .out .left .box img {
    display: block;
    transform: translateY(0.7rem);
    height: 1.9rem;
    margin-right: 1.5rem;
}

.Contact_pages .out .left .box b {
    font-weight: 900;
    font-size: 3.1rem;
    color: #333333;
    line-height: 1;
    margin-bottom: 1.7rem;
    display: block;
}

.Contact_pages .out .left .box span,
.Contact_pages .out .left .box a {
    font-weight: 400;
    font-size: 1.6rem;
    color: #434343;
    display: block;
}

.Contact_pages .out .right {
    width: 49%;
}

.Contact_pages .out .right h2 {
    font-weight: bold;
    font-size: 2.7rem;
    color: #111111;
    margin-bottom: 1.5rem;
}

.Contact_pages .out .right p {
    font-weight: 400;
    font-size: 1.5rem;
    color: #8E8E8E;
    display: block;
    margin-bottom: 3.7rem;
}

.Contact_pages .out .right form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Contact_pages .out .right form input {
    width: 100%;
    height: 4.9rem;
    flex-wrap: wrap;
    outline: none;
    border: 0.1rem solid #E6E6E6;
    padding: 1rem 2rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1.6rem;
    color: #8E8E8E;
    margin-bottom: 2.8rem;
}

.Contact_pages .out .right form textarea {
    width: 100%;
    height: 18rem;
    border-radius: 0px 0px 0px 0px;
    border: 0.1rem solid #E6E6E6;
    padding: 1rem 2rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1.6rem;
    color: #8E8E8E;
    outline: none;
}

.Contact_pages .out .right form button {
    width: 22.1rem;
    height: 4.6rem;
    background: #0E2569;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    cursor: pointer;
    border: none;
    margin-top: 5rem;
}


.News_Detail {
    margin: 10rem 0px;
}

.News_Detail .list {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.News_Detail h2 {
    color: #171717;
    font-size: 2.4rem;
    font-weight: bold;
}

.News_Detail .list .span {
    color: #555555;
    font-size: 1.4rem;
    display: block;
    margin: 0px 0.5rem;
}

.News_Detail .text {
    width: 100%;
    margin-top: 4rem;
}

.News_Detail .text p {
    color: #313131;
    font-size: 1.6rem;
    line-height: 1.6em;
    margin: 1rem 0px;
}

.News_Detail .text img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 1rem 0px;
}

.PRODUCTS_Details {
    width: 100%;
}

.PRODUCTS_Details .container {
    max-width: 152rem;
}

.PRODUCTS_Details .Top_information_block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 5.6rem 0px 8.6rem 0px;
}

.PRODUCTS_Details .Top_information_block .left {
    width: 29%;
}

.PRODUCTS_Details .Top_information_block .left .img {
    width: 100%;
    height: 40.8rem;
}

.PRODUCTS_Details .Top_information_block .left .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.PRODUCTS_Details .Top_information_block .left .Details_swiper {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.PRODUCTS_Details .Top_information_block .left .Details_swiper .swiper-slide {
    width: 32%;
    height: 8.5rem;
    box-sizing: border-box;
    margin-right: 2%;
    background: #FFF;
    box-shadow: 0px 0px 1rem 0.1rem #00000010;
    cursor: pointer;
    overflow: hidden;
}

.PRODUCTS_Details .Top_information_block .left .Details_swiper .swiper-slide:last-child {
    margin-right: 0px;
}

.PRODUCTS_Details .Top_information_block .left .Details_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: 0.5s ease;
}

.PRODUCTS_Details .Top_information_block .left .Details_swiper .swiper-slide:hover img {
    transform: scale(1.1);
}

.PRODUCTS_Details .Top_information_block .right {
    width: 57%;
    padding-top: 4.8rem;
    box-sizing: border-box;
}

.PRODUCTS_Details .Top_information_block .right h3 {
    font-weight: bold;
    font-size: 3.5rem;
    color: #333333;
}

.PRODUCTS_Details .Top_information_block .right i {
    display: block;
    margin: 3.2rem 0px;
    width: 7.4rem;
    height: 0.4rem;
    background: #0E2569;
}

.PRODUCTS_Details .Top_information_block .right p {
    font-weight: normal;
    font-size: 1.8rem;
    color: #555555;
    line-height: 1.7em;
}

.PRODUCTS_Details .Top_information_block .right a {
    width: 19.5rem;
    height: 5.4rem;
    margin-top: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.8rem;
    color: #0E2569;
    border: 0.1rem solid #0E2569;
    position: relative;
    transition: 0.4s ease;
    border-radius: 0.3rem;
}

.PRODUCTS_Details .Top_information_block .right a::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 0%;
    background: #0E2569;
    content: '';
    transition: 0.4s ease;
}

.PRODUCTS_Details .Top_information_block .right a:hover::after {
    height: 100%;
    z-index: -1;
}

.PRODUCTS_Details .Top_information_block .right a:hover {
    color: #FFF;
}

.PRODUCTS_Details .Detail_content {
    margin: 8.5rem 0px 10rem 0px;
    width: 100%;
}



.Detail_title {
    display: flex;
    align-items: center;
}

.Detail_title i {
    width: 0.4rem;
    height: 2.7rem;
    background: #0E2569;
    display: block;
    margin-right: 1.5rem;
}

.Detail_title h3 {
    font-weight: bold;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #1A1A1A;
}

.PRODUCTS_Details .Detail_content .text {
    margin-top: 2rem;
    width: 100%;
    font-weight: normal;
    font-size: 1.8rem;
    color: #555555;
    line-height: 1.7em;
}

.PRODUCTS_Details .Detail_content .text p {
    font-weight: normal;
    font-size: 1.8rem;
    color: #555555;
    line-height: 1.7em;
}


.PRODUCTS_Details .Detail_content .text img {
    width:auto ;
    max-width:100%;
    display:block;
}

.PRODUCTS_Details .Related_Product {
    margin: 10rem 0px;
}


.PRODUCTS_Details .Related_Product .Product_swiper {
    margin-top: 10rem;
}

.PRODUCTS_Details .Related_Product .swiper-wrapper {
    transition-timing-function: linear !important;
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide {
    width: 25%;
    height: 38.8rem;
    position: relative;
    padding: 1rem;
    box-sizing: border-box;
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide a {
    display: block;
    position: relative;
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide .txt {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    transform: translateY(50%);
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide .txt h3 {
    font-weight: normal;
    font-size: 2rem;
    color: #000000;
    text-transform: capitalize;
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide:last-child {
    margin-right: 0px;
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide .img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: 0.5s ease;
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide a:hover .img img {
    transform: scale(0.9);
}

.PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide a:hover .txt h3 {
    color: #0E2569;
}
















.menubtn {
    width: 28.44px;
    height: 28.44px;
    position: relative;
    cursor: pointer;
    display: none;
    align-items: center;
}

.menubtn span {
    display: block;
    width: 28.44px;
    height: 3px;
    background: #383635;
    position: relative;
    vertical-align: middle;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
}

.menubtn span:after,
.menubtn span:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 3px;
    left: 0;
    background-color: #383635;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s;
}

.menubtn span:before {
    top: -10px;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top, transform;
    -ms-transition-property: top, transform;
    -o-transition-property: top, transform;
    transition-property: top, transform;
}

.menubtn span:after {
    bottom: -10px;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom, transform;
    -ms-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
}

.menubtn.active span {
    background-color: transparent;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -ms-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
}

.menubtn.active span:after,
.menubtn.active span:before {
    -webkit-transition-delay: 0s, .3s;
    -moz-transition-delay: 0s, .3s;
    -ms-transition-delay: 0s, .3s;
    -o-transition-delay: 0s, .3s;
    transition-delay: 0s, .3s
}

.menubtn.active span:before {
    top: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menubtn.active span:after {
    bottom: 0px;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.Mobile_navigation {
    width: 100%;
    background: #FFF;
    box-shadow: 0px 1rem 1rem #0000001e;
    padding: 2rem 0px;
    box-sizing: border-box;
    display: none;
}

.Mobile_navigation.show {
    display: block;
}

.Mobile_navigation ul li {
    width: 100%;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
}

.Mobile_navigation ul li .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Mobile_navigation ul li .title a {
    width: 100%;
    color: #333;
    font-size: 1.8rem;
}

.Mobile_navigation ul li .title svg {
    width: 3rem;
    height: 3rem;
}

.Mobile_navigation ul li .list {
    width: 100%;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
    display: none;
}

.Mobile_navigation ul li .list a {
    width: 100%;
    padding: 1rem 0px;
    display: block;
    color: #333;
    font-size: 1.6rem;
}

.Mobile_navigation ul li.active {
    background: #0E2569;
}

.Mobile_navigation ul li.active svg {
    fill: #FFF;
}

.Mobile_navigation ul li.active a {
    color: #FFF;
}

.Mobile_navigation ul {
    display: block !important;
}

.Mobile_navigation ul li {
    display: block !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: #23527c;
    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: #0E2569;
    border-color: #0E2569;
    cursor: default;
}



@media (max-width:1024px) {

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

    .menubtn {
        display: flex;
    }

    .nav ul {
        display: none;
    }

    .banner {
        height: auto;
        margin-top: 13rem;
        /*height: 47.5rem;*/
    }

    .banner .swiper-slide .text {
        padding-top: 0px;
    }

    .banner .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

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

    .banner .swiper-slide .text p {
        font-size: 2rem;
        width: 78%;
    }

    .banner .swiper-slide .text a {
        width: 18rem;
        height: 6rem;
        font-size: 1.7rem;
        margin-top: 4rem;
    }

    .Service_Introduction .out .box {
        width: 48%;
    }

    .Service_Introduction {
        margin: 8rem 0px 8rem 0px;
    }

    .Service_Introduction .out .box {
        padding: 3rem 2rem;
        box-sizing: border-box;
    }

    .Service_Introduction .out .box h2 {
        font-size: 2rem;
    }

    .Service_Introduction .out .box a {
        font-size: 1.4rem;
        padding: 1rem 2rem;
        box-sizing: border-box;
    }

    .public_title h2 {
        font-size: 4rem;
    }

    .Hot_Products {
        margin: 8rem 0px;
    }

    .Hot_Products .out .left h3 {
        font-size: 2.6rem;
    }

    .Hot_Products .out .left ul li .tit {
        font-size: 1.6rem;
    }

    .Hot_Products .out .left ul li .list a {
        font-size: 1.4rem;
    }

    .Hot_Products .out .right .box {
        width: 32%;
        height: 22.3rem;

    }

    .Hot_Products .out .right .box .txt h3 {
        font-size: 1.6rem;
    }

    .Hot_Products .out .right {
        gap: 5rem 2%;
        align-content: flex-start;
    }

    .Hot_Products .out .left .contant {
        height: 30rem;
    }

    .Hot_Products .out .left .Read_More,
    .About_Us .out .left a {
        width: 14rem;
        height: 5rem;
        font-size: 1.5rem;
    }

    .About_Us {
        margin: 8rem 0px;
    }

    .About_Us .out .left {
        width: 47%;
    }

    .About_Us .out .left h2 {
        font-size: 4rem;
    }

    .About_Us .out .left p {
        font-size: 1.6rem;
    }

    .Enterprise_Advantage .out {
        flex-wrap: wrap;
        gap: 3rem 0px;

    }

    .Enterprise_Advantage {
        padding: 8rem 0px;
    }

    .Enterprise_Advantage .out .box {
        width: 48%;
        height: 27.4rem;
        padding: 3rem;
    }

    .Enterprise_Advantage .out .box h3 {
        font-size: 2rem;
    }

    .Enterprise_Advantage .out .box p {
        font-size: 1.5rem;
    }

    .MANUFACTURER {
        margin: 8rem 0px;
    }

    .Solution .out .left h2 {
        font-size: 4rem;
    }

    .Solution {
        margin: 8rem 0px 9rem 0px;
    }

    .Solution .out .left {
        width: 100%;
    }

    .Solution .out .right .img_min {
        display: none;
    }

    .Solution .out .right {
        margin: 0 auto;
        margin-top: 4rem;
        width: 80%;
        height: 40rem;
    }

    .Solution .out .right .ColorBlock {
        width: 100%;
        height: 100%;
        right: auto;
        left: 0px;
        top: 0px;
        transform: translate(2%, 5%);
    }

    .our_blog {
        margin: 10rem 0px;
    }

    .our_blog .out .swiper-slide a {
        padding: 2rem;
    }

    .our_blog .out .swiper-slide .img {
        height: 17rem;
    }

    .our_blog .out .swiper-slide .text {
        padding-top: 2rem;
    }

    .FAQ_section .out {
        flex-wrap: wrap;
    }

    .FAQ_section .out .left {
        width: 100%;
    }

    .FAQ_section .out .left .FAQ_box {
        width: 80%;
    }

    .FAQ_section .out .right {
        width: 100%;
        padding-top: 4rem;
    }

    .Footer .footer_nav {
        display: none;
    }

    .Footer .Contact_Information {
        width: 60%;
    }

    .Footer .Footer_Contact {
        width: 30%;
    }

    .banner_pages {
        margin-top: 13rem;
        /*height: 30rem;*/
    }

    .banner_pages .text {
        padding-top: 0px;
    }

    .banner_pages .text h2 {
        font-size: 4rem;
    }

    .Corporate_Culture .out .box {
        padding: 6rem 2rem;
        box-sizing: border-box;
    }

    .Corporate_Culture .out {
        height: auto;
    }

    .Corporate_Culture .out .box .img {
        height: 7rem;
        width: 7rem;
        margin-bottom: 2rem;
    }

    .Corporate_Culture .out .box h3 {
        font-size: 2.4rem;
    }

    .Corporate_Culture .out .box .xian_box {
        margin-bottom: 3rem;
    }

    .Corporate_Culture .out .box p {
        font-size: 1.5rem;
    }

    .PRODUCTS_Details .Top_information_block .left {
        width: 48%;
    }

    .PRODUCTS_Details .Top_information_block .right {
        width: 50%;
    }

    .PRODUCTS_Details .Top_information_block .right h3 {
        font-size: 3rem;
    }

    .PRODUCTS_Details .Top_information_block .right i {
        margin: 2rem 0px;
    }

    .PRODUCTS_Details .Top_information_block .right p {
        display: -webkit-box;
        /* 弹性盒模型 */
        -webkit-box-orient: vertical;
        /* 垂直排列 */
        -webkit-line-clamp: 5;
        /* 限制显示3行 */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .PRODUCTS_Details .Top_information_block .right a {
        font-size: 1.6rem;
        width: 14rem;
        height: 5rem;
    }

    .PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide {
        width: 33.33%;
        height: 33rem;
    }

    .APPLICATION .out {
        justify-content: space-between;
        gap: 5rem 0px;
    }

    .APPLICATION .out .box {
        width: 48%;
    }

    .Requests_and_Contacts .out {
        flex-wrap: wrap;
    }

    .Requests_and_Contacts .out .left {
        width: 100%;
        padding-right: 0px;
        border-right: 0px;
    }

    .Requests_and_Contacts .out .right {
        width: 100%;
        padding-left: 0px;
        margin-top: 5rem;
    }

    .News_pages .out .box a time {
        display: none;
    }

    .News_pages .out .box a .text {
        width: 56%;
    }

    .News_pages .out .box a .right {
        width: 40%;
    }

    .FAQ_section .out .right form input {
        width: 100%;
    }

}


@media (max-width:768px) {
    .banner {
        /*height: 36rem;*/
    }

    .banner .swiper-slide .text h2 {
        font-size: 3.6rem;
    }

    .banner .swiper-slide .text p {
        font-size: 1.8rem;
    }

    .banner .swiper-slide .text a {
        width: 14rem;
        height: 4.5rem;
        font-size: 1.5REM;
        margin-top: 4rem;
    }

    .Service_Introduction .out {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem 0px;
    }

    .Service_Introduction .out .box {
        width: 100%;
    }

    .public_title h2 {
        font-size: 3.6rem;
    }

    .Hot_Products .out {
        flex-wrap: wrap;
    }

    .Hot_Products .out .left {
        width: 100%;
    }

    .Hot_Products .out .left .Read_More,
    .About_Us .out .left a {
        margin-top: 3rem;
    }

    .Hot_Products .out .right {
        width: 100%;
        margin-top: 4rem;
    }

    .About_Us .out {
        flex-wrap: wrap;
    }

    .About_Us .out .left {
        width: 100%;
    }

    .About_Us .out .right {
        margin-top: 4rem;
        width: 100%;
    }

    .About_Us .out .left h2,
    .Solution .out .left h2 {
        font-size: 3.6rem;
    }

    .MANUFACTURER .MANUFACTURER_swiper .swiper-slide {
        width: 30rem;
        height: 19rem;
    }

    .our_blog .out .swiper-slide {
        width: 50%;
    }

    .our_blog .out .swiper-slide .img {
        height: 18rem;
    }

    .Products_pages .out .left {
        padding-top: 0px;
    }

    .REQUEST .title h2 {
        font-size: 3.6rem;
    }

    .REQUEST .out form input {
        width: 100%;
    }

    .PRODUCTS_Details .Top_information_block {
        flex-wrap: wrap;
    }

    .PRODUCTS_Details .Top_information_block .left,
    .PRODUCTS_Details .Top_information_block .right {
        width: 100%;
    }

    .PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide {
        width: 50%;
        height: 35rem;
    }

    .Requests_and_Contacts .out .left form {
        padding-right: 0px;
    }

    .Requests_and_Contacts .out .right .content {
        padding-left: 0px;
    }

    .Requests_and_Contacts .out .right h2 {
        font-size: 2rem;
    }

    .Requests_and_Contacts .out .right h3 {
        font-size: 3rem;
    }

    .Requests_and_Contacts .out .right .box b {
        font-size: 2.4rem;
    }

    .Requests_and_Contacts .out .right .All_contacts {
        max-width: 100%;
    }

    .APPLICATION .out .box {
        height: 19rem;
    }

    .APPLICATION .out .box .text {
        padding: 1rem 0px;
    }

    .APPLICATION .out .box .text h3 {
        font-size: 1.8rem;
    }

    .Contact_pages .out {
        flex-wrap: wrap;
    }

    .Contact_pages .out .left {
        width: 100%;
    }

    .Contact_pages .out .right {
        width: 100%;
    }

    .Contact_pages,
    .News_pages,
    .APPLICATION {
        margin: 8rem 0px;
    }

    .News_pages .out {
        margin-top: 0px;
    }

    .Contact_pages .out .left h2 {
        font-size: 2rem;
    }

    .Contact_pages .out .left h3 {
        font-size: 3rem;
    }

    .Contact_pages .out .left .box b {
        font-size: 2.1rem;
    }

    .Contact_pages .out .right h2 {
        font-size: 2rem;
    }

    .FAQ_pages {
        margin: 8rem 0px;
    }

    .FAQ_pages .out .box .title .tit b {
        font-size: 2rem;
    }

    .FAQ_pages .out .box .title .tit h3 {
        font-size: 1.8rem;
    }

    .FAQ_pages .out .box .text b {
        font-size: 2rem;
    }

}

@media (max-width:520px) {

    .nav {
        height: 7rem;
    }

    .Top_information_bar .left a {
        font-size: 1.3rem;
    }

    .Top_information_bar .right .language span {
        font-size: 1.4rem;
    }

    .Top_information_bar .right .language img {
        display: block;
        width: 1rem;
        height: 0.5rem;
    }

    .nav .logo img {
        height: 5rem;
    }

    .banner {
        /*height: 23rem;*/
        margin-top: 11rem;
    }

    .banner .swiper-slide .text p {
        display: none;
    }

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

    .banner .swiper-slide .text a {
        margin: 0 auto;
        margin-top: 4rem;
    }

    .Hot_Products .out .right {
        justify-content: space-between;
        gap: 3rem 0px;
    }

    .Hot_Products .out .right .box {
        width: 48%;
    }

    .public_title h2 {
        font-size: 3rem;
    }

    .Enterprise_Advantage .out {
        margin-top: 5rem;
    }

    .Enterprise_Advantage .out .box {
        width: 100%;
        height: auto;
    }

    .About_Us .out .left h2,
    .Solution .out .left h2 {
        font-size: 3rem;
    }

    .Solution .out .left p {
        margin-bottom: 1em;
    }

    .Solution .out .right {
        width: 90%;
        height: 30rem;
    }

    .our_blog .out .swiper-slide {
        width: 70%;
    }

    .FAQ_section .out .left .FAQ_box {
        width: 90%;
    }

    .Footer {
        flex-wrap: wrap;
    }

    .Footer .Contact_Information {
        width: 100%;
    }

    .Footer .Footer_Contact {
        width: 100%;
        margin-top: 4rem;
    }

    .Copyright .container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .Copyright .container p,
    .Copyright .container a {
        display: block;
    }

    .Corporate_Culture .out {
        flex-wrap: wrap;
    }

    .Corporate_Culture .out .box {
        width: 100%;
    }

    .banner_pages {
        margin-top: 11rem;
        /*height: 18rem;*/
    }

    .banner_pages .text h2 {
        font-size: 3rem;
    }

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

    .REQUEST .title p {
        font-size: 1.5rem;
    }

    .PRODUCTS_Details .Related_Product .Product_swiper .swiper-slide {
        width: 86%;
    }

    .APPLICATION .out .box .text {
        padding: 1rem;
        box-sizing: border-box;
    }

    .APPLICATION .out .box .text h3 {
        font-size: 1.5rem;
        width: 100%;
        white-space: nowrap;
        /* 禁止换行 */
        overflow: hidden;
        /* 隐藏溢出内容 */
        text-overflow: ellipsis;
        /* 显示省略号 */

    }

    .News_pages .out .box a {
        flex-wrap: wrap;
    }

    .News_pages .out .box a .text {
        width: 100%;
    }

    .News_pages .out .box a .right {
        width: 100%;
        height: auto;
        margin-top: 3rem;
    }

    .Requests_and_Contacts .out .left form input {
        width: 100%;
    }

    .News_pages .out .box a .text h3 {
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }

    .News_pages .out .box a .text p {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .News_pages .out .box a .Moer {
        display: none;
    }

    .News_pages .out .box a .right {
        margin-top: 0px;
    }

    .Contact_pages,
    .News_pages,
    .APPLICATION,
    .Hot_Products,
    .About_Us,
    .Corporate_Culture {
        margin: 5rem 0px;
    }


    .APPLICATION .out {
        margin-top: 4rem;
        gap: 2rem 0px;
    }

    .FAQ_pages .out .box .title .icon {
        flex: none;
        width: 3rem;
        height: 3rem;
    }

    .FAQ_pages .out .box .title .tit b {
        margin-right: 2rem;
    }

    .FAQ_pages .out .box .title .tit {
        width: calc(100% - 4rem);
    }

    .FAQ_pages .out .box .title .tit h3 {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


}

@media (min-width:1025px) and (max-width:1440px) {

    .container,
    .Service_Introduction .container,
    .FAQ_pages .container {
        max-width: 125rem !important;
    }

    .nav ul li {
        margin-right: 8rem;
    }

    .banner {
        /*height: 85rem;*/
    }


    .banner .swiper-slide .text h2 {
        font-size: 6rem;
    }

    .banner .swiper-slide .text p {
        font-size: 2.4rem;
        width: 75%;
    }

    .banner .swiper-slide .text a {
        margin-top: 7rem;
        font-size: 2rem;
        width: 20rem;
        height: 6rem;
    }

    .Service_Introduction .out .box {
        width: 48%;
    }

    .Hot_Products .container {
        max-width: 125rem;
    }

    .Hot_Products .out .right {
        gap: 5rem 2%;
    }

    .Hot_Products .out .right .box {
        width: 32%;
    }

    .Enterprise_Advantage .out .box {
        width: 24%;
        height: auto;
        padding: 3rem 2rem;
    }

    .Solution .out .right {
        margin-left: 14%;
    }

    .FAQ_section .out .left .FAQ_box {
        width: 90%;
    }

    .FAQ_section .out .right {
        width: 52%;
    }

    .Footer .Contact_Information {
        width: 31%;
    }

    .Footer .footer_nav {
        width: 47%;
    }

    .Footer .Footer_Contact {
        width: 18%;
    }

    .APPLICATION .out {
        gap: 5rem 2%;
    }

    .APPLICATION .out .box {
        width: 32%;
    }

    .News_pages .out .box a time {
        width: 16%;
    }

    .News_pages .out .box a .text {
        width: 49%;
    }

    .News_pages .out .box a .right {
        width: 29%;
    }

    .News_pages .container {
        max-width: 100%;
        padding: 0px 3rem;
        box-sizing: border-box;
    }

}


@media (min-width:1441px) and (max-width:1600px) {
    .container {
        max-width: 150rem;
    }

    .Enterprise_Advantage .out .box {
        width: 24%;
        height: auto;
    }

    .APPLICATION .out {
        gap: 5rem 2%;
    }

    .APPLICATION .out .box {
        width: 32%;
    }

}

















/* 超大屏幕 (1921px+) */
@media (min-width: 1921px) {
    html {
        font-size: 10px;
    }
}

/* 大桌面 (1601px - 1920px) */
@media (min-width: 1601px) and (max-width: 1920px) {
    html {
        font-size: calc(100vw / 192);
    }
}

/* 中桌面 (1441px - 1600px) */
@media (min-width: 1441px) and (max-width: 1600px) {
    html {
        font-size: calc(100vw / 160);
    }
}

/* 小桌面 (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    html {
        font-size: calc(100vw / 144);
    }
}

/* 平板横屏 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    html {
        font-size: calc(100vw / 102.4);
    }
}

/* 平板竖屏/大手机 (521px - 768px) */
@media (min-width: 426px) and (max-width: 768px) {
    html {
        font-size: calc(100vw / 76.8);
    }
}

/* 中手机/大手机 (521px - 768px) */
@media (min-width: 426px) and (max-width: 520px) {
    html {
        font-size: calc(100vw / 52);
    }
}

/* 手机 (≤425px) */
@media (max-width: 425px) {
    html {
        font-size: calc(100vw / 42.5);
    }
}

/* 超小手机额外保护 */
@media (max-width: 320px) {
    html {
        font-size: calc(100vw / 32);
    }
}