/* 全局样式 */
:root {
  --primary-color: #00a0e9;
  --secondary-color: #333;
  --text-color: #666;
  --light-bg: #f5f5f5;
  --white: #fff;
}
/*@font-face {*/
/*  font-family: 'Alibaba-PuHuiTi';*/
/*  src: url("//at.alicdn.com/wf/webfont/pSiwMDF2W3Tc/wHry57aV9Tg1.woff2") format("woff2"),*/
/*  url("//at.alicdn.com/wf/webfont/pSiwMDF2W3Tc/NB8xLHr76R7g.woff") format("woff");font-variation-settings: normal;font-display: swap;*/
/*  font-weight: 400; */
/*  font-style: normal;*/
/*  font-display: swap; */
/*}*/
@font-face {
  font-family: "Alibaba-PuHuiTi";font-weight: 400;src: url("//at.alicdn.com/wf/webfont/czfD65OWgrnb/rlCHW4IEocKW.woff2") format("woff2"),
  url("//at.alicdn.com/wf/webfont/czfD65OWgrnb/Gw2Qc9eMyfBr.woff") format("woff");font-variation-settings: normal;font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  line-height: 1.6;
  color: #08294a;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

/*img {*/
/*  transition: transform 0.3s ease-in-out;*/
  /* 添加过渡效果，使放大过程更加平滑 */
/*}*/

img:hover {
  /*transform: scale(1.1);*/
  /* 当鼠标悬停时，将图片放大 */
  overflow: hidden;
}

/*.news-banner img:hover {*/
/*  transform: scale(1);*/
/*}*/

/*手机版隐藏*/
.navbar-mobile,
.navMenu {
  display: none;
}

/* 导航栏样式 */
#header {
  width: 100%;
  height: 83px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: #eef4f8;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 83px;
}

.navbar-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 0 20px;*/
  position: relative;
}

.logo {
  margin-left: 0;
  
}

.logo img {
  width: 121px;
  height: 55px;
  object-fit: contain;
}

.logo img:hover {
  transform: scale(1);
}
.preview-img{
    max-height: 331px;
}
.nav-links {
  /*width: 860px;*/
  width: 61.5%;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  position: absolute;
  left: 17.1%;
  transform: none;
  height: 83px;
  line-height: 83px;
}

.nav-links li {
  /* margin: 0 15px; */
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #303030;
  padding: 0.5rem 0;
  /*transition: color 0.3s;*/
  font-size: 18px;
  font-weight: 400;
  line-height: 1px;
  white-space: nowrap;
  position: relative;
  display: inline-block;
}

/* 选中状态的样式 */
.nav-links li a.active {
  color: #01a7ac !important;
}

/* 选中状态下的横线 */
.nav-links li.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 40%;
  /* 将左偏移设置为40% */
  width: 35px;
  height: 4px;
  background-color: #01a7ac;
  transform: translateX(-40%);
  /* 向左移动40%以居中 */
}

.nav-links li.nav a.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.dropdown-icon {
  width: 7px;
  height: 4px;
  vertical-align: middle;
}

/*子导航*/
.nav-links li.nav .itemList {
  min-width: 125px;
  position: absolute;
  top: 81px;
  background: rgb(237, 244, 248);
  display: none;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  /*padding: 0 10px;*/
  left: 50%;
  /* 水平居中 */
  transform: translateX(-54%);
  /* 向左移动一半宽度 */
}

.nav-links li.nav .itemList li {
  font-size: 18px;
  height: 53px;
  width: 100%;
  margin: 0;
  line-height: 53px;
  text-align: center;
  border-bottom: 1px solid #e0e5ee;
  padding: 0 10px;
}

.nav-links li.nav .itemList li a {
  width: 100%;
  color: #6c798d;
}

.nav-links li.nav .itemList li:hover {
  width: 100%;
  background: white;
}

.nav-links li.nav .itemList li a:hover {
  color: #0ea49d;
  background: white;
  width: 100%;
}

.language {
  margin-right: 0;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.language .divider {
  width: 1px;
  height: 19px;
  background-color: #afafaf;
  margin: 0 15px;
}

.language .lang-btn {
  text-decoration: none;
  color: #08294a;
  padding: 0.5rem;
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
}

.language .search-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.language .lang-btn.has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.language .globe-icon {
  width: 16px;
  height: 16px;
}

.language .dropdown-icon {
  width: 7px;
  height: 4px;
}

.language_pc_box {
  width: 110px;
  position: absolute;
  top: 72px;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 40px;
  margin-right: 95px;
}

.language_pc_box a {
  padding-left: 25px;
  color: #08294a;
  border-bottom: 1px solid #dcdbdb;
}

.language_pc_box a:hover {
  background: #f7f7f7;
  color: #01a7ac;
}

/* 轮播图样式 */

.hero-slider {
  height: 705px;
  background: url('/images/hero-bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
}

.slide-content {
  color: var(--white);
  max-width: 600px;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: normal;
}


#iteList .itList {
    position: absolute;
    top: 0;
    left: 50px;
    transform: translateX(82%);
    background-color: rgb(237, 244, 248);
    display: none;
    min-width: 200px;
}


/* 关于我们部分 */
.container {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 88px;
}

.image-section {
  display: flex;
}

.image-section img:hover {
  transform: scale(1);
}
.updown {
            margin: 50px 0;
            padding: 30px 0;
        }

        .updown-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .updown-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .updown-prev,
        .updown-next {
            width: 45%;
        }

        .updown-prev {
            text-align: left;
        }

        .updown-next {
            text-align: left;
        }

            .updown-next .updown-label {
                justify-content: flex-end;
            }

            .updown-next .updown-date {
                text-align: right;
            }

        .updown-label {
            color: #6c798d;
            font-size: 16px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .updown-prev .updown-label img {
            margin-right: 8px;
            width: 16px;
            height: 16px;
        }

        .updown-next .updown-label img {
            margin-left: 8px;
            width: 16px;
            height: 16px;
            transform: rotate(180deg);
        }

        .updown-link {
            text-decoration: none;
            display: block;
        }

        .updown-title {
            color: #08294a;
            font-size: 18px;
            margin-bottom: 8px;
            line-height: 1.8;
            min-height: 57px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: normal;
        }

        .updown-date {
            color: #6c798d;
            font-size: 14px;
        }
        
        
.image1 {
  max-width: 300px;
  height: 459px;
  margin-top: 108px;
}

.images-right {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}

.image2 {
  max-width: 296px;
  height: 260px;
  margin-top: 66px;
  margin-bottom: 40px;
}

.image3 {
  max-width: 256px;
  height: 201px;
}

.content-section {
  width: 50%;
  margin-left: 64px;
}

.content-section h2 {
  font-weight: 400;
  font-size: 30px;
  color: #08294a;
  margin-top: 106px;
  margin-bottom: 30px;
}

.content-section p {
  font-weight: 400;
  font-size: 16px;
  color: #303030;
  line-height: 31px;
  margin-bottom: 40px;
  width: 92%;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
}

.icon-con {
  width: 41px;
  height: 41px;
  background: #ececec;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 34px;
}

/* .buttons img:hover {
  transform: scale(1);
} */
.buttons a {
  width: 272px;
  height: 64px;
  background: #f7f7f7;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #8d8d8d;
  font-size: 22px;
  line-height: 64px;
}

.buttons a:nth-child(1),
.buttons a:nth-child(3) {
  margin-right: 28px;
}

.buttons a:hover {
  background: #22abad;
  color: white;
  box-shadow: 0 0 10px 3px rgba(22, 47, 90, 0.3);
  /* 绿色虚影效果 */
}

.icon {
  width: 20px;
  height: 20px;
}

/* 产品与支持 */
.container-pro {
  background-image: url('/images/bj.png');
  background-size: cover;
  background-position: center;
  color: white;
}

.con-fea {
  display: flex;
  /*align-items: center;*/
  max-width: 1400px;
  margin: 0 auto;
}

.con-fea .content {
  width: 33%;
  text-align: center;
  margin-bottom: 40px;
}

.con-fea h2 {
  /*width: 159px;*/
  font-size: 30px;
  color: #ffffff;
  margin-top: 185px;
  margin-bottom: 51px;
  text-align: left;
  font-weight: normal;
}

.con-fea p {
  width: 100%;
  font-size: 16px;
  color: #ffffff;
  line-height: 31px;
  text-align: left;
}

.features {
  width: 58%;
  display: flex;
  justify-content: space-between;
  margin: 212px auto 218px 6%;
}

.feature-item {
  position: relative;
  width: 234px;
  height: 309px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  /* 确保内容在伪元素之上 */
  border: none;
}

.feature-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  opacity: 0.55;
  z-index: -1;
  /* 将伪元素置于背景层 */
}

.feature-item .icon {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 1px solid #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 33px;
}

.feature-item .icon img {
  width: 50px;
}

.feature-item .line {
  width: 35px;
  height: 4px;
  background: #0ea49d;
  border-radius: 2px;
}

.feature-item .name {
  font-size: 20px;
  color: #ffffff;
  margin-top: 33px;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

.feature-item:hover::before {
  border: none;
}

.feature-item:hover {
  border: 1px solid #0ea49d;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 0 10px 3px rgba(1, 167, 172, 0.3);
  /* 绿色虚影效果 */
}

/* 新闻中心 */
.news {
  width: 100%;
  padding: 35px 0 44px 0;
  background: #eef4f8;
  color: #08294a;
}

.news_container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.news h2 {
  text-align: center;
  margin-bottom: 47px;
  font-weight: normal;
  font-size: 30px;
}

.news-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  background: #f6f9fb;
  width: 100%;
  height: 65px;
}

.tab-btn {
  width: 217px;
  border: none;
  background: none;
  color: #08294a;
  cursor: pointer;
  font-size: 22px;
  text-align: center;
  line-height: 75px;
}

.tab-btn.active {
  line-height: 50px;
  color: #01a7ac;
  background: #eef4f8;
  height: 53px;
  margin-top: 11px;
  background-image: url('/images/xiala_green.png');
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}

.tab-btn.active img {
  margin-left: 28px;
  margin-bottom: 4px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 99%;
  margin: 0 auto;
}

.news-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 11px;
  /*transition: all 0.3s linear;*/
}

.news-card .news_img {
  width: 100%;
  max-height: 280px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.news-card:nth-child(4) {
  display: none;
}

.news-card img {
  width: 100%;
  max-height: 280px;
  /*object-fit: cover;*/
  overflow: hidden;
}

.date-overlay {
  position: absolute;
  top: 0px;
  right: 10px;
  background-image: url('/images/date.png');
  background-size: cover;
  color: white;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  width: 85px;
  height: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99;
}

.date-overlay label.title {
  font-size: 30px;
  margin-top: -5px;
}

.date-overlay label.date_des {
  margin-top: -6px;
}

.news-content {
  padding: 27px 37px;
  display: flex;
  flex-direction: column;
  background: white;
  margin-top: -11px;
}

.date {
  font-size: 16px;
  /*font-weight: bold;*/
  background-image: url('/images/time.png');
  background-repeat: no-repeat;
  padding-left: 25px;
  background-position: 0 4px;
  background-size: 17px;
}

.news-content label {
  width: 100%!important;
  min-height: 65px!important;
  margin-top: 18px!important;
  font-size: 16px!important;
  line-height: 31px!important;
  overflow: hidden!important;
    display: -webkit-box!important;
  -webkit-box-orient: vertical!important; 
  -webkit-line-clamp: 2!important; 
  text-overflow: ellipsis!important; 
}

.read-more {
  position: relative;
  color: #0f2c49;
  width: 100px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin-right: 27px;
  margin-top: 35px;
  margin-left: 263px;
  border: 1px solid #08294a;
  font-size: 14px;
  border-radius: 8px;
}
.read-more:hover{
    border: none!important;
}
/*.news-card:hover {*/
/*  box-shadow: -10px 10px 10px -5px rgba(214, 228, 239, 0.7),*/
    /* 左侧阴影 */
/*    10px 5px 10px -5px rgba(214, 228, 239, 0.7),*/
    /* 右侧阴影 */
/*    0 10px 10px -5px rgba(214, 228, 239, 0.7);*/
  /* 下方阴影 */
/*}*/

.news-card:hover .read-more {
  background: #0ea49d;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  cursor: url('/images/pointer.png'), auto;
    border: none!important;
}

.news-card:hover img {
  transform: scale(1.1);
   transition: transform 0.3s ease;
}

.view_more {
  width: 159px;
  margin: 38px auto 42px auto;
  border: 1px solid #01a7ac;
  background: white;
  line-height: 50px;
  text-align: center;
  border-radius: 26px;
}

.view_more a {
  font-size: 18px;
  color: #01a7ac;
  cursor: pointer;
  text-decoration: none;
}

.view_more:hover {
  background: #0ea49d;
}

.view_more:hover a {
  color: #ffffff;
}

/* 创新与品质 */
.innovation {
  padding: 47px 0;
}

.innovation_container {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 16px;
}

.innovation h2 {
  text-align: center;
  margin-bottom: 72px;
  font-weight: normal;
  font-size: 30px;
}

.innovation-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 81px;
  margin-bottom: 106px;
  overflow: hidden;
}

.item-image-conta {
  width: 100%;
  position: relative;
  border-radius: 10px;
  height: 0;
  padding-bottom: 59%;
  overflow: hidden;
}

.item-image-conta img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.text-content {
  width: 89%;
  line-height: 31px;
  font-size: 16px;
}

.text-content h3 {
  font-size: 22px;
  font-weight: normal;
  margin: -2px auto 32px auto;
}

.text-content .btn {
  display: block;
  height: 35px;
  width: 100px;
  border: 1px solid #08294a;
  background: white;
  color: #08294a;
  font-size: 14px;
  margin-left: auto;
  text-decoration: none;
  line-height: 35px;
  border-radius: 8px;
  text-align: center;
  margin-top: 35px;
}

.innovation-item:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  /* 当鼠标悬停时，将图片放大 */
}

.innovation-item:hover .text-content .btn {
  background: #0ea49d;
  color: white;
  border: 1px solid #0ea49d;
}

.text-content .btn:hover {
  background: #0ea49d;
  color: white;
  border: 1px solid #0ea49d;
}

.innovation-item_2 .text-content {
  margin-left: 30px;
}

.innovation-item:last-child {
  margin-bottom: 28px;
}

