@font-face{
	font-family:"mont";
	src:url("../css/font/Montserrat-Light.otf") format("opentype");
	font-display: swap;
}
@font-face{
	font-family:"inter-medium";
	src: url('../css/font/Inter-Medium-8.otf') format('opentype');
	font-display: swap;
}
@font-face{
	font-family:"inter-light";
	src: url('../css/font/Inter-Light-7.otf') format('opentype');
	font-display: swap;
}
@font-face{
	font-family:"inter-regular";
	src: url('../css/font/Inter-Regular-9.otf') format('opentype');
	font-display: swap;
}
@font-face{
	font-family:"inter-extraLight";
	src: url('../css/font/Inter-ExtraLight-6.otf') format('opentype');
	font-display: swap;
}
@font-face{
	font-family:"inter-semibold";
	src: url('../css/font/Inter-SemiBold-10.otf') format('opentype');
	font-display: swap;
}
@font-face{
	font-family:"inter-bold";
	src: url('../css/font/Inter-Bold-4.otf') format('opentype');
	font-display: swap;
}
*{
  margin: 0;
  padding: 0;
  /*box-sizing: border-box;*/
}
ul,li{
     margin: 0;
    padding: 0;
    list-style: none;
}

body,
html {
  height: 100%;
  position: relative;
  width: 100%;
}
img{
  object-fit: cover;
}
:root {
  --font-family: 'inter-regular';
  --font-family-inter-medium: 'inter-medium';
  --font-family-inter-light: 'inter-light';
  --font-family-inter-regular: 'inter-regular';
  --font-family-inter-extraLight: 'inter-extraLight';
  --font-family-inter-semibold: 'inter-semibold';
  --font-family-inter-bold: 'inter-bold';
}
.hamburger{
    display: none;
}
/* seadershow */
.seadershow {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}
.seaderbox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.seader {
  position: relative;
}
.seader form {
  width: 1000px;
  height: 80px;
  border: 5px solid #8c8c8c;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  display: -webkit-flex;
}
.seader form input {
  display: block;
  width: 80%;
  height: 100%;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 16px;
  color: #666666;
  font-family: var(--font-family);
}
.seader form button {
  display: flex;
  align-items: center !important;
  justify-content: center;
  width: 20%;
  border: none !important;
  outline: none;
  background-color: #03c8aa !important;
  font-size: 18px;
  color: #ffffff;
  font-family: var(--font-family);
  cursor: pointer;
}
.seader form button img {
  display: block;
  width: auto;
  filter: brightness(11);
  margin-right: 20px;
}
.seader .close {
  display: block;
  position: absolute;
  right: -60px;
  top: -80px;
}
.seader .close img {
  display: block;
}
/*.searchpc{*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  transition: 0.3s;*/
/*  cursor: pointer;*/
/*}*/
.searchpc{
    margin-left: 20px;
}
.searchpc form{
    display: flex;
    align-items: center;
}
.searchpc form input{
    width: calc(150px - 5px);
    height: 40px;
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    padding-right: 5px;
}
.searchpc form button{
    height: 40px;
    cursor:pointer;
    border: none;
    outline: none;
}
.searchpc img{
  width: 14px;
  opacity: 0.7;
}
.diaolog{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}
.diaolog .content i{
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 38px;
    color: #ffffff;
    cursor: pointer;
}
.diaolog .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #ffffff;
    border-radius: 8px;
    width: 480px;
    padding: 30px 30px 40px 30px;
    position: relative;
}
.diaolog .content h3{
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 24px;
    color: #03c8aa;
    text-align: center;
    margin-bottom: 20px;
}
.diaolog .content form .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.diaolog .content form .row:not(:first-of-type){
    margin-top: 18px;
}
.diaolog .content form .row .rund{
    font-size: 18px;
    color: red;
}
.diaolog .content form .row .md{
    width: calc(100% - 20px);
    outline: none;
    border: 1px solid #ddd;
    text-indent: 13px;
    height: 40px;
    border-radius: 4px;
    background: transparent;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: #888888;
}
.diaolog .content form .row textarea.md{
    height: 100px;
    resize: none;
    width: calc(100% - 20px - 26px);
    padding: 0 13px;
    text-indent: 0px;
}
.diaolog .content form button{
    border: none !important;
    outline: none;
    background: #03c8aa !important;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    height: 40px;
    display: block;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-top: 25px;
}
.chunluan{
    width: 1400px;
    margin: 0 auto;
    padding: 100px 0;
}
.chunluanlist{
    display: flex;
    flex-wrap: wrap;
}
.chunluanlist li{
    width: calc((100% - 120px) / 4);
    margin-right: 40px;
    margin-top: 40px;
}
.chunluanlist li:nth-of-type(1),
.chunluanlist li:nth-of-type(2),
.chunluanlist li:nth-of-type(3),
.chunluanlist li:nth-of-type(4){
    margin-top: 0;
}
.chunluanlist li:nth-of-type(4n){
    margin-right: 0;
}
.chunluanlist li a{
    display: block;
    width: calc(100% - 2px);
    border: 1px solid #ddd;
    transition: 0.3s;
}
.chunluanlist li a:hover{
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.chunluanlist li a:hover .txt h3{
    color: #03c8aa;
}
.chunluanlist li a .ib{
    width: calc(100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ddd;
}
.chunluanlist li a .ib img{
    max-width: 85%;
    max-height: 85%;
}
.chunluanlist li a .txt{
    padding: 15px 10px 20px 10px;
    width: calc(100% - 20px);
}
.chunluanlist li a .txt h3{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #222222;
    text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: 0.3s;
}
.chunluanlist li a .txt .line{
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0771CC, #11BCA1);
    margin: 18px auto;
}
.chunluanlist li a .txt p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.app{
    display: none;
}
.layout-zj{
    width: 1400px;
    margin: 0 auto;
}
.layout-zj h3{
    font-family: var(--font-family-inter-bold);
    font-weight: 400;
    font-size: 37px;
    color: #333333;
    text-align: center;
}
.applist{
    margin: 60px auto 0;
    display: flex;
    flex-wrap: wrap;
}
.applist li{
    width: calc((100% - 60px) / 4 - 50px);
    padding: 35px 25px 40px 25px;
    background-color: #FFFFFF;
    border-radius: 14px;
    margin-right: 20px;
    transition: 0.3s;
}
.applist li:hover{
    transform: translateY(-15px);
    box-shadow: 0px 0px 24px 7px rgb(3,200,170,0.2);
}
.applist li:nth-of-type(4n){
    margin-right: 0;
}
.applist li h6{
    background: linear-gradient(45deg, #087bc5 37%, rgba(16,177,164,0.79) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-family-inter-semibold);
    font-weight: 400;
    font-size: 21px;
    color: #0773CA;
    text-align: center;
    margin-bottom: 20px;
    line-height: 28px;
    min-height: 84px;
}
.applist li .row .db{
    display: flex;
    justify-content: space-between;
}
.applist li .row .db .rund{
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #03C8AA;
    transform: translateY(10px);
}
.applist li .row .db p{
    width: calc(100% - 6px - 10px);
    font-family: var(--font-family-inter-light);
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 26px;
}
.applist li .row:not(:first-of-type){
    margin-top: 10px;
}
.chenlinste{
        display: contents;
}
.chebian_h5{
    display: none;
}
           /* 侧边栏样式 */
        .sidebar_h5 {
            position: fixed;
            top: 0;
            right: -180px; /* 默认隐藏 */
            width: 180px;
            height: 100%;
            background: #fff;
            box-shadow: 2px 0 10px rgba(0,0,0,0.3);
            transition: left 0.3s ease;
            z-index: 100;
        }
       .content_text_h5{
           
       }
        /* 侧边栏打开时 */
        .sidebar_h5.open {
            right: 0;
        }

        /* 侧边栏内容 */
        .sidebar-content_h5 {
            padding: 20px;
        }
        .sidebar-content_h5 ul li a{
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            padding-bottom: 20px;
            display: flex;
            display: -webkit-flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: flex-start;
            justify-content: flex-start;
            margin-bottom: 20px;
           justify-content: space-between;
        }
        .sidebar-content_h5 ul li{
            overflow: hidden;
        }
         .sidebar-content_h5 ul li a i{
                 font-size: 12px;
                 margin-left: 10px;
         }
       
        .danont.active13 {
            max-height: 1000px;
            transition: max-height 0.6s ease-in-out;
        }
        .danbolt{
            overflow: hidden;
        }
        .danbolt.active14 i {
            transform: rotate(180deg);
        }
         .danont{
             max-height: 0;
         }
        .close-btn_h5 {
            background: #ff4d4f;
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
        }

        /* 遮罩层 */
        .overlay_h5 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s;
            z-index: 50;
        }

        .overlay_h5.show {
            opacity: 1;
            visibility: visible;
        }
.lintlehnte{
    margin-top: 20px ;
    /*float: left;*/
    display: flex;
    justify-content: flex-start;
}
.stay_infor_binl_title:hover .list3{
    box-shadow: 0px 0px 35px 0px rgba(65, 146, 130, 0.21) !important;
    color: #05C4A6 !important;
    font-size: 20px !important;
    font-weight: bold; 
    background: #fff;
}
.cbl{
  position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 100;
}
.cbl_chent{
    width: 50px;
height: 50px;
background: #FFFFFF;
border-radius: 8px;
border: 1px solid #E5E5E5;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
position: relative;
transition: 0.3s;
}
.cbl_chent:hover{
    background-color: #03c8aa;
    border-color: #03c8aa;
}
.cbl_chent:hover > img{
    filter: brightness(100);
}
.cbl_chent:hover .linthan{
    display:block;
    
}
.chweix:hover.chweix>.linthan4{
    display:block;
    
}
.linthan{
    padding: 15px;
    position: absolute;
    top: -42px;
    right: 60px;
    background: #FFFFFF;
    border-radius: 10px;
    font-size: 20px;
    display: none;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
}
.chweix{
    position: relative;
}
.chweix .linthan4{
    top: -180px;
    padding: 15px;
    position: absolute;
    left: -40px;
    background: #FFFFFF;
    border-radius: 10px;
    font-size: 20px;
    display: none;
    width: 100px;
    height: 100px;
    z-index: 1000;
}
.linthan4 > img{
    width: 100px;
}
.linthan > img{
    width: 100px;
}

.cbl_chent1:hover .linthan3{
    display:block;
    
}
.linthan3{
    padding: 15px;
    position: absolute;
    top: 1px;
    right: 60px;
    background: #FFFFFF;
    border-radius: 10px;
    font-size: 20px;
    display: none;
        min-width: 188px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
}
.linthan3 > img{
    width: 200px;
}


.cbl_chent > img{
    width: 23px;
    height: auto;
}
.cbl_img1{
    width: 26px !important;
    height: 14px !important;
}
.wenzihen{
    position: absolute;
    background-color: #fff;
    padding: 20px 20px;
    transform: translateX(-3%);
    transition: all .3s;
    z-index: 10;
    font-size: 15px;
    display: none;
    color: #444444;
    left: 10px;
    width: max-content;
        box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
        line-height: 1;
}
.el-pagination .btn-prev{
    width: 40px;
    height: 40px;
    border-radius: 60px;
    border: 1px solid #B5B5B5 !important;
    text-align: center;
    padding-right: 6px;
    line-height: 50px;

}
.el-pagination .btn-prev {
    padding-right: 8px !important;
}
.el-pagination .btn-next{
     padding-left: 8px !important;
}
.part{
        width: 100%;
    display: flex;
    justify-content: center;
    margin: 93px 0px 0 0;
}
.part.zdsb{
    margin: 93px 0;
}
.el-pagination .btn-next .el-icon, .el-pagination .btn-prev .el-icon {

    font-size: 18px !important;

}
.el-pagination
{
        display: flex;
    align-items: center;
           
}
.el-pagination .btn-next{
        padding-left: 6px;
    width: 40px;
    height: 40px;
    border-radius: 60px;
    border: 1px solid #B5B5B5 !important;
    text-align: center;
    line-height: 50px;
}
   .search-wrapper {
            position: relative;
        }
        .search-wrapper form{
            position: relative;
        }

        /* 搜索图标按钮 */
        .search-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #2c3e50;
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
        }

        .search-btn:hover {
            background-color: #34495e;
            /*transform: scale(1.05);*/
        }

        /* 搜索输入框 */
        .search-input {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 50px;
            padding: 0 15px;
            border-radius: 25px;
            border: 2px solid #2c3e50;
            outline: none;
            font-family: var(--font-family);
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            pointer-events: none;
        }

        /* 搜索框展开状态 */
        .search-wrapper.active .search-input {
            width: 120px;
            padding-right: 55px;
            opacity: 1;
            pointer-events: auto;
            right: 50px;
        }

        /* 关闭按钮 */
        .close-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: transparent;
            border: none;
            color: #2c3e50;
            cursor: pointer;
            font-size: 18px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .search-wrapper.active .close-btn {
            opacity: 1;
            pointer-events: auto;
            right: 55px;
        }

        .close-btn:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        /* 提交按钮 */
        .submit-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: transparent;
            border: none;
            color: #27ae60;
            cursor: pointer;
            font-size: 16px;
            opacity: 0;
            pointer-events: none;
            /*transition: all 0.3s ease;*/
        }

        .search-wrapper.active .submit-btn {
            opacity: 1;
            pointer-events: auto;
        }

        .submit-btn:hover {
            /*background-color: rgba(39, 174, 96, 0.1);*/
        }

        /* 搜索结果 */
        .search-results {
            position: absolute;
            top: 60px;
            right: 0;
            width: 280px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            transform-origin: top right;
            transform: scale(0);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .search-results.show {
            transform: scale(1);
            opacity: 1;
        }

        .search-results h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #34495e;
        }

        .search-results p {
            color: #7f8c8d;
            font-size: 14px;
        }


