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

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

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;

}

:root {
    /* ---- fontSize ---- */
    --fontSize_20: 2rem;
    --fontSize_18: 1.8rem;
    --fontSize_16: 1.6rem;
    --fontSize_14: 1.4rem;
    --fontSize_12: 1.2rem;
    /* ---- fontSize end---- */

    /* --- color --- */
    --color_333: #333;

    /* --- color end --- */

}

body {
    font-size: 1.5rem;
    font-family: "Source Han Sans CN", sans-serif;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

#header {
    width: 100%;
    height: 14.4rem;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    transition: 0.6s ease;
}

.Top_Header {
    width: 100%;
    height: 4rem;
    background: #1C4E88;
}

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

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

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

.Top_Header .out .left i {
    display: block;
    width: 0.1rem;
    height: 1.4rem;
    background: #E1E1E1;
    margin: 0px 2.8rem;
}

.Top_Header .out .right {
    display: flex;
    align-items: center;
}

.Top_Header .out .right .icon {
    width: 2.4rem;
    height: 2.4rem;
    display: block;
    margin-left: 1.3rem;
}

.Top_Header .out .right .icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.Top_Header .out .right .icon:first-child {
    margin-left: 0px;
}

.Top_Header .out .right .language .national_flag {
    width: 2.7rem;
    height: 1.8rem;
    display: block;
    margin-right: 1rem;
    background: url(../images/cLang.png);
    background-repeat: no-repeat;
    background-position: 0 -46px;
}

.Top_Header .out .right .language {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 3rem;
    position: relative;
}

.Top_Header .out .right .language .title {
    display: flex;
    align-items: center;
}


.Top_Header .out .right .language .title span {
    font-weight: 500;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.nav {
    width: 100%;
    width: 100%;
    height: 10.4rem;
    background: #FFF;
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.1);
    transition: 0.6s ease;
    position: relative;
}

#header.nav_fixed {
    transform: translateY(-4rem);
}

#header.nav_fixed .nav {
    height: 8.5rem;
}

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

.nav .logo {
    display: block;
    height: 74.04%;
}

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

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

.nav .nav-list {
    display: flex;
    height: 100%;
}

.nav .nav-list li {
    height: 100%;
    position: relative;
    margin-right: 15.2rem;
}

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

.nav .nav-list li .title {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: #242424;
    font-size: 2rem;
        /*text-transform: lowercase;*/
}

.nav .nav-list li.active .title {
    color: #0451A4;
}

.Sub-navigation {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 22rem;
    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;
}

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

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

.banne_swiper .banner_img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.banne_swiper .text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    padding-top: 9rem;
    box-sizing: border-box;
}

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

.banne_swiper .text .txt {
    max-width: auto;
    width: 100%;
}

.banne_swiper .swiper-slide .text h2 {
    font-weight: 400;
    font-size: 3.3rem;
    color: #FFFFFF;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.36);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translate3d(0, 50%, 0);
    transition: transform 1.5s ease 0.5s, opacity 1.5s ease 0.5s;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.banne_swiper .swiper-slide .text h3 {
    font-weight: 400;
    font-size: 5rem;
    color: #FFFFFF;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.48);
    margin-bottom: 2rem;

    opacity: 0;
    transition: transform 1.5s ease 1s, opacity 1.5s ease 1s;
    transform: translate3d(0, -50%, 0);
}



.banne_swiper .swiper-slide .text h4 {
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.36);

    opacity: 0;
    transition: transform 1s ease 2s, opacity 1s ease 2s;
    transform: translate3d(0, 60%, 0);
}

.banne_swiper .swiper-slide .text p {
    font-weight: 400;
    font-size: 2.8rem;
    color: #FFFFFF;
    text-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.36);
    line-height: 1.7em;

    opacity: 0;
    transition: transform 1s ease 2s, opacity 1s ease 2s;
    transform: translate3d(0, 60%, 0);

}

.banne_swiper .swiper-slide-active .text h2 {
    transition: transform 1.5s ease 0.5s, opacity 1.5s ease 0.5s;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.banne_swiper .swiper-slide-active .text h3 {
    opacity: 1;
    transition: transform 1.5s ease 1s, opacity 1.5s ease 1s;
    transform: translate3d(0, 0, 0);
}

.banne_swiper .swiper-slide-active .text p {
    opacity: 1;
    transition: transform 1.5s ease 1s, opacity 1.5s ease 1s;
    transform: translate3d(0, 0, 0);
}

.banne_swiper .swiper-slide-active .text h4 {
    opacity: 1;
    transition: transform 1s ease 2s, opacity 1s ease 2s;
    transform: translate3d(0, 0, 0);
}

.banne_swiper .text .Moer {
    width: 16.5rem;
    height: 4.9rem;
    background: #0093DD;
    border-radius: 3rem;
    padding: 0.5rem;
    padding-left: 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 7rem;
    opacity: 0;
    transition: transform 1s ease 2s, opacity 1s ease 2s;
    transform: translate3d(0, 60%, 0);

}

.banne_swiper .swiper-slide-active .text .Moer {
    opacity: 1;
    transition: transform 1s ease 2s, opacity 1s ease 2s;
    transform: translate3d(0, 0, 0);
}

.banne_swiper .text .Moer span {
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.banne_swiper .text .Moer .icon {
    width: 4.8rem;
    height: 4.8rem;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    position: absolute;
    right: 0px;
    transform: scale(0.8);
}

.banne_swiper .text .Moer .icon svg {
    height: 2rem;
    width: auto;
    display: block;
    fill: #0093DD;
}

.but_list_banner {
    position: absolute;
    left: 0px;
    width: 100%;
    z-index: 2;
    bottom: 0px;
}

.but_list_banner .container {
    position: relative;
}

.but_list_banner .but_list {
    right: 0px;
    bottom: 8rem;
    position: absolute;
    z-index: 10;
}

.but_list_banner .but_list img {
    width: 1rem;
    height: 0.5rem;
    display: block;
    margin: 0 auto;
    margin-bottom: 0.6rem;
}

.but_list_banner .but_list .icon_2 {
    opacity: 0.6;
}

.but_list_banner .but_list .icon_3 {
    opacity: 0.3;
}

.but_list_banner .but_list .icon_4 {
    width: 2.5rem;
    height: 3.5rem;
    display: block;
    margin-top: 1rem;
}

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

.but_list_banner .swiper-pagination .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    background: #FFF;
    opacity: 1;
    transition: 0.5s ease;
}

.but_list_banner .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 2.9rem;
    border-radius: 5rem;
}

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

.public_title .title h2 {
    font-weight: bold;
    font-size: 4.8rem;
    color: #1C4E88;
    line-height: 1.2em;
    margin-bottom: 1rem;
    /*text-transform: uppercase;*/
}

.public_title .buttom_list,
.but_list_Details .buttom_list {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3rem);
    box-shadow: 0px 0.3rem 0.6rem 0.1rem rgba(0, 0, 0, 0.16);
    border-radius: 5.8rem;
    height: 6.4rem;
    padding: 1rem;
    box-sizing: border-box;
}

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

.public_title_pages h2 {
    font-weight: bold;
    font-size: 5.1rem;
    color: #1C4E88;
    line-height: 1.3em;
    /*text-transform: uppercase;*/
    margin-bottom: 1.4rem;
}

.public_title_pages h3 {
    font-weight: 500;
    font-size: 2.9rem;
    color: #1C4E88;

}



.public_title_pages i {
    width: 41.6rem;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 3rem;
    height: 0.3rem;
    background: #1C4E88;
}

.public_title_Center  {
    justify-content:center;
}

.public_title_Center  .title {
    text-align: center ;
    display: flex ;
    flex-direction: column ;
    align-items: center ;
    justify-content: center ;
}


.buttom_list .buttom_item,
.but_list_Details .buttom_list .buttom_item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 0px 1rem;
    position: relative;
}

.public_title .buttom_list a,
.but_list_Details .buttom_list a {
    width: 22.9rem;
    height: 100%;
    border-radius: 4.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.6rem;
    color: #FFFFFF;
    position: relative;
    z-index: 3;
}