/* 页脚 */
footer {
  background: #13223d;
  color: var(--white);
  padding-top: 65px;
  padding-bottom: 41px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 26% 69.5%;
  gap: 4.5%;
  margin-bottom: 3rem;
  overflow: hidden;
}

.footer-logo-img {
  height: 89px;
  margin-bottom: 50px;
  margin-left: 23%;
}

.footer-logo-img:hover {
  transform: scale(1);
}

.brand-dropdown {
  background: #192a49;
  width: 100%;
  display: flex;
  height: 39px;
  line-height: 39px;
}

.brand-dropdown button {
  background: #192a49;
  color: #6c7a8d;
  border: none;
  width: 90%;
  text-align: left;
  cursor: pointer;
  margin-bottom: 40px;
  border-radius: 8px;
  padding-left: 16px;
  line-height: 39px;
}

.brand-dropdown label {
  background-image: url('/images/double.png');
  width: 13px;
  height: 13px;
  margin-top: 13px;
  margin-right: 21px;
  background-size: 13px;
}

.logos {
  width: 92%;
  margin: 0 auto;
  margin-top: 41px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.logos div {
  width: 33.33%;
}

.logos img {
  height: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8.5%;
  margin-top: 8px;
  overflow: hidden;
}

.footer-column {
  white-space: nowrap;
}

.footer-column h4 {
  margin-bottom: 10px;
  position: relative;
  
}

/*.footer-column h4::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: -12px;*/
/*  left: 0;*/
/*  width: 42px;*/
/*  height: 2px;*/
/*  background-color: #0ea49d;*/
/*}*/

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  line-height: 33px;
  height: 33px;
}

.footer-column ul li a {
  color: #6c7a8d;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid #202e48;
}

.contact-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c7a8d;
}

.alibaba-logo img {
  height: 50px;
}