.default{
    
   display: none;
 }
    
.activecheny {
     display: block;
  }
  
.prchent_cheny-cur .ch1>.default {
          display: block !important;
}
    
.prchent_cheny-cur .ch1>.activecheny {
    display: none !important;
  
   
     
    }
.cent_hn{
   font-family: var(--font-family-inter-light);
   font-weight: 400;
   font-size: 20px;
   color: #FFFFFF;
   line-height: 32px;
   margin: 30px 0 94px 0;
}
.Solutionhtml{
    overflow: hidden;
    position: relative;
}
.ordb_gai{
    margin-top: 82px !important;
}
.ordb_gai >.ordb_liao1{
    background: #fff !important;
}
.canpinghovh{
  height: 60px;
}
.canpinghovh:hover .ProductsandServices22{
   display: block;
}
.cursors:hover .xialhover1{
  display: block;
}
.angini{
     background: #fff;
    width: 16px;
    height: 16px;
    color: #22bea9;
    text-align: center;
    border-radius: 16px;
    line-height: 15px;
}
.angini1{
     color: #fff;
    width: 16px;
    height: 16px;
        background: #05c4a6;
    text-align: center;
    border-radius: 16px;
    line-height: 15px;
        margin-left: 5px;
}
.cursor_xial {
  position: absolute;
  background-color: #fff;
  width: 210px;
  padding: 20px 20px;
  transform: translateX(-3%);
  transition: all .3s;
  z-index: 10;
  font-size: 14px;
  display: none;
  color: #333333;
  line-height: 24px;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
  font-weight: 400;
}
.cursor_xial a{
    transition: 0.3s;
    display: block;
}
.cursor_xial br{
    display: none;
}
.cursor_xial a:hover{
    color: #03c8aa;
}
.cursor_xial a:not(:first-of-type){
    margin-top: 10px;
}
.body_chent {
  height: 100%;
  overflow: hidden auto;
  width: 100%;
}

.curesrcaidan {
  position: relative;
}

.left_pent {}

.head_1 {
  width: 90%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px auto;
}

.left_pent {}

.chetn_pent {
  /*width: 72%;*/
  display: flex;
  justify-content: flex-end;
}
.rightsb{
  display: flex;
  align-items: center;
}

.left_pent_img {
  width: 200px;
  /*height: 30px;*/
}

.Productsadin {
  position: relative;
}

.cursors {
  font-family: var(--font-family-inter-light);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  margin-left: 40px;
  cursor: pointer;

}
.cursors:first-of-type{
    margin-left: 0;
}
.cursors:nth-of-type(3) .cursor_xial{
    width: 530px;
}
.cursors.active{
  /*border-bottom: 2px solid #00a1b3;*/
  color: #222222 !important;
  font-family: var(--font-family-inter-medium);
}
.cursors:hover{
    color: #222222 !important;
}
.chetn_text {
  display: flex;
  height: 40px;
  line-height: 40px;
}

.rigtn_pent {
  display: flex;
  align-items: center;
  /*margin-left: 100px;*/
}

.rig1 {
  margin-top: 5px;
}

.rig2 {
  width: 74px;
  height: 30px;
  background: #03c8aa;
  border-radius: 23px;
  color: #fff;
  margin-left: 30px;
  line-height: 31px;
  text-align: center;
  position:relative;
  font-family: var(--font-family-inter-light);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}
.rig2:hover .wenzihen{
    display:block;
}
.chtem_1 {
  background-image: url(../images/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 900px;
  background-size: 100% 100%;
  position: relative;
  margin-top: 80px;
}

.posit_ade {
  border-radius: 13px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 1);
  width: 26px;
  position: absolute;
  left: 50%;
  top: 87%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 50px;
}

.posit_ade_img {
  color: #fff;
  display: flex;
  align-items: center;
  position: absolute;
  right: 9%;
  top: 40%;
}

.cet1 {
  width: 73%;
  margin: 0px auto;
}

.cet_text1 {
  color: rgb(255, 255, 255);
  font-size: 48px;
  font-family: var(--font-family);
  font-weight: 800;
  text-align: left;
  line-height: 72px;
  white-space: nowrap;
  padding-top: 300px;
}