.buttom_list .buttom_item .huakuai,
.but_list_Details .buttom_list .buttom_item .huakuai {
    width: 22.9rem;
    height: 100%;
    border-radius: 4.1rem;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(329deg, #70A8DB 0%, #0451A4 100%);
    content: '';
    z-index: 1;
    transform: translateX(0px);
    transition: 0.6s ease;
}

.public_title .but_list {
    display: flex;
        flex-wrap: wrap;
    align-items: center;
    gap: 2rem 6rem;
}

.public_title .but_list_en {
    
}

.public_title .but_list a {
    font-weight: 500;
    font-size: 2rem;
    color: #333333;
    position: relative;
    
      white-space: nowrap;      /* 禁止换行 */
  overflow: hidden;         /* 隐藏溢出内容 */
  text-overflow: ellipsis;  /* 显示省略号 */
    
}


.public_title .but_list_en a {
    font-weight: bold ;
}

.public_title .but_list a::after {
    content: '';
    width: 0.7rem;
    height: 0.7rem;
    background: #1C4E88;
    display: block;
    border-radius: 50%;
    display: none;
    position: absolute;
    left: -1.7rem;
    top: 50%;
    transform: translateY(-50%);
}

.public_title .but_list a.active {
    color: #1C4E88;
}

.public_title .but_list a.active::after {
    display: block;
}

.public_title .title h3 {
    font-weight: 500;
    font-size: 2.9rem;
    color: #1C4E88;
    line-height: 1.2em;
    margin-bottom: 2.6rem;
}

.public_title_Center .title h3 {
    font-size: 2.4rem !important;
    margin-bottom: 0px !important ;
}

.public_title .title i {
    display: block;
    width: 36rem;
    max-width: 100%;
    background: #025BAB;
    height: 0.3rem;
}

.public_title_Center  .title h2 {
    position: relative;
    display: flex ;
    align-items: center ;
    justify-content: center ;
}

.public_title_Center  .title h2::after , .public_title_Center  .title h2::before {
    width: 5rem ;
    height: 0.3rem ;
    background: #1C4E88 ;
    content: '';
}

.public_title_Center  .title h2::after{
    margin-left: 1rem ;
}

.public_title_Center  .title h2::before {
    margin-right: 1rem ;
}

.public_title_Center  .title  i{
    width: 100% ;
    padding: 0px 10%  ;

    display: none !important;
}


.About {
    width: 100%;
    padding: 7rem 0px 10rem 0px;
    /* background: url(../images/10185.webp) no-repeat center center / cover; */
    overflow: hidden;
    background: #FFF ;
}

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

.About .out .left {
    width: 45.188%;
    padding-top: 1.2rem;
    box-sizing: border-box;
}

.About .out .left .text {
    margin-top: 5rem;
    width: 100%;
}

.About .out .left .text p {
    font-weight: 400;
    font-size: 2rem;
    color: #959595;
    line-height: 1.7em;
}

.About .out .left .Moer {
    margin-top: 5rem;
    display: block;
    width: 18.4rem;
    height: 5.1rem;
    background: #1C4E88;
    border-radius: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.7rem;
    color: #FFFFFF;
}

.About .out .left .Moer img {
    height: 0.8rem;
    display: block;
    margin-left: 1.6rem;
}

.About .out .right {
    width: 50%;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
}

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

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

.About .out .right .Play {
    width: 11.8rem;
    height: 11.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
        z-index: 30;
}

.About .out .right .Play img {
    height: 4rem;
    display: block;
    transform: translate(0.5rem, 0.2rem);
}

.Number_scrolling {
    width: 100%;
    margin-top: 7rem;
    display: flex;
    flex-wrap: wrap;
}

.Number_scrolling .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    border-right: 0.1rem solid rgba(28, 78, 136, 0.34);
    box-sizing: border-box;
    position: relative;
}

.Number_scrolling .box::after {
    width: 0.1rem;
    height: 50%;
    background: #1C4E88;
    position: absolute;
    right: -0.1rem;
    top: 0px;
    content: '';
}

.Number_scrolling .box:last-child::after {
    display: none;
}

.Number_scrolling .box:last-child {
    border-right: none;
}

.Number_scrolling .box .tit {
    display: flex ;
    align-items: center ;
    margin-bottom: 1.7rem;
}

.Number_scrolling .box .tit .icon {
    height: 4rem ;
    display: block ;
    margin-right: 1rem ;
}

.Number_scrolling .box b {
    font-weight: bold;
    font-size: 4.9rem;
    color: #1C4E88;
    line-height: 1;
}

.Number_scrolling .box span {
    display: block;
    font-weight: 500 ;
    font-size: 2rem;
    color: #363636;
}

.PRODUCTS {
    padding: 4rem 0px 6.6rem 0px;
    background: #FFF;
    position: relative;
    overflow: hidden;
}

.PRODUCTS .out {
    margin-top: 5.4rem;
    width: 100%;
    height: 59rem;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.PRODUCTS .color_block {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 36.4rem;
    background: #1C4E88;
    width: 100%;
    display: none ;
}

.PRODUCTS .PRODUCTS_swiper {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
    transition: 0.7s ease;
}

.PRODUCTS .PRODUCTS_swiper.PRODUCTS_swiper_active {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
}

.PRODUCTS .PRODUCTS_swiper .swiper-slide {
    width: 30.75%;
    margin-right: 3.875%;
}

.PRODUCTS .PRODUCTS_swiper .swiper-slide:last-child {
    margin-right: 0px;
}

.PRODUCTS_public_item {
    width: 100%;
}

.PRODUCTS_public_item .img {
    width: 100%;
    height: 47.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
    background: #F0F0F0;
}

.PRODUCTS_public_item .img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    transition: 0.7s ease;
}

.PRODUCTS_public_item:hover .img img {
    transform: scale(1.1);
}

.PRODUCTS_public_item .text {
    width: 100%;
    display: flex;
    align-items: end;
    padding: 3rem 2rem 0px 5rem;
    box-sizing: border-box;
    justify-content: space-between;
}

.PRODUCTS_public_item .text .txt {
    width: calc(100% - 9rem);
}