/* 菜单按钮样式 */
.menu-toggle {
  display: none;
  /* 默认隐藏菜单按钮 */
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

/* 新闻 */
.container-news {
  width: 100%;
  height: 100%;
  background-image: url('/images/news_bg.png');
  background-size: cover;
  background-position: top center;
  margin-top: -7px;
}

.content-news {
  padding-top: 52px;
}

.news-list {
  margin: 0 auto;
  max-width: 1400px;
  overflow: visible;
}

.news-item {
  background-color: white;
  display: flex;
  margin: 0 auto;
  margin-bottom: 45px;
  padding: 13px;
  border-radius: 5px;
  color: #303030;
  /*transition: all 0.3s linear;*/
}

.news-list .news-item:hover {
  /* 保持水平和垂直偏移为0，确保阴影四周均匀分布 */
  box-shadow: 0px 0px 12px 4px rgba(22, 47, 90, 0.3);  
  color: #303030;
}


.news-item .news-item-img {
  width: 433px;
  height: 287px;
  overflow: hidden;
  border-radius: 5px;
}

.news-item img {
  width: 100%;
  height: 100%;
}

.news-item img:hover {
  /*transform: scale(1);*/
}

.year-date {
  margin-left: 52px;
  margin-right: 25px;
  margin-top: 35px;
  display: flex;
  flex-direction: column;
}

.year {
  height: 20px;
  font-family: Arial;
  font-size: 26px;
  line-height: 36px;
}

.date1 {
  margin-top: 11px;
  height: 19px;
  font-family: Arial;
  font-size: 23px;
  line-height: 36px;
}

.news-line {
  width: 53px;
  height: 1px;
  background-color: #c3c3c3;
  margin-top: 50px;
  margin-right: 25px;
}

.des-tit {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  max-width: 49%;
  overflow: hidden;
}

.tit {
  width: 657px;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.des {
  width: 672px;
  height: 68px;
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  margin-top: 24px;
  max-width: 100%;
}

.news-more {
  width: 100px;
  height: 35px;
  
  border: 1px solid #08294a;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color:black;
  margin-top: 55px;
  line-height: 35px;
}
.news-more:hover{
    background-color: #01a7ac;
    color:white;
    border: none;
}
.news-more img {
  width: 18px;
  height: 13px;
  margin-left: 7px;
}

/*分页*/
.pages {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
}

.prev,
.next {
  width: 33px;
  height: 33px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dddddd;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.prev img {
  width: 11px;
  height: 11px;
}

.next img {
  width: 11px;
  height: 11px;
}

.page {
  width: 33px;
  height: 33px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dddddd;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #8a8a8a;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
  margin-left: 11px;
}

.page:hover {}

.next {
  margin-left: 11px;
}

.pages .active {
  width: 33px;
  height: 33px;
  background: #01a7ac;
  border-radius: 8px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 33px;
}

/*分页*/
.news-tabs2 {
  display: flex;
  justify-content: center;
  margin-bottom: 49px;
  width: 100%;
  height: 65px;
}

.tab-btn2 {
  width: 217px;
  border: none;
  background: none;
  color: #08294a;
  cursor: pointer;
  font-size: 22px;
  text-align: center;
  line-height: 73px;
}

.tab-btn2 a {
  color: #08294a;
}

.active2 {
    line-height: 50px;
    /* border: 2px solid #01a7ac; */
   
    color: #01a7ac;
    /* background: #eef4f8; */
    height: 53px;
    margin-top: 11px;
    /* background-image: url(/images/xiala_green.png); */
    /* background-repeat: no-repeat; */
    /* background-position: calc(100% - 20px) center; */
    border-bottom: 5px solid #01a7ac;
}

.active2 a {
  color: #01a7ac;
}

.tab-btn2 .active2 img {
  margin-left: 28px;
  margin-bottom: 4px;
}

.tab-btn2:hover a {
  color: #01a7ac;
}

.news-banner {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.news-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/*新闻详情页*/
.container-newsdetails {
  max-width: 1400px;
  margin: 0 auto;
}

.top-det {
  width: 100%;
  /*height: 168px;*/
  background-image: url('/images/line1.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 39px;
}

.title-det {
  font-size: 25px;
  color: #08294a;
  text-align: center;
  max-width:900px;
  margin:0 auto;
}

.des-det {
  font-size: 18px;
  color: #464646;
  text-align: center;
  margin-top: 40px;
}

.det-det {
  width: 1170px;
  font-size: 18px;
  color: #303030;
  /*line-height: 40px;*/
  line-height:1;
  margin: 0 auto;
  margin-top: 58px;
  max-width: 100%;
  
}
.det-det p{
    font-family: "Alibaba-PuHuiTi" !important;
    font-size: 16px;
}

.det-det img {
  /*display: block;*/
  max-width: 100%;
  /*margin: 0 !important;*/
  
}

.des-det label {
  cursor: pointer;
}
.det-det table{
    width: auto !important;
}
.det-det table td{
    width: auto !important;
}
.des-det label.active {
  font-size: 18px;
  color: #0f2c49;
}

/* 不同字体大小的样式 */
.det-det.large p {
  font-size: 20px;
}

.det-det.medium p {
  font-size: 18px;
}

.det-det.small p {
  font-size: 16px;
}

.bottom-news {
  width: 100%;
  height: 670px;
  background-image: url(/images/bgbg1.jpg);
  margin-top: 70px;
  padding-top: 45px;
}

.bottom-news img {
  /*width: 1400px;*/
  height: 54px;
  position: relative;
  transform: scale(1);
  max-width: 100%;
}

.bottom-more {
  font-size: 18px;
  color: #069d95;
  position: absolute;
  margin-top: -49px;
  margin-left: 65px;
}

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

.bottom-top1 {
  margin-top: 70px;
  margin-bottom: 33px;
}

.bottom-item {
  width: 48.9%;
  height: 220px;
  background: #ffffff;
  border-radius: 5px;
}

.item-top {
  display: flex;
  align-items: center;
  margin-left: 34px;
  margin-right: 7px;
  padding-top: 34px;
}

.item-top img {
  /*width: 17px;*/
  height: 16px;
  margin-right: 8px;
}

.bottom-item-tit {
  font-size: 20px;
  color: #303030;
  margin-left: 34px;
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.bottom-item-des-more {
  display: flex !important;
    align-items: center !important;
}

.bottom-item-des-more img {
  width: 54px;
  margin-top: 20px;
  height: auto;
}

.bottom-item-des {
  width: 537px;
  font-size: 14px;
  color: #8a8a8a;
  line-height: 23px;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-left: 34px;
  margin-top: 20px;
  margin-right: 35px;
}

/*联系我们页面*/
.contact-top {
  width: 100%;
  background-color: #f5f5f5;
  padding-bottom: 50px;
}

.contact-us {
  font-size: 30px;
  color: #303030;
  padding-top: 52px;
  margin-bottom: 42px;
  display: flex;
  justify-content: center;
}

.contact-det {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-det .left-img-box {
  width: 40.3%;
  height: auto;
  overflow: hidden;
}

.contact-det img {
  width: 100%;
  height: auto;
}

.con-right {
  display: flex;
  margin-left: 8%;
  width: 60.7%;
}

.con-right img {
  width: 70px;
  height: 70px;
}

.left-img {
  margin-left: 74px;
}

.right-img {
  margin-left: 140px;
}

.con-rig-tit {
  font-size: 18px;
  color: #303030;
  margin-left: 83px;
  margin-top: 22px;
}

.sec-tit {
  margin-left: 148px;
}

.con-rig-left {
  /* width: 66.6%; */
  overflow: hidden;
}

.con-rig-rig {
  /* width: 33.3%; */
  overflow: hidden;
}

.con-rig-left-det {
  width: 100%;
  font-size: 16px;
  color: #303030;
  line-height: 36px;
  margin-top: 40px;
}

.con-rig-rig-det {
  /*width: 100%;*/
  font-size: 16px;
  color: #303030;
  margin-top: 40px;
  line-height: 36px;
  margin-left: 84px;
}

.zaixianzixun {
  font-size: 30px;
  color: #303030;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.zixunlist {
  background-image: url('/images/contact_bg.png');
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.zixun-item {
  width: 100%;
  background-color: #ecf4fa;
  margin-top: 50px;
  padding-bottom: 12px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.zixin-item-list {
  min-width: 50%;
  display: flex;
  flex-direction: column;
}
.clear-top{
    /*margin-top: -349px;*/
}
.zixunlist .zixin-item-list:nth-child(odd) {
  align-items: flex-start;
}

.zixunlist .zixin-item-list:nth-child(even) {
  align-items: flex-end;
}

.zx-item-top {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background-color: #01a7ac;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 22px;
}

.zx-item-top img {
  width: 26px;
  height: 26px;
}

.zx-top-tit {
  font-size: 18px;
  color: #ffffff;
  margin-left: 11px;
}

.zx-item-det2 {
    min-height: 90px;
  width: 89%;
  font-size: 16px;
  color: #303030;
  line-height: 30px;
  margin: 0 auto;
  margin-top: 26px;
  margin-bottom: 24px;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.zx-more {
  padding-left: 13px;
    padding-right: 13px;
  font-size: 14px;
  color: #303030;
  line-height: 35px;
  position: relative;
  margin-left: 83.5%;
  border: 1px solid #08294a;
  border-radius: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
  width:100px;
  height: 35px;
}

.zx-arrows {
  display: flex;
  justify-content: center;
  margin-top: 42px;
  margin-bottom: 44px;
}

.zx-arrows a:first-child {
  margin-right: 74px;
}

.zx-arrows img {
  width: 62px;
  height: 62px;
}

.swiper-button-nexta {
  background: url('/images/arrow-rig.png') no-repeat center;
  background-size: 100% 100%;
  width: 62px;
  height: 62px;
  cursor: pointer;
  border-radius: 50%;
}

.swiper-button-preva {
  background: url('/images/arrowleft.png') no-repeat center;
  background-size: 100% 100%;
  width: 62px;
  height: 62px;
  cursor: pointer;
  border-radius: 50%;
  margin-right: 20px;
}

.zx-bottom {
  width: 100%;
  height: 694px;
  background-color: #01a7ac;
  padding-top: 44px;
  overflow: hidden;
}

.container-contact {
  max-width: 1400px;
  margin: 0 auto;
}

.zx-detail {
  width: 99%;
  height: 628px;
  background: #ecf4fa;
  border-radius: 8px;
  margin: 0px auto;
  overflow: hidden;
}

.want-zx {
  display: flex;
  justify-content: center;
  font-size: 30px;
  color: #000000;
  padding-top: 35px;
  margin-bottom: 21px;
}

.want-des {
  font-size: 20px;
  color: #000000;
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.want-dets {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.want-name {
  font-size: 16px;
  color: #000000;
}

.want-inp {
  margin-left: 10px;
  width: 34.85%;
  height: 48px;
  background: #ffffff;
  border-radius: 8px;
  border: none;
  box-sizing: border-box;
  padding-left: 24px;
}

.want-dets-textarea {
  display: flex;
  justify-content: center;
}

.want-dets-textarea .want-name {
  margin-top: 22px;
}

.want-textarea {
  margin-left: 10px;
  width: 34.85%;
  min-height: 115px;
  background: #ffffff;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  color: #979696;
  padding-top: 22px;
  padding-left: 24px;
  box-sizing: border-box;
  margin-right: 10px;
}

.zx-submit {
  width: 34.85%;
  height: 45px;
  margin-left: 35.55%;
  margin-top: 25px;
  border: none;
  background-color: #01a7ac;
  font-size: 18px;
  color: #ffffff;
  border-radius: 5px;
}

.zx-more:hover {
  background: #0ea49d;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  padding-top: 6px;
  padding-bottom: 6px;
  border: none;
}

/*公司简介*/
.container-jianjie {
  max-width: 1400px;
  margin: 0 auto;
}

.xueshu {
  width: 100%;
  font-size: 30px;
  color: #303030;
  text-align: center;
  padding-top: 43px;
  padding-bottom: 43px;
}

.container-jianjie p {
  width: 94.1%;
  font-size: 16px;
  color: #000000;
  line-height: 36px;
  margin: 0 auto;
}

.container-jianjie p.jianjie2 {
  width: 53.6%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 55px;
}

.container-jianjie p.jianjie2 img {
  width: 45%;
}

.container-jianjie p.jianjie3 {
  margin: 0 auto;
  margin-top: 55px;
  margin-bottom: 177px;
}

/*创新与品质*/
.chuangxin-top {
  width: 100%;
  background-color: #bad9ee;
  margin-top: -7px;
  overflow: hidden;
}

.top-tit {
  font-size: 30px;
  color: #303030;
  text-align: center;
  box-sizing: border-box;
  padding-top: 45px;
}

.qianyan {
  width: 100%;
  background-color: #e4f3fd;
  padding-bottom: 29px;
}

.qianya-tit {
  font-size: 30px;
  color: #303030;
  text-align: center;
  box-sizing: border-box;
  padding-top: 45px;
}

.qianyanlist {
  max-width: 1400px;
  display: flex;
  justify-content: flex-start;
  gap:35px;
  margin: 0 auto;
  margin-top: 50px;
}

.qianyan-item {
  width: 249px;
  
  
}

.qianyan-item img {
  width: 100%;
}

.qianyan-item-des {
  width: 200px;
  height: auto;
  font-size: 16px;
  color: #303030;
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
  line-height: 19px;
  display: -webkit-box; /* 将元素作为弹性盒模型显示（webkit内核专用） */
  -webkit-line-clamp: 4; /* 最多显示4行 */
  -webkit-box-orient: vertical; /* 垂直排列子元素（必须设置，否则不生效） */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 超出部分显示省略号（部分浏览器依赖此属性） */
  cursor: pointer;
  
}

.qianyan-a {
  text-decoration: none;
}

.qianyan-more {
  width: 160px;
  height: 50px;
  box-sizing: border-box;
  border: 2px solid #01a7ac;
  background-color: white;
  border-radius: 24px;
  font-size: 18px;
  color: #01a7ac;
  text-align: center;
  line-height: 46px;
  margin: 0 auto;
  margin-top: 60px;
}

.qianyan-more:hover {
  background: #0ea49d;
  color: white;
}

.keyan-news {
  width: 100%;
  background-color: #bad9ee;
  box-sizing: border-box;
  padding-top: 45px;
  padding-bottom: 36px;
}

.keyan-news-tit {
  font-size: 30px;
  color: #303030;
  text-align: center;
  margin-bottom: 45px;
}

.keyan-newslist {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.keyan-newsitem {
  width: 30.8%;
  background-color: white;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 20px;
  /*transition: all 0.3s linear;*/
 
}

.keyan-newsitem:hover {
  box-shadow: 0px 0px 10px 3px rgba(22, 47, 90, 0.3);
  /* 绿色虚影效果 */
}

.news-pic {
  width: 100%;
  min-height: 306px;
}

.keyan-news-time-data {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 30px;
  padding-top: 17px;
}
.keyan-main{
    width: 100%;
    min-height: 306px;
    /*box-sizing: border-box;*/
    /*padding: 10px 5px;*/
    
}
.keyan-news-time-data img {
  width: 17px;
  height: 17px;
}

.keyan-news-data {
  font-size: 16px;
  color: #08294a;
  margin-left: 10px;
}

.keyan-item-des {
  width: 95%;
  font-size: 16px;
  color: #303030;
  box-sizing: border-box;
  padding-left: 30px;
  margin-top: 15px;
  line-height: 27px;
  margin-bottom: 30px;
  min-height: 81px;
}

.keyan-item-more {
  width: 100px;
  height: 35px;
  font-size: 14px;
  color: #0f2c49;
  text-align: center;
 border: 1px solid #08294a;
  margin-left: 74%;
  line-height: 35px;
  border-radius: 8px;
}

.keyan-item-more:hover {
  background: #0ea49d;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  border: none;
}

.pinzhibaozheng {
  width: 100%;
  background-color: #4f91bf;
  box-sizing: border-box;
  padding-top: 45px;
}

.baozheng-tit {
  font-size: 30px;
  color: #303030;
  text-align: center;
  margin-bottom: 45px;
}

.baozheng-bottom {
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0px 0px 18px 0px #2b7fb8;
  border-radius: 10px;
  border: 1px solid #ffffff;
  margin: 0 auto;
  box-sizing: border-box;

  overflow: hidden;
  width: 98%;
}

.baozheng-bottom-det {
  width: 1300px;
  font-size: 16px;
  color: #303030;
  line-height: 37px;
  margin: 0 auto;
  overflow: hidden;
}

.sage-baozheng {
  width: 359px;
  position: absolute;
  left: 67%;
  margin-top: -410px;
  overflow: hidden;
}

.swiper-main-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.swiper-container {
  width: 1280px;
  padding: 50px 0;
  overflow: hidden;
  margin: 0 auto;
}

.swiper-container .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 250px;
  /*transition: all 0.3s ease;*/
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swiper-container .swiper-slide .slide-image {
  width: 100%;
  height: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.swiper-container .swiper-slide .slide-content {
  width: 100%;
  padding: 20px 10px 10px 10px;
  text-align: center;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

/* 中间大图的样式 */
.swiper-container .swiper-slide-active {
  transform: scale(1.15);
  z-index: 10;
}

.swiper-container .swiper-slide-active .slide-image {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.swiper-container .slide-title {
  font-size: 16px;
  /*font-weight: bold;*/
  margin-bottom: 5px;
  color: #303030;
  opacity: 0;
  /*transition: opacity 0.3s ease;*/
}

.swiper-slide-active .slide-content .slide-title {
  opacity: 1;
}

/*可持续发展*/
.kcx-top {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  width: 543px;
  height: 90px;
  font-size: 26px;
  color: #303030;
  line-height: 90px;
  margin: 0 auto;
}

.kcx-top a {
  color: #303030;
  text-decoration: none;
}

.kcx-active {
  height: 90px;
  border-bottom: 6px solid #0b3c56;
  box-sizing: border-box;
}

.world {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.world:hover {
  transform: scale(1);
}

.kcx_content {
  width: 100%;
  /*background-image: url("/images/world.png");*/
  /*background-size:100% 100%;*/
  /*background-repeat: no-repeat;*/
  height: 100%;
  /*background-position: center;*/
  background: #cbe7f5;
  padding-bottom: 7px;
}

.kcx-shichang {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 63px;
  padding-bottom: 629px;
  background-image: url('/images/world.png');
  background-size: 82.6%;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.kcx-tit {
  font-size: 30px;
  color: #303030;
}

.kcx-des {
  width: 839px;
  font-size: 16px;
  color: #303030;
  text-align: left;
  margin-top: 50px;
}

.kcx-brand {
  overflow: hidden;
  background-color: #447597;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -7px;
  padding-bottom: 78px;
}

.brank-linian {
  font-size: 30px;
  color: #ffffff;
  margin-top: 66px;
  margin-bottom: 66px;
}

.brand-bottom {
 
  background-color: white;
  max-width: 1400px;
  box-sizing: border-box;
  padding-left: 99px;
  padding-top: 66px;
  /*padding-bottom: 81px;*/
  border-radius: 8px;
}

.brand-bottom img {
  width: 365px;
  height: 60px;
}

.brand-des-logo {
  display: flex;
  font-size: 16px;
  line-height: 31px;
}

.brand-des-logo img {
  width: 300px;
  height: 300px;
  margin-top: 40px;
  margin-left: 900px;
}

.brand-des {
  width: 65.2%;
  font-size: 16px;
  color: #000000;
  line-height: 31px;
  margin-top: -33px;
}

.brand-bottom:hover .brand-des {
  color: #353535;
}

.brand-bottom:hover .brand-bottom-img {
  transform: scale(1.05);
}

.kcx-weilai {
  width: 100%;
  min-height: 580px;
  background-color: #eef8fd;
}

.weilai-name {
  font-size: 30px;
  color: #303030;
  text-align: center;
  box-sizing: border-box;
  padding-top: 45px;
}

.weilai-right {
  max-width: 1400px;
  font-size: 16px !important;
  color: #303030;
  display: flex;
  margin: 0 auto;
  margin-top: 70px;
  overflow: hidden;
}

.weilai-right-image {
  width: 667px;
  height: 360px;
 
}

.weilai-right img {
  width: 667px;
  height: 360px;
}

.weilai-rig-right {
  height: 245px;
  margin-left: 38px;
  display: flex;
  flex-direction: column;
  
  font-size: 16px;
  line-height: 31px;
}

.xiaozi {
  font-size: 16px;
  line-height: 31px;
}

/*产品与支持*/
.cailiao-top {
  width: 100%;
  background-color: #f4f8fb;
  padding-top: 60px;
}

.cailiao-top-tit {
  font-size: 30px;
  color: #000000;
  text-align: center;
  margin-bottom: 49px;
}

.cailiao-top-des {
  max-width: 1200px;
  font-size: 16px;
  color: #000000;
  line-height: 28px;
  margin: 0 auto;
  width: 100%;
}

.cailiao-top-des-a {
  color: #069d95;
}

.cailiao-top-bottom {
  max-width: 1400px;
  display: flex;
  margin: 0 auto;
  margin-top: 77px;
  padding-bottom: 60px;
}

.cailiao-bot-item {
  width: 466px!important;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s linear,
    /* 如果有背景色变化 */
    box-shadow 0.3s linear,
    /* 如果有阴影变化 */
    transform 0.5s ease-in-out;
  /* 缩放变换的过渡效果 */
  z-index: 1;
}

.cailiao-bot-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  /* 默认完全透明 */
  pointer-events: none;
  /* 不影响点击 */
  z-index: 1;
  /* 确保在内容之上 */
  transition: background-color 0.3s ease;
}

.cailiao-bot-item:hover::after {
  background-color: rgba(255, 255, 255, 0.7);
  /* 白色半透明遮罩 */
}

.cailiao-bot-item:hover {
  border-radius: 5px;
  z-index: 10;
  box-shadow: 0 6px 10px -2px #c2e1f0,
    /* 更深色的投影，增加深度 */
    0 0 2px 3px #d4e1f3;
  /* 外发光效果，突出元素 */
  transform: scale(1.02);
  /* 轻微放大，增强立体感 */
}

.cailiao-bot-item img {
  width: 100%;
  margin-bottom: -8px;
  min-height: 311px;
  max-height: 311px;
}

.cailiao-bot-item img:hover {
  transform: scale(1);
}

.cailiao-item-wenzi {
  width: 100%;
  height: 297px;
  background-color: #fff;
  box-sizing: border-box;
  padding-top: 80px;
  text-align: center;
  opacity: 1;
  z-index: 2;
  position: relative;
}

/*.cailiao-item-wenzi-hidden{*/
/*  padding-top: 100px;*/
/*  opacity: 0;*/
/*  position: absolute;*/
/*  z-index: 2; !* 确保文字在遮罩层之上 *!*/
/*  top: 0px;*/
/*}*/
.fangdan-cailiao {
  font-size: 25px;
  color: #303030;
  margin-bottom: 25px;
}

.fangdan-des {
  width: 86%;
  height: 63px;
  font-size: 16px;
  color: #646464;
  text-align: center;
  line-height: 23px;
  margin: 0 auto;
}

.cailiao-bot-item {
  overflow: hidden;
  /*transition: all 0.3s linear;*/
}

/* 遮罩层 */
.cailiao-bot-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  /* 默认完全透明 */
  pointer-events: none;
  /* 不影响点击 */
  z-index: 1;
  /* 确保在背景之下但覆盖图片 */
  transition: background-color 0.3s ease;
}

/*.cailiao-bot-item:hover .cailiao-item-wenzi{*/
/*  opacity: 0;*/
/*}*/
/*.cailiao-bot-item:hover .cailiao-item-wenzi-hidden{*/
/*  opacity: 1;*/
/*}*/
/* 实现文字一行一行出现效果 */
.fangdan-cailiao,
.fangdan-des {
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.cailiao-bot-item:hover .fangdan-cailiao,
.cailiao-bot-item:hover .fangdan-des {
  opacity: 1;
  transform: translateY(0px);
}

/* 可以给不同的文本块设置不同的过渡延迟时间，以达到一行一行显现的效果 */
.cailiao-bot-item:hover .fangdan-cailiao {
  transition-delay: 0.2s;
}

.cailiao-bot-item:hover .fangdan-des {
  transition-delay: 0.4s;
}

.cailiao-bot-item:hover .fangdan-cailiao_2 {
  transition-delay: 0.6s;
}

.cailiao-bot-item:hover .fangdan-des_2 {
  transition-delay: 0.8s;
}

.cailiao-hidden-des-a {
  width: 180px;
  border-radius: 23px;
  border: 1px solid #01a7ac;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #ffffff;
  display: block;
  position: absolute;
  z-index: 2;
  margin-top: -172px;
  margin-left: -90px;
  left: 50%;
  background: #01a7ac;
  transform: translateY(20px);
  transition: all 0.6s ease;
  opacity: 0;
}

.cailiao-bot-item:hover .cailiao-hidden-des-a {
  transform: translateY(0);
  transition-delay: 0.4s;
  opacity: 1;
}

.cailiao-hidden-des-a_2 {
  width: 180px;
  border-radius: 23px;
  border: 1px solid #01a7ac;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #ffffff;
  display: block;
  position: absolute;
  z-index: 2;
  margin-top: -172px;
  margin-left: -90px;
  left: 50%;
  background: #01a7ac;
  transform: translateY(20px);
  transition: all 0.6s ease;
  opacity: 0;
}

.cailiao-bot-item:hover .cailiao-hidden-des-a_2 {
  transform: translateY(0);
  transition-delay: 0.2s;
  opacity: 1;
}

.cailiao-bot-item:hover .cailiao_line {
  border-left: 2px solid #01a7ac;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.cailiao-bot-item:hover .cailiao_line_2 {
  border-left: 2px solid #01a7ac;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.sanwei-cailiao {
  width: 100%;
  background-color: #d4e8f2;
  box-sizing: border-box;
  padding-top: 55px;
  padding-bottom: 83px;
}

.sanwei-tit {
  font-size: 30px;
  color: #000000;
  text-align: center;
  margin-bottom: 35px;
}

.sanwei-des {
  max-width: 1232px;
  font-size: 16px;
  color: #000000;
  line-height: 28px;
  margin: 0 auto;
}

.sanweilist {
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 69px;
}

.sanweilist a {
  width: 33.07%;
}

.sanwei-item {
  /* width: 33.07%; */
  background-color: #ebebeb;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-top: 25px;
  margin-top: 8px;
  /*transition: all 0.3s linear;*/
}

.sanwei-item img {
  width: 100%;
  max-height: 303px;
}

.sanwei-item:hover {
  box-shadow: 0 0 5px 5px rgba(194, 211, 233, 0.7);
}

.sanwei-item img:hover {
  transform: scale(1);
}

.sanwei-item-name {
  font-size: 20px;
  color: #000000;
  text-align: center;
}

.cailiao-zhichi {
  width: 100%;
  margin-top: 63px;
  box-sizing: border-box;
  margin-bottom: 68px;
}

.zhichi-beijing {
  max-width: 1400px;
  height: 570px;
  margin: 0 auto;
  background-image: url('/images/zhichibj.png');
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 30px;
  background-position: 20px center;
  overflow: hidden;
}

.zhichi-beijing img {
  width: 100%;
}

.zhichi-left {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: 125px;
  padding-top: 108px;
}

.zhichi-left-tit {
  font-size: 30px;
  color: #ffffff;
}

.zhichi-left-des {
  width: 480px;
  font-size: 16px;
  color: #ffffff;
  line-height: 33px;
  margin-top: 32px;
}

.zhichi-left-a {
  text-decoration: none;
  margin-top: 46px;
}

.zhichi-left-more {
  width: 180px;
  height: 50px;
  background-color: white;
  font-size: 16px;
  color: #303030;
  line-height: 50px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #08294a;
}

.zhichi-left-more:hover {
  background: #0ea49d;
  color: white;
  border:none;
}

.cailiao_line {
  display: block;
  height: 107px;
  border-left: 2px solid #ec6956;
  position: absolute;
  margin-top: -65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.cailiao_line_2 {
  display: block;
  height: 107px;
  border-left: 2px solid #ec6956;
  position: absolute;
  margin-top: -43px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.cailiao-item-wenzi-middle {
  margin-top: -7px;
}

/*产品列表*/
.prolist-box {
  background-color: #f4f8fb;
  width: 100%;
}

.prolist-menu {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.all-cates {
  width: 150px;
  font-size: 22px;
  color: #303030;
  margin-left: 13px;
  margin-right: 28px;
}

.all-cates-icon {
  width: 21px;
}

.shu-line {
  width: 2px;
  height: 21px;
  margin-right: 28px;
  background-color: #6d6d6d;
}

.menu-right {
  font-size: 18px;
  color: #303030;
  display: flex;
}

.menu-right a {
  color: #303030;
}

.jiantou-menu {
  margin-left: 10px;
  margin-right: 10px;
}

.prolist-hengxian {
  max-width: 1400px;
  height: 1px;
  background-color: #c2c2c2;
  margin: 0 auto;
  margin-top: 35px;
  margin-bottom: 33px;
  width: 100%;
}

.prolist-tit {
  font-size: 25px;
  color: #303030;
  display: flex;
  justify-content: center;
}

.prolist {
  max-width: 1400px;
  margin: 0 auto;
  /*margin-top: 44px;*/
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.prolist .prolist-item {
  width: 48.9%;
  height: 230px;
  background: #ffffff;
  display: flex;
  margin-bottom: 38px;
  /*box-shadow: 0 0 10px 3px rgba(22, 47, 90, 0.3);*/
  /* 绿色虚影效果 */
  overflow: hidden;
   /*transition: box-shadow 0.3s ease; */
}
.prolist .prolist-item:hover{
     box-shadow: 0 0 10px 3px rgba(22, 47, 90, 0.3);
}

.prolist .prolist-item .prolist-item-img {
  width: 45.5%;
  overflow: hidden;
 
}

.prolist .prolist-item img {
  width: 100%;
  height: 100%;
}

.pro-item-right {
  width: 49%;
  margin-left: 5%;
}

.pro-item-titl {
    font-size: 20px;
    color: #303030;
    margin-top: 28px;
    /* margin-bottom: 23px; */
    margin-right: 10px;
  /* 3. 隐藏超出容器的内容 */
  overflow: hidden;
  /* 4. 关键：指定显示行数，并在末尾加省略号 */
  display: -webkit-box; /* 旧版浏览器兼容，必须配合下面两行 */
  -webkit-line-clamp: 2; /* 最多显示 2 行 */
  -webkit-box-orient: vertical; /* 文本垂直排列 */
}

.pro-item-des {
  width: 94%;
  min-height: 81px;
  font-size: 14px;
  color: #303030;
  line-height: 27px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  margin-top: 5px;
}

.pro-item-more {
  display: block;
  width: 90px;
  font-size: 14px;
  color: #303030;
  line-height: 27px;
  position: relative;
  left: 62%;
  top:2%;
  line-height: 32px;
  text-align: center;
  border: 1px solid #08294a;
  border-radius: 8px;
}

.pro-item-more:hover {
  background: #0ea49d;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: none;
}

#category-list {
  position: absolute;
  background-color: white;
  border: 1px solid #c2c2c2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  max-width: 1400px;
  z-index: 1000;
  margin: 0 auto;
  margin-top: 30px;
  border-radius: 8px;
  padding-bottom: 30px;
  height: 280px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* 向左移动一半宽度 */
}

.hidden {
  display: none;
}

#category-list ul.parent_category {
  list-style-type: none;
  padding: 0;
  display: flex;
  white-space: nowrap;
  padding-left: 11%;
  border-bottom: 1px solid #c2c2c2;
  line-height: 50px;
  font-size: 22px;
}

#category-list ul.parent_category li {
  width: 33.3%;
  position: relative;
}

#category-list li a {
  padding: 5px;
  text-decoration: none;
  color: #303030;
  display: inline-block;
}

#category-list ul.parent_category li a.active,
#category-list ul.parent_category li a:hover {
  color: #01a7ac;
  border-bottom: 4px solid #01a7ac;
}

#category-list .child_category {
  padding-left: 10%;
  display: flex;
}

.one_category,
.two_category,
.three_category {
  font-size: 18px;
  list-style-type: none;
  margin-top: 20px;
}

.one_category li,
.two_category li,
.two_category li {
  line-height: 30px;
}

.one_category li {
  display: flex;
}

#category-list .one_category li a {
  display: block;
  padding: 5px;
  text-decoration: none;
  color: #303030;
}

#category-list .two_category li a span,
#category-list .three_category li a span {
  color: white;
  margin: 0 5px;
}

#category-list .one_category li a.active {
  border-radius: 50px;
  background-color: #01a7ac;
  color: white;
  border-bottom: none;
}

#category-list .one_category li a:hover {
  /* color: #01a7ac; */
  border-bottom: none;
}

#category-list .two_category li a.active,
#category-list .three_category li a.active {
  border-radius: 50px;
  background-color: #01a7ac;
  color: white;
  border-bottom: none;
}

#category-list .three_category li a:hover {
  border-radius: 50px;
  background-color: #01a7ac;
  color: white;
  border-bottom: none;
}

#category-list .two_category li a.active span,
#category-list .three_category li a.active span {
  border-radius: 50px;
  background-color: #01a7ac;
  color: white;
}

#category-list .three_category li a:hover span {
  border-radius: 50px;
  background-color: #01a7ac;
  color: white;
}

#category-list .one_category li a,
#category-list .two_category li a,
#category-list .three_category li a {
  font-size: 17px;
  padding: 5px 16px;
  margin-right: 10px;
}

#category-list .hidden {
  display: none;
}

/*专利成果*/
.xueshu {
  width: 100%;
  font-size: 30px;
  color: #303030;
  text-align: center;
  padding-top: 43px;
  padding-bottom: 43px;
}

.xueshulist {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.xueshu-item {
  display: flex;
  width: 17.92%;
  flex-direction: column;
  margin-right: 2.6%;
  margin-bottom: 58px;
}

.xueshu-item:nth-child(5n) {
  margin-right: 0;
}

.xueshu-item img {
  width: 100%;
  height: 345px;
  max-width:100%;
}

.xueshu-des {
  width: 100%;
  font-size: 16px;
  color: #303030;
  line-height: 19px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
}

.xueshu_mobile {
  display: none;
}

.xueshu_pc {
  display: block;
}

/*科研动态*/
.content-keyan {
  width: 100%;
  font-size: 30px;
  color: #303030;
  text-align: center;
  padding-top: 43px;
  padding-bottom: 43px;
}

/*技术支持*/
.zhichi-des {
  width: 973px;
  font-size: 16px!important;
  color: #303030;
  line-height: 1.5em!important;
  text-align: center;
  margin: 0 auto;
  padding-top: 52px;
}
.zhichi-des p{
    line-height: 2;
}
.zhichi-des table{
    max-width: 95% !important;
}
.tixi {
  font-size: 18px;
  color: #303030;
  margin: 0 auto;
  margin-top: 60px;
  width: 973px;
}

.zhichi-tixi {
  width: 694px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.zhichi-tixi img {
  width: 100%;
}

/* 发展历程 */
.guanyu-top {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  background-color: #2b66b6;
  margin-top: -7px;
}

.guanyu-top-con {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.guanyu-item {
  font-size: 26px;
  color: #ffffff;
  height: 90px;
  line-height: 90px;
}

.guanyu-active2 {
  
  box-sizing: border-box;
  border-bottom: 6px solid #b2cbe9;
}

.jianjie-aboutus {
  width: 100%;
  background-color: #e1eeff;
}

.aboutus-wenzi-pics {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 88px;
  padding-bottom: 99px;
  display: flex;
}

.aboutus-left {
  width: 41.6%;
  margin-right: 5%;
}

.aboutus-tit {
  font-size: 30px;
  color: #010101;
}

.aboutus-des {
  height: 325px;
  font-size: 16px;
  color: #000000;
  line-height: 31px;
  overflow: hidden;
  margin-top: 25px;
  margin-bottom: 45px;
}

.aboutus-left:hover .aboutus-des {
  color: #353535;
}

.aboutus-a-text {
  text-decoration: none;
}

.aboutus-a {
  width: 100px;
  height: 35px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  color: #000000;
  line-height: 35px;
  text-align: center;
  border: 1px solid #08294a;
}

.aboutus-left:hover .aboutus-a {
  background-color: #0ea49d;
  color: #ffffff;
  border: none;
}

.aboutus-a-text:hover .aboutus-a {
  background-color: #0ea49d;
  color: #ffffff;
}

.aboutus-right2 {
  display: flex;
  width: 51.6%;
}

.aboutus-right2 img {
  transform: scale(1);
}

.aboutus-right2-left {
  width: 49.4%;
  margin-right: 15px;
}

.aboutus-right2-right {
  display: flex;
  width: 48.5%;
  flex-direction: column;
  justify-content: space-between;
}

.aboutus-right2-right img {
  width: 100%;
  height: 242px;
}

.fazhanlicheng {
  width: 100%;
  background-color: #5093e0;
  box-sizing: border-box;
  padding-top: 43px;
  overflow: hidden;
}

.licheng-tit {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
}

.licheng-year {
  width: 100%;
  height: 17px;
  background-color: #b0cef1;
  margin-top: 96px;
}

.licheng-year-list {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}

.licheng-year-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.licheng-year-item {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 4px solid #ffffff;
  background-color: #5093e0;
}

.year-det {
  font-family: Arial;
  font-size: 16px;
  color: #fefefe;
  margin-top: 30px;
}

.licheng-year-item-active {
  width: 33px;
  height: 33px;
  box-sizing: border-box;
  border: 8px solid #ffffff;
  border-radius: 50%;
  position: relative;
  top: -8px;
  background-color: #22abad;
}

.year-det-active {
  margin-top: 12px;
}

.licheng-lunbo {
  max-width: 1200px;
  /* height: 336px; */
  margin: 0 auto;
  margin-top: 115px;
  position: relative;
  display: flex;
  padding-bottom: 67px;
}

.banner-event-year {
  width: 45.4%;
}

.import-year {
  width: 472px;
  display: flex;
  box-sizing: border-box;
  padding-top: 54px;
  margin: 0 auto;
}

.import-year-item {
  /* width: 103px; */
  min-height: 135px;
  font-family: "Alibaba-PuHuiTi"!important;
  font-weight: 300;
  font-size: 200px;
  color: #e5edfe;
  line-height: 36px;
}

.year-event {
  width: 100%;
  height: 55px;
  font-size: 18px;
  color: #e5edfe;
  text-align: center;
  /* line-height: 36px; */
  white-space: break-spaces;
}

.aboutus-culture {
  width: 100%;
  background-color: #88b9ec;
  padding-bottom: 66px;
  padding-top: 56px;
}

.cultrue-tit {
  max-width: 1400px;
  height: 85px;
  background: #eff3fc;
  border-radius: 8px;
  font-size: 30px;
  color: #000000;
  line-height: 85px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 22px;
}

.culture-mid {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.culture-mid-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 49.2%;
}

.cultrue-mid-left-item {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 24px;
}

.item-bottom2 {
  margin-top: 24px;
  min-height: 269px;
}

.mid-left-top {
  display: flex;
  align-items: center;
  margin-left: 4.7%;
}

.mid-left-top img {
  width: 44px;
  height: 44px;
  margin-right: 14px;
  /*margin-bottom: 14px;*/
}

.mid-left-yuanjing {
  font-size: 22px;
  color: #010101;
}

.mid-left-bottom {
 font-size: 16px;
    color: #000000;
    line-height: 38px;
    margin-left: 12.7%;
    max-width: 602px;
    padding-right: 39px;
        white-space: pre-line;
        margin-top: -41px;
    
}


.culture-mid-rig {
  width: 49.2%;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  padding-top: 15px;
}

.gezhonglinian {
    font-size: 16px !important;
    color: #000000;
    line-height: 41px;
    margin-left: 12.7%;
    max-width: 602px;
    padding-right: 39px;
    white-space: break-spaces;
}

.culture-bottom {
  max-width: 1400px;
  height: 163px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 22px;
}

.culture-bottom .bottom-item {
  width: 23.9%;
  height: 163px;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  padding-top: 25px;
}

.bottom-slagon {

  font-size: 16px;
  color: #303030;
  box-sizing: border-box;
  padding-left: 21%;
    padding-right: 6%;
    white-space: pre-line;
    line-height: 37px;
}

.aboutus-honor {
  width: 100%;
  height: 561px;
  background-color: #e1eeff;
  box-sizing: border-box;
  padding-top: 44px;
}

.aboutus-honor-tit {
  font-size: 36px;
  color: #000000;
  margin-bottom: 56px;
  text-align: center;
}

.honor-list {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.honor-item {
  width: 18.9%;
  height: 366px;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 29px 12px 0 12px;
  position: relative;
  text-align: center;
  /*transition: all 0.3s linear;*/
}

.honor-item:hover {
  box-shadow: 0 0 5px 5px rgba(212, 225, 243, 0.8);
}

.honor-item img {
  max-width: 90.9%;
  max-height: 270px;
  object-fit: cover;
}

.honor-item img:hover {
  transform: scale(1);
}

.honor-name {
    width: 100%;
    height: 56px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #3b5ba3;
    font-size: 16px;
    color: #ffffff;
    position: absolute;
    left: 0px;
    bottom: 0;
    /* text-align: center; */
    /* line-height: 25px; */
    display: flex
;
    align-items: center;
    justify-content: center;
}

/* 产品与支持  产品详情 */
.pro-det {
  max-width: 1400px;
  /*background-color: #f4f8fb;*/
  /*padding-top: 45px;*/
  margin: 0 auto;
}

.pro-det-tit {
  font-size: 25px;
  color: #303030;
  text-align: center;
  margin-bottom: 36px;
}

.pro-det-det {
  width: 98%;
  font-size: 18px;
  color: #303030;
  margin: 0 auto;
  line-height: 36px;
}

.img-box {
  width: 39.6%;
  margin: 0 auto;
  margin-bottom: 160px;
}

.pro-det-img {
  width: 100%;
  margin-top: 92px;
}

/* 产品详情 */
.prodet2-top-container {
  width: 100%;
  background-color: white;
  padding-bottom: 45px;
  margin-top: -7px;
}

.prodet2-top {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 20px;
}

.prodet2-top-left {
  width: 48.9%;
  height: 520px;
}

.prodet2-top-right {
  width: 48.4%;
}

.prodet2-top-rig-tit {
  font-size: 25px;
  color: #303030;
  margin-top: -15px;
}

.prodet2-top-rig-des {
  width: 86%;
  font-size: 16px;
  color: #303030;
  line-height: 27px;
  margin-top: 10px;
}

.prodet2-top-rig-zhuyao {
  margin-top: 23px;
}

.zhuyao-tit {
  font-size: 22px;
  color: #ffffff;
  position: relative;
  top: -43px;
  margin-left: 19px;
}

.zhuyao-des {
    white-space: pre-line;
    width: 508px;
    height: 128px;
    font-size: 16px;
    color: #303030;
    line-height: 27px;
    margin-top: -50px;
    margin-bottom: 60px;
}
.zhuyao-des text{
    font-size: 12px !important;
            font-family: 'Alibaba-PuHuiTi', sans-serif !important;
            color: #303030 !important;
}
.zhuyao-tel {
  font-size: 16px;
  color: #13233d;
  display: flex;
  align-items: center;
  margin-top: 13px;
}

.fangdanxingneng-con {
  width: 466px;
  height: 38px;
  margin: 0 auto;
  margin-top: 39px;
  background-image: url('/images/fangdanxingneng.png');
}

.fangdanxingneng {
  font-size: 25px;
  color: #303030;
  line-height: 38px;
  text-align: center;
}

.fangdancanshu {
  /*display: flex;*/
  max-width: 1400px;
  margin: 0 auto;

  font-size: 18px !important;
  font-family: 'Alibaba-PuHuiTi', sans-serif !important;
  color:#303030 !important;
}

.fangdancanshu img {
  /*width: auto;*/
  /*height: auto;*/
  margin-top: 25px  !important;
  display: inline-block;
  object-fit: cover;
}
.fangdancanshu table tr td {
  padding:10px;
}
.fangdancanshu img:first-child {
  /*margin-right: 44px;*/
}
.fangdancanshu span{
    font-size: 18px ;
    font-family: 'Alibaba-PuHuiTi', sans-serif !important;
}


.yongtu {
  font-size: 18px;
  color: #303030;
  max-width: 1400px;
  margin: 20px auto 0 auto;
}
.yongtu img {
    will-change: transform;
  backface-visibility: hidden;
    display: inline-block;
 object-fit: cover !important;

}
.yonghu-pics {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 38px;
}

.yonghu-pics img {
  width: 400px;
  height: 340px;
}

.yonghu-pics img:first-child {
  margin-right: 30px;
}

.zhuyaoyoushi {
  max-width: 1400px;
  /* height: 307px; */
  font-size: 18px;
  color: #303030;
  line-height: 36px;
  margin: 0 auto;
}

.canshu-pic {
  max-width: 1400px;
  /*height: 328px;*/
  margin: 0 auto;
  margin-top: 35px;
}

.canshu-pic img {
  width: 775px;
  /*height: 328px;*/
}

.prodet2-bottom {
  max-width: 1400px;
  /* height: 400px; */
  background: #e8eff4;
  margin: 0 auto;
  margin-top: 70px;
  margin-bottom: 74px;
  box-sizing: border-box;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 25px;
}

.prodet2-bottom-xiangsi {
  font-size: 24px;
  color: #303030;
  border-left: 4px solid #22abad;
  padding-left: 15px;
}

.prodet2-bottom-list {
  margin-top: 63px;
  display: flex;
  justify-content: space-around;
}

.prodet2-bottom-list a {
  width: 22.9%;
}

.prodet2-bottom-item {
  padding-bottom: 25px;
  overflow: hidden;
}

.prodet2-bottom-item img {
  width: 100%;
  height: 215px;
}

.prodet2-bottom-item-tit {
  font-size: 18px;
  color: #303030;
  margin-top: 18px;
  text-align: center;
}

/*搜索*/
.search_box {
  background-color: white;
  width: 100%;
  height: 100px;
  line-height: 100px;
  color: #08294a;
  font-size: 25px;
  text-align: center;
}

.search_container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search {
  height: 55px;
  width: 39.7%;
  line-height: 55px;
  background-color: #ecf4f7;
  border: none;
  margin-left: 20px;
  border-radius: 8px;
  font-size: 20px;
  padding-left: 20px;
}

.search_container div {
  background: #22abad;
  margin-left: 16px;
  border-radius: 10px;
  width: 67px;
  height: 55px;
  line-height: 55px;
}

.search_container div img {
  padding-top: 3px;
}

.search_box_mobile {
  display: none;
}

.search_box_1 {
  background: #dbeaeb;
  height: 150px;
  line-height: 150px;
}

.search_box_1 .search_container div {
  width: 142px;
  color: #ffffff;
}

.search_box_1 .search {
  background: #ffffff;
}

.container-search {
  background: white;
}

.container-search .content-news {
  padding-top: 0px;
}

.content-news .search_title {
  font-size: 25px;
  color: #2c2c2c;
  height: 102px;
  line-height: 102px;
  border-bottom: 1px solid #d3d3d3;
  max-width: 1400px;
  margin: 0 auto;
}

.content-news .search_title font {
  color: #c81801;
}

.container-search .news-list .news-item {
  border-bottom: 1px dotted #d3d3d3;
  padding-bottom: 46px;
}

.container-search .news-list .news-item img {
  width: 45px;
  height: 45px;
  margin-top: 36px;
}

.container-search .news-list .news-item .des-tit {
  max-width: 85%;
  overflow: hidden;
  padding-left: 28px;
}

.container-search .news-list .news-item a .tit {
  display: none;
}

.container-search .news-list .news-item a .des {
  width: 100%;
  color: #2c2c2c;
  font-size: 18px;
  margin-top: 0px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  height: 54px;
}

/*.container-search .news-list .news-item:hover a .des {*/
/*  width: 100%;*/
/*  color: white;*/
/*  font-size: 18px;*/
/*  margin-top: 0px;*/
/*}*/

.search_box_mobile_1 {
  display: none;
}

.innovation-item_mobile {
  display: none;
}

.innovation-item_pc {
  display: grid;
}

.newdetail-more {
  display: inline;
}

.mobile_new-more {
  display: none;
}

@media (max-width: 1400px) {

  .navbar-container,
  .container,
  .con-fea,
  .news_container,
  .innovation_container,
  .footer-content,
  .footer-bottom,
  .container-news,
  .container-newsdetails,
  .det-det,
  .contact-det,
  .contact-top,
  .zixunlist,
  .zx-bottom,
  .container-jianjie,
  .swiper-main-container,
  .qianyan,
  .keyan-newslist,
  .baozheng-bottom,
  .weilai-right,
  .brand-bottom,
  .cailiao-top-bottom,
  .cailiao-top-des,
  .sanwei-des,
  .sanweilist,
  .prolist-menu,
  .prolist,
  .xueshulist,
  .aboutus-wenzi-pics,
  .cultrue-tit,
  .culture-mid,
  .culture-bottom,
  .honor-list,
  .prodet2-top,
  .fangdancanshu,
  .yongtu,
  .yonghu-pics,
  .zhuyaoyoushi,
  .canshu-pic,
  .prodet2-bottom,
  .search_container {
    padding: 0 20px;
  }

  .fazhanlicheng {
    padding-top: 43px;
  }

  .licheng-year-list {
    padding: 0 60px;
  }

  .licheng-lunbo {
    overflow: hidden;
  }

  #category-list {
    width: 97.2%;
  }

  .kcx-shichang {
    padding-top: 50px;
  }
}

.qianyan {
  padding-bottom: 29px;
}

.brand-bottom {
  padding-left: 99px;
  padding-top: 66px;
  /*padding-bottom: 81px;*/
}
.mid-left-bottom{
    line-height: 27px;
    margin-top: -17px;
    margin-left: 8.7%;
}

.des-det label {
    font-size: 18px;
}
.baozheng-bottom {
  padding-bottom: 69px;
}

.pinzhibaozheng {
  padding-bottom: 86px;
}
.bottom-slagon {
    font-size: 16px;
    color: #000;
    box-sizing: border-box;
    padding-left: 16%;
    padding-right: 6%;
    white-space: pre-line;
    line-height: 26px;
    padding-bottom: 14px;
    padding-top: 9px;
}
.aboutus-wenzi-pics {
  padding-top: 88px;
  padding-bottom: 99px;
}

.prodet2-bottom {
  padding-top: 26px;
}

.prolist-menu {
  padding-top: 23px;
}

@media (max-width: 1350px) {
  .right-img {
    margin-left: 70px;
  }

  .sec-tit {
    margin-left: 74px;
  }

  .con-rig-rig-det {
    margin-left: 30px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6%;
    margin-top: 8px;
    overflow: hidden;
  }
}

/* 响应式设计 */
@media (max-width: 1024px) {

  /*导航开始*/
  #header {
    height: 60px;
  }

  .navbar {
    display: none;
  }

  .logo img {
    width: auto;
    height: 45px;
  }

  .navbar-mobile {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 999;
    /*transition: 0.3s all;*/
    background: #fff;
    display: flex;
    line-height: 60px;
  }

  .navbar-mobile .logo {
    display: block;
    height: 100%;
    padding: 10px 0;
    margin-left: 15px;
    float: left;
  }

  .navbar-mobile .lang {
    width: 25px;
    margin-top: 8px;
  }

  .navbar-mobile .lang img {
    width: 100%;
  }

  .navbar-mobile .navbar-menu {
    margin: 8px 15px auto 15px;
    width: 25px;
  }

  .navbar-mobile .navbar-menu img {
    width: 100%;
  }

  .navModal {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    display: none;
    overflow: hidden;
  }
.pro-item-titl{
    min-height: 78px!important;
    margin-top: 7px;
}
  .navMenu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    /*transition: all 0.5s;*/
    z-index: 9999;
    background: #fff;
    overflow: hidden;
    display: block;
  }

  .navShow {
    display: block;
  }

  .navMenuBox {
    position: static;
    height: 100%;
    overflow: scroll;
    overflow-x: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navMenu .navMenuBtnBox {
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #bdbdbd;
  }

  .navMenu .navMenuBtnBox {
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #bdbdbd;
  }

  .navMenu .navMenuBtnBox .logo {
    height: 45px;
  }

  .navMenu .navMenuBtnBox span {
    display: block;
    float: left;
    padding-left: 12px;
    font-size: 14px;
    color: #666;
    font-weight: normal;
    line-height: 22px;
    margin-top: 5px;
    width: 30px;
  }

  .navMenu .navMenuBtnBox span img {
    width: 100%;
  }

  .navMenu .closeb {
    height: 20px;
  }

  .navMenu .navList {
    width: 100%;
  }

  .navMenu .navList .navItem {
    background: #e1e1e1;
    margin: 10px 5px;
    border-radius: 5px;
  }

  .navMenu .navList .navItem .pDown {
    display: block;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 15px;
    line-height: 50px;
  }

  .pDown a {
    color: #0f2c49;
  }

  .navMenu .navList .navItem .pDown .xfont {
    float: right;
    width: 15px;
    height: 9px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    display: block;
    margin-top: 20px;
  }

  .navMenu .navList .navItem .pDown .uarrowup {
    background-image: url(/images/xjt.png);
  }

  .navMenu .navList .navItem .pDown .arrowdown {
    background-image: url(/images/xjta.png);
  }

  .navMenu .navList .navItem .itemList_mobile {
    display: none;
    padding: 12px 0;
    overflow: hidden;
    background: #f1f1f1;
  }

  .navMenu .navList .navItem .itemList_mobile>li {
    width: 100%;
    float: left;
    height: 35px;
    line-height: 35px;
    text-align: left;
    white-space: nowrap;
    padding-left: 25px;
  }

  .navMenu .navList .navItem .itemList_mobile>li a {
    color: #0f2c49;
  }

  .navMenu li a:hover {
    color: #0ea49d;
  }

  .navMenu li a.active {
    color: #0ea49d;
  }

  .language_mobie {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    line-height: 40px;
    padding-left: 20px;
  }

  .language_mobie a {
    color: #0f2c49;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px;
    margin-top: 8px;
  }

  /*导航结束*/
  .container {
    width: 100%;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .image1 {
    width: 49%;
    height: auto;
    margin-top: auto;
    margin-bottom: 0;
  }

  .images-right {
    width: 47%;
    margin-left: 4%;
    margin-bottom: 0;
  }

  .image2 {
    width: 100%;
    height: auto;
    margin-top: 26px;
  }

  .image3 {
    width: 90%;
    height: auto;
  }

  .image-section {
    display: flex;
  }

  .image-section,
  .content-section {
    width: 100%;
    padding: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  .about-content,
  .innovation-item {
    grid-template-columns: 1fr;
  }

  .content-section h2 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: normal;
  }

  .content-section {
    padding-top: 20px;
  }

  .content-section p {
    width: 100%;
    margin-bottom: 23px;
  }

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

  .buttons a {
    width: 24%;
    font-size: 18px;
  }

  .buttons a:nth-child(1),
  .buttons a:nth-child(3) {
    margin-right: 0;
  }

  .feature-item {
    margin: 10px 0;
    width: 32%;
    margin: auto 1%;
    height: auto;
    padding-bottom: 30px;
  }

  .news-card:nth-child(4) {
    display: block;
  }

  .icon-con {
    margin-right: 10px;
  }

  .text-content {
    width: 100%;
    margin-top: 25px;
  }

  .innovation-item_2 .text-content {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .innovation-item {
    margin-bottom: 30px;
    gap: 0;
  }

  .innovation h2 {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 24px;
    text-align: center;
  }

  .product-cards,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-content {
    padding: 15px 5px;
    max-height: 106px;
  }

  .news-list {
    width: 100%;
  }

  .news-item .news-item-img {
    width: 25%;
    height: 100px;
  }

  .news-item img {
    width: 100%;
    height: 100%;
  }

  .year-date {
    margin: 0px 2% auto 2%;
  }

  .news-line {
    display: none;
  }

  .tit {
    width: 100%;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre-wrap;
    word-break: break-all;
    height: auto;
    line-height: 22px;
  }

  .des {
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    line-height: 22px;
    width: 100%;
    margin-top: 5px;
  }

  .year {
    font-size: 16px;
    line-height: 26px;
  }

  .date1 {
    font-size: 16px;
  }

  .des-tit {
    margin-top: 0px;
    max-width: 65%;
  }

  .news-more {
    margin-top: 5px;
    font-size: 14px;
    height: 34px;
  }

  .news-more img {
    width: 12px;
    height: 8.6px;
  }

  .tab-btn2 {
    font-size: 20px;
  }

  .tab-btn2.active2 {
    
    background-position: calc(100% - 5px) center;
  }

  /*新闻详情页*/
  .bottom-news img {
    height: 40px;
  }

  .bottom-more {
    margin-left: 50px;
    font-size: 18px;
    margin-top: -41px;
    width: auto;
    overflow: hidden;
    white-space: nowrap;
  }

  .item-top img {
    height: 16px;
  }

  .bottom-top1 {
    margin-top: 40px;
  }

  

  .title-det {
    font-size: 20px;
        width: 90%;
        line-height: 31px;
  }

  /*联系我们页面*/
  .contact-det {
    flex-direction: column;
  }

  .contact-det .left-img-box {
    width: 100%;
    overflow: hidden;
  }

  .contact-det img {
    width: 100%;
  }

  .con-right {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .con-rig-left,
  .con-rig-rig {
    width: 50%;
  }

  .con-right img {
    width: 70px;
    display: block;
    margin: 0 auto;
  }

  .con-rig-tit {
    margin-left: 0;
    text-align: center;
  }

  .con-rig-rig-det {
    margin-left: 0;
  }

  .zx-more {
    margin-left: 50%;
  }

  .want-zx {
    font-size: 30px;
  }

  .want-des {
    font-size: 16px;
  }

  .want-inp,
  .want-textarea,
  .zx-submit {
    width: 60%;
  }

  .zx-submit {
    margin-left: 31%;
  }

  .zx-detail {
    margin-top: 20px;
  }

  .zx-top-tit {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 23px;

  }

  .zx-item-det2 {
    font-size: 14px;
  }

  /*创新与品质*/
  .swiper-container {
    width: 90%;
    overflow: hidden;
    padding: 30px 0;
  }

  .qianyan-item {
    width: 24%;
  }

  .qianyan-item:nth-child(5) {
    display: none;
  }

  .keyan-newsitem {
    width: 48%;
    padding-bottom: 15px;
  }

  .keyan-newsitem:nth-child(3) {
    display: none;
  }

  .news-pic {
    width: 100%;
  }

  .baozheng-bottom {
    width: 90%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .baozheng-bottom-det {
    width: 96%;
    margin: 0 auto;
    line-height: 26px;
  }

  .sage-baozheng {
    left: 55%;
  }

  /*可持续发展*/
  /*.kcx-shichang {*/
  /*  margin-top: -420px;*/
  /*}*/
  .kcx-shichang {
    padding-top: 35px;
  }

  .kcx-tit {
    font-size: 28px;
  }

  .kcx-des {
    margin-top: 25px;
    font-size: 18px;
  }

  .brand-bottom {
    width: 96%;
  }

  .weilai-right-image {
    height: auto;
  }

  .weilai-right img {
    width: 100%;
    height: auto;
  }

  /*产品与支持*/
  .cailiao-top-bottom {
    padding-bottom: 60px;
  }

  .cailiao-top-bottom a {
    width: 33.3%;
  }

  .cailiao-bot-item {
    width: 100%;
  }

  .cailiao-item-wenzi {
    height: 210px;
    padding-top: 25px;
  }

  .fangdan-des {
    width: 90%;
    height: auto;
  }

  .zhichi-left {
    padding-top: 18px;
    margin-left: 50px;
  }

  .cailiao_line,
  .cailiao_line_2 {
    height: 80px;
  }

  .cailiao_line {
    margin-top: -55px;
  }

  /*产品列表*/
  .pro-item-titl {
    font-size: 16px;
  }

  .pro-item-more {
    left: 51%;
    top:-6%;
    width: 77px!important;
    height: 33px!important;
    line-height: 33px!important;
    box-shadow: 0 0 10px 3px rgb(223 225 229 / 30%);
    font-size: 12px!important;
  }

  /*技术支持*/
  .zhichi-des {
    width: 100%;
    padding: 52px 20px 0 20px;
  }

  .tixi {
    width: 100%;
    padding: 0 20px;
    margin-top: 60px;
  }

  .zhichi-tixi {
    margin: 15px auto;
  }

  .aboutus-honor {
    height: auto;
    padding-bottom: 30px;
  }

  .honor-item {
    width: 24%;
    height: 336px;
  }

  .honor-list .honor-item:nth-child(5) {
    display: none;
  }

  .guanyu-top {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    background-color: #2b66b6;
    margin-top: -7px;
  }

  .guanyu-top-con {
    width: 70%;
    display: flex;
    justify-content: space-between;
  }

  /* 发展历程　 */
  .licheng-lunbo {
    max-width: 800px;
    /* height: 336px; */
    margin: 0 auto;
    margin-top: 115px;
    position: relative;
    display: flex;
    overflow: hidden;
  }

  .banner-event-year {
    width: 48%;
  }

  .import-year {
    /* width: 39.3%; */
    display: flex;
    box-sizing: border-box;
    padding-top: 15px;
  }

  .import-year-item {
    height: 154px;
    font-family: "Alibaba-PuHuiTi"!important;
    font-weight: 300;
    font-size: 170px;
    color: #e5edfe;
    line-height: 36px;
  }

  .year-event {
    width: auto;
    /* height: 55px; */
    font-size: 18px;
    color: #e5edfe;
    text-align: center;
    margin-top: -46px;
  }

  #category-list {
    width: 96%;
  }

  #category-list ul.parent_category {
    padding-left: 20px;
  }

  #category-list .child_category {
    padding-left: 20px;
  }

  .fangdancanshu img {
    width: 46%;
  }

  .yonghu-pics img {
    width: 40%;
  }

  .canshu-pic img {
    width: 100%;
  }

  /*搜索*/
  .container-search .news-list .news-item a .des {
    height: 44px;
  }

  .container-search .news-list .news-item img {
    margin-top: 31px;
  }

  .container-search .news-list .news-item .des-tit {
    margin-top: 32px;
  }

  .aboutus-right2-right img {
    height: auto;
  }

  .content-section h2 {
    font-size: 26px;
    font-weight: normal;
    
  }

  .con-fea h2 {
    font-size: 26px;
    font-weight: normal;
  }

  .news h2 {
    margin-bottom: 20px;
  }

  .guanyu-item {
    font-size: 22px;
  }

  .aboutus-tit {
    font-size: 26px;
  }

  .aboutus-wenzi-pics {
    padding-top: 66px;
  }

  .gezhonglinian {
            overflow: hidden;
        width: 100%;
        font-size: 14px;
        color: #000;
        line-height: 26px;
        margin-left: 6.7%;
        padding-bottom: 24px;
        margin-top: 15px;
  }

  .licheng-tit {
    font-size: 26px;
  }

  .cultrue-tit {
    font-size: 26px;
  }

  .aboutus-honor-tit {
    font-size: 26px;
  }

  .innovation-item_mobile {
    display: block;
  }

  .innovation-item_pc {
    display: none;
  }

  .con-fea p {
    font-size: 16px;
    width: 98%;
    margin-left: 9px;
  }

  .news {
    padding: 15px 0 20px 0;
  }

  .view_more {
    margin: 38px auto 15px auto;
  }

  .innovation {
    padding-top: 15px;
    padding-bottom: 0px;
  }

  .pinzhibaozheng {
    padding-top: 30px;
  }

  .content-news {
    padding-top: 30px;
  }

  .news-tabs2 {
    margin-bottom: 30px;
  }

  .newdetail-more {
    display: none;
  }

  .mobile_new-more {
    display: inline;
  }
}

@media (max-width: 820px) {
  .kcx-shichang {
    /*margin-top: -350px;*/
  }

  .footer-content {
    grid-template-columns: 30% 65.5%;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px;
    margin-top: 8px;
  }

  .footer-logo-img {
    margin-left: 10%;
  }

  .cailiao-item-wenzi {
    height: 190px;
    padding-top: 20px;
  }

  .cailiao_line,
  .cailiao_line_2 {
    height: 50px;
  }

  .cailiao_line {
    margin-top: -32px;
  }
}
@media (max-width: 1400px){
.container-jianjie img{
width:99%;
object-fit: contain;
height: auto;
}
}
@media (max-width: 768px) {
  .logo {
    flex: auto;
  }

  .features {
    flex-direction: row;
    width: 102%;
    margin: 10px auto;
  }
.logos{
  margin-top: 16px;  
}
  .feature-item {
    margin: 10px 0;
    width: 32%;
    margin: auto 1%;
    height: auto;
    padding-bottom: 20px;
  }
  .swiper-button-nexta{
      width: 35px;
      height: 35px;
  }
  .swiper-button-preva{
      width: 35px;
      height: 35px;
  }
  .zx-arrows {
      gap: 50px;
  }
  .clear-top{
      margin-top: 1px;
        margin-left: 11px;
        padding-right: 55px;
  }
  .news-item{
      margin-bottom: 27px;
  }
  .bottom-slagon{
     width: 264px; 
     padding-top: 0px;
  }
.text-content h3{
        font-size: 22px;
    font-weight: normal;
    margin: -2px auto 9px auto;
}
.prodet2-top-container {
    padding-bottom: 15px;
}
.fangdanxingneng-con{
    background-size: 65% 100%;
    background-repeat: no-repeat;
    margin-left: 45px;
    margin-top: 15px;
}
  @media (max-width: 768px) {
           .zhuyao-tel {
               display: flex;
               flex-direction: column;
               align-items: flex-start;
             
               padding: 8px 0;
           }
           .zhuyao-tel img {
               margin: 0 0 0 0 !important;
               width: 19px;
               height: 19px;
           }
           .aboutus-a{
               margin-left: 10px;
           }
           .zhuyao-tel .jkl {
               flex-direction: column;
               align-items: flex-start;
               font-size: 15px;
               line-height: 1.5;
           }
           .zhuyao-tel .jkl img {
               margin:0 0 0 0 !important;
               width: 22px;
               height: 22px;
               vertical-align: middle;
           }
           .sanwei-des{
               font-size: 14px;
               line-height: 24px;
           }
           .xueshu-des{
               min-height: 57px;
           }
           .sanwei-item-name{
              
               display: flex
;justify-content: center;
            align-items: center;
           }
           .zhichi-left-des{
               width: 325px!important;
           }
               .pro-det-det p:first-of-type{
                   margin-left: 0px!important;
                   width: 96%!important;
                   font-size: 14px!important;
                   line-height: 24px!important;
               }
               .pro-det-det img{
                   object-fit: contain!important;
                   width: 100%;
                   height: 138px;
                   
               }
               .pro-det-det p{
                  font-size: 14px!important;
                  line-height: 24px;
                  line-height: 24px!important;
               }
               
     }
.fangdanxingneng {
    font-size: 20px;
    color: #303030;
    line-height: 38px;
    
    margin-left: -156px;
}
.fangdancanshu > p:nth-of-type(1){
    height: 0;
}
.fangdancanshu > p:nth-of-type(3){
    height: 0;
}
.fangdancanshu > p:nth-of-type(4){
    height: 0;
}
.yongtu > p:nth-of-type(1){
    height: 0;
}
.yongtu > p:nth-of-type(3){
    height: 0;
}.yongtu > p:nth-of-type(4){
    height: 0;
}
.aboutus-honor{
    padding-top: 20px!important;
}
.bottom-slagon {
    padding-left: 6.7%!important;
}
.text-content .btn {
   margin-top: 0px; 
}
.fangdancanshu p img{
    width: 100%!important;
    object-fit: fill!important;
    image-rendering: -webkit-optimize-contrast;
    height: auto!important;
}
.yongtu p img{
    width: 100%;
    object-fit: contain!important;
    height: auto;
}
  .feature-item .icon {
    width: 74px;
        height: 74px;
        margin-top: 25px;
        margin-bottom: 13px;
  }
.feature-item .icon img {
    width: 45px;
}
.zhichi-left-a {
    text-decoration: none;
    margin-top: 28px;
    margin-left: 7px;
}
.prodet2-bottom-xiangsi{
    font-size: 20px;
    color: #303030;
    border-left: 4px solid #22abad;
    padding-left: 15px;
    height: 18px;
    line-height: 18px;
} 
.zhichi-left-more{
    width: 108px;
    height: 43px;
    line-height: 43px;
    border:none;
}
  .feature-item .name {
    font-size: 14px;
   
  }

  .buttons a {
    width: 48%;
    font-size: 18px;
  }
.updown-wrapper {
                max-width: 95%;
                margin: 0 auto;
            }

            .updown-title {
                font-size: 16px;
            }
  /*导航开始*/
  .navbar {
    display: none;
  }

  .logo img {
    width: auto;
    height: 45px;
  }

  .navbar-mobile {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 999;
    /*transition: 0.3s all;*/
    background: #fff;
    display: flex;
    line-height: 60px;
  }

  .navbar-mobile .logo {
    display: block;
    height: 100%;
    padding: 10px 0;
    margin-left: 15px;
    float: left;
  }

  .navbar-mobile .lang {
    width: 25px;
    margin-top: 8px;
  }

  .navbar-mobile .lang img {
    width: 100%;
  }

  .navbar-mobile .navbar-menu {
    margin: 8px 15px auto 15px;
  }

  .navModal {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    display: none;
    overflow: hidden;
  }

  .navShow {
    display: block;
  }

  .navMenuBox {
    position: static;
    height: 100%;
    overflow: scroll;
    overflow-x: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navMenu .navMenuBtnBox {
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #bdbdbd;
  }

  .navMenu .navMenuBtnBox {
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #bdbdbd;
  }

  .navMenu .navMenuBtnBox .logo {
    height: 45px;
  }

  .navMenu .navMenuBtnBox span {
    display: block;
    float: left;
    padding-left: 12px;
    font-size: 14px;
    color: #666;
    font-weight: normal;
    line-height: 22px;
    margin-top: 5px;
    width: 30px;
  }

  .navMenu .navMenuBtnBox span img {
    width: 100%;
  }

  .navMenu .closeb {
    height: 20px;
  }

  .navMenu .navList {
    width: 100%;
  }

  .navMenu .navList .navItem {
    background: #e1e1e1;
    margin: 10px 5px;
    border-radius: 5px;
  }

  .navMenu .navList .navItem .pDown {
    display: block;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 15px;
    line-height: 50px;
  }

  .pDown a {
    color: #0f2c49;
  }

  .navMenu .navList .navItem .pDown .xfont {
    float: right;
    width: 15px;
    height: 9px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    display: block;
    margin-top: 20px;
  }

  .navMenu .navList .navItem .pDown .uarrowup {
    background-image: url(/images/xjt.png);
  }

  .navMenu .navList .navItem .pDown .arrowdown {
    background-image: url(/images/xjta.png);
  }

  .navMenu .navList .navItem .itemList_mobile {
    display: none;
    padding: 12px 0;
    overflow: hidden;
    background: #f1f1f1;
  }

  .navMenu .navList .navItem .itemList_mobile>li {
    width: 100%;
    float: left;
    height: 35px;
    line-height: 35px;
    text-align: left;
    white-space: nowrap;
    padding-left: 25px;
  }

  .navMenu .navList .navItem .itemList_mobile>li a {
    color: #0f2c49;
  }

  .navMenu .navList .navItem .itemList_mobile>li a.active {
    color: #0ea49d;
  }

  .navMenu li a:hover {
    color: #0ea49d;
  }

  .navMenu li a.active {
    color: #0ea49d;
  }

  .language_mobie {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    justify-content: center;
  }

  .language_mobie a {
    display: flex;
    align-items: center;
    /* 垂直居中 */
    line-height: normal;
    /* 可选，避免冲突 */
    gap: 8px;
    /* 图片和文字之间加点间距 */
    height: 40px;
    /* 如果你希望每个选项固定高度 */
  }

  /*导航结束*/
  .con-fea {
    flex-direction: column;
  }

  .con-fea h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: normal;
  }

  .con-fea .content {
    width: 100%;
    margin-bottom: 15px;
  }

  .tab-btn {
    font-size: 18px;
  }

  .tab-btn.active {
    background-position: calc(100% - 5px) center;
  }

  footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 33px;
  }

  .footer-bottom {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content h2 {
    font-size: 1.5rem;
    font-weight: normal;
  }

  .alibaba-logo img {
    margin-top: 10px;
  }

  .news-grid {
    gap: 15px;
  }

  .date {
   margin-right: 55px;
    background-position: 4px;
    background-size: 15px;
  }

  .news-content label {
    width: 98%;
    overflow: hidden;
    font-size: 16px;
    margin-top: 10px;
    line-height: 26px;
    margin-top: 0px!important;
            min-height: 47px !important;
        margin-left: 4px;
        line-height: 24px!important;
  }

  .read-more {
    margin-right: 5px;
    margin-top: 10px;
  }

  .date-overlay {
    background-image: url(/images/mobile_date.png);
    width: 60px;
    height: 47px;
    right: 5px;
    top: 3px;
    font-size: 10px;
  }

  .date-overlay label.title {
    font-size: 20px;
    margin-top: -8px;
  }

  .date-overlay label.date_des {
    margin-top: -4px;
  }

  .news-tabs {
    margin-bottom: 15px;
    background: none!important;
  }

  .view_more {
    height: 40px;
    line-height: 40px;
    width: 130px;
    border-radius: 20px;
    margin: 20px auto 0px auto;
  }

  /*新闻详情页*/
  .bottom-news img {
    height: 24px;
  }

  .bottom-more {
    width: auto;
    overflow: hidden;
    margin-left: 30px;
    font-size: 14px;
    margin-top: -30px;
    white-space: nowrap;
  }

  .bottom-news {
    height: auto;
    padding-bottom: 25px;
    margin-top: 20px;
    padding-top: 30px;
  }

  .bottom-top1 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .bottom-top1 .bottom-item,
  .bottom-top2 .bottom-item {
    height: auto;
    padding-bottom: 10px;
    cursor: pointer;
  }

  .item-top {
    margin-left: 12px;
        padding-top: 8px;
        font-size: 14px
  }

  .item-top img {
    height: 14px;
  }

  .bottom-item-tit {
    margin-left: 12px;
        margin-top: 5px;
        -webkit-line-clamp: 3;
        width: 93%;
        font-size: 16px;
  }
.newsdetail-more{
    width: 35px!important;
    margin-left: 12px!important;
}
  .bottom-item-des {
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
    display: none;
  }

  .newsdetail-more img {
    width: 24px;
    height: auto;
  }

  .title-det {
    font-size: 20px;
  }

  .top-det {
    padding-top: 20px;
    width: 100%;
    height: 163px;
    background-image: url(/images/line1.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .des-det {
    margin-top: 2px;
    font-size: 14px;
  }

  .det-det {
    margin-top: 15px;
  }

  .newsdetail-more {
    display: inline-block;
  }

  /*联系我们*/
  .con-right {
    max-width: 100%;
    margin-left: 0;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .con-rig-left,
  .con-rig-rig {
    width: 100%;
  }

  /*公司简介*/
  .xueshu {
    padding-top: 23px;
    padding-bottom: 23px;
    font-size: 24px;
  }

 

  /*.container-jianjie p.jianjie2 {*/
  /*  width: 80%;*/
  /*}*/

  /*.container-jianjie p.jianjie3 {*/
  /*  margin-bottom: 77px;*/
  /*}*/

  /*创新与品质*/
  img.sage-baozheng {
    width: 65%;
    right: 10%;
    left: auto;
    margin-top: -320px;
    transform: none;
  }

  .keyan-item-des {
    width: 96%;
    padding-left: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 控制最多显示几行 */
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;
    display: -webkit-box;
    margin-top: 3px;
    min-height: 59px;
        line-height: 19px;
  }
.qianyan-item-des{
    margin-top: 0px;
}
  .keyan-news-time-data {
    /*padding-left: 10px;*/
    padding-top: 5px;
    margin-right: 68px;
  }

  .keyan-item-more {
    margin-left: 1px;
  }

  .qianyan-item {
    width: 49%;
    margin-bottom: 10px;
  }

  /*.qianyan-item:nth-child(5) {*/
  /*  display: none;*/
  /*}*/
  .qianyan-item-des {
    width: 90%;
    height: 42px;
  }

  .swiper-container {
    width: 88%;
    overflow: hidden;
    padding: 20px 0;
  }

  .swiper-container .swiper-slide {
    width: 160px;
  }

  .swiper-container .swiper-slide .slide-image {
    height: 240px;
  }

  .swiper-container .swiper-slide .slide-content {
    padding: 10px 10px 0px 10px;
  }

  /*可持续发展*/
  .kcx-top {
    width: 91%;
    font-size: 20px;
    height: 60px;
    line-height: 60px;
  }

  .kcx-active {
    height: 60px;
    border-bottom: 4px solid #0b3c56;
  }

  .kcx_content {
    min-height: auto;
  }

  .kcx-shichang {
    /*margin-top: -180px;*/
    padding-top: 5px;
  }

  .kcx-des {
    width: 91%;
    margin-top: 5px;
    font-size: 15px;
  }

  .kcx-tit {
    font-size: 24px;
    margin-top: 10px;
  }

  .brank-linian {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 24px;
  }
.brand-a{
    margin-left: 219px;
    margin-top: -74px!important;
    
}
.weilai-rig-right .brand-a{
    margin-top: 10px!important;
    margin-right: 12px;
}
  .brand-bottom {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-top: 25px;
    padding-bottom: 3px;
    box-sizing: border-box;
  }

  .brand-bottom img {
    width: 101%;
    height: auto;
    margin: 0 auto;
    margin-right: 0;
  }

  .brand-des-logo {
    flex-direction: column;
  }

  .brand-des {
    width: 100%;
    margin-bottom: -71px;
    line-height: 28px;
  }

  .weilai-right {
    flex-direction: column;
    margin-top: 20px;
  }

  .weilai-name {
    padding-text-outline: 30px;
    font-size: 24px;
    padding-top: 15px;
  }

  .kcx-weilai {
    min-height: auto;
  }

  .weilai-right,
  .weilai-right-image {
    width: 100%;
    height: auto;
  }

  .weilai-right img {
    width: 100%;
    height: auto;
  }

  .weilai-rig-right {
    margin-left: 0;
    height: auto;
    margin-top: 10px;
  }

  .weilai-right {
    font-size: 24px;
    padding-bottom: 20px;
  }

  .xiaozi {
    font-size: 18px;
  }

  /*产品与支持*/
  .cailiao-top-bottom {
    flex-direction: column;
    margin-top: 15px;
    padding-bottom: 20px;
  }

  .cailiao-top-bottom a {
    width: 100%;
    margin-bottom: 15px;
  }

  .cailiao-bot-item {
    width: 100%;
  }

  .sanweilist a {
    width: 49%;
  }

  .sanwei-item {
    width: 100%;
    padding-top: 9px;
  }

  .zhichi-left-tit {
    width: 95%;
    margin: 0 auto;
    font-size: 20px;
  }
.pro-det-det p:first-of-type {
  width: 80%;
  text-align: left;
  margin-left: 35px;
  line-height: 30px;
}

  .zhichi-left-des {
    width: 95%;
    margin: 16px auto auto auto;
    line-height: 27px;
  }

  .zhichi-beijing {
    background-size: auto 100%;
    /* 保持图片的高度自适应，宽度根据比例自动调整 */
    background-position: center;
    /* 初始位置设为居中 */
    padding-bottom: 30px;
    margin-left: 20px;
    /* 左边距 */
    margin-right: 20px;
    /* 右边距 */
    box-sizing: border-box;
    /* 确保padding不会增加总宽度超出max-width */
    height: 435px;
  }

  .zhichi-left {
    margin-left: 10px;
  }

  .cailiao_line,
  .cailiao_line_2 {
    height: 55px;
  }

  .cailiao_line {
    margin-top: -45px;
  }

  /*产品列表*/
  .prolist {
    flex-direction: column;
    margin-top: 20px;
  }

  .prolist .prolist-item {
    width: 100%;
    height: auto;
    margin-bottom: 0px!important;
    margin-top: 0px!important;
            box-shadow: 0 0 10px 3px rgb(168 171 175 / 30%);
    
  }

  .shu-line,
  .menu-right {
    display: none;
  }

  /*专利成果*/
  .xueshulist{
         max-width: 1400px;
    margin: 0 auto;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; 
  }
  .xueshu-item {
    width: 49%;
  }
  .xueshu-item{
      margin-right: 0;
  }
.xueshu-item img {
    width: auto;
    height: auto;
}
  .xueshu-item:nth-child(3n) {
    margin-right: 0;
  }

  

  .xueshu_mobile {
    display: block;
  }

  .xueshu_pc {
    display: none;
  }

  .zhichi-tixi {
    width: 100%;
  }

  /* 关于我们 */
  .aboutus-wenzi-pics {
    flex-direction: column;
  }

  .aboutus-left {
    width: 100%;
    margin: 0 auto;
  }

  .aboutus-right2 {
    display: flex;
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
  }
.zhuyao-des{
    height: auto;
}
  .culture-mid {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .culture-mid .culture-mid-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .culture-mid-rig {
    width: 100%;
  }

  .honor-item {
    width: 48.5%;
    height: 230px;
    margin-top: 10px;
    padding: 15px 6px 0 6px;
  }

  .honor-list .honor-item:nth-child(4),
  .honor-list .honor-item:nth-child(5) {
    display: block;
  }

  /* 产品详情 */
  .prodet2-top {
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 20px;
  }

  .prodet2-top-left {
    width: 100%;
  }

  .prodet2-top-right {
    width: 95%;
  }
.swiper-slide img{
    
}
.prodet2-top-left{
    height: 325px;
}
  .prodet2-top-rig-tit {
    margin-top: 50px;
  }

  .fangdancanshu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }
.news-tabs2{
    gap:39px!important
}
  .fangdancanshu img {
    width: 460px;
    height: 170px;
    margin-top: 0!important;
  }

  .fangdancanshu img:first-child {
    margin-bottom: 20px;
    margin-right: 0px;
  }

  .yonghu-pics {
    display: flex;
    width: 100%;
    margin: 0 auto;
    margin-top: 38px;
  }

  .yonghu-pics img {
    width: 33%;
    height: auto;
  }

  .yonghu-pics img:first-child {
    margin-right: 30px;
  }

  .canshu-pic {
    width: 100%;
    height: auto;
    margin-top: 35px;
  }

  .canshu-pic img {
    width: 96%;
  }

  .prodet2-bottom-list {
    margin-top: -27px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .prodet2-bottom-list a {
    width: 44.9%;
  }

  .prodet2-bottom-item {
    padding-bottom: 25px;
  }

  .prodet2-bottom-item img {
    width: 100%;
    height: 215px;
    object-fit: contain;
  }
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    /* top: var(--swiper-pagination-top, auto); */
    left: 0;
    width: 100%;
    top: 120px!important;
}
  .prodet2-bottom-item-tit {
            font-size: 16px;
        color: #303030;
        margin-top: -45px;
        text-align: center;
        line-height: 18px;
        width: 80%;
        margin-left: 14px;
  }
.prodet2-bottom{
    margin-bottom: 0;
}
  #category-list {
    width: 94.5%;
    height: 550px;
  }

  #category-list ul.parent_category {
    padding-left: 0px;
    font-size: 16px;
  }

  #category-list ul.parent_category li:nth-child(2) {
    width: 43.3%;
  }

  #category-list ul.parent_category li:nth-child(3) {
    width: 23.3%;
  }

  #category-list .child_category {
    padding-left: 0px;
    font-size: 14px;
    flex-direction: column;
  }

  .one_category,
  .two_category,
  .three_category {
    font-size: 14px;
  }

  /* 发展历程 */
  .licheng-year-list {
    padding: 0 25px;
  }

  .licheng-lunbo {
    width: 100%;
    margin: 0 auto;
    margin-top: 85px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: -25px;
  }

  .banner-event-year {
    width: 95%;
    margin-top: 0px;
  }

  .import-year {
    width: 95%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
  }

      .import-year-item {
        height: 130px;
        font-family: "Alibaba-PuHuiTi" !important;
        font-weight: 300;
        font-size: 105px;
        color: #e5edfe;
        line-height: 36px;
    }
.year-event {
    width: 93%!important;
    height: auto;
    font-size: 15px;
    color: #e5edfe;
    text-align: center;
    /* line-height: 36px; */
}
.mid-left-bottom {
    line-height: 27px;
    margin-top: -25px;
    margin-left: 6.7%;
    width: 351px;
}
.mid-left-top img {
    width: 30px;
    height: 30px;
    margin-right: 14px;
    /* margin-bottom: 14px; */
}
  .year-event {
    width: 95%;
    height: auto;
    font-size: 18px;
    color: #e5edfe;
    text-align: center;
    margin: 0 auto;
    margin-top: -46px;
  }

  #yearList {
    display: flex;
    transition: transform 0.3s ease;
    gap: 10px;
    /* 年份点之间的间距 */
  }
@media (max-width: 768px) {
    .licheng-year-list {
        height: 287px;
        /* max-height: 75px; */
        max-width: 1400px;
        /* margin: 40px auto; */
        display: flex
;
        align-items: center;
        overflow-x: auto;
        /* -ms-overflow-style: none; */
        /* scrollbar-width: none; */
        justify-content: flex-start;
        gap: 8px;
        flex-shrink: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0.8%!important;
        width: calc(100vw - 20px);
        max-width: 580px;
        padding: 1px 5px;
        padding: -1px 5px;
        z-index: 100;
        scroll-behavior: smooth;
    }
}
  .licheng-year-dot {
    flex: 0 0 calc(25% - 7.5px);
    /* 每行显示4个，减去gap影响 */
    text-align: center;
    position: relative;
  }
.pro-det-tit{
   margin-bottom: 0px; 
}
#mobile-category-list{
    top:21%!important;
}
  .aboutus-culture {
    padding-top: 20px;
    padding-bottom: 25px;
    /*margin-top: 240px;*/
  }
  .prodet2-top-rig-zhuyao img {
      width: 105%;
      height: 35px;
  }
  .prodet2-top-rig-tit{
      font-size: 24px;
  }
  .zhuyao-tit{
      font-size: 18px;
      top: -39px;
  }
.pro-det-det{
    width: 90%;
}
.zhuyao-des{
    width: 348px;
} 
  .guanyu-top {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    background-color: #2b66b6;
    margin-top: -7px;
  }

  .guanyu-top-con {
    width: 100%;
    box-sizing: border-box;
    padding: 0% 5%;
    display: flex;
    justify-content: space-between;
  }

  /*搜索*/
  .search_box {
    display: none;
  }

  .search_box_mobile {
    width: 100%;
    padding: 0 20px;
    background: white;
  }

  .search_container_mobile {
    display: flex;
    line-height: 100px;
    align-items: center;
    justify-content: center;
  }

  .search_container_mobile div {
    width: 80%;
    display: flex;
    align-items: center;
  }

  .search_container_mobile div img.left_img {
    position: absolute;
    padding-left: 10px;
    width: 33px;
  }

  .search_container_mobile input {
    height: 55px;
    line-height: 55px;
    background: #f6f6f6;
    border-radius: 10px;
    border: 1px solid #f6f6f6;
    width: 100%;
    padding-left: 52px;
  }

  .search_container_mobile div img.right_img {
    position: absolute;
    right: 25%;
    width: 18px;
  }

  .search_container_mobile label {
    color: #2c2018;
    font-size: 18px;
    margin-left: 23px;
  }

  .search_box_mobile_1 {
    display: block;
  }

  .container-search .news-list .news-item .des-tit {
    max-width: 100%;
    padding-left: 0px;
  }

  .container-search .news-list .news-item a .tit {
    display: block;
    color: #2d201a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
  }

  .container-search .news-list .news-item img {
    display: none;
  }

  .container-search .news-list .news-item a .des {
    color: #626262;
    font-size: 14px;
    margin-top: 10px;
    -webkit-line-clamp: 4;
    height: auto;
  }

  .container-search .news-list .news-item {
    padding-bottom: 30px;
    margin-bottom: 0px;
  }

  .container-search .news-list .news-item:last-child {
    margin-bottom: 30px;
  }

  .content-section h2 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
  }

  .con-fea h2 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
  }

  .guanyu-item {
    font-size: 18px;
    font-weight: normal;
    height: 60px;
    line-height: 60px;
  }

  .guanyu-active2 {
    font-weight: bold;
  }

  .news h2 {
    font-weight: normal;
    margin-bottom: 20px;
  }

  .date {
    font-weight: normal;
  }

  .aboutus-tit {
    font-size: 24px;
    text-align: center;
  }

  .aboutus-wenzi-pics {
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .aboutus-des {
    margin-top: 4px;
    margin-bottom: 15px;
    height: auto;
  }

  
       .culture-bottom {
        flex-wrap: wrap;
        height: auto;
        width: 197%;
        display: flex;
        flex-direction: column;
      
    }


  .culture-bottom .bottom-item {
    width: 48%;
    margin-bottom: 10px;
    height: 118px;
    padding-top: 15px;
  }

  .mid-left-yuanjing {
    font-size: 20px;
  }

  .licheng-tit {
    font-size: 24px;
  }

  .cultrue-tit {
    max-width: 1400px;
    height: 55px;
     background:none!important; 
    border-radius: 8px;
    font-size: 24px;
    color: #000000;
    line-height: 46px;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    /* margin-bottom: 22px; */
}
.licheng-year {
    width: 100%;
    height: 17px;
    background-color: #b0cef1;
    margin-top: 62px!important;
}
.licheng-year-dot-logo{
    top:-9px!important;
}
.licheng-lunbo{
    margin-top: 83px!important;
}
  .aboutus-honor-tit {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .honor-list {
    justify-content: flex-start;
  }

  .honor-name {
    font-size: 14px;
    line-height: 30px;
    overflow: hidden;
    height: 30px;
  }

  .honor-item {
    margin-right: 3%;
  }

  .honor-item:nth-child(2n) {
    margin-right: 0;
  }

  .cailiao-top-tit,
  .fangdan-cailiao,
  .sanwei-tit {
    font-size: 20px;
  }

  .contact-us,
  .zaixianzixun,
  .want-zx {
    font-size: 24px;
    padding-top: 15px;
    margin-bottom: 20px;
  }

  .top-tit,
  .qianya-tit,
  .keyan-news-tit,
  .baozheng-tit {
    font-size: 24px;
    padding-top: 15px;
    margin-bottom: 20px;
  }

  .qianyan-more {
    border: 1px solid #01a7ac;
    width: 120px;
    height: 40px;
    line-height: 38px;
    font-size: 16px;
    margin-top: 15px;
  }

  .image1 {
    width: 49%;
    height: 255px;
    margin-top: 60px;
    margin-bottom: 0;
  }

  .image2 {
    height: 141px;
  }

  .image3 {
    height: 109px;
  }

  .fazhanlicheng {
    padding-top: 14px;
    max-height: 800px;
  }

  .aboutus-honor {
    padding-top: 15px;
  }

  .honor-item img {
    max-height: 85%;
  }

  .cailiao-top {
    padding-top: 15px;
  }

  .cailiao-top-tit {
    margin-bottom: 10px;
  }

  .cailiao-bot-item {
    transition: none;
    /* 移除所有过渡效果 */
    -webkit-tap-highlight-color: transparent;
  }

  .cailiao-top-bottom a {
    -webkit-tap-highlight-color: transparent;
  }

  .cailiao-bot-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    /* 默认完全透明 */
    pointer-events: none;
    /* 不影响点击 */
    z-index: 0;
    /* 确保在内容之上 */
    transition: none;
    opacity: 0;
  }

  .cailiao-bot-item:hover::after {
    background-color: rgba(255, 255, 255, 0);
    /* 白色半透明遮罩 */
    opacity: 0;
  }

  .cailiao-bot-item:hover {
    z-index: 0;
    border-radius: 5px;
    /* 如果需要可以保留 */
    box-shadow: 0 6px 10px -2px #c2e1f0,
      /* 更深色的投影，增加深度 */
      0 0 2px 3px #d4e1f3;
    /* 外发光效果，突出元素 */
    transform: none;
    /* 移除缩放 */
  }

  /* 移除文字动画效果 */
  .fangdan-cailiao,
  .fangdan-des {
    transform: none;
    transition: none;
  }

  .cailiao-bot-item .fangdan-cailiao,
  .cailiao-bot-item .fangdan-des {
    opacity: 1;
    /* 确保文本总是可见 */
  }

  /* 移除按钮动画效果 */
  .cailiao-hidden-des-a,
  .cailiao-hidden-des-a_2 {
    transform: none;
    transition: none;
    opacity: 0;
    /* 确保按钮总是可见 */
  }

  .cailiao-bot-item:hover .cailiao-hidden-des-a,
  .cailiao-bot-item:hover .cailiao-hidden-des-a_2 {
    opacity: 0;
  }

  .cailiao-bot-item .cailiao_line_2,
  .cailiao-bot-item .cailiao_line {
    transform: none;
    transition: none;
  }

  .cailiao-bot-item:hover .cailiao_line_2,
  .cailiao-bot-item:hover .cailiao_line {
    border-left: 2px solid #ec6956;
  }

  .sanwei-cailiao {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .sanwei-tit {
    margin-bottom: 10px;
  }
.sanwei-item-name{
    font-size: 17px;
}
  .sanweilist {
    margin-top: 15px;
  }
.sanwei-item img{
    max-height: 112px;
}
  .cailiao-zhichi {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .qianyanlist {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .keyan-news {
    padding-top: 0px;
    padding-bottom: 20px;
  }

  .pinzhibaozheng {
    padding-top: 0px;
    padding-bottom: 25px;
  }

  .baozheng-bottom-det {
    font-size: 16px;
  }

  .content-news {
    padding-top: 15px;
  }

  .news-tabs2 {
    margin-bottom: 20px;
  }

  .year-date {
   
  }

  .des-tit {
    width: 100%;
  }

  .news-item .news-item-img {
    width: 43%;
    margin-right: 4%;
  }

  .des {
    display: none;
  }

  .tit {
    -webkit-line-clamp: 3;
    min-height: 66px;
    max-width: 191px;
  }

  .news-more {
  
    font-size: 14px;
    height: 30px;
    width: 100px;
    line-height: 30px;
    margin-left: 51%;
  }

  .kcx-brand {
    padding-bottom: 25px;
  }

  .con-rig-tit,
  .con-rig-rig-det {
    margin-top: 15px;
  }

  .con-rig-left-de,
  .con-rig-rig-det {
    margin-top: 15px;
    line-height: 28px;
  }

  .zaixianzixun {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .zixun-item {
    margin-top: 15px;
  }

  .want-des {
    font-size: 14px;
  }

  .want-dets {
    flex-direction: column;
    width: 86%;
    margin: 0 auto;
    align-items: flex-start;
  }

  .want-inp,
  .want-textarea {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }
.want-inp{
    height: 40px;
}
  .want-name {
    margin-left: 3px;
  }

  .zx-bottom {
    height: auto;
    padding-bottom: 20px;
  }

  .want-dets-textarea {
    flex-direction: column;
    width: 86%;
    margin: 0 auto;
  }

  .zx-detail {
    height: auto;
    padding-bottom: 20px;
  }

  .zx-submit {
    margin-left: 20%;
  }

  .zx-more {
    margin-left: 70%;
  }

  .pro-item-des {
    display: none;
  }

  .prolist-tit {
    font-size: 24px;
  }

  .prolist-hengxian {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  #category-list {
    margin-top: 20px;
  }

  .content-keyan {
    padding-top: 15px;
    padding-bottom: 20px;
    font-size: 24px;
  }

  .innovation-item:last-child {
    margin-bottom: 10px;
  }

  .tab-btn.active {
    background-image: url(/images/mobile_xiala_green.png);
    background-size: 10%;
  }
}

  @media (max-width: 1024px) {
         .container-jianjie table {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        border: none !important;
    }
    .container-jianjie table tbody,
    .container-jianjie table tr {
        display: block !important;
        width: 100% !important;
    }
    .container-jianjie table td {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px 0 !important;
        border: none !important;
        box-sizing: border-box !important;
    }
    .container-jianjie table img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
        border-radius: 8px !important;
    }
    .container-jianjie p {
        word-break: break-word !important;
        width: 100% !important;
        margin: 0 0 15px 0 !important;
        text-align: left !important;
        line-height: 1.8 !important;
        font-size: 16px !important;
    }
    .container-jianjie table br {
        display: none !important;
    }
}
  /*PC端锚链接*/
#index0, #index1, #index2, #index3, #index4 {
    scroll-margin-top: 80px;
}
    #index0::before,
    #index1::before,
    #index2::before,
    #index3::before,
    #index4::before {
        content: "";
        display: block;
        /*        height: 80px;
        margin-top: -80px;*/
    }

    /* 兼容 360：直接 hash #index1 时的 80px 上偏移（伪元素锚点法，不依赖 scroll-margin-top） */
    #index1.anchor-offset::before {
        content: "";
        display: block;
        height: 80px;
        margin-top: -80px;
    }

/* 设置 textarea 输入字体 */
.want-textarea {
    font-family: "Alibaba-PuHuiTi", sans-serif !important;
}

    .want-textarea::placeholder {
        font-family: "Alibaba-PuHuiTi", sans-serif;
    }