.cet_text2 {
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-family: var(--font-family);
  font-weight: normal;
  padding-top: 50px;
  width: 621px;
  padding-bottom: 120px;
}

.cet_text3 {
  width: 220px;
  height: 60px;
  border-radius: 30px;
  border: 2px solid #fff;
  background-size: 100% 100%;
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  transition: all 0.3s;
}
.solut_hovhent img{
     transition: all 0.3s;
     height: 400px;
     border-radius: 10px;
}
.solut_hovhent img:hover{
    transform: scale(1.05);
}
.cet_text3:hover {
  transform: scale(1.05);
}

.cet_text3_1 {
  width: 220px;
  height: 60px;
  border-radius: 30px;
  border: 2px solid #14d095;
  background-size: 100% 100%;
  font-size: 18px;
  color: #11bca1;
  text-align: center;
  line-height: 60px;
  margin-top: 100px;
}

.cet_text3_1 {
  transition: all 0.3s;
}

.cet_text3_1:hover {
  transform: scale(1.05);
}

.carousel-dots {
  width: 73%;
  left: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  bottom: 50px;
  transform: translate(-50%);
}

.cet_text4 {
  border-bottom: 1px solid rgba(210, 210, 210, 0.2);
  width: 150px;
  height: 50px;
}

.cet_text5 {
  height: 100%;
  width: 100px;
  border-bottom: 1px solid rgba(210, 210, 210, 0.2);
  position: absolute;
  top: 0px;
  line-height: 65px;
  cursor: pointer;
  text-align: center;
  color: rgba(210, 210, 210, 0.5);
  line-height: 65px;
}

.cet_text4-cur .cet_text5 {
  color: #fff;
  border-color: #fff;
}

.Products {
  width: 100%;
  /*height: 900px;*/
  background: #f4f8fd;
  padding: 130px 0 80px 0;
}

.produ_chetn1 {
  width: 90%;
  margin: 0px auto;
  max-width: 1715px;
}

/* .produ_chetn1:nth-child(1) {
  width: 236px;
  height: 47px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 48px;
  color: #444444;
  line-height: 24px;
} */
.produ_chetn2 {
  font-family: var(--font-family-inter-regular);
  font-weight: bold;
  font-size: 40px;
  color: #333333;
  margin-bottom: 10px;
}

.produ_chetn3 {
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
}

.produ_pnteh {
  display: flex;
  width: 90%;
  margin: 0px auto;
  margin-top: 40px;
  justify-content: space-between;
  max-width: 1715px;
}