.PRODUCTS_public_item .text .txt h3 {
    font-weight: 500;
    font-size: 2.2rem;
    color: #232323 ;
    line-height: 1;
    margin-bottom: 1.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.PRODUCTS_public_item:hover .text .txt h3 {
    color: #1C4E88 ;
}

.PRODUCTS_public_item .text .txt p {
    font-weight: 400;
    font-size: 1.5rem;
    color: #232323;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制显示行数 */
    overflow: hidden;
}

.PRODUCTS_public_item .text .Moer {
    width: 4.7rem;
    height: 4.7rem;
    background: #F0F0F0 ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s ease;
}

.PRODUCTS_public_item:hover .text .Moer {
    /* background: #FFF; */
}

.Technology_Solutions {
    width: 100%;
    height: 86rem;
    padding: 8rem 0px 7.5rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.Technology_Solutions::after {
    position: absolute ;
    top: 0px ;
    left: 0px ;
    width: 100% ;
    height: 100% ;
    z-index: 1 ;
    background: url(../images/10186.webp) no-repeat center / cover;
    content: '';
    opacity: 0.4 ;
}

.Technology_Solutions .public_title .title h2,
.Technology_Solutions .public_title .title h3 {
    /* color: #FFF; */
}

.Technology_Solutions .public_title .title i {
    /* background: #FFF; */
}

.Technology_Solutions .container {
    height: auto;
    position: relative;
    z-index: 10 ;
}

.Technology_Solutions .content_out {
    margin-top: 8.4rem;
    position: relative;
    width: 100%;
    z-index: 10 ;
}

.Technology_Solutions .content_out .out {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.Technology_Solutions .content_out .out .text_list {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    max-width: 113.3rem;
    margin: 0 auto;
}

.Technology_Solutions .content_out .out .text_list .text_item {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.6s ease;
}

.Technology_Solutions .content_out .out .text_list .text_item.active {
    visibility: visible;
    opacity: 1;
}

.Technology_Solutions .content_out .out .text_list .text_item h3 {
    font-weight: 500;
    font-size: 2.8rem;
    color: #333 ;
    margin-bottom: 3rem;

}

.Technology_Solutions .content_out .out .text_list .text_item p {
    font-weight: 400;
    font-size: 2rem;
    color: #444 ;
    text-align: center;
}

.Technology_Solutions .content_out .out .line_block {
    width: 100%;
    margin-top: 25.6rem;
}

.Technology_Solutions .content_out .out .line_block .icon_img {
    width: 100%;
    display: block;
}

.Technology_Solutions .content_out .out .line_block .list_box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.Technology_Solutions .content_out .out .line_block .list_box .container {
    position: relative;
    height: 100%;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box {
    text-align: center;
    width: max-content;
    position: absolute;
    left: 0px;
    top: 0px;
    cursor: pointer;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box:nth-child(1) {
    left: 7.313%;
    top: -7%;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box:nth-child(2) {
    left: 35.2%;
    top: 35.7%;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box:nth-child(3) {
    left: 62.2%;
    top: 76.7%;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box:nth-child(4) {
    left: auto;
    right: 8%;
    top: 43%;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box .icon {
    width: 10.3rem;
    height: 10.3rem;
    border: 0.1rem dotted #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-0%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box .icon .img {
    width: 7.3rem;
    height: 7.3rem;
    background: #1C4E88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box .icon .img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box h3 {
    font-weight: 500;
    font-size: 2rem;
    color: #333 ;
    position: absolute;
    top: -2rem;
    width: max-content;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box.active .icon {
    transform: translateX(-50%) translateY(-100%);
    opacity: 1;
    visibility: visible;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box .i_icon {
    width: 3.2rem;
    height: 3.2rem;
    border: 0.2rem solid #FFFFFF;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box .i_icon i {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #FFFFFF;
    display: block;
    position: relative;
    z-index: 3;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box .i_icon::after {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: '';
    background: #0451A4;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.5s ease;
}

.Technology_Solutions .content_out .out .line_block .list_box .item_box.active .i_icon::after {
    transform: scale(1);
}

.Technology_Solutions .content_out .out .Quantity_box {
    width: 100%;
    margin-top: 3.5rem;
}

.Technology_Solutions .content_out .out .Quantity_box .container {
    display: flex;
    align-items: end;
}

.Technology_Solutions .content_out .out .Quantity_box b {
    font-weight: 500;
    font-size: 2.5rem;
    color: #E8E8E8;
    margin-right: 1.8rem;
}

.Technology_Solutions .content_out .out .Quantity_box b span {
    font-weight: 500;
    font-size: 2.5rem;
    color: #E8E8E8;
    margin-left: 1rem;
}

.Technology_Solutions .content_out .out .Quantity_box .quantity {
    font-weight: 500;
    font-size: 4.9rem;
    color: #FFFFFF;
    line-height: 1;
}


.NEWS_CENTER {
    width: 100%;
    margin-bottom: 6.7rem;
    margin-top: 7rem ;
    overflow: hidden;
}

.NEWS_CENTER .News_swiper {
    margin-top: 6rem;
    width: 100%;
    padding-bottom: 2.2rem;
}

.NEWS_CENTER .News_swiper .swiper-pagination,
.NEWS_CENTER .News_swiper .swiper-scrollbar {
    top: auto;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: #E8E8E8;
    height: 0.6rem;
}

.NEWS_CENTER .News_swiper .swiper-scrollbar-drag {
    width: 31.563%;
    background: #1C4E88;
}

.NEWS_CENTER .News_swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #1C4E88;
}

.NEWS_CENTER .News_swiper .swiper-slide {
    width: 31.563%;
    margin-right: 2.625%;
}

.NEWS_CENTER .News_swiper .swiper-slide:last-child {
    margin-right: 0px;
}

.NEWS_CENTER .News_swiper .swiper-slide .img {
    width: 100%;
    height: 31.2rem;
    overflow: hidden;
}

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

.NEWS_CENTER .News_swiper .swiper-slide:hover .img img {
    transform: scale(1.1);
}

.NEWS_CENTER .News_swiper .swiper-slide .text {
    width: 100%;
    padding: 2rem 3.9rem 2.9rem 3.9rem;
    background: #FFF;
    box-sizing: border-box;
}

.NEWS_CENTER .News_swiper .swiper-slide .text span {
    line-height: 1;
    font-weight: 400;
    font-size: 1.5rem;
    color: #1C4E88;
    margin-bottom: 1.9rem;
    display: block;
}

.NEWS_CENTER .News_swiper .swiper-slide .text h3 {
    font-weight: 500;
    font-size: 2.4rem;
    color: #111111;
    margin-bottom: 1.9rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.NEWS_CENTER .News_swiper .swiper-slide:hover .text h3 {
    color: #0C4DA2;
}

.NEWS_CENTER .News_swiper .swiper-slide .text p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 限制显示行数 */
    overflow: hidden;
    line-height: 1.6em;
    margin-bottom: 2rem;
}

.NEWS_CENTER .News_swiper .swiper-slide .text .Moer {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
}

.NEWS_CENTER .News_swiper .swiper-slide .text .Moer img {
    display: block;
    height: 1.1rem;
    margin-left: 1rem;
}

.Cooperative_Clients {
    padding: 7rem 0px ;
    width: 100% ;
    background: #F7F7F7 ;
    overflow: hidden;
}

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

.Cooperative_Clients .out .swiper {
    padding: 1rem ;
    box-sizing: border-box ;
}


.Cooperative_Clients .out .swiper  .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.Cooperative_Clients .out .swiper-slide {
    width: 24rem  ;
    height: 12rem;
    background: #FFF ;
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.1);
    margin-right: 2.5rem ;
    padding: 1rem ;
    box-sizing: border-box ;
}


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

.Solution_Detailc {
    width: 100% ;
    margin: 7rem 0px ;
}

.Solution_Detailc .text {
    width: 100% ;
    max-width: 120rem ;
    margin: 0 auto ;
}

.Solution_Detailc .text img {
    display: block ;
    width: auto ;
    max-width: 100% ;
    margin: 0 auto;
}

.Solution_Detailc .text p{
    font-size: 2rem ;
    color: #292929 ;
    line-height: 1.7em ;
}


#footer {
    width: 100%;
    background: #1C4E88;
    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: 5rem 0px 5.3rem 0px;
    box-sizing: border-box;
    border-bottom: 0.1rem solid rgba(232, 232, 232, 0.14);
    box-sizing: border-box;
}

#footer .Top-logo .out .logo {
    height: 9.2rem;
    font-weight: 500;
    font-size: 4.5rem;
    color: #FFFFFF;
}

#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.7rem;
    color: #EBEBEB;
}

#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: 4.6rem;
}

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

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

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

#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.6rem;
    line-height: 1.8em;
    color: #DCDCDC;
}




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

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

#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.5rem;
    color: #DCDCDC;
    margin-bottom: 2.6rem;
    display: block;
    /*width: max-content;*/
}

#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;
}

.footer_en .footer-information .out .left li span,
.footer_en .footer-information .out .left li a {
    font-weight: 500 ;
}


.footer_en .footer-information .out .right .box li a {
    font-size: 1.6rem ;
    font-weight: 500 ;
}

.banner_pages {
    width: 100%;
    position: relative;
    margin-top: 4rem;
}

.banner_pages .banner {
    width: 100%;
    display: block;
}

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

.banner_pages .text .container {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.banner_pages .text .container h2 {
    font-weight: 400;
    font-size: 4.2rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
    
}

.banner_pages .text .container p {
    font-weight: 400;
    font-size: 2.3rem;
    color: #FFFFFF;
}

.banner_pages .text .container i {
    width: 11rem;
    height: 0.4rem;
    background: #1C4E88;
    display: block;
    margin-top: 4rem;
}

.banner_pages_Product .text .container h2 {
    color: #1C4E88;
    font-weight: normal;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner_pages_Product .text .container h3 {
    font-weight: 400;
    font-size: 3.7rem;
    color: #1C4E88;
}

.banner_pages_Product .text .container i {
    margin-top: 6rem;
}

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

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

.Technical_Support .out .box {
    width: 24%;
    background: #F0F4F8;
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.15);
    padding: 6rem 3rem 4rem 3rem;
    box-sizing: border-box;
    border-radius: 1rem;
    overflow: hidden;
}

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

.Technical_Support .out .box h3 {
    font-weight: 500;
    font-size: 2.1rem;
    color: #111111;
    line-height: 1.3em;
    text-align: center;
    width: 100%;
    margin-bottom: 2.4rem;
}

.Technical_Support .out .box p {
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 1.7em;
    text-align: center;
}

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

.Solutions_pages .title {
    width: 107.6rem;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 6rem;
}

.Solutions_pages .title h3 {
    font-weight: 500;
    font-size: 3.2rem;
    color: #131313;
    margin-bottom: 3rem;
}

.Solutions_pages .title p {
    font-weight: 400;
    font-size: 2rem;
    color: #040404;
    text-align: center;
    line-height: 1.8em;
}

.Solutions_pages .out {
    margin-top: 6rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.9rem 2%;
}

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

.Solutions_pages .out .box .img {
    width: 100%;
    height: 31.2rem;
    overflow: hidden;
}

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

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

.Solutions_pages .out .box .text {
    width: 100%;
    padding: 3rem 3.8rem 3.8rem 3.8rem;
    background: #FFF;
    box-sizing: border-box;
}

.Solutions_pages .out .box .text h3 {
    font-weight: 500;
    font-size: 2.4rem;
    color: #111111;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2rem;
}

.Solutions_pages .out .box:hover .text h3 {
    color: #0C4DA2;
}

.Solutions_pages .out .box .text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 1.7em;
    margin-bottom: 2.1rem;
}

.Solutions_pages .out .box .text .Moer {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
}

.Solutions_pages .out .box .text .Moer img {
    display: block;
    margin-left: 1.6rem;
    height: 1.15rem;
}

.PRODUCTS_pages {
    padding: 10rem 0px;
    width: 100%;
    overflow: hidden;
}

.PRODUCTS_pages .but_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 2.7rem;
    margin-top: 4rem;
}

.PRODUCTS_pages .but_list .item {
    padding: 1.3rem 3rem 1.3rem 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 3.1rem;
}

.PRODUCTS_pages .but_list .item .icon {
    width: auto;
    height: 3rem;
    display: block;
    position: relative;
    margin-right: 1.4rem;
}

.PRODUCTS_pages .but_list .item .icon img {
    height: 100%;
    display: block;
    display: none;
}

.PRODUCTS_pages .but_list .item .icon .icon_img {
    display: block;
}

.PRODUCTS_pages .but_list .item .icon .icon_on {
    display: none;
}

.PRODUCTS_pages .but_list .item h3 {
    font-weight: 500;
    font-size: 1.86rem;
    color: #333333;
}

.PRODUCTS_pages .but_list .item.active {
    background: #1C4E88;
}

.PRODUCTS_pages .but_list .item.active .icon .icon_img {
    display: none;
}

.PRODUCTS_pages .but_list .item.active .icon .icon_on {
    display: block;
}


.PRODUCTS_pages .but_list .item.active h3 {
    color: #FFF;
}

.PRODUCTS_pages .out {
    width: 100%;
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4.5rem 3.875%;
}

.PRODUCTS_pages .out .box {
    width: 30.75%;
}

.PRODUCTS_pages .out .PRODUCTS_public_item .text .txt h3 {
    color: #2B2B2B;
}

.PRODUCTS_pages .out .PRODUCTS_public_item:hover .text .txt h3 {
    color: #0C4DA2;
}

.PRODUCTS_pages .out .PRODUCTS_public_item .text .txt p {

    color: #515151;
}

.PRODUCTS_pages .out .PRODUCTS_public_item .text .Moer {
    background: #F0F0F0;
}

.PRODUCTS_pages .out .PRODUCTS_public_item .text .Moer img {
    height: 1.4rem;
    display: block;
}

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

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

.News_pages .out .box {
    width: 100%;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
    border-bottom: 0.1rem solid #0451A4;
}

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

.News_pages .out .box a .img {
    width: 33.125%;
    height: 30.9rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
}

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

.News_pages .out .box a .img span {
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-weight: 400;
    font-size: 1.9rem;
    color: #FFFFFF;
    padding: 1.5rem 2.7rem;
    line-height: 1;
    background: rgba(28, 78, 136, 0.8);
    border-radius: 1.6rem 0px 1.6rem 0px;
}

.News_pages .out .box a .text {
    width: 66.875%;
    padding-left: 8%;
    box-sizing: border-box;
}

.News_pages .out .box a .text h3 {
    font-weight: 500;
    font-size: 2.4rem;
    color: #333333;
    margin-bottom: 3rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.News_pages .out .box a .text .Moer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15.3rem;
    height: 3.9rem;
    /* background: #0451A4; */
    border-radius: 2.3rem;

    border: 0.1rem solid #1C4E88;
    font-weight: 400;
    font-size: 1.4rem;
    color: #1C4E88;
    margin-top: 3rem;
}

.News_pages .out .box a .text .Moer .icon {
    width: 1.438rem;
    height: 1.438rem;
    background: url(../images/9611.png) no-repeat center;
    margin-left: 1.3rem;
}

.News_pages .out .box a:hover .text .Moer {
    background: #0451A4;
    color: #FFF;
}

.News_pages .out .box a:hover .text .Moer .icon {
    background: url(../images/10127.png) no-repeat center;
}

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

.News_pages .out .box a:hover .text h3 {
    color: #1C4E88;
}

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

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

.Contact-pages .out .left {
    background: url(../images/10199.webp) 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;
    font-family: inherit;
}

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

.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;
}

.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;
    background: #FFF ;    
}


.Workshop_environment {
    width: 100%;
    margin: 4rem 0px 7rem 0px ;
    overflow: hidden;
}

.Workshop_swiper {
    margin-top: 7rem;
}

.Workshop_swiper .swiper-slide {
    width: 67rem;
    height: 40rem;
    border-radius: 1rem;
    overflow: hidden;
    transform: scale(0.96);
    transition: 0.5s ease;
}

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


.Honor_Qualification {
    margin-bottom: 10rem;
    width: 100%;
}

.Honor_Qualification .Home_swiper {
    width: 100%;
    margin-top: 5rem;
    padding: 1rem;
    box-sizing: border-box;
}

.Honor_Qualification .Home_swiper .swiper-slide {
    width: 23.5%;
    height: 50.3rem;
    background: #FFFFFF;
    box-shadow: 0px 0.3rem 1.2rem 0.1rem rgba(0, 0, 0, 0.13);
    margin-right: 2%;
}

.Honor_Qualification .Home_swiper .swiper-slide:last-child {
    margin-right: 0px;
}

.Honor_Qualification .Home_swiper .swiper-slide a {
    display: block;
    padding: 1rem 4rem 3rem 4rem;
    box-sizing: border-box;
}

.Honor_Qualification .Home_swiper .swiper-slide .img {
    width: 100%;
    height: 38.9rem;
    overflow: hidden;
    border-radius: 2rem;
}

.Honor_Qualification .Home_swiper .swiper-slide .img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.Honor_Qualification .Home_swiper .swiper-slide .txt {
    padding-top: 2.7rem;
    margin-top: 2.5rem;
    border-top: 0.1rem solid #EBEBEB;
    box-sizing: border-box;
}

.Honor_Qualification .Home_swiper .swiper-slide .txt h3 {
    text-align: center;
    font-weight: 500;
    font-size: 2.4rem;
    color: #555555;
}

.YX_prev,
.YX_next {
    width: 5.6rem;
    height: 5.6rem;
    background: #000000;
    border-radius: 50%;
    opacity: 0.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.YX_prev::after,
.YX_next::after {
    font-size: 2rem;
    color: #FFF;
}

.YX_prev:hover,
.YX_next:hover {
    opacity: 1;
    background: #024090;
}

.Workshop_swiper .YX_prev {
    left: 36rem;
}

.Workshop_swiper .YX_next {
    right: 36rem;
}

/* 发展历程 */
.Development_History {
    width: 100%;
    padding: 8rem 0px 14rem 0px;
    background: url(../images/9948.webp) no-repeat center / cover;
}

.Development_History .out {
    margin-top: 10rem;
    width: 100%;
}

.Development_History .out .box {
    width: 100%;
    height: auto;
    display: flex;
    padding-bottom: 7.2rem;
    box-sizing: border-box;
    align-items: self-start;
    position: relative;
}

.Development_History .out .box:last-child {
    padding-bottom: 0px ;
}

.Development_History .out .box::after {
    content: '';
    position: absolute;
    width: 0.1rem;
    height: 100%;
    background: #BCDBFF;
    left: 10%;
    bottom: 0px;
    z-index: 10;
    display: block;
    transform: translate(-0.55rem, 2rem);
}

.Development_History .out .box:last-child::after {
    display: none;
}

.Development_History .out .tiem {
    width: 10%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5%;
}

.Development_History .out .tiem .dian {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    z-index: 10;
    border-radius: 50%;
    background: #1C4E88;
    width: 1rem;
    height: 1rem;
    display: block;
}

.Development_History .out .tiem b {
    font-weight: 500;
    font-size: 2.1rem;
    color: #292929;
}

.Development_History .out .box .text {
    width: 80%;
}

.Development_History .out .box .text p {
    font-weight: 400;
    font-size: 2rem;
    color: #555555;
    line-height: 1.5em ;
}

.Honors {
    width: 100%;
    padding: 10rem 0px 10rem 0px;
    background: #F0F1F6;
    overflow: hidden;
}

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

.Honors .out .swiper {
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
}

.Honors .out .swiper-slide {
    width: 22%;
    /* padding: 0px 2rem; */
    box-sizing: border-box;
    margin-right: 4%;
}

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

.Honors .out .swiper-slide .box {
    width: 100%;
    margin: 0 auto;
    /*padding: 2rem 3rem 2.3rem 3rem;*/
    box-sizing: border-box;
    /*background: #FFFFFF;*/
    /*box-shadow: 0px 0.3rem 1.2rem 0.1rem rgba(0, 0, 0, 0.13);*/
}

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

.Honors .out .swiper-slide .img {
    width: 100%;
    height: 38rem;
    display: block;
    overflow: hidden;
    /*padding-bottom: 2rem;*/
    margin-bottom: 2rem;
    /*border-bottom: 0.1rem solid rgba(0, 0, 0, 0.13);*/
}

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

.Honors .out .swiper-slide .txt {
    width: 100%;
    text-align: center;
}

.Honors .out .swiper-slide .txt b {
    font-weight: 500;
    font-size: 1.8rem;
    color: #555555;
}

.Product_Details_banner {
    width: 100%;
    padding-top: 18.6rem;
    padding-bottom: 3rem;
    box-sizing: border-box;
    background: url(../images/9998.webp) no-repeat center / cover;
}

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

}

.Product_Details_banner .left {
    display: flex;
    align-items: center;
    width: 49%;
    justify-content: space-between;
}