.pr_pn_le_txte {
  /*width: 554px;*/
  /*height: 64px;*/
  font-family: var(--font-family-inter-extraLight);
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 23px;
  /*margin-top: 30px;*/
  height: 69px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.pr_pn_le_txte br{
    display: none;
}
.produ_pnteh_lent {
    width: 500px;
}

.produ_pnteh_chet img {}

.produ_pnteh_rigtn {
    width: calc(100% - 45% - 10%);
    margin-left: 10%;
}

.pr_pn_rigt_text {
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  margin-bottom: 35px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.pr_pn_rigt_text_2 {
  /*width: 350px;*/
  /*height: 124px;*/
  font-family: var(--font-family-inter-light);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  height: 224px;
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.pr_pn_rigt_text_2 span {
    color: #05c4a6;
    margin-right: 5px;
}


.prchent_cheny {
  display: flex;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
  text-align: center;
  margin-top: 50px;
}
.prchent_cheny .list2{
  display: flex;
  flex-direction: column;
  /*max-width: calc((100% - 30px) / 3);*/
  align-items: center;
  margin-bottom: 15px;
  margin-right: 50px;
}
.prchent_cheny .list2:last-of-type{
  margin-bottom: 0;
}
.prchent_cheny .ipmd{
  font-family: var(--font-family-inter-medium);
  font-weight: 400;
  font-size: 19px;
  color: #666666;
  width: 99px;
  white-space: nowrap;
}
.prchent_cheny .ch1 {
  position: relative;
}

.prchent_cheny .ch1>i {
  display: none;
}

.prchent_cheny-cur .ch1>i {
  display: block;
  pointer-events: none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 50%;
  animation: prchent_cheny_routate 5s linear 0s forwards infinite;
  border: 1px solid #0db8a3;
  cursor: pointer;
}
.solut_img{ 
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.solut_img img{width: 100%;transition: all .3s;}
.solut_img:hover img{transform: scale(1.1);}
.prchent_cheny-cur .ch1{
  background: #f4f8fd !important;
}

.prchent_cheny-cur .ch1>i::after {
  pointer-events: none;
  content: " ";
  width: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 10px;
  background: #0eb9a3;
  border-radius: 50%;
}

@keyframes prchent_cheny_routate {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}
.contentlunb{
    width: calc(100% - 500px - 80px);
    /*overflow: hidden;*/
    position: relative;
}
.ch1 {
  width: 99px;
  height: 99px;
  background: #ebf3fe;
  border-radius: 72px;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
   align-items: center;
   justify-content: center;
}
.rigtenys{
    font-size: 25px !important;
    margin-left: 20px;
}
.ordb_liao {
  width: 220px;
  height: 60px;
    background: linear-gradient(135deg, #066BCF, #14D095);
    padding: 2px;
    border-radius: 53px;
        margin-top: 120px;
    overflow: hidden;
  }
  .ordb_liao1{
    background: #f4f8fd;
    height: 100%;
    border-radius: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family-inter-light);
    color: #0B73CC;
    font-weight: 400;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
  }
  .ordb_liao1::before{
      display: block;
      content:'';
      width: 0;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background: linear-gradient(135deg, #066BCF, #14D095);
      transition: 0.3s;
      z-index: -1;
  }
.ordb_liao:hover .ordb_liao1{
  /*transform: scale(1.05);*/
  color: #FFFFFF;
}
.ordb_liao:hover .ordb_liao1::before{
    width: 100%;
}


.Connect_the {
  width: 100%;
}

.connect_chent {
  width: 1600px;
  height: 800px;
  background: linear-gradient(90deg, #0278c9 0%, #0eb9a3 100%);
  border-radius: 30px;
  margin: 0px auto;
  margin-top: 70px;
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: var(--font-family);
  position: relative;
}
.connect_chent_texts1{
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  height: 80%;
}
.connththes{
  width: 476px;
  margin-left: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.connect_chent_texts1 img{
  height: 100%;
}
.connect_chent1 {
  border-radius: 30px;
  width: 220px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
}
.connect_chent1::before{
  display: block;
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #03c8aa;
  transition: 0.3s;
  z-index: -1;
}
.connect_chent1:hover{
  border-color: #03c8aa;
}
.connect_chent1:hover::before{
  width: 100%;
}
.Connect_the img {
  transition: all 0.3s;
}

.Connect_the img:hover {
  transform: scale(1.05);
}

.pindex-productList-item {
  display: flex;
  /*justify-content: flex-end;*/
  /*gap: 5%;*/
  position: absolute;
  transition: all 1s ease; /* 动画效果 */
   transform: translateX(100%); /* 初始位置在右边 */
    pointer-events: none; /* 隐藏时不可点击 */
       opacity: 0;
  width: 100%;
    
}
.activepr{
     opacity: 1;
    transform: translateX(0); /* 激活时移动到正常位置 */
    pointer-events: auto;
}
.pindex-productList-item .produ_pnteh_rigtn {
  /* flex: 1;
  width: 0; */
}

.pindex-productList {
  flex: 1;
  margin-left: 5%;
  width: 0;
}

.text_4 {
  width: 70px;
  height: 18px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 21px;
  font-family: var(--font-family-inter-medium);
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
  line-height: 16px;
  margin: 22px 0 0 40px;
}

.thumbnail_5 {
  width: 9px;
  height: 13px;
  margin: 24px 0px 0 22px;
}

.btn {
  transition: transform 0.3s ease;
  /* 平滑过渡效果 */
  cursor: pointer;
}

.btn:hover {
  /*transform: scale(1.1);*/
  /* 放大1.2倍 */
}

.connect_chent_text1 {
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 40px;
  color: #FFFFFF;
  /*margin-top: 98px;*/
  margin-bottom: 18px;
  white-space: nowrap;
}

.connect_chent_text2 {
  font-family: Arial;
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  /* opacity: 0.6; */
  margin-bottom: 30px;
}

.connect_chent_text3 {
  font-family: var(--font-family-inter-light);
  font-weight: 400;
  font-size: 19px;
  color: #FFFFFF;
  line-height: 31px;
  margin-bottom: 120px;
}

.Solution {
  width: 1600px;
  margin: 0px auto;
}

.solution_title {
  text-align: center;
  color: rgba(68, 68, 68, 1);
  font-family: var(--font-family);
}

.sot_t1 {
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 40px;
  color: #333333;
  margin-bottom: 10px;
  margin-top: 100px;
}

.sot_t2 {
  font-family: var(--font-family-inter-light);
  font-weight: 400;
  font-size: 19px;
  color: #666666;
  margin-bottom: 50px;
  line-height: 27px;
}

.solut_hen {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0771cc, #11bca1);
  margin: 0px auto;
}

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

.solut_cht_title_1 {
  width: 49%;
  text-align: center;
}

.solut_tie1 {
  font-family: var(--font-family-inter-semibold);
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  margin: 20px 0px 15px 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.solut_tie2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #666666;

      width: 500px;
    margin: 0px auto;
    padding-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.soluten_chen2 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.soluten_chen2_1 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.chent_tlite_7 {
  width: calc((100% - 30px) / 3);
  margin-right: 15px;
  display: block;
}
.chent_tlite_7:nth-of-type(3n){
  margin-right: 0;
}
.chent_tlite_7 img{
  height: 340px;
  transition: 0.3s;
  border-radius: 10px;
}
.chent_tlite_7:hover img{
    transform: scale(1.02);
}
.chent_tlite_8 {
font-family: var(--font-family-inter-semibold);
font-weight: 400;
font-size: 20px;
color: #333333;
text-align: center;
  margin: 15px 0px 15px 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.chent_tlite_10 {
  margin-top: 15px;
font-family: var(--font-family);
font-weight: 400;
font-size: 16px;
color: #666666;
text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.Stay_informed {
  margin-top: 100px;
  width: 100%;
  background: #f5f5f5;
  padding-bottom: 100px;
}

.stay_infor_title3 {
  text-align: center;
  padding-top: 100px;
  margin-bottom: 20px;
}

.stay_infor_title {
  overflow-wrap: break-word;
  color: #333333;
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 10px;
}

.stay_infor_title2 {
  overflow-wrap: break-word;
  color: rgba(102, 102, 102, 1);
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  margin-bottom: 80px;
}

.stay_infor_binlin {
  width: 70%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
}

.stay_infor_binl_title {
  background-color: rgba(238, 238, 238, 1);
  border-radius: 30px;
  width: 230px;
  height: 60px;
  text-align: center;
  overflow-wrap: break-word;
  font-family: var(--font-family-inter-medium);
  font-weight: 400;
  font-size: 19px;
  color: #888888;
  line-height: 60px;
  cursor: pointer;
}

.stay_infor_binlin .active {
     box-shadow: 0px 0px 35px 0px rgba(65, 146, 130, 0.21) !important;
    color: #555555 !important;
    background: #fff;
}

.Stay_informed_chten {
  width: 1400px;
  margin: 0px auto;
  display: flex;
  margin-top: 80px;
  justify-content: space-between;
}

.Stay_informed_c1 {
  width: 410px;
  border-radius: 10px;
  height: 610px;
  position: relative;
  overflow: hidden;

}

.c1_batb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  z-index: 1;
  background: linear-gradient(0deg, #0eb9a2 0%, transparent 70%);
}

.c1_batb2 {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 0px;
  width: 80%;
  left: 50%;
  font-family: var(--font-family);
  color: #ffffff;
  transition: all 0.4s;
      transition: all 0.3s ease;
    transform: translate(-50%,60px);
   padding-bottom: 38px;
}
.Stay_informed_c1:hover .c1_batb2{
    transform: translate(-50%,0px);
}

.c1_tit1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}

.c1tit2 {
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 27px;
  margin-top: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 24px 0 19px 0;
}

.c1tit3 {
   font-family: var(--font-family);
   font-weight: 400;
   font-size: 16px;
   color: #FFFFFF;
    /*height: 125px;*/
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.c1tit4 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  margin-top: 30px;
}

.staint_3 {
  width: 520px;
  display: flex;
  /* 上下两端对齐 */
  flex-direction: column;
  justify-content: space-between;
  /* 需要指定高度 */
}

.stay_infor_bei {
  width: 100%;
  background: #fff;
  height: calc((100% - 40px) / 3);
  border-radius: 10px;
  /* padding: 20px 0px 0px 30px; */
  display: flex;
  
  

      /* 核心过渡设置 */
    background-image: linear-gradient(90deg, #3B82F6, #10B981);
    background-size: 0% 100%; /* 初始时渐变宽度为0，不显示 */
    background-repeat: no-repeat;
    transition: background-size 1s cubic-bezier(0.2, 0, 0.1, 1);
}

    /* 鼠标悬停时 - 渐变从左到右展开 */
    .stay_infor_bei:hover {
        background-size: 100% 100%; /* 渐变宽度变为100%，完全显示 */
    }
    .stay_infor_bei:hover .stay_infor_1 .stay_infor_2{
        color: #fff !important;
    }
    .stay_infor_bei:hover .stay_infor_1 .stay_infor_3{
        color: #fff !important;
    }
    .stay_infor_bei:hover .stay_infor_4 .stay_infor_5{
         color: #fff !important;
    }
    .stay_infor_bei:hover .stay_infor_4 .stay_infor_6{
         color: #fff !important;
    }
    .stay_infor_bei:hover .stay_infor_4 .stay_infor_7{
         color: #fff !important;
    }

.stay_infor_1 {
  width: 30%;
  border-right: 1px solid #dedede;
  height: 50%;
  /* padding-top: 10px; */
  /*padding-left: 45px;*/
  text-align: center;
  margin-top: 15px;
}

.stay_infor_2 {
  font-family: Arial;
  font-weight: 400;
  font-size: 60px;
  color: #05C4A6;
  line-height: 1;
}

.stay_infor_3 {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #05C4A6;
}

.stay_infor_4 {
  width: 70%;
}

.stay_infor_5 {
    font-family: var(--font-family);
    font-weight: bold;
    font-size: 18px;
    color: #222222;
    margin-top: 20px;
    margin-left: 18px;
    margin-bottom: 10px;
    overflow: hidden;
    width: 80%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
}

.stay_infor_6 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  padding-right: 32px;
  margin-left: 18px;
      display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    transition: 0.3s;
}

.stay_infor_7 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #888888;
  margin-top: 30px;
  margin-left: 20px;
    transition: 0.3s;
}

.dian {
  width: 15px;
  height: 15px;
  background: #05c4a6;
  border-radius: 50px;
  text-align: center;
  line-height: 16px;
  margin-left: 5px;
  color: #fff;
}

.Transform_our {
  background: url(../img/dgszf.png) no-repeat center / cover;
  width: 100%;
  /*height: 900px;*/
  padding: 180px 0 205px 0;
  position: relative;
  text-align: center;
}

.Transform_our_tit1 {
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 40px;
  color: #FFFFFF;
  /*padding-top: 175px;*/
  /*margin-bottom: 50px;*/
  margin: 0 auto 50px;
  width: 1400px;
}

.Transform_our_tit2 {
  font-family: var(--font-family-inter-medium);
  font-weight: 400;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 36px;
  /*margin-bottom: 100px;*/
  margin: 0 auto 100px;
  width: 1400px;
}

.Transform_our_tit3 {
  width: 380px;
  height: 60px;
  border-radius: 30px;
  border: 2px solid #fbf7f5;
  line-height: 60px;
  margin: 0px auto;
  font-weight: 400;
  font-size: 21px;
  font-family: var(--font-family-inter-medium);
   transition: all 0.3s;
  color: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.Transform_our_tit3::before{
  display: block;
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #03c8aa;
  transition: 0.3s;
  z-index: -1;
}
.Transform_our_tit3:hover{
  border-color: #03c8aa;
}
.Transform_our_tit3:hover::before{
  /*transform: scale(1.05);*/
  width: 100%;
}

.EnteringWeiyu {
  background: url(../img/hunt.png) no-repeat center / cover;
  /*background-repeat: no-repeat;*/
  /*background-position: center;*/
  width: 100%;
  /*height: 855px;*/
  /*background-size: 100% 100%;*/
  position: relative;
  padding: 100px 0 140px 0;
}

.EnteringWeiyu_1 {
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 40px;
  color: #333333;
  margin-bottom: 20px;
}

.EnteringWeiyu_2 {
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  margin-bottom: 50px;
}

.enter_brne {
  width: 189px;
  height: 41px;
  border: 1px dashed #fff;
  background: linear-gradient(to right, #0771cc, #11bba1);
  background-origin: border-box;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 50px;
}

.enter_brne_chten {
  height: 100%;
  width: 100%;
  line-height: 41px;
  background: #ededed;
  text-align: center;
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 19px;
  color: #0083C4;
  border-radius: 20px;
}

.EnteringWeiyu_title {
  width: 1400px;
  /*padding-top: 100px;*/
  margin: 0px auto;
}

.EnteringWeiyu_3 {
  display: flex;
}

.enter_dic {
  font-family: var(--font-family-inter-light);
  font-weight: 400;
  font-size: 19px;
  color: #888888;
  line-height: 31px;
  width: 713px;
  /*text-align: justify;*/
}

.partner {
  text-align: center;
  margin-bottom: 100px;
  overflow: hidden;
  width: 100%;
}

.partner_title {
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 40px;
  color: #333333;
  margin: 100px 0px 10px 0px;
}

.partner_title_1 {
  font-family: var(--font-family-inter-bold);
  font-weight: 400;
  font-size: 19px;
  color: #666666;
  margin-bottom: 50px;
}

.partent_chen {
    width: 100%;
	overflow: hidden;
}
.partent_chen1{
     display: flex;
  justify-content: flex-start;
  gap: 60px;
  padding-right: 100px;
  -webkit-animation: about-anim 10s linear infinite normal;
	animation: about-anim 10s linear infinite normal;

}
@-webkit-keyframes about-anim {
	0% {
		-webkit-transform: translateX(-33.33%);
	}

	100% {
		-webkit-transform: translateX(-66.66%);
	}
}

@keyframes about-anim {
	0% {
		transform: translateX(-33.33%);
	}

	100% {
		transform: translateX(-66.66%);
	}
}
.partner-screenRoll {
  width: 80%;
  margin: 0 auto;
}

.cht-tj {
  width: 241px;
  height: 100px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.cht-tj a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cht-tj img{
    transition: 0.3s;
    max-width: 70%;
    max-height: 70%;
}
.cht-tj:hover img{
    transform: scale(1.1);
}
#productNav {
  height: 60px;
}

.head_1_sht {

  width: 100%;
  height: 80px;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 21;
  box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 6%);
}

.pindex-animCard {
  transition: all 1.5s;
  transform: translate(100%, 0);
}

.pindex-animCardAnim {
  transform: translate(0, 0);
}

.infet_2 {
  width: calc(410px - 60px);
  padding: 0px 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inftformed_1 {
  color: #05c4a6;
  font-weight: 400;
  font-size: 16px;
}

.inftformed_2 {
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 18px;
  color: #222222;
  margin: 19px 0 15px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.inftformed_3 {
font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin-bottom: 35px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.inftformed_4 {
font-family: var(--font-family);
font-weight: 400;
font-size: 16px;
color: #666666;
  margin-bottom: 60px;
}

.footer {
  /*background-image: url(../img/bjin.png);*/
  background-color: #F2FAF9;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  /*height: 500px;*/
  background-size: 100% 100%;
  position: relative;
}

.foote_chetn {
  display: flex;
  width: 1400px;
  justify-content: space-between;
  margin: 0px auto;
  padding-top: 100px;
  /*padding-bottom: 130px;*/
}
.foote_chetn .nonet_foote{
  max-width: 300px;
}
.fort_lin {
  font-family: var(--font-family-inter-medium);
  font-weight: 400;
  font-size: 24px;
  color: #555555;
  margin-bottom: 20px;
      display: flex;
    align-items: center;
}
.bolke_foote .fort_lin{
    font-size: 19px;
}
.fort_lin>img{
    width: 27px;
    height: 25px;
    margin-right: 13px;
    filter: brightness(0);
}

.fort_hst {
  font-family: var(--font-family-inter-light);
  font-weight: 400;
  font-size: 16px;
  color: #7e7e7e;
  line-height: 26px;
}
.fort_hst p:not(:first-of-type){
    margin-top: 10px;
}
.fort_hst p a{
    color: #7e7e7e !important;
    font-family: var(--font-family-inter-light);
    font-weight: 400;
    font-size: 16px;
}
.fort_hst p a:hover{
    text-decoration: underline;
}
.fort_hst_log {
  display: flex;
}

.log_img1 {
  width: 19px;
  height: 16px;
  filter: brightness(0);
}

.log_img2 {
     width: 20px;
    height: 22px;
    filter: brightness(0);
}

.log_img3 {
  width: 15px;
  height: 14px;
  filter: brightness(0);
}

.log_img4 {
  width: 17px;
  height: 15px;
  filter: brightness(0);
}

.fort_hst_log div {
width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    margin-right: 15px;
    margin-top: 37px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.fort_hst_log div:hover{
    background-color: #03c8aa;
    border-color: #03c8aa;
}
.fort_hst_log div:hover img{
    filter: brightness(1);
}
.dibu {
    border-top: 1px solid #e2e2e2;
    width: 1400px;
    height: 80px;
    position: absolute;
    bottom: 0px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #555555;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    line-height: 80px;
}
.dibu > a{
    color: #555555 !important;
}
/* 回到顶部按钮样式 */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  /* 默认隐藏 */
  transition: opacity 0.3s ease;
}

.scroll-top-btn:hover {
  background-color: #2563eb;
}

.scroll-top-btn.show {
  display: block;
}

.bus01 {
  width: 100%;
  position: relative;
  color: #fff;
}
.bus01 .ct{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1400px;
}
.bus01 .text02 {
  width: 631px;
}
.bus0101-swiper{
  width: 100%;
  height: 100vh;
}
.bus01 .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bus01 .text01 p {
  font-size: 14px;
}

.bus01 .text01 h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.bus01 .text01 h4 {
  font-size: 14px;
  margin-bottom: 20px;
}

.bus01 .text01 strong {
  width: 30px;
}

.bus01 .text01 .more {
  width: 80px;
  height: 30px;
  font-size: 14px;
  margin-top: 20px;
}

.bus01 .bus0101-swiper .swiper-pagination {
  left: calc((100% - 1400px) / 2);
  bottom: 50px;
  width: max-content;
}

.bus01 .swiper-pagination-bullet {
  width: 60px;
  height: 2px;
  background: #ffffff;
}

.bus01 .swiper-pagination-bullet-active {
  width: 60px;
  background: #FFFFFF;
}

/*.bus01 .text02 h3,*/
/*.bus01 .text03 h3 {*/
/*  font-size: 20px;*/
/*  margin: 10px 0;*/
/*}*/

.text02 h3 {
  font-family: var(--font-family-inter-regular);
  font-weight: bold;
  font-size: 37px;
  color: #FFFFFF;
  line-height: 49px;
}

/*.text02 h3 {*/
/*  font-weight: 400;*/
/*  font-size: 16px;*/
/*  color: #FFFFFF;*/
/*  line-height: 34px;*/
/*}*/
.text02 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 216px;
    height: 56px;
    border-radius: 30px;
    border: 2px solid #FFFFFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
}
.text02 a span{
   font-family: var(--font-family-inter-medium);
   font-weight: 400;
   font-size: 21px;
   color: #FFFFFF;
   transition: 0.3s;
}
.text02 a i{
    font-size: 18px;
    color: #FFFFFF;
    transition: 0.3s;
    margin-left: 15px;
}
.text02 a::before{
    display: block;
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #05C4A6;
    transition: 0.3s;
    z-index: -1;
}
.text02 a:hover{
    border-color: #05C4A6;
}
.text02 a:hover::before{
    width: 100%;
}
.text02 a:hover span,
.text02 a:hover i{
    color: #FFFFFF;
}
.pitne2 {
  border-radius: 30px;
  border: 2px solid #FFF;
  width: 220px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
  cursor: pointer;
  margin-top: 50px;
  transition: all 0.3s;
}

.pitne2:hover {
  transform: scale(1.05);
}

.bus01 .text02 .text-img {
  height: 40px;
  margin: 20px 0;
}

/*.bus01 .text02 span {*/
/*  font-size: 12px;*/
/*  line-height: 20px;*/
/*}*/

.bus01 .text03 p {
  font-size: 14px;
  line-height: 24px;
}

/*.bus0101-pagination {*/
/*  left: 100px;*/
/*  bottom: 50px;*/
/*}*/

/* @media (max-width: 1940px) { */
.produ_pnteh_chet  {
  width: 45%;
  /*height: 360px;*/
  /*margin-left: 100px;*/
    /*  margin-left: 30px;*/
    /*margin-right: 30px;*/
}
.produ_pnteh_chet img{
    width:100%;
    margin-top: 40px;
}
.yqlink{
    margin: 80px auto 0;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1400px;
}
.yqlink a{
    /*margin-right: 14px;*/
    /*padding-right: 14px;*/
    margin-bottom: 8px;
    color: #7e7e7e;
    font-family: var(--font-family-inter-light);
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s;
    /*border-right: 1px solid #b6b1b1;*/
}
.yqlink .line{
    width: 1px;
    height: 18px;
    background-color: #7e7e7e;
    margin: 0 14px 8px 14px;
}
.yqlink .line:last-of-type{
    display: none;
}
.yqlink a:hover{
}  

/* } */
@media (max-width: 1640px) {

  .produ_pnteh_chet  {
    /*width: 410px;*/
    /*height: 250px;*/
    /*margin-left: 40px;*/
  }
  .produ_pnteh_chet img {
  /*width: 100%;*/
  }

  /*.connect_chent {*/
  /*  height: 700px;*/
  /*}*/

  .connect_chent_text1 {
    font-size: 34px;
    margin: 0 0 15px 0;
  }

  .connect_chent_text2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .connect_chent_text3 {
    font-size: 17px;
    line-height: 29px;
    margin-bottom: 100px;
  }

  /*.connect_chent_texts1 img {*/
  /*  width: 90%;*/
  /*}*/

  .produ_pnteh_lent{
      width: 470px;
  }
  .contentlunb{
      width: calc(100% - 470px - 80px);
  }
  .prchent_cheny .list2{
      margin-right: 35px;
  }
  .connect_chent{
      width: 1350px;
      border-radius: 24px;
      height: 700px;
  }
  .Solution{
      width: 1350px;
  }
  .solut_hovhent img{
      height: 330px;
      border-radius: 8px;
  }
  .chent_tlite_7 img{
      height: 290px;
      border-radius: 8px;
  }
  /*.enter_dic{*/
  /*    font-size: 18px;*/
  /*    line-height: 32px;*/
  /*}*/
}
@media (max-width: 1560px) {
    /*.cursors{*/
    /*    font-size: 18px;*/
    /*}*/
    .cursors{
        margin-left: 30px;
    }
    .yqlink{
        width: 1100px;
    }
    .layout-zj{
        width: 1100px;
    }
    .layout-zj h3{
        font-size: 28px;
    }
    .applist li{
        width: calc((100% - 60px) / 2 - 50px);
        margin-top: 20px;
    }
    .applist li:nth-of-type(1),
    .applist li:nth-of-type(2){
        margin-top: 0;
    }
    .applist li:nth-of-type(2n){
        margin-right: 0;
    }
    .applist li h6{
        min-height: unset;
    }
    .stay_infor_binlin{
        width: 75%;
    }
    .chunluan{
        width: 1100px;
    }
    .chunluanlist li a .ib{
        height: 170px;
    }
    .chunluanlist li a .txt h3{
       font-size: 18px;
    }
    .chunluanlist li a .txt .line{
        margin: 14px auto;
    }
    .bus01 .ct{
        width: 1100px;
    }
    .bus01 .bus0101-swiper .swiper-pagination{
        left: calc((100% - 1100px) / 2);
    }
    .Stay_informed_chten{
        width: 1100px;
    }
    .Stay_informed_c1{
        width: 310px;
        height: 500px;
    }
    .text02 h3{
        font-size: 31px;
        line-height: 43px;
    }
    .text02 a span{
        font-size: 19px;
    }
    .text02 a{
        width: 196px;
        height: 50px;
    }
    .cent_hn{
        margin: 22px 0 75px 0;
        font-size: 18px;
        line-height: 30px;
    }
    .bus01 .bus0101-swiper .swiper-pagination{
        bottom: 40px;
    }
    .prchent_cheny .list2{
        margin-right: 25px;
    }
    .produ_pnteh_lent{
        width: 420px;
    }
    .contentlunb{
        width: calc(100% - 420px - 80px);
    }
    /*.pr_pn_le_txte{*/
    /*    margin-top: 40px;*/
    /*}*/
    /*.prchent_cheny{*/
    /*    margin-top: 80px;*/
    /*}*/
    .ch1{
        width: 85px;
        height: 85px;
    }
    .ch1 img{
        max-width: 65%;
    }
    .prchent_cheny .ipmd{
        font-size: 17px;
        width: 85px;
    }
    /*.lintlehnte{*/
    /*    margin-top: 70px;*/
    /*}*/
    .pr_pn_rigt_text{
        font-size: 22px;
    }
    .ordb_liao{
        margin-top: 100px;
        width: 200px;
        height: 52px;
    }
    .ordb_liao1{
        font-size: 18px;
    }
    .produ_chetn2{
        font-size: 34px;
    }
    .infet_2{
        width: calc(310px - 40px);
        padding: 0px 20px;
    }
    .staint_3{
        width: 420px;
    }
    .stay_infor_7{
        margin: 15px 0 0 20px;
    }
    .stay_infor_5{
        margin: 15px 0 7px 18px;
    }
    .stay_infor_2{
        font-size: 48px;
    }
    .inftformed_4{
        margin-bottom: 40px;
    }
    .produ_chetn2{
        font-size: 34px;
    }
    .pr_pn_le_txte{
        font-size: 17px;
        line-height: 22px;
        height: 66px;
    }
    .connect_chent {
        width: 1200px;
        border-radius: 20px;
        height: 650px;
    }
    .connect_chent_text1{
        font-size: 30px;
        margin: 0 0 15px 0;
    }
    .connect_chent1{
        width: 200px;
        height: 52px;
    }
    .thumbnail_5{
        margin: 20px 0px 0 22px;
    }
    .text_4{
        font-size: 19px;
    }
    .connththes{
        margin-left: 78px;
    }
    .connect_chent_text3{
        margin-bottom: 90px;
    }
    .sot_t1{
        font-size: 34px;
    }
    .sot_t2{
        font-size: 17px;
        line-height: 25px;
    }
    .solut_tie1{
        font-size: 22px;
    }
    .Solution{
        width: 1200px;
    }
    .solut_hovhent img{
        height: 300px;
        border-radius: 6px;
    }
    .chent_tlite_7 img{
        height: 260px;
        border-radius: 6px;
    }
    .stay_infor_title{
        font-size: 34px;
    }
    .c1_batb2 {
        width: 90%;
    }
    .Transform_our_tit1{
        font-size: 34px;
        /*margin-bottom: 40px;*/
        margin: 0 auto 40px;
        width: 1100px;
    }
    .Transform_our_tit2{
        /*margin-bottom: 80px;*/
        margin: 0 auto 80px;
        width: 1100px;
        font-size: 22px;
        line-height: 34px;
    }
    .Transform_our_tit3{
        width: 360px;
        height: 52px;
        font-size: 19px;
        line-height: 52px;
    }
    .Transform_our{
        padding: 130px 0 165px 0;
    }
    .EnteringWeiyu_1{
        font-size: 34px;
    }
    .enter_brne_chten{
        font-size: 17px;
    }
    .enter_dic{
        width: 660px;
        font-size: 17px;
        line-height: 29px;
    }
    .ordb_liao{
        width: 200px;
        height: 52px;
    }
    .ordb_liao1{
        font-size: 18px;
    }
    .EnteringWeiyu_title {
        width: 1100px;
    }
    .EnteringWeiyu{
        padding: 100px 0 120px 0;
    }
    .partner_title{
        font-size: 34px;
    }
    .partner_title_1{
        font-size: 17px;
    }
    .foote_chetn{
        width: 1100px;
    }
    .dibu{
        width: 1100px;
    }
    .fort_lin{
        font-size: 22px;
    }
    .bolke_foote .fort_lin{
        font-size: 18px;
    }
}
@media (max-width: 1460px) {
  /*.connththes {*/
  /*  margin-left: 90px;*/
  /*}*/

  /*.connect_chent_texts1 img {*/
  /*  width: 70%;*/
  /*}*/

  /*.produ_pnteh_chet  {*/
  /*  width: 370px;*/
    /*height: 210px;*/
  /*  margin-left: 100px;*/
  /*}*/
  /*.produ_pnteh_chet img {*/
      /*width: 100%;*/
  /*    }*/

  /*.produ_chetn2 {*/
  /*  font-size: 40px;*/
  /*}*/

  /*.pr_pn_le_txte {*/
  /*  width: 520px;*/
  /*  margin-top: 35px;*/
  /*  height: 22px;*/
  /*  margin-top: 35px;*/
  /*}*/

  /*.ch1 {*/
  /*  line-height: 105px;*/
  /*  width: 80px;*/
  /*  height: 80px;*/
  /*}*/

  /*.pr_pn_rigt_text {*/
  /*  font-size: 22px;*/
  /*}*/

  /*.pr_pn_rigt_text_2 {*/
  /*  font-size: 14px;*/
  /*}*/

  /*.ordb_liao {*/
  /*  width: 175px;*/
  /*  height: 45px;*/
    /*line-height: 45px;*/
  /*  font-size: 16px;*/
  /*}*/
  .contentlunb{
      width: calc(100% - 440px - 80px);
  }
  .connect_chent {
      width: 1150px;
      border-radius: 18px;
      height: 600px;
   }
   .connect_chent_text2{
       margin-bottom: 10px;
   }
   /*.connect_chent_text3{*/
   /*    margin-bottom: 70px;*/
   /*}*/
    .Solution{
        width: 1150px;
    }
    /*.rigtn_pent{*/
    /*    margin-left: 70px;*/
    /*}*/
    .produ_pnteh_lent{
        width: 380px;
    }
    .contentlunb{
        width: calc(100% - 380px - 80px);
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
}
@media only screen and (max-width:760px) {
    .yqlink{
        width: 92%;
        margin: 30px auto 0;
        padding-bottom: 0;
        justify-content: flex-start;
    }
    .yqlink a{
        /*margin-right: 10px;*/
        /*padding-right: 10px;*/
        font-size: 14px;
    }
    .yqlink .line{
        margin: 0 10px 8px 10px;
        height: 14px;
    }
    .layout-zj{
        padding: 60px 4%;
    }
    .layout-zj h3{
        font-size: 22px;
    }
    .applist{
        margin: 30px auto 0;
    }
    .applist li{
       width: calc(100% - 36px);
       padding: 25px 18px;
       border-radius: 10px;
       margin-right: 0;
    }
    .applist li:not(:first-of-type){
        margin-top: 20px;
    }
    .applist li:hover{
        transform: unset;
    }
    .applist li h6{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 14px;
    }
    .applist li .row .rund{
        transform: translateY(8px);
    }
    .applist li .row .db p{
        font-size: 14px;
        line-height: 24px;
    }
    .applist li .row:not(:first-of-type){
        margin-top: 6px;
    }
    .wenzihen{
        padding: 10px;
    }
    .app{
        display: block;
    }
    .chunluan{
        width: 92%;
        padding: 60px 0;
    }
    .chunluanlist li{
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
        margin-top: 20px;
    }
    .chunluanlist li:nth-of-type(3),
    .chunluanlist li:nth-of-type(4){
        margin-top: 20px;
    }
    .chunluanlist li:nth-of-type(2n){
        margin-right: 0;
    }
    .chunluanlist li a .ib{
        height: 120px;
    }
    .chunluanlist li a .txt{
        width: calc(100% - 14px);
        padding: 10px 7px 13px 7px;
    }
    .chunluanlist li a .txt h3{
        font-size: 14px;
    }
    .chunluanlist li a .txt .line{
        width: 30px;
        margin: 10px auto;
    }
    .chunluanlist li a .txt p{
        font-size: 14px;
    }
  .diaolog .content{
      width: calc(92% - 36px);
      padding: 25px 18px 35px 18px;
  }
  .diaolog .content h3{
      font-size: 18px;
  }
  .diaolog .content i{
      right: 0;
      top: -40px;
      font-size: 32px;
  }
  .diaolog .content form .row .md{
      font-size: 14px;
      height: 38px;
  }
  .diaolog .content form .row textarea.md{
      height: 88px !important;
  }
  .diaolog .content form button{
      height: 38px;
      font-size: 14px;
  }
  .part .el-pager li{
    width: 30px;
    height: 30px;
    min-height: 30px;
    line-height: 30px;
    min-width: 30px;
    font-size: 12px;
  }
  .part .el-pagination .btn-next,
  .part .el-pagination .btn-prev{
    width: 30px;
    height: 30px;
    min-height: 30px;
    min-width: 30px;
  }
  .hamburger.is-closed .hamb-middle {
    top: 50%;
    transform: translateY(50%);
  }
  .hamburger.is-closed .hamb-top {
    top: 0px;
  }
  .hamburger.is-closed .hamb-bottom {
    bottom: 0px;
  }
  .sidebar-nav {
    z-index: 9;
    background-color: #fff;
    padding: 100px 30px 50px;
  }
  .sidebar-nav .sidebar-brand a {
    color: #222;
  }
  .sidebar-nav .sidebar-brand > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: Source Han Sans CN;
  }
  .sidebar-nav .sidebar-brand .xl {
    padding-bottom: 20px;
  }
  .sidebar-nav {
    overflow-y: scroll;
  }
  .headerwrap_current .header {
    background-color: #1a1a1a;
  }
  .sidebar-nav .sidebar-brand .sidebar-brand-there a {
    font-size: 14px;
  }
  .sidebar-nav .sidebar-brand a .sj {
    border-color: #222;
  }
  .sidebar-nav-two .sidebar-brand-two a {
    box-sizing: border-box;
    padding: 0 20px;
  }
  .sidebar-nav-two .sidebar-brand-there a {
    padding: 0 40px;
  }
  .hamburger {
    height: 16px;
    right: 2.5%;
    width: 20px;
    top: 17px;
    z-index: 10;
    display: block;
  }
  .hamburger.is-closed .hamb-top,
  .hamburger.is-closed .hamb-middle,
  .hamburger.is-closed .hamb-bottom,
  .hamburger.is-open .hamb-top,
  .hamburger.is-open .hamb-middle,
  .hamburger.is-open .hamb-bottom{
    height: 2px !important;
    background-color: #03c8aa;
  }
  .hamburger.is-open .hamb-top,
  .hamburger.is-open .hamb-middle,
  .hamburger.is-open .hamb-bottom{
    background-color: #03c8aa;
  }
  .sidebar-nav .sidebar-brand a .sj{
    border-color: #03c8aa;
  }
  .sidebar-nav-two .sidebar-brand-two a {
    box-sizing: border-box;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: Source Han Sans CN;
  }
  .sidebar-nav-two .sidebar-brand-there a {
    padding: 0 40px;
  }
  .seader{
    width: 95%;
  }
  .seader .close{
    right: 0;
    top: -40px;
  }
  .seader .close img{
    height: 30px;
  }
  .seader form{
    width: calc(100% - 6px);
    height: 50px;
    border-width: 3px;
    border-radius: 4px;
  }
  .seader form input{
    width: calc(100% - 100px);
    font-size: 12px;
    padding: 0 10px;
  }
  .seader form button{
    font-size: 12px;
    width: 100px;
  }
  .seader form button img{
    margin-right: 10px;
    height: 16px;
  }
    .head_1_sht{
        height: 50px;
    }
    .head_1{
        width: calc(100% - 8%);
        height: 100%;
    }
    .chebian_h5{
        display: none;
    }
    .chetn_text{
        display:none;
    }
    .left_pent_img{
        width: auto;
        height: 10px;
    }
    .cbl{
        right: 8px;
    }
    .rigtn_pent{
        margin-left: 0;
        margin-right: 30px;
    }
    .searchpc{
        margin-right: 15px;
        margin-left: 0;
    }
    .searchpc form input{
        width: calc(140px - 5px);
    }
    .rig2{
        width: 60px;
        height: 30px;
        font-size: 14px;
        line-height: 30px;
        margin-left: 0px;

    }
    .search-btn img{
        width: 17px;
        height: 17px;
    }
    .bus01{
        margin-top: 50px;
        height: 210px;
    }
    .bus01 .ct{
        width: 92%;
    }
    .bus01 .text02{
        width: 60%;
    }
    .text02 h3{
        font-size: 22px;
        line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
    }
    .bus0101-swiper{
        height: 100%;
    }
    .cent_hn{
        font-size: 14px;
        line-height: 24px;
        margin: 10px 0 20px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
    }
    .text02 a{
        width: 140px;
        height: 36px;
    }
    .text02 a span{
        font-size: 14px;
    }
    .text02 a i{
        font-size: 16px;
        margin-left: 10px;
    }
   .thumbnail_5{
      margin: 0px 0px 0 22px;
   }
   .pitne2{
       width: 150px;
    height: 50px;
    line-height: 0px;
           display: flex;
    align-items: center;
    justify-content: center;
   }
    .cbl_chent{
        width: 36px;
        height: 36px;
    }
    .cbl_chent > img{
        width: 19px !important;
        height: auto !important;
    }
    .linthan3{
        padding: 10px;
        right: 45px;
        font-size: 14px;
        min-width: 150px;
        border-radius: 6px;
    }
    .linthan{
        padding: 8px;
        right: 45px;
    }
    .produ_chetn1,
    .produ_pnteh{
        width: 92%;
    }
    .produ_chetn2{
        font-size: 22px;
        margin-bottom: 6px;
    }
    .produ_chetn3{
       font-size: 14px;
    }
    .produ_pnteh_lent{
        width: 100%;
    }
    .produ_pnteh{
        margin-top: 0;
    }
    .pr_pn_le_txte{
      font-size: 14px;
      width: 100%;
      line-height: 26px;
      margin-top: 10px;
      height: 78px;
    }
    .produ_pnteh {
        display: block;
        position: relative;
        padding-bottom: 80px;
    }
    .pindex-productList-item{
         display: block;
    }
    .prchent_cheny{
        margin-top: 40px;
        flex-wrap: wrap;
    }
    .prchent_cheny .list2{
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
        margin-top: 20px;
    }
    .prchent_cheny .list2:nth-of-type(1),
    .prchent_cheny .list2:nth-of-type(2){
        margin-top: 0;
    }
    .prchent_cheny .list2:nth-of-type(2n){
        margin-right: 0;
    }
    .Products{
        padding: 40px 0 60px 0;
    }
    .ch1{
        width: 60px;
        height: 60px;
        margin: 0px auto;
    }
    .ch1 img{
        width: 50%;
    }
    .prchent_cheny .ipmd{
        font-size: 14px;
        margin-top: 10px;
        max-width: 100%;
        width: auto;
        white-space:unset;
    }
    .lintlehnte{
       margin-top: 0;
        justify-content: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0px;
    }
    .produ_pnteh_rigtn{
         margin: 10px auto 0;
         width: 100%;
    }
    .ordb_liao{
         margin: 0px auto;
         width: 140px;
         height: 36px;
    }
    .ordb_liao1{
        font-size: 14px;
    }
    .rigtenys{
        font-size: 18px !important;
        margin-left: 10px;
    }
    .pr_pn_rigt_text_2{
        margin-bottom: 40px;
        font-size: 14px;
        line-height: 26px;
        height: 104px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    }
    .connect_chent_text1{
         font-size: 22px;
         text-align: center;
        margin: 0;
    }
    .connththes{
        margin-left: 0px;
        width: 100%;
        padding: 0;
    }
    .connect_chent_text2{
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
        margin: 6px 0 0 0;
    }
    .connect_chent_text3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
        font-size: 14px;
        line-height: 26px;
        margin: 20px 0 0 0;
        text-align: center;
    }
    .connect_chent_texts1{
        position: unset;
        transform: unset;
        width: 80%;
        height: auto;
        margin: 30px auto 0;
    }
    .connect_chent_texts1 img{
        height: auto;
        width: 100%;
    }
    .text_4{
        font-size: 14px;
        width: unset;
    }
    .thumbnail_5{
        margin-left: 10px;
        width: auto;
        height: 9px;
    }
    .connect_chent1{
        width: 140px;
    height: 36px;
    line-height: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 35px auto 0;
    }
    .text_4{
        margin: 0px;
    }
    .connect_chent {
        width: calc(92% - 36px);
        padding: 40px 18px;
        height: auto;
        border-radius: 8px;
        margin: 60px auto 0;
        position: relative;
        flex-direction: column;
        align-items: center;
    }
    .Solution{
        width: 92%;
        margin: 0 auto;
    }
    .sot_t1{
        font-size: 22px;
        margin: 60px 0 10px 0;
    }
    .sot_t2{
        font-size: 14px;
        line-height: 26px;
        margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
    }
    .soluten_chen{
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .solut_cht_title_1{
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
    }
    .solut_cht_title_1:nth-of-type(2n){
        margin-right: 0;
    }
    .solut_hovhent img{
        height: 110px;
        border-radius: 4px;
    }
    .solut_tie1{
        font-size: 14px;
        font-weight: bold;
        margin: 10px 0 0 0;
    }
    .solut_hen{
        width: 30px;
        margin: 10px auto;
    }
    .solut_tie2
    {
        font-size: 14px;
         margin: 0;
           width: 100%;
           padding: 0;
    }
    .soluten_chen2{
       margin-top: 20px;
       flex-wrap: wrap;
        justify-content: space-between;
    }
    .chent_tlite_7{
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
        margin-bottom: 20px;
    }
    .chent_tlite_7:nth-of-type(2n){
        margin-right: 0;
    }
    .chent_tlite_7 img{
        border-radius: 4px;
        height: 110px;
    }
    .chent_tlite_10{
        font-size: 14px;
        margin: 0;
    }
    .chent_tlite_8{
        font-size: 14px;
        font-weight: bold;
        margin: 10px 0 0 0;
    }
    .stay_infor_title{
        font-size: 22px;
        margin-bottom: 8px;
    }
    .stay_infor_title2{
        font-size: 14px;
        margin: 0;
    }
    .stay_infor_binlin{
        width: 92%;
        margin: 30px auto 0;
        flex-wrap: wrap;
    }
    .stay_infor_binl_title{
        border-radius: 20px;
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .stay_infor_binl_title:nth-of-type(2n){
        margin-right: 0;
    }
    .stay_infor_binlin .active{
        font-size: 14px !important;
    }
    .Stay_informed_chten{
        width: 92%;
        margin: 20px auto 0;
        flex-wrap: wrap;
    }
    .Stay_informed_c1{
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .c1_batb2{
        transform: translate(-50%,0);
        width: calc(100% - 36px);
        padding: 0 18px 25px 18px;
    }
    .c1_tit1{
        font-size: 14px;
    }
    .c1tit2{
        font-size: 16px;
        line-height: 26px;
        height: 52px;
        margin: 14px 0 10px 0;
    }
    .c1tit3{
        font-size: 14px;
    }
    .c1tit4{
        font-size: 14px;
        margin-top: 20px;
    }
    .Stay_informed{
        margin: 40px auto 0;
        padding: 60px 0;
    }
    .stay_infor_title3{
        padding: 0;
        width: 92%;
        margin: 0 auto;
    }
    .Transform_our_tit3{
    font-size: 14px;
    width: 250px;
    height: 40px;
    line-height: 40px;
    }
    .EnteringWeiyu_2{
                font-size: 16px;
                /*margin-bottom: 70px;*/
    }
    .enter_brne{
        width: calc((100% - 20px) / 2);
        margin-right: 10px;
        margin-bottom: 10px;
        height: 38px;
    }
    .enter_brne:nth-of-type(2n){
        margin-right: 0;
    }
    .enter_brne_chten{
        font-size: 14px;
        line-height: 38px;
    }
    .EnteringWeiyu_3{
            flex-wrap: wrap;
           margin-top: 30px;
    }
    .EnteringWeiyu_1{
        font-size: 22px;
        margin-bottom: 8px;
        text-align: center;
    }
    .EnteringWeiyu_2{
        font-size: 14px;
        text-align: center;
        margin-bottom: 0;
    }
    .enter_dic{
            font-size: 14px;
            line-height: 26px;
            width: 100%;
            margin-top: 10px;
    }
    .mdsgty .enter_dic{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
    .ordb_gai{
        margin-top: 40px !important;
    }
    .partner{
        margin: 0;
        padding: 20px 0 60px 0;
    }
    .partner_title{
            font-size: 22px;
            margin: 0 auto;
            width: 92%;
    }
    .partner_title_1{
            width: 92%;
            font-size: 14px;
            line-height: 26px;
            margin: 8px auto 0;
    }
    .partent_chen{
            margin-top: 30px;
    }
    .cht-tj{
        width: 200px;
    height: 80px;
    }
    .infet_2 {
      padding: 25px 18px;
      /*min-height: 450px;*/
      width: calc(100% - 36px);
    }
    .clinthinmg{
        width: 100%;
        margin: 0px auto;
    }
    .inftformed_1{
        font-size: 14px;
    }
    .inftformed_2{
        font-size: 16px;
        margin: 16px 0 14px 0;
    }
    .inftformed_3{
        font-size: 14px;
        line-height: 26px;
        height: 52px;
        height: auto;
    }
    .inftformed_4{
        font-size: 14px;
    }
    .nonet_foote{
        display: none;
    }
    .stay_infor_bei{
        border-radius: 8px;
        padding: 15px 18px;
        justify-content: space-between;
        width: calc(100% - 36px);
    }
    .stay_infor_bei:not(:first-of-type){
        margin-top: 20px;
    }
    .stay_infor_1{
        margin: 0;
        width: 69px;
        height: auto;
    }
    .stay_infor_2{
        font-size: 28px;
    }
    .stay_infor_3{
        font-size: 14px;
    }
    .stay_infor_4{
        width: calc(100% - 69px - 15px);
    }
    .stay_infor_5{
        font-size: 16px;
        margin: 0;
        width: 100%;
    }
    .stay_infor_6{
        padding: 0;
        margin: 0;
        font-size: 14px;
        height: 52px;
        line-height: 26px;
        margin: 5px 0 12px 0;
    }
    .stay_infor_7{
        font-size: 14px;
        margin: 0;
    }
    .footer{
       height: auto;
       padding-top: 35px;
    }
    .foote_chetn{
       padding: 0;
       margin: 0;
       width: 92%;
       margin: 0 auto;
    }
    .bolke_foote{
        width: 100%;
    }
    .fort_lin{
        margin-bottom: 10px;
    }
    .fort_lin>img{
        width: 25px !important;
        height: auto !important;
        font-size: 18px;
    }
    .chweix .linthan4{
        width: 80px;
        height: max-content;
        border-radius: 4px;
        padding: 5px;
        top: unset;
        bottom: calc(100% + 10px);
        left: 0;
        /*transform: translateX(-50%);*/
    }
    .linthan4 > img{
        width: 100%;
    }
    .fort_hst{
        font-size: 14px;
        line-height: 26px;
    }
    .fort_hst_log{
        justify-content: space-between;
        margin-top: 25px;
    }
    .fort_hst_log div{
        width: 36px;
        height: 36px;
        margin-top: 0;
        margin-right: 0;
    }
    .dibu{
        font-size: 14px;
        position: unset;
        width: 92%;
        margin: 0 auto;
        padding: 10px 0;
        transform: unset;
        line-height: unset;
        height: auto;
        text-align: center;
        margin-top: 20px;
    }
    .contentlunb{
        width: 100%;
        height: 430px;
        margin-top: 15px;
    }
    .produ_pnteh_chet{
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .produ_pnteh_chet img{
        margin-top: 0 !important;
        max-height: 80%;
        max-width: 80%;
        width: auto;
    }
    .Transform_our{
        padding: 50px 0 60px 0;
    }
    .Transform_our_tit1{
        width: 92%;
        margin: 0 auto;
        font-size: 22px;
    }
    .Transform_our_tit2{
        font-size: 14px;
        line-height: 26px;
        margin: 22px auto 35px;
        width: 92%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
    }
    .EnteringWeiyu{
       height: auto;
       padding: 60px 0;
    }
    .EnteringWeiyu_title{
        width: 92%;
        margin: 0 auto;
    }
    .staint_3{
            height: auto !important;
    }
    .part{
            margin: 23px 0px 0 0;
    }
    .part.zdsb{
          margin: 23px 0 45px 0;
    }
    .pr_pn_rigt_text{
        font-size: 18px;
        margin-bottom: 10px;
    }
    

}