.Product_Details_banner .left .img {
    width: 78%;
    height: 46rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Product_Details_banner .left .img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.Product_Details_banner .left .Play {
    width: 13.4rem;
    height: 13.4rem;
    border: 0.1rem solid #0451A4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    cursor: pointer;
}

.Product_Details_banner .left .Play .icon {
    width: 8rem;
    height: 8rem;
    display: block;
    background: #0451A4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Product_Details_banner .left .Play .icon img {
    height: 3.4rem;
    display: block;
    transform: translate(0.4rem, 0.1rem);
}

.Product_Details_banner .text {
    width: 41%;
}

.Product_Details_banner .text h2 {
    font-weight: 500;
    font-size: 5.9rem;
    color: #1C4E88;
    margin-bottom: 4rem;
}

.Product_Details_banner .text ul {
    padding-left: 2rem;
    box-sizing: border-box;
    width: 100%;
    list-style: disc;
}

.Product_Details_banner .text ul li {
    width: 100%;
    font-weight: 400;
    font-size: 1.8rem;
    color: #2E2E2E;
    margin-bottom: 2rem;
}

.Product_Details_banner .text ul li:last-child {
    margin-bottom: 0px;
}

.Product_Details_banner .text ul li::marker {
    color: #0451A4;
    font-size: 1.2rem;
}

.but_list_Details {
    margin-bottom: 7rem;
}

.but_list_Details .buttom_list {
    background: #F6F6F6;
    width: max-content;
}

.Product_Details {
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 9rem;
    background: #EDF1FA;
}

.but_list_Details .buttom_list a {
    color: #2E2E2E;
    transition: 0.5s ease;
}

.but_list_Details .buttom_list a.active {
    color: #FFF;
}

.Product_Introduction_Details {
    width: 100%;
    margin-top: 7rem;
    margin-bottom: 8rem;
}

.Product_Introduction_Details .title h3 {
    font-weight: 500;
    font-size: 4.2rem;
    color: #101010;
}

.Product_Introduction_Details .text {
    margin-top: 4rem;
    width: 100%;
    padding: 6rem;
    box-sizing: border-box;
    background: #FFF;
    font-weight: 400;
    font-size: 1.8rem;
    color: #858585;
}

.Product_Introduction_Details .text p {
    font-weight: 400;
    font-size: 1.8rem;
    color: #858585;
    line-height: 1.7em;
}

.Product_Introduction_Details .text span,
.Product_Introduction_Details .text strong {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    color: inherit;
}

.Product_Introduction_Details .text img,
.Product_Introduction_Details .text video {
    width: auto;
    max-width: 100%;
    display: block;
}

.Product_Introduction_Details .Product_swiper {
    width: 100%;
    margin-top: 5rem;
}

.Product_Introduction_Details .Product_swiper .swiper-slide {
    width: 30.75%;
    margin-right: 3.875%;
    background: #FFF;
    padding: 5rem 1.5rem 3rem 1.5rem;
    box-sizing: border-box;
}

.Product_Introduction_Details .Product_swiper .swiper-slide .img {
    width: 100%;
    height: 38.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.Product_Introduction_Details .Product_swiper .swiper-slide h3 {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    font-weight: 500;
    font-size: 2.4rem;
    color: #2B2B2B;
}

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

.Cooperation_Message {
    width: 100%;
    padding: 5.2rem 0px 5.6rem 0px;
    background: url(../images/10195.webp) no-repeat center / cover;
}

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

.Cooperation_Message .title h2 {
    font-weight: 500;
    font-size: 4.2rem;
    color: #101010;
    margin-bottom: 2rem;
}

.Cooperation_Message .title p {
    font-weight: 400;
    font-size: 2rem;
    color: #8D8D8D;
}

.Cooperation_Message form {
    margin-top: 7.2rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Cooperation_Message form .box {
    width: 24%;
    height: 4.6rem;
    border-radius: 2.3rem;
    position: relative;
    border: 0.1rem solid #1c1c1c31;
}

.Cooperation_Message form .box input {
    width: 100%;
    height: 100%;
    background: none;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 1.5rem;
    color: #1C1C1C;
}

.Cooperation_Message form .but {
    width: 100%;
    margin-top: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Cooperation_Message form .but button {
    width: 19.2rem;
    height: 4.7rem;
    background: #0451A4;
    box-shadow: 0px 0px 0.6rem 0.1rem rgba(255, 255, 255, 0.16);
    border-radius: 2.4rem;
    font-weight: 400;
    font-size: 1.7rem;
    color: #FFFFFF;
}

.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: 2rem;
    border-bottom: 0.1rem solid #2020203b;
}

.News-Dilute .title h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #3E3E3E;
    margin-bottom: 0.2rem;
    text-align: center;
}

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

.News-Dilute .title .line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.News-Dilute .title .line span {
    font-size: 1.4rem;
    color: #666666;
    margin: 0px 0.5rem;
}

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

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

.News-Dilute .text img {
    display: block;
    max-width: 100%;
    width: 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.5rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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


/* 手机版导航 */
.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;
}

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

#header.nav_fixed .Mobile-navigation {
    height: calc(100vh - 8rem);
}

.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;
    gap: 1rem 1rem;
    flex-wrap: wrap;
}

.Mobile-navigation ul li .box a {
    width: 100%;
    float: left;
    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: #fff;
    content: '';
    margin-right: 0.6rem;
}

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

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

.Mobile-navigation .button-list a:last-child {
    margin-bottom: 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;
}

.Solution_Home {
    width: 100% ;
    padding-bottom: 7rem ;
    position: relative;
}

.Solution_Home  .zhuanshi {
    right: 5% ;
    position: absolute ;
    top: 0px ;
    width: 45% ;
    opacity: 0.2;
    z-index: 1 ;
    transform: translateY(-20%);
    pointer-events: none ;
}

.Solution_Home  .zhuanshi  img {
    display: block ;
    width: 100% ;
}

.Solution_Home .out {
    margin-top: 8rem ;
    width: 100% ;
    display: flex ;
    flex-wrap: wrap ;
    justify-content: space-between ;
    position: relative;
    z-index: 4 ;
}

.Solution_Home .out .box {
    width: 31% ;
    background: #FFF ;
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.13) ;
    border-radius: 1rem ;
    padding: 3rem ;
    box-sizing: border-box ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    transition: 0.5s ease ;
}

.Solution_Home .out .box .icon {
    height: 6rem ;
    margin: 0 auto ;
    display: block ;
    width: auto ;
}

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

.Solution_Home .out .box .txt {
    width: 100% ;
    margin-top: 3rem ;
    text-align: center ;
}

.Solution_Home .out .box .txt h3{
    font-size: 1.8rem ;
    color: #232323 ;
    margin-bottom: 1rem ;
    text-transform: uppercase ;
}

.Solution_Home .out .box .txt h4{
    color: #232323 ;
    font-size: 2.4rem ;
}

.Solution_Home .out .box .txt .Moer {
    padding: 0.7rem 4rem ;
    box-sizing: border-box ;
    border: 0.1rem solid #0451A4 ;
    font-size: 1.4rem ;
    color: #0451A4 ;
   
    display: block ;
    width: max-content;
    margin: 0 auto ;
    margin-top: 3rem ;
}

.Solution_Home .out .box:hover {
    transform: translateY(-3rem);
}

.Solution_Home .out .box .txt .Moer:hover {
    background: #0451A4 ;
    color: #FFF ;
}

   .float_right {
        display: flex ;
        align-items: center ;
        border: 0.2rem solid #EEC222 ;
        border-radius: 1.5rem ;
        justify-content: center ;
        padding: 1rem 1.5rem ;
        box-sizing: border-box ;
        background: #EEC222 ;
        z-index: 1000 ;
        position: fixed ;
        right: 2rem ;
        bottom: 10% ;
        font-size: 1.6rem ;
        color: #2F2F2F;
    }

    .float_right svg {
        fill: #2F2F2F ;
        height: 2.4rem ;
        display: block ;
        width: auto ;
        margin-right: 1rem ;
    }

    /*.float_right:hover  svg {*/
    /*    fill: #FFF ;*/
    /*}*/
    
    /*    .float_right:hover {*/
    /*    background: #1C4E88;*/
    /*    color: #FFF;*/
    /*}*/


.PRODUCTS_pages .out {
    gap: 0px 0px ;
    align-items: start ;
}

.left_Classification_list {
    width: 20% ;
    background: #FFF ;
    box-shadow: 0px 0px 1rem 0.1rem rgba(0, 0, 0, 0.13) ;
    border-radius: 0.5rem ;
    box-sizing: border-box ;
}

.left_Classification_list  .item {
    display: flex ;
    align-items: center ;
    width: 100% ;
    padding: 1.6rem 2rem ;
    box-sizing: border-box ;
    border-bottom: 0.1rem solid #cccccc42 ;
}

.left_Classification_list .title {
    width: 100% ;
    padding: 2rem 2rem ;
    box-sizing: border-box ;
    background: #0451A4 ;
    color: #FFF ;
    font-size: 2.6rem ;
}

.left_Classification_list .list_box {
    padding: 1rem 0px ;
    box-sizing: border-box ;
}
 
.left_Classification_list  .item img {
    height: 2.6rem ;
    width: 2.6rem ;
    display: none ;
        object-fit: contain;
    margin-right: 1rem ;
}

.left_Classification_list  .item .icon_img {
    display: block ;
}

.left_Classification_list  .item .icon_on {
    display: none ;
}

.left_Classification_list  .item h3{
    font-weight: 500 ;
    font-size: 2rem ;
    color: #232323 ;
}

.left_Classification_list  .item:hover , .left_Classification_list  .item.active {
    background: #0451A4 ;
}

.left_Classification_list  .item:hover h3 , .left_Classification_list  .item.active h3 {
    color: #FFF ;
}

.left_Classification_list  .item:hover .icon_img , .left_Classification_list  .item.active .icon_img {
    display: none ;
}

.left_Classification_list  .item:hover .icon_on , .left_Classification_list  .item.active .icon_on {
    display: block ;
}

.right_Product_list {
    width: 80% ;
    padding-left: 3% ;
    box-sizing: border-box ;
    display: flex ;
    flex-wrap: wrap ;
    gap: 4rem 3.8% ;
} 

.right_Product_list .PRODUCTS_public_item .img {
    height: 38rem ;
}


.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;
}



/* 断点 */
@media (min-width: 1920px) {
    html {
        font-size: clamp(10px, calc(100vw / 1920 * 10), 20px);
    }
}

@media (max-width: 1919.98px) {
    html {
        font-size: calc(100vw / 192);
    }
}

@media (max-width: 1440px) {
    html {
        font-size: calc(100vw / 150);
    }

    .nav {
        height: 9rem;
    }

    .container {
        width: 90%;
    }

    .nav .nav-list li {
        margin-right: 10rem;
    }

    .banne_swiper .text {
        padding-top: 2rem;
    }

    .banne_swiper .swiper-slide-active .text h2 {
        font-size: 2.8rem;
    }

    .banne_swiper .text .txt {
        max-width: auto;
    }

    .banne_swiper .swiper-slide .text h3 {
        font-size: 4.5rem;
    }

    .banne_swiper .swiper-slide .text p {
        font-size: 2.4rem;
    }

    .public_title .but_list {
        gap: 0px 3rem;
    }

    .public_title .title h2,
    .public_title_pages h2 {
        font-size: 4.5rem;
    }

    .public_title .title h3,
    .public_title_pages h3 {
        font-size: 2.6rem;
    }

    .public_title .title i {
        width: 34rem;
    }

    .PRODUCTS_public_item .img {
        height: 41.5rem;
    }

    .Technology_Solutions .content_out .out .line_block .list_box .item_box:nth-child(2) {
        top: 32.7%;
    }

    .Technology_Solutions .content_out .out .line_block .list_box .item_box:nth-child(3) {
        top: 75.7%;
    }

    .Technology_Solutions .content_out .out .line_block .list_box .item_box:nth-child(4) {
        top: 40%;
    }

    .NEWS_CENTER .News_swiper .swiper-slide .img {
        height: 25rem;
    }

    .NEWS_CENTER .News_swiper .swiper-slide .text {
        padding: 2rem;
    }

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

    #footer .footer-information .out .right {
        justify-content: space-between
    }

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

    .Workshop_swiper .YX_prev {
        left: 11%;
    }

    .Workshop_swiper .YX_next {
        right: 11%;
    }

    .public_title_Center .title h3 {
        font-size: 2rem !important;
    }

    .right_Product_list .PRODUCTS_public_item .img {
        height: 34rem ;
    }

    .left_Classification_list .title {
        font-size: 2.4rem ;
    }

    .left_Classification_list .item h3 {
        font-size: 1.8rem ;
    }
    
        .Technology_Solutions .content_out .out .en_line_block {
        margin-top: 37.6rem;
    }
    

}

@media (max-width: 1200px) {
    html {
        font-size: calc(100vw / 126);
    }

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

    .nav .nav-list li .title {
        font-size: 1.8rem;
    }

    .banne_swiper .swiper-slide-active .text h2 {
        font-size: 2.6rem;
    }

    .banne_swiper .swiper-slide .text h3 {
        font-size: 4rem;
    }

    .banne_swiper .swiper-slide .text p {
        font-size: 2rem;
    }

    .public_title {
        flex-wrap: wrap;
    }

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

    .public_title .but_list {
        width: 100%;
        margin-top: 4rem;
    }

    .PRODUCTS_public_item .img {
        height: 37rem;
    }

    .PRODUCTS_public_item .text {
        padding: 3rem 0px 2rem 0px;
    }

    .PRODUCTS .out {
        height: 50rem;
    }

    .Technology_Solutions .content_out .out .line_block .list_box .item_box:nth-child(4) {
        top: 39%;
    }

    .NEWS_CENTER .News_swiper .swiper-slide .text {
        padding: 2rem 0px;
    }

    .NEWS_CENTER .News_swiper .swiper-slide .img {
        height: 23rem;
    }

    .banner_pages {
        margin-top: 10rem;
    }

    .banner_pages .text {
        padding-top: 3%;
    }

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

    .Workshop_swiper .swiper-slide {
        width: 45%;
        height: 35rem;
        /*transform: scale(0.86);*/
    }



    .Honors .out .swiper-slide .img {
        height: 28.5rem;
    }

    .Honors .out .swiper-slide .box {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .Honors .out .swiper-slide .txt b {
        font-size: 1.8rem;
    }

    .PRODUCTS_pages .but_list .item h3 {
        font-size: 2rem;
    }

    .PRODUCTS_pages .but_list .item {
        padding: 1rem 2.5rem;
    }

    .PRODUCTS_pages .but_list .item .icon {
        height: 3rem;
    }

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

    .Technical_Support .out {
        gap: 3rem 0px;
    }

    .Solutions_pages .out .box .img {
        height: 23rem;
    }

    .Solutions_pages .out .box .text {
        padding: 2rem 0px;
    }

    .Contact-pages .out .left {
        padding: 5rem 3rem 4rem 4rem;
    }

    .Contact-pages .out .left .box img {
        height: 4rem;
        width: 4rem;
        margin-right: 2rem;
    }

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

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

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

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

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

    .Product_Details_banner .left .img {
        height: 38rem;
    }

    .Product_Details_banner .left .Play {
        width: 10rem;
        height: 10rem;
    }

    .Product_Details_banner .left .Play .icon {
        width: 6rem;
        height: 6rem;
    }

    .Product_Details_banner .left .Play .icon img {
        height: 2.3rem;
    }

    .Product_Details_banner .left {
        width: 53%;
    }

    .Product_Introduction_Details .Product_swiper .swiper-slide .img {
        height: 27rem;
    }

    .Product_Introduction_Details .title h3 {
        font-size: 3.6rem;
    }

    .left_Classification_list {
        width: 100% ;
    }

    .left_Classification_list .list_box {
        display: flex ;
        flex-wrap: wrap ;
    }

    .left_Classification_list .item {
        width: 33.33% ;
    }

    .right_Product_list {
        width: 100% ;
        padding-left: 0px ;
        margin-top: 4rem ;
    }





}

@media (max-width: 992px) {
    html {
        font-size: calc(100vw / 99.2);
    }

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

    .nav {
        height: 8rem;
    }

    .Top_Header .out .left a {
        font-size: 1.2rem;
    }

    .but_list_banner .swiper-pagination,
    .but_list_banner .but_list {
        bottom: 4rem;
    }

    .banne_swiper {
        margin-top: 8rem;
    }

    .banne_swiper .swiper-slide .text h3 {
        font-size: 3.3rem;
    }

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

    .banne_swiper .swiper-slide-active .text h2 {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }

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

    .About .out .right {
        width: 100%;
        margin-top: 4rem;
        height: auto;
    }

    .PRODUCTS .PRODUCTS_swiper .swiper-slide {
        width: 40%;
    }

    .public_title .buttom_list,
    .but_list_Details .buttom_list {
        margin-top: 4rem;
        margin-left: auto;
    }

    .Technology_Solutions {
        padding: 8rem 0px;
        height: auto;
    }

    .Technology_Solutions .content_out .out .line_block {
        display: none;
    }

    .Technology_Solutions .content_out .out .Quantity_box {
        display: none;
    }

    .Technology_Solutions .content_out .out .text_list .text_item {
        position: relative;
        opacity: 1;
        visibility: visible;
    }

    .Technology_Solutions .content_out .out .text_list {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3rem 0px;
    }

    .Technology_Solutions .content_out .out {
        position: relative;
        width: 90%;

        margin: 0 auto;
    }

    .Technology_Solutions .content_out .out .text_list .text_item {
        width: 48%;
        background: #ffffff41;
        padding: 3rem 2rem;
        box-sizing: border-box;
        border-radius: 1rem;
        backdrop-filter: blur(1rem);
    }

    .Technology_Solutions .content_out .out .text_list .text_item h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .Technology_Solutions .content_out .out .text_list .text_item p {
        font-size: 1.8rem;
    }

    .NEWS_CENTER .News_swiper .swiper-slide {
        width: 40%;
    }

    .NEWS_CENTER .News_swiper .swiper-slide .text h3,
    .PRODUCTS_public_item .text .txt h3 {
        font-size: 2rem;
    }

    .NEWS_CENTER .News_swiper .swiper-slide .text p {
        font-size: 1.6rem;
    }

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

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

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

    #footer .footer-information .out .left ul {
        text-align: center;
        width: 100%;
    }

    #footer .footer-information .out .left li {
        margin-bottom: 1rem;
        width: 100%;
        justify-content: center;
    }

    #footer .footer-information .out {
        margin-bottom: 2rem;
    }

    #footer .footer-information {
        margin-top: 2.4rem;
    }

    #footer .Top-logo .out .logo {
        height: 7rem;
    }

    .NEWS_CENTER {
        margin: 8rem 0px 6.7rem 0px;
    }

    .banner_pages_Product .text .container h2 {
        font-size: 2.6rem;
    }

    .banner_pages_Product .text .container h3,
    .banner_pages .text .container h2 {
        font-size: 3.2rem;
    }

    .banner_pages .text .container p {
        font-size: 1.8rem;
    }

    .banner_pages_Product .text .container i {
        margin-top: 4rem;
    }

    .banner_pages {
        margin-top: 12rem;
    }

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

    .Honors {
        padding: 8rem 0px;
    }

    .Workshop_swiper .swiper-slide {
        width: 58%;
    }

    .Development-history .text-container {
        padding: 4rem 3rem;
        box-sizing: border-box;
    }

    .Development-history .text-container .box .txt p {
        font-size: 1.6rem;
    }

    .Development-history .text-container .box .tit h3 {
        font-size: 6.7rem;
    }

    .Development-history .out .tiem-list .item span {
        font-size: 4.5rem;
    }

    .Honors .out .swiper-slide {
        width: 32%;
        margin-right: 2%;
    }

    
    .Technical_Support,
    .News_pages,
    .Contact-pages {
        margin: 8rem 0px;
    }
    
    .PRODUCTS_pages {
        padding: 8rem 0px ;
    }

    .Solutions_pages {
        margin-top: 8rem;
    }

    .PRODUCTS_public_item .img {
        height: 34rem;
    }

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

    .News-Dilute .out {
        padding: 4rem 2rem;
    }

    .public_title .buttom_list,
    .but_list_Details .buttom_list {
        width: 100%;
        margin-top: 0px;
    }

    .Product_Details_banner .container {
        flex-wrap: wrap;
    }

    .Product_Details_banner .left {
        width: 100%;
        flex-direction: column;
    }

    .Product_Details_banner .text {
        width: 100%;
        margin-top: 5rem;
    }

    .Product_Details_banner {
        padding-top: 14rem;
        padding-bottom: 5rem;
    }

    .Product_Details_banner .left .Play {
        margin-top: 5rem;
    }

    .menu-toggle {
        display: flex;
    }


    .video-popup .out .Close {
        right: 3.1rem;
        top: -1rem;
    }

    .Development_History .out .tiem .dian {
        display: none ;
    }

    .Development_History .out .box::after {
        display: none ;
    }

    .Development_History .out .box {
        flex-direction: column ;
        padding-bottom: 4rem ;
    }

    .Development_History .out .tiem {
        justify-content: left ;
        margin-bottom: 2rem ;
        width: 100% ;
    }

    .Development_History{
        padding: 7rem 0px ;
    }

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

    .Development_History .out .box .text {
        width: 100% ;
    }

    .Solution_Home .out .box {
        padding: 2rem ;
    }

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

    .Solution_Home .out .box .txt h4 {
        font-size: 2rem ;
    }

    .Solution_Home .out .box .txt {
        margin-top: 2rem ;
    }

    .Cooperative_Clients .out .swiper-slide {
        width: 20rem ;
        height: 10rem ;
    }

    .public_title_Center .title h3 {
        font-size: 1.8rem !important;
    }

}

@media (max-width: 768px) {
    html {
        font-size: calc(100vw / 76.8);
    }

    .banne_swiper .swiper-slide-active .text h2 {
        font-size: 2rem;
    }

    .banne_swiper .swiper-slide .text h3 {
        font-size: 3rem;
    }

    .About {
        padding: 4rem 0px 6rem 0px;
    }

    .Solution_Home {
        padding-bottom: 0px ;
    }

    .Solution_Home .out {
        flex-wrap: wrap ;
        gap: 5rem 0px ;
    }

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

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

    .public_title .title h3,
    .public_title_pages h3 {
        font-size: 2rem;
    }

    .About .out .left .text p {
        font-size: 1.8rem;
    }

    .About .out .left .Moer {
        width: 18rem;
        height: 4rem;
    }

    .Number_scrolling .box b {
        font-size: 4rem;
    }

    .Number_scrolling .box span {
        font-size: 1.6rem;
    }

    .Number_scrolling {
        margin-top: 6rem;
    }

    .About .out .right .Play {
        width: 8rem;
        height: 8rem;
    }

    .About .out .right .Play img {
        height: 3rem;
    }

    .PRODUCTS {
        padding: 6rem 0px;
    }

    .public_title .but_list a {
        font-size: 1.7rem;
    }

    .public_title .but_list {
        flex-wrap: wrap;
        gap: 2rem 2rem;
    }

    .PRODUCTS .PRODUCTS_swiper .swiper-slide {
        width: 46.5%;
    }

    .PRODUCTS_public_item .img {
        height: 32rem;
    }

    .PRODUCTS_public_item .text {
        flex-wrap: wrap;
    }

    .PRODUCTS_public_item .text .txt {
        width: 100%;
    }

    .PRODUCTS_public_item .text .Moer {
        margin-top: 2rem;
    }

    .Technology_Solutions {
        padding: 6rem 0px;
    }

    .NEWS_CENTER {
        margin: 6rem 0px;
    }

    .NEWS_CENTER .News_swiper .swiper-slide {
        width: 48%;
    }


    .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: 24.3rem;
    }

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

    .Workshop_swiper .swiper-slide {
        width: 73%;
    }

    .Workshop_swiper .YX_prev {
        left: 5%;
    }

    .Workshop_swiper .YX_next {
        right: 5%;
    }

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

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

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

    .Development-history .text-container .box .tit h3 {
        font-size: 5rem;
    }

    .Development-history .out .tiem-list .item span {
        font-size: 4rem;
    }

    .Honors .out .swiper-slide .img {
        height: 25.5rem;
    }

    .PRODUCTS_pages .out {
        justify-content: space-between;
    }

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

    .PRODUCTS_pages .but_list .item h3 {
        font-size: 1.6rem;
    }

    .PRODUCTS_pages .but_list .item .icon {
        height: 2rem;
    }

    .PRODUCTS_pages .but_list {
        gap: 2rem 1.7rem;
    }

    .PRODUCTS_pages {
        padding: 6rem 0px;
    }
    
    
    .Technical_Support,
    .News_pages,
    .Contact-pages {
        margin: 6rem 0px;
    }



    .banner_pages .text .container h2 {
        margin-bottom: 1.5rem;
    }

    .Solutions_pages .out {
        justify-content: space-between;
    }

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

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

    .News_pages .out {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 4rem 0px;
    }

    .News_pages .out .box {
        width: 48%;
        padding-bottom: 0px;
        margin-bottom: 0px;
        border-bottom: none;
    }

    .News_pages .out .box a .img {
        width: 100%;
        height: 21rem;
    }

    .News_pages .out .box a .text {
        width: 100%;
        padding-left: 0px;
        margin-top: 3rem;
    }

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

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

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

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

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

    .Product_Introduction_Details .text {
        padding: 4rem 3rem;
        box-sizing: border-box;
    }

    .Product_Introduction_Details .Product_swiper .swiper-slide {
        padding: 3rem;
        box-sizing: border-box;
        width: 45%;
    }

    .Product_Introduction_Details .Product_swiper .swiper-slide h3 {
        font-size: 2rem;
    }

    .but_list_Details {
        display: none;
    }

    .Product_Details {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .Product_Introduction_Details {
        margin: 2rem 0px 6rem 0px;
    }

    .Product_Introduction_Details .title h3,
    .Cooperation_Message .title h2 {
        font-size: 3rem;
    }

    .Cooperation_Message .title p {
        font-size: 1.6rem;
    }

    .Product_Introduction_Details .Product_swiper .swiper-slide {
        width: 60%;
    }

    .Cooperation_Message form {
        justify-content: space-between;
        gap: 2rem 0px;
    }

    .Cooperation_Message form .box {
        width: 48%;
    }

    .Cooperation_Message form .but {
        margin-top: 4rem;
    }

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


    .left_Classification_list .item {
        width: 50% ;
    } 

}

@media (max-width: 576px) {
    html {
        font-size: calc(100vw / 57.6);
    }

    .Top_Header {
        display: none;
    }

    .but_list_banner .swiper-pagination,
    .but_list_banner .but_list {
        bottom: 2rem;
    }

    .banne_swiper .text .txt {
        width: 100%;
        max-width: 100%;
    }

    .banne_swiper .swiper-slide-active .text h2 {
        font-size: 1.8rem;
    }

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

    .banne_swiper .swiper-slide .text h3 {
        font-size: 2.6rem;
    }

    .PRODUCTS_public_item .img {
        height: 29rem;
    }

    .PRODUCTS .out {
        height: 47rem;
    }

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

    .public_title .title h3,
    .public_title_pages h3 {
        font-size: 1.8rem;
    }

    .Technology_Solutions .content_out .out .text_list .text_item {
        width: 100%;
    }

    .NEWS_CENTER .News_swiper .swiper-slide .img {
        height: 16rem;
    }

    .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: 14.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);
    }

    .banner_pages {
        margin-top: 8rem;
    }

    .banner_pages_Product .text .container h2 {
        font-size: 1.8rem;
    }

    .banner_pages_Product .text .container h3 {
        font-size: 2.6rem;
    }

    .banner_pages_Product .text .container i {
        margin-top: 2rem;
        height: 0.2rem;
    }

    #header.nav_fixed {
        transform: translateY(0px);
    }

    #header.nav_fixed .nav {
        height: 8rem;
    }

    .Workshop_swiper .swiper-slide {
        width: 96%;
        height: 33rem;
    }

    .Workshop_environment {
        margin: 6rem 0px;
    }

    .Honors {
        padding: 6rem 0px;
    }

    .Honors .out .swiper-slide {
        width: 48%;
        margin-right: 4%;
    }

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

    .Development-history .text-container {
        margin-top: 5rem;
        margin-bottom: 2rem;
    }

    .Development-history .out {
        margin-top: 12rem;
    }

    .Development-history .text-container .box .tit h3 {
        font-size: 3.6rem;
    }

    .PRODUCTS_pages .PRODUCTS_public_item .img {
        height: 27rem;
    }

    .PRODUCTS_pages .out {
        gap: 3rem 0px;
    }

    .banner_pages .text .container p {
        display: none;
    }

    .banner_pages .text .container h2 {
        font-size: 2.6rem;
        margin-bottom: 0px;
    }

    .banner_pages .text .container i {
        display: none;
    }

    .Technical_Support .out .box {
        width: 100%;
        padding: 3rem 2rem;
        box-sizing: border-box;
    }

    .Technical_Support .out .box .icon {
        height: 3.6rem;
    }

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

    .Solutions_pages {
        margin-top: 6rem;
    }

    .Solutions_pages .title h3 {
        font-size: 2.6rem;
        margin-bottom: 2rem;
    }

    .Solutions_pages .title p {
        font-size: 1.6rem;
    }

    .Solutions_pages .out {
        margin-top: 4rem;
    }

    .Solutions_pages .title {
        margin-top: 4rem;
    }

    .Solutions_pages .out .box .text .Moer {
        font-size: 1.4rem;
    }

    .Solutions_pages .out .box .text .Moer img {
        margin-left: 1rem;
        height: 1rem;
    }

    .Solutions_pages .out .box .img {
        height: 16rem;
    }

    .Solutions_pages .out .box .text h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .Solutions_pages .out .box .text p {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

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

    .News_pages .out .box a .img {
        height: 31rem;
    }

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

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

    .Product_Details_banner {
        padding-top: 12rem;
    }

    .Product_Details_banner .text h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .Mobile-navigation {
        height: calc(100vh - 8rem);
    }

    .Number_scrolling .box b {
        font-size: 3rem ;
    }

    .Number_scrolling .box .tit .icon {
        height: 3rem ;
    }

    .public_title_Center .title h3 {
        font-size: 1.6rem !important;
    }
    
        .Number_scrolling .box {
        width: 50%;
    }

    .Number_scrolling .box b {
        font-size: 3rem;
    }

    .Number_scrolling {
        gap: 3rem 0px;
    }


}

@media (max-width: 390px) {
    html {
        font-size: calc(100vw / 42);
    }

    .nav {
        height: 6.5rem;
    }

    .banne_swiper {
        margin-top: 6.5rem;
    }

    .banne_swiper .swiper-slide .text h3 {
        font-size: 1.8rem;
        margin-bottom: 0px;
        text-align: center;
    }

    .banne_swiper .swiper-slide-active .text h2 {
        display: none;
    }

    .but_list_banner .but_list {
        display: none;
    }

    .About {
        padding: 4rem 0px;
    }

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

    .About .out .left .text {
        margin-top: 3rem;
    }

    .Number_scrolling .box {
        width: 50%;
    }

    .Number_scrolling .box b {
        font-size: 3rem;
    }

    .Number_scrolling {
        gap: 3rem 0px;
    }

    .PRODUCTS {
        padding: 4rem 0px;
    }

    .public_title .but_list {
        gap: 1rem;
    }

    .public_title .but_list {
        margin-top: 2rem;
    }

    .public_title .but_list a::after,
    .public_title .but_list a.active::after {
        display: none;
    }

    .PRODUCTS .PRODUCTS_swiper .swiper-slide {
        width: 100%;
    }

    .PRODUCTS_public_item .img {
        padding: 2rem 3rem;
        box-sizing: border-box;
    }

    .public_title .buttom_list,
    .but_list_Details .buttom_list {
        display: none;
    }

    .Technology_Solutions .content_out {
        margin-top: 4rem;
    }

    .Technology_Solutions {
        padding: 4rem 0px;
    }

    .NEWS_CENTER {
        margin: 4rem 0px;
    }

    .public_title .title h2 {
        font-size: 2.6rem;
    }

    .Technology_Solutions .content_out .out .text_list .text_item h3 {
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }

    .Technology_Solutions .content_out .out .text_list .text_item p {
        font-size: 1.6rem;
    }

    .NEWS_CENTER .News_swiper .swiper-slide {
        width: 100%;
    }

    .NEWS_CENTER .News_swiper .swiper-slide .img {
        height: 22rem;
    }

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

    #footer .Top-logo .out .QR-code {
        display: none;
    }

    #header.nav_fixed .nav {
        height: 6.5rem;
    }

    #header.nav_fixed {
        transform: translateY(0px);
    }

    #footer .Top-logo .out {
        padding: 1.5rem 0px;
        justify-content: center;
    }

    #footer .Top-logo .out .logo {
        height: 8rem;
    }

    #footer .Filing-number .out a {
        font-size: 1.2rem;
    }

    .About .out .left .Moer {
        margin-top: 2rem;
    }

    .banner_pages {
        margin-top: 6.5rem;
    }

    .banner_pages_Product .text .container i {
        display: none;
    }

    .banner_pages .text {
        display: none;
    }

    .Workshop_swiper {
        margin-top: 4rem;
    }

    .Workshop_swiper .swiper-slide {
        height: 24rem;
    }

    .Development-history .out {
        width: 100%;
        height: 12rem;
    }

    .Development-history .out .history-img,
    .Development-history .out .tiem-list {
        width: 100%;
    }

    .Development-history .out .tiem-list .item span {
        font-size: 2.6rem;
    }

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

    .Honors .out .swiper-slide .img {
        height: 24.5rem;
    }

    .Honors .out .swiper-slide {
        width: 65%;
    }

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


    
    .Technical_Support,
    .News_pages {
        margin: 4rem 0px;
    }
    

    .Online-Message , .PRODUCTS_pages {
        padding: 4rem 0px;
    }

    .Online-Message .button {
        margin-top: 4rem;
    }

    .Online-Message .button button {
        height: 4.5rem;
        width: 100%;
        font-size: 1.6rem;
    }

    .Online-Message h3 {
        margin-bottom: 5rem;
    }

    .Online-Message form label span {
        font-size: 2rem;
    }

    .Online-Message form label input,
    .Online-Message form label textarea {
        padding: 1rem 1rem;
    }

    .Online-Message form label input::placeholder,
    .Online-Message form label textarea::placeholder {
        font-size: 1.6rem;
    }

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

    .PRODUCTS_pages .but_list .item .icon {
        display: none;
    }

    .Solutions_pages .out .box .img {
        height: 23rem;
    }

    .PRODUCTS_pages .but_list {
        gap: 1rem 1rem;
    }

    .PRODUCTS_pages .but_list .item {
        padding: 0px;
    }

    .PRODUCTS_pages .but_list .item.active {
        background: none;
    }

    .PRODUCTS_pages .but_list .item.active h3 {
        color: #0C4DA2;
    }

    .News_pages .out .box a .img {
        height: 23rem;
    }

    .News-Dilute .out {
        background: none;
        padding: 0px;
    }

    .News-Dilute {
        background: #FFF !important;
    }

    .Cooperation_Message form .box {
        width: 100%;
    }

    .Product_Introduction_Details .Product_swiper .swiper-slide {
        width: 100%;
    }

    .Product_Introduction_Details .text {
        padding: 3rem 2rem;
    }

    .Product_Details_banner .left .img {
        height: auto;
    }

    .Mobile-navigation {
        height: calc(100vh - 6.5rem);
        padding: 4rem 2rem;
    }

    .Mobile-navigation ul li .tit a {
        font-size: 1.8rem;
    }

    #header.nav_fixed .Mobile-navigation {
        height: calc(100vh - 6.5rem);
    }

    .Solution_Home .out {
        margin-top: 4rem ;
        gap: 3rem 0px ;
    }

    .Solution_Home .out .box:hover {
        transform: translateY(0px) !important;
    }

    .public_title_Center .title h2::after, .public_title_Center .title h2::before {
        display: none !important;
    }

    .NEWS_CENTER .News_swiper {
        margin-top: 3rem ;
    }

    .Cooperative_Clients {
        padding: 4rem 0px ;
    }

    .Cooperative_Clients .out {
        margin-top: 4rem ;
    }

    .left_Classification_list .item {
        width: 100% ;
    }

}