

[title] {
  position: relative;
  display: inline-block;
  cursor: pointer;
  line-height: normal;
}

.tooltip {
  position: absolute;
  width: auto;
  max-width: 260px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  /* white-space: nowrap; */
  z-index: 1000;
}

.tooltip::before {
  content: '';
  position: absolute;
  bottom: 50%;
  right: 100%;
  transform: translateY(50%);
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #333 transparent transparent;
}

/* top */
.header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  height: 62px;
}

.header .logo img{
  height: 52px;
}

.header .nav {
  margin-left: 0;
  margin: 0 6vw;
}

.header .nav > ul > li {
  position: relative;
  height: 62px;
  line-height: 62px;
}

.header .nav > ul > li > a svg{
  display: none;
}

.pop-search {
  margin-left: 0;
  height: 62px;
}


.header .nav>ul>li:hover ul.sub-menu {
  display: flex;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(27, 56, 132, 0.9);
  /* display: flex; */
  flex-direction: column;
  width: 100%;
  box-sizing: content-box;
}

.header .nav>ul>li ul.sub-menu a {
  display: block;
  height: 40px;
  line-height: 40px;
  color: #FFF;
  font-size: 14PX;
}

.header .nav>ul>li ul.sub-menu>li:hover>a {
  background: linear-gradient(to bottom, #4285f4, #3367d6);
}


.header .nav>ul>li ul.sub-menu.title_box {
  display: none;

}

.header .nav>ul>li:hover ul.sub-menu.title_box {
  display: flex;
  flex-direction: row;
  width: 1280px;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: content-box;
  height: 200px;
  padding-left: 0;
}

.header .nav>ul>li ul.sub-menu.title_box>li>a {
  height: 100px;
  border-right: none;
  padding: 16px 0;
  width: 160px;
  border-bottom: 1px dashed #e0e0e0;
  margin-bottom: 10px;
}

.header .nav>ul>li ul.sub-menu.title_box>li>a em {
  font-size: 15px;
  font-weight: bold;
}

.header .nav>ul>li ul.sub-menu.title_box>li:hover>a {
  background: none;
  border-bottom: 5px solid #4285f4;
  position: relative;
}

.header .nav>ul>li ul.sub-menu.title_box>li:hover>a em {
  color: #4285f4;
  font-weight: bold;
}

.header .nav>ul>li ul.sub-menu.title_box>li>a.cur {
  background: none;
}

.header .nav>ul>li ul.sub-menu.title_box>li:hover>a::after {
  content: "";
  /* 必须要有content属性 */
  position: absolute;
  top: 100%;
  /* 调整这个值来改变三角形与div底部的距离 */
  left: 50%;
  /* 左右居中 */
  transform: translateX(-50%);
  /* 确保绝对定位元素在水平方向上居中 */
  border-width: 12px;
  /* 边框宽度 */
  border-style: solid;
  border-color: #4285f4 transparent transparent transparent;
  /* 上、左、右为透明，下为蓝色 */
  width: 0;
  /* 三角形不需要宽度和高度 */
  height: 0;
  /* 三角形不需要宽度和高度 */
}

/* 二级分类 */
.header .nav>ul>li ul.sub-menu.title_box>li {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 160px;
}

.header .nav>ul>li:hover ul.sub-menu.title_box {
  /* display: block; */
  height: auto;
  padding-bottom: 10px;
}

.header .nav>ul>li ul.sub-menu.title_box>li .third-menu {
  /* display: none;
  position: absolute;
  top: 0;
  left: 100%; */
}

.header .nav>ul>li ul.sub-menu.title_box>li .third-menu {
  display: flex;
  flex-wrap: wrap;
  /* background: #fff; */
  flex-direction: column;
  z-index: 99;
  width: auto;
}


.header .nav>ul>li ul.sub-menu.title_box>li .third-menu a {
  font-size: 13px;
  color: #ccc;
  display: block;
  padding: 0;
  height: auto;
  line-height: 1.3;
  padding: 5px 1px;
}

.header .nav>ul>li ul.sub-menu.title_box>li .third-menu a:hover {
  background: none;
  color: #4285f4;
  text-shadow: 0 0 0px;
  text-decoration: underline;
}

/* Page: about */
.fixedmeau li:hover,
.fixedmeau li.active,
.title_box a:hover,
.title_box a.cur {
  background: linear-gradient(to bottom, #4285f4, #3367d6);
}

.about_banner {
  padding-top: 128px;
}

.about_banner {
  min-height: 300px;
}

.about_banner .title_box {
  padding-left: 120px;
}

.fixedmeau {
  width: 800px;
}

.fixedmeau li {
  cursor: pointer;
}

.louceng .contact-banner {
  background: #fff;
  color: #333;
  /* 文字颜色 */
  padding: 60px 20px;
  /* 内边距 */
  text-align: center;
  /* 文本居中 */
  position: relative;
  /* 为子元素的绝对定位提供参考 */
}

.louceng .contact-banner .container {
  max-width: 1000px;
  /* 容器最大宽度 */
  margin: 0 auto;
  /* 水平居中 */
}

.louceng .contact-banner h1 {
  font-size: 2.5em;
  /* 大标题字号 */
  margin-bottom: 20px;
  /* 大标题下边距 */
}

.louceng .contact-banner h3 {
  font-size: 1.25em;
  /* 副标题字号 */
  color: #555;
  /* 副标题颜色 */
  margin-bottom: 30px;
  /* 副标题下边距 */
}

.louceng .contact-banner p {
  font-size: 1em;
  /* 段落字号 */
  line-height: 1.6;
  /* 行高 */
  margin: 0 auto 40px;
  /* 段落下边距 */
  max-width: 400px;
  /* 段落最大宽度 */
}

.louceng .contact-banner .contact-info {
  list-style: none;
  /* 移除列表默认样式 */
  padding: 0;
  display: flex;
  justify-content: center;
  /* 子元素水平居中 */
  font-size: 1em;
  /* 列表项字号 */
}

.louceng .contact-banner .contact-info ol {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.louceng .contact-banner .contact-info li {
  margin: 0 15px;
  /* 列表项间距 */
  position: relative;
  /* 为伪元素定位 */
  padding-left: 25px;
  /* 图标位置 */
  display: flex;
  flex-direction: column;
  width: 31%;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.louceng .contact-banner .contact-info li a{
  text-decoration: none;
  border-bottom: 1px dashed #307bbe;
  color: #307bbe;
  font-weight: bold;
}

.louceng .contact-banner .contact-info li img {
  width: 90px;
}

/* .about_jianjie .left{
  width: 40%;
}

.about_jianjie .right{
  width: 60%;
} */

.about_jianjie{
  padding: 30px 0;
}

.about_jianjie .box{
  border-radius: 10px;
}


.about_jianjie .left img{
  width: 100%;
}

.about_jianjie .left .img{
  border-radius: 30px;
  overflow: hidden;
}

.about_jianjie .right .text{
  padding: 30px 0 0;
}

.about_jianjie .right .text img{
  width: 400px;
  float: left;
  max-width: 100%;
  border-radius: 6px;
  margin-right: 10px;
  margin-bottom: 10px;
  box-shadow: 0 0 5px #CCC;
}


.about_jianjie .right .t p {
  margin-bottom: 12px;
  text-align: justify;
  text-indent: 2em;
  color: #333;
  line-height: 1.8;
}


.timeline {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
  color: #2c3e50;
  padding: 30px 0;
}

.timeline .about_titlt {
  margin-bottom: 20px;
}

.timeline h4{
  font-size: 1.25em;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}


.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-left: 40px;
  padding-bottom: 30px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  /* overflow: hidden; */
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #1a237e, #3949ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 50px;
  position: relative;
  transition: transform 0.4s ease-in-out;
}

.timeline-item:last-child{
  padding-bottom: 0;
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
}

.timeline-date {
  flex-basis: 18%;
  margin: 0 1%;
  font-size: 18px;
  font-weight: bold;
  color: #f39c12;
  position: relative;
  z-index: 1;
  background: #2c3e50;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  animation: fadeIn 1s ease forwards;
}

.timeline-content {
  flex-basis: 80%;
  padding-left: 40px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  transition: transform 0.4s ease-in-out;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.2);
}

.timeline-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a237e;
}

.timeline-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #34495e;
  text-align: justify;
}

.timeline-item p a{
  /* color: #f39c12; */
  border-bottom: #f39c12 1px dashed;
}

.timeline-item:hover p a{
  color: #f39c12;
}

.timeline-item p a:hover{
  border-bottom: #f39c12 1px solid;
}

.timeline-item:before {
  content: '';
  position: absolute;
  top: 15px;
  left: -18px;
  height: 20px;
  width: 20px;
  background: linear-gradient(135deg, #f39c12, #f1c40f);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item:hover::before{
  animation: pulse 1.5s infinite ease-in-out;
  top: 20px;
  left: -8px;
  background: rgba(255, 0, 0, 1);
}

@keyframes pulse {
  0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
  }
  50% {
      transform: translate(-50%, -50%) scale(1.4);
      opacity: 1;
  }
  100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
  }
}

.timeline-wrapper{
  position: relative;
}

.timeline-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 3px;
  background-color: #f39c12;
  z-index: 0;
}

.timeline-content:hover {
  background: rgba(44, 62, 80, 0.1); 
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.about_jianjie .right .about_titlt {
  text-align: center;
  margin-bottom: 20px;
}

.about_jianjie .right h4{
  font-size: 1.25em;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

.about_titlt {
  font-family: 'Montserrat', sans-serif;
  /* 使用Google字体 */
  font-size: 2rem;
  /* 字体大小 */
  color: #333;
  /* 字体颜色 */

  margin: 0 auto 1.5em;
  /* 上下边距和水平自动边距 */
  position: relative;
  /* 为装饰元素提供定位上下文 */
  background-image: linear-gradient(to right, #f06, #f06 50%, #307bbe 50%, #307bbe 100%);
  /* 背景渐变色 */
  -webkit-background-clip: text;
  /* 背景剪切到文本 */
  color: transparent;
  /* 文字颜色设置为透明 */
  background-size: 200% 100%;
  /* 背景大小 */
  background-position: 100%;
  /* 背景位置 */
  transition: background-position 0.5s ease;
  /* 背景位置变化的过渡效果 */
  display: flex;
    justify-content: center;
    letter-spacing: 5px;
}

.about_titlt::before {
  content: '';
  /* 伪元素内容 */
  position: absolute;
  /* 绝对定位 */
  bottom: -10px;
  /* 底部位置 */
  left: 50%;
  /* 左侧50% */
  transform: translateX(-50%);
  /* 水平居中 */
  width: 80px;
  /* 宽度 */
  height: 3px;
  /* 高度 */
  background-color: #307bbe;
  /* 背景颜色 */
  border-radius: 3px;
  /* 圆角 */
}

.about_titlt:hover {
  background-position: 0%;
  /* 鼠标悬停时背景渐变移动 */
}

.product-line{
  padding: 30px 0;
}

.product-line .product-category{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-line .product-category h4{
  font-size: 1.5rem;
  color: #007aff;
}

.product-line .product-category a{
  border: 1px solid #2c3e50;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 30px;
  transition: all linear .1s;
}

.product-line .product-category a:hover{
  background: #2c3e50;
  color: #f39c12;
  box-shadow: 1px 1px 3px #666;
}

.product-line .product-swiper{
  padding: 0 50px 30px;
}

.product-line .swiper-pagination{
  max-width: 50%;
  height: 30px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.product-line .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  color: #FFFFFF;
  line-height: 30px;
  font-size: 1rem;
}

.product-line .swiper-pagination-bullet.swiper-pagination-bullet-active{
  box-shadow: 1px 2px 3px #666;
}

.product-line ul{
  display: flex;
  flex-direction: row;
}

.product-line ul li{
  width: 24%;
  margin-right: 1.33%;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 0;
  position: relative;
}

.product-line ul li:nth-child(4n){
  margin-right: 0;
}

.product-line ul li .pro-img{
  width: 100%;
  height: 326px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.product-line ul li img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.product-line ul li p{
  padding: 10px;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

@media (max-width: 768px) {
  .about_titlt {
    font-size: 2em;
    /* 移动设备上减小字体大小 */
  }
}

@media (max-width: 768px) {
  .louceng .contact-banner {
    padding: 40px 20px;
    /* 小屏幕下减小内边距 */
  }


  .louceng .contact-banner h1 {
    font-size: 2em;
  }

  .louceng .contact-banner h3 {
    font-size: 1em;
  }

  .louceng .contact-banner p {
    margin-bottom: 20px;
  }

  .louceng .contact-banner .contact-info {
    flex-direction: column;
    /* 垂直排列列表项 */
    align-items: center;
    /* 垂直居中对齐 */
  }

  .louceng .contact-banner .contact-info li {
    margin: 10px 0;
    /* 调整列表项间距 */
  }
}

/* Page: Product */

.pro_banner .title_box a {
  position: relative;
  /* 为动画背景位置变化做准备 */
  z-index: 1;
  /* 确保链接在动画背景之上 */
  transition: background-size 0.3s ease;
  /* 平滑过渡背景大小变化 */
}

/* 为动画创建关键帧 */
@keyframes colorMotion {
  0% {
    background-position: 100% 50%;
    /* 动画开始时，渐变在右侧 */
  }

  100% {
    background-position: 0% 50%;
    /* 动画结束时，渐变滚动到左侧 */
  }
}

/* 应用动画到当前激活的链接和鼠标悬浮时的链接 */
.pro_banner .title_box a.cur,
.pro_banner .title_box a:hover {
  background-image: linear-gradient(to right,
      #4285f4 0%,
      /* 渐变开始的淡蓝色 */
      #3367d6 50%,
      /* 渐变中间的淡蓝色 */
      #4285f4 100%
      /* 渐变结束的淡蓝色 */
    );
  animation: colorMotion 5s linear infinite;
  /* 应用动画，设置持续时间、运动曲线和重复方式 */
  background-size: 200% 100%;
  /* 设置背景大小，以便渐变有足够的空间进行动画 */
  font-weight: 700;
}

.banner_pro .title_box {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin-left: 0;
  padding-left: 0;
}



/* 如果需要，可以添加一个规则来重置a标签的默认样式 */
.pro_banner .title_box a {
  text-decoration: none;
  /* 移除下划线 */
  color: inherit;
  /* 允许继承文本颜色 */
}

.pro_nav .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pro_banner.service_banner {
  min-height: 400px;
  padding-top: 120px;
}

.pro_box_img ul {
  display: flex;
  flex-wrap: wrap;
  /* 允许换行 */
  justify-content: start;
  /* 子元素之间的间距均匀分布 */
}

.pro_box_img .clearfix {
  width: 100%;
  /* 确保外层容器占满宽度 */
}

.pro_box_img ul li {
  /* flex: 0 0 calc(19% - 10px); */
  /* 每个li占据20%的宽度，减去间距 */
  width: 19%;
  margin: 0;
  margin-bottom: 1.25%;
  margin-right: 1.25%;
  /* 每行底部的间距 */
  box-sizing: border-box;
  /* 边框计算在宽度内 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* 轻微的阴影 */
  border-radius: 8px;
  /* 边框圆角 */
  overflow: hidden;
  /* 确保图片不会超出容器 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* 平滑过渡效果 */
  padding-bottom: 0;
  position: relative;
  border: 1px solid #EEE;
}

.pro_box_img li .text p {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: rgba(27, 56, 132, 0.2);
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  flex-direction: column;
  text-align: justify;
}

.pro_box_img li .text p a {
  color: #fff;
}

.pro_box_img li .text p a.btn {
  color: #fff;
  display: block;
  width: 80%;
  margin: 10px auto 0;
  background: #13488f;
  padding: 5px;
  text-align: center;
}

.pro_box_img li:hover .text p {
  display: flex;
}

.pro_box_img ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 56, 132, 0.75);
}

.pro_box_img li .img {
  width: 100%;
  height: 256px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.pro_box_img li .img img {
  max-height: 100%;
  max-width: 100%;
}

.pro_box_img ul li a {
  display: flex;
  flex-direction: column;
}

.pro_box_img li .text {
  width: 100%;
  padding-left: 0;
  padding-top: 0;
  padding: 8px;
  height: auto;
}

.pro_box_img li .text h3 {
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
    color: #333;
}

.current {
  margin: 10px 0 20px;
}

.page a {
  border-radius: 3px;
}

.breadcrumb-container a:last-child {
  color: #094293;
}

.proshow_banner {
  background: #ffffff;
}

.fenxiang {
  display: none;
}

.contact-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  margin: 20px 0;
}

.tel-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  padding: 5px 5px 5px 0;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 12px;
  height: 52px;
  border: 1px solid #ccc;
  transition: linear 0.1s;
}

.tel-wrapper img {
  width: 56px;
  height: auto;
}

.tel-wrapper h4 {
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

.tel-wrapper h4 a {
  color: #ef1f1f;
  font-size: 20px;
  FONT-FAMILY: arial;
  font-weight: 900;
}

.contact-container .qq-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #dedede;
  height: 52px;
  padding: 10px;
  border-radius: 6px;
  transition: linear 0.1s;
  border: 1px solid #ccc;
}


.contact-container .qq-wrapper a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  font-weight: bold;
}

.contact-container .qq-wrapper img {
  width: 28px;
  height: auto;
  margin-right: 5px;
}

.qq-wrapper:hover,
.tel-wrapper:hover {
  box-shadow: 3px 3px 6px;
}

.qq-wrapper:hover a,
.tel-wrapper:hover h4 {
  color: #000;
}

.tel-wrapper:hover h4 a {
  font-size: 20px;
}

.tab-wrapper {
  background: #f7f7f7;
  display: flex;
  flex-direction: row;
  justify-content: start;
  border: 1px solid #eee;
  border-bottom: 1px solid #ef1f1f;
  background: linear-gradient(180deg, #FEF1EF 0%, #FFFFFF 100%);
}

.tab-wrapper .tab-item {
  height: 48px;
  line-height: 48px;
  width: 110px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.tab-wrapper .tab-item.active {
  background: #ef1f1f;
  color: #fff;
  font-weight: bold;
}

.content-container {
  border: 1px solid #eee;
  border-top: none;
  padding: 20px;
}

.content-container .content-wrapper {
  display: none;
}

.content-container .content-wrapper:first-child {
  display: block;
}

.productview .right .content-container .product-price p {
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: justify;
}

.productview .right .content-container .product-contact h4 {
  margin: 10px 0 0px;
}

.productview .right .content-container .product-contact p {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: 14px;
  color: #333;
}

.productview .right .content-container .product-contact p span {
  display: inline-block;
  width: 80px;
  color: #999;
}

.proshow_banner .con_box {
  display: flex;
  flex-direction: row;
}

.proshow_banner .con_box .text {
  float: none;
  width: 40%;
  padding: 0 20px;
}


.shop-info {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 16px;
  background-image: linear-gradient(#f5faff, #fff);
  border: 1px solid #eee;
  width: 20%;
  border-radius: 5px;
  height: 350px;
}

.shop-info .shop-link {
  display: flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  margin: 15px 0 0;
}

.shop-info .img-container {
  border: 1px solid #eee;
  border-radius: 50%;
  overflow: hidden;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #ffffff;
}

.shop-info .logo {
  width: 100%;
  height: auto;
}

.shop-info .shop-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.shop-info .shop-name {
  font-size: 14px;
  font-weight: bold;
}

.shop-info .shop-tag {
  font-size: 12px;
  background-color: #fce6e6;
  padding: 0.25em 0.5em;
  border-radius: 4px;
  border: 1px solid rgb(252, 210, 210);
  color: rgb(239, 31, 31);
  width: 106px;
  text-align: center;
  margin-top: 4px;
}

.shop-info .badge-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.shop-info .verification-badge {
  padding: 1px 2px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid rgb(208, 217, 253);
  color: rgb(78, 110, 242);
  margin: 0px 2px;
}

.shop-info .product-desc {
  margin-bottom: 1em;
  margin: 0 12%;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.shop-info .action-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
}

.shop-info .btn {
  color: #333;
  background-color: #eee;
  border-color: #eee;
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.shop-info .btn:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.shop-info .activity-log {
  border: 1px solid #ddd;
  padding: 1em;
}

.shop-info .log-list {
  list-style: none;
  padding: 0;
}

.shop-info .log-item {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 0.5em;
}

.shop-info .avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.shop-info .log-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* 图片基本样式 */
.proshow_banner .con_box .img {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #eee;
  float: none;
  width: 40%;
  height: 350px;
}

.proshow_banner .con_box .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 300px;
  /* 限制图片的最大高度 */
  border-radius: 5px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
  /* 平滑过渡效果，持续0.5秒 */
  cursor: pointer;
  /* 鼠标悬停时显示手形图标 */
  max-width: 100%;
  min-height: 90%;
}

/* 图片悬停时放大效果 */
.proshow_banner .con_box .img img:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  /* 放大到110% */
  -moz-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.productview .right {
  border-left: 0;
}

.productview .left {
  padding-right: 0;
}

.productview .left b {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  padding-left: 10px;
}

.productview .left ul,
.productview .left ol {
  border: 1px solid #eee;
  border-top: none;
}

.productview .left ul li:last-child,
.productview .left ol li:last-child {
  border-bottom: none !important;
}

.productview {
  width: 1280px;
  font: 12px/1.2 Tahoma, Arial, "\5b8b\4f53", sans-serif;
}

.productview .left ul.cata-list li {
  padding: 0;
  border-bottom: 1px #eee solid;
}

.productview .left ul.cata-list li:hover a {
  color: #336699;
  font-weight: bold;
}

.productview .left ul.cata-list li a {
  display: block;
  padding: 10px 5px;
}

.productview .left ul.related-list {
  padding: 0 10px 5px;
}

.productview .left ul.related-list li {
  list-style: unset;
  transition: background-color 0.3s ease;
  cursor: pointer;
  /* 鼠标悬停时显示手形图标 */
  background-size: 200% 100%;
  /* 设置背景大小，以便渐变有足够的空间进行动画 */
  padding: 12px 4px;
  border-bottom: none;
}

.productview .left ul.related-list li .t-price {
  color: #ef1f1f;
  font-size: 16px;
  font-family: "arial";
  font-weight: bold;
  margin-top: 3px;
}

.productview .left ul.related-list li .t-price span {
  font-size: 12px;
}

.productview .left ul.related-list li img {
  max-width: 100%;
}

.productview .left ul.related-list li:hover a {
  color: #336699;
  font-weight: bold;
}

/* 定义渐变动画的keyframes */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.productview .left ul.related-list li a {
  font-size: 13px;
  line-height: 1.4;
  display: block;
  word-wrap: break-word;
}

.productview .left .lastest-news {
  padding-left: 10px;
}

.productview .left .lastest-news li {
  list-style: unset;
  padding-left: 0;
  background: none;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
}

.productview .left .lastest-news li a {
  font-size: 13px;
  color: #666;
}

.productview .left .lastest-news li:hover a {
  color: #336699;
}

.productview .left .lastest-news li span {
  color: #ccc;
  font-size: 12px;
}

.proshow_banner .con_box .text h1 {
  color: #002a5c;
  font-size: 30px;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  /* text-shadow: 2px 2px 4px; */
  letter-spacing: 0px;
  letter-spacing: 2px;
  font: 25px/1.2 Tahoma, Arial, "\5b8b\4f53", sans-serif;
  font-weight: bold;
}

.proshow_banner .con_box .text .t {
  color: #999;
  font-size: 13px;
  line-height: 26px;
  margin-top: 20px;
  padding: 15px 20px;
  margin-bottom: 10px;
  background: #fff8f8;
  border-top: 1px solid #ffcac6;
}

.proshow_banner .con_box .text .t .price-highlight {
  color: #ef1f1f;
  font-size: 20px;
  font-weight: bold;
}

.proshow_banner .con_box .text .t p strong {
  margin-right: 10px;
  width: 70px;
  display: inline-block;
}

.proshow_banner .con_box .text .t p a{
  color: rgb(78, 110, 242);
}

.proshow_banner .con_box .text .t p a:hover{
  font-weight: bold;
}

.productview .right>p {
  line-height: 1.5;
  margin-top: 11px;
  font-size: 15px;
  margin-bottom: 5px;
}

.productview .right table p {
  font-size: 14px;
}

.ke-zeroborder tr td {
  padding: 4px;
}

.productview .right table td {
  padding: 3px 5px;
  padding: 3px 5px;
  border: 1px solid #ccc;
  text-align: center;
}

.productview .right table tr:nth-child(2n+1){
  background: #EEEEEE;
}

/* 推荐产品列表容器 */
.recommended-products {
  margin-top: 100px;
}

/* 推荐产品列表标题 */
.recommended-products b {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 10px;
  display: block;
  font-weight: bold !important;
}

/* 推荐产品列表 */
.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* 单个推荐产品项 */
.product-list li {
  width: 24%;
  margin: 0;
  margin-bottom: 1.33%;
  margin-right: 1.33%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-list li:nth-child(4n){
  margin-right: 0;
}

.product-list li:hover {
  box-shadow: 3px 3px 5px #aaa;
  position: relative;
  top: -5px;
}

.product-list li:hover a {
  color: #336699;
  font-weight: bold;
}

.product-list li div.img {
  height: 218px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 图片和标题的容器 */
.product-list .product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 产品图片 */
.product-list img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
  max-height: 100%;
}

/* 产品标题 */
.product-list .product-title {
  font-size: 0.9em;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}



/* 新闻中心 */
.news_box {
  background: transparent;
}

.news_box .right .right_nav ol li a {
  height: auto;
  line-height: 1.5;
  font-size: 15px;
}

.news_banner.service_banner {
  padding-top: 126px;
  min-height: 400px;
}

.news_box .left ul li {
  border-radius: 5px;
  box-sizing: content-box;
  background: #f1efef;
}

.news_box .left ul li:hover {
  transform: translateY(-5px) translateX(10px);
  box-shadow: 0 6px 12px rgb(0 0 0 / 20%);
  background-image: linear-gradient(to bottom right, #f0f8ff, #ffffff);
  color: #222;
  opacity: 0.95;
  border: 1px solid #e0e0e0;
}

.news_box .left ul li:hover .text span{
  background: linear-gradient(to bottom, #4285f4, #3367d6);
  color: #FFF;
  border-radius: 5px;
}

.news_box .left .news_con .con p {
  line-height: 1.8;
  margin: 1rem 0 0.5rem;
}

.news_box .left .news_con .con > p {
  text-align: justify;
}

.news_box .left .news_con .con > p[align='center']{
  text-align: center;
}

.news_box .left .news_con .con blockquote {
  margin-left: 0 !important;
  background: #f1f1f1;
  padding: 10px !important;
  border-radius: 6px;
  margin-bottom: 20px !important;
}

.news_box .left .news_con .con blockquote p {
  margin: 0;
}

.news_box .left .news_con .con h2 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
  background: linear-gradient(to bottom, #4285f460, #3367d660);
  padding: 5px;
  border-radius: 5px;
  display: inline-block;
  border-left: 3px solid #4285f4;
  box-shadow: 2px 2px 5px #999;
  text-shadow: 1px 1px 1px #FFF;
  line-height: 1.8rem;
}

.news_box .left .news_con .con a {
  text-decoration: none;
  color: #2673db;
  border-bottom: 1px dashed;
  box-sizing: border-box;
  position: relative;
}

.news_box .left .news_con .con a:hover {
  text-decoration: none;
  color: #2673db;
  font-weight: bold;
  border-bottom: 2px solid;
}

.news_box .left .news_con .con .shine-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  z-index: 2;
  animation: pulse 1.5s infinite ease-in-out;
  background: #005AAB70;
}

.table-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  user-select: none;
}

.table-wrapper table{
    width: 100%;
    border-collapse: collapse;
    cursor: all-scroll;
}

/* .table-wrapper table tr:nth-child(2n) td:first-child{
	background: #FFFFFF;
}

.table-wrapper table tr:nth-child(2n+1) td:first-child{
	background: #eeeeee;
} */

/* 整体滚动条样式 */
.table-wrapper::-webkit-scrollbar {
	height: 5px; /* 设置滚动条的高度 */
}

/* 滚动条轨道 */
.table-wrapper::-webkit-scrollbar-track {
	background-color: #0070CE30; /* 轨道背景颜色 */
	border-radius: 5px;         /* 边框圆角 */
}

/* 滚动条滑块 */
.table-wrapper::-webkit-scrollbar-thumb {
	background-color: #0070CE50;    /* 滑块颜色 */
	border-radius: 5px;        /* 边框圆角 */
}

/* 滚动条滑块悬停状态 */
.table-wrapper::-webkit-scrollbar-thumb:hover {
	background-color: #0070CE;    /* 悬停时的颜色 */
}

.news_box .left .news_con .con table td{
  padding: 3px 5px;
  min-width: 100px;
  box-sizing: content-box;
}

.news_box .left .news_con .con table p{
  margin: 0;
  line-height: 1.8;
  text-align: center;
}

.news_box .left .news_con .con table tr:nth-child(2n+1){
  background: #EEEEEE;
}

.news_box .container {
  width: 1280px;
}

.news_box .left ul li:hover .text h3 {
  color: #124189;
  font-weight: bold;
}

.news_box .left ul li:hover .data {
  background: rgba(27, 56, 132, 0.5);
}

.news_box .right .right_nav h3 {
  color: #1296db;
  font-size: 22px;
  font-weight: normal;
  border-bottom: dashed 1px #ccc;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: kaiti;
  font-weight: 600;
}

.news_box .right .right_nav h3 svg{
  width: 32px;
  height: 32px;
  margin-right: 3px;
}

.news_box .right .right_nav .imgnews-selected{
  margin-bottom: 20px;
}

.news_box .right .right_nav .imgnews-selected li {
  display: flex;
  flex-direction: row;
  float: unset;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 1rem;
  border-radius: 5px;
  /* overflow: hidden; */
  transition: linear .2s;
}

.news_box .right .right_nav .imgnews-selected li:hover{
  box-shadow: 1px 1px 5px #000;
  transform: translateX(5px);
}

.news_box .right .right_nav .imgnews-selected li .img {
  width: 100%;
}

.news_box .right .right_nav .imgnews-selected li .img img {
  border-radius: 4px;
  object-fit: cover;
  display: block;
  transition: linear .5s;
}

.news_box .right .right_nav .imgnews-selected li:hover .img img{

}

.news_box .right .right_nav .imgnews-selected li h4 {
  font-size: 15px;
  font-weight: normal;
  width: 100%;
  /* margin-left: 2%; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
}

.news_box .right .right_nav .imgnews-selected li h4 a {
  line-height: 1.3;
  text-align: justify;
  color: #FFFFFF;
  font-size: 15px;
  padding: 10px 5px;
  text-shadow: 0 0 1px #3367d6;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


.news_box .right .right_nav .hotnews-selected{
  margin-bottom: 20px;
}

.news_box .right .right_nav .hotnews-selected .hotnews-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0.5rem 0;
  float: unset;
  line-height: 1.2;
}

.news_box .right .right_nav .hotnews-selected .hotnews-item h4{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
 
}

.news_box .right .right_nav .hotnews-selected .hotnews-item h4 a{
  font-size: 15px;
  line-height: 1.4;
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 400;
  letter-spacing: 0;
  text-align: justify;
}

.news_box .right .right_nav .hotnews-selected .hotnews-item:hover h4 a{
  color: #094293;
}

.news_box .right .right_nav .hotnews-selected .hotnews-item h4 span{
  background: linear-gradient(135deg, #f2840c 0%, #f25c0c 100%);
  width: 20px;
  height: 20px;
  border-radius:  0 6px;
  font-size: 14px;
  font-weight: normal;
  margin-top: 2px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.news_box .right .right_nav .hotnews-selected .hotnews-item .hotnews-hits{
  display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color: #999;
    font-size: 13px;
    margin-left: 25px;
    align-self: end;
}

.news_box .right .right_nav .hotnews-selected .hotnews-item .hotnews-hits svg{
  width: 18px;
  height: 18px; 
}

.news_box .right .right_nav ol {
  padding-left: 16px;
}

.news_box .right .right_nav ol li {
  float: left;
  width: 100%;
  border: none;
  padding: 15px 0 0;
  list-style: circle;
}

.news_box .right .right_nav ol li .t {
  margin-top: 4px;
}


.news_box.news-detail {
  /* font: 12px/1.2 Tahoma, Arial, "\5b8b\4f53", sans-serif; */
}


.news_box .left .news_con h4.related-title {
  color: #003399;
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 3px solid #4285f4;
  padding-bottom: 10px;
}


.disclaimer-box {
  border: 1px solid #ddd;
  padding: 20px;
  background-color: #f9f9f9;
  margin-top: 30px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

.disclaimer-box .disclaimer-header {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.disclaimer-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.disclaimer-box .tips-wrapper {
  list-style-type: disc;
  padding-left: 20px;
}

.disclaimer-box .tips-wrapper .tip-item {
  display: list-item;
  list-style: disc;
  margin-bottom: 5px;
}

.disclaimer-box .tips-wrapper .tip-item strong {
  color: #333;
}


.related-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.related-products div.xgcp {
  width: 24%;
  margin-bottom: 10px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 0;
  position: relative;
  height: auto;
  margin-right: 1.33%;
}

.related-products div.xgcp:nth-child(4n) {
  margin-right: 0;
}

.related-products div.xgcp a .img {
  height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-products div.xgcp img {
  border: none;
  display: block;
  max-height: 100%;
  max-width: 100%;
  margin-bottom: 0;
}


.related-products div.xgcp:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgb(0 0 0 / 20%);
  /* background-image: linear-gradient(to bottom right, #f0f8ff, #ffffff); */
  color: #222;
  opacity: 0.95;
  border: 2px solid #00339980;
}

.related-products div.xgcp a {
  display: block;
  /* padding-bottom: 10px; */
}

.related-products div.xgcp a p {
  font-size: 14px;
  padding: 10px 5px;
  text-align: center;
}

.related-products div.xgcp:hover a p{
  color: #003399;
  font-weight: bold;
}

.news_banner.service_banner.detail_banner {
  padding-top: 130px;
}

.news_banner.service_banner.detail_banner h1 {
  position: relative;
  top: 59px;
}

.news_banner.service_banner.detail_banner .h2 {
  position: relative;
  top: 59px;
  font-size: 47px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.news_box .left .news_con h1 {
  text-align: center;
  color: #003399;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid #f1efef;
  padding-bottom: 3%;
  letter-spacing: 1px;
}

.news_box .right .right_nav ul li a {
  font-size: 14px;
  line-height: 2;
  display: block;
  word-wrap: break-word;
}

.news_box .right .right_nav ul.news_category li a{
  font-size: 18px;
}

.news_box .right .right_nav ul li a img {
  max-width: 100%;
}

.news_box .right .right_nav ul li .t-price {
  color: #ef1f1f;
  font-size: 16px;
  font-family: "arial";
  font-weight: bold;
  margin-top: 3px;
}

/* 文章页面自定义样式 */
.news_box .left .news_con .con img {
  max-width: 70%;
  border-radius: 5px;
  height: auto;
}

.news_box .left .news_con .con img[align='right'] {
  max-width: 50%;
  margin-left: 10px;
}

.news_box .left .news_con .con h4 {
  border-bottom: 1px dashed #f1efef;
  margin-top: 1rem;
  padding-bottom: 0.1rem;
  font-size: 1.1rem;
}

.news_box .left .news_con .con h3 {
  border-bottom: none;
  padding: 0;
  margin: 1rem 0 0.1rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  display: list-item;
  margin-left: 1em;
  list-style: circle;
}

/* 服务中心 */

.service_banner.service_section {
  min-height: 400px;
  padding-top: 140px;
}

.service_linian ul li{
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 5px #999;
}

.service_linian ul li .img img{
  display: block;
  object-fit: cover;
}

.service_linian ul li .text{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 1rem;
  text-shadow: 0px 0px 3px #000;
}

.service_linian {
  padding: 50px 0 0;
}


/* 资料下载 */
.service_banner.document_page {
  min-height: 400px;
  padding-top: 140px;
}

.service_wenti {
  padding-top: 10px;
}

.service_wenti .table {
  margin-top: 0;
}

.service_wenti .suosou {
  border: none;
}

.service_wenti .suosou .text {
  height: 36px;
}

.service_wenti .suosou .btn {
  background-color: #307bbe;
  border: none;
  width: 60px;
  padding: 4.6% 0;
  height: 36px;
  background-image: url(../images/search-white.png);
  background-size: 28px 28px;
  background-repeat: no-repeat;
  /* 防止图标平铺 */
  background-position: center center;
  transition: transform 0.3s, box-shadow 0.3s;
  /* 平滑过渡效果 */
}

/* search */

.search_box {
  padding: 100px 0 60px;
  min-height: 530px;
}

.search_box .search_con ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: unset;
}

.search_box .search_con ul li {
  flex: 0 0 calc(19% - 10px);
  margin: 10px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 0;
  position: relative;
  padding-top: 0;
}

.search_box .search_con ul li .img {
  width: 100%;
  height: 218px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_box .search_con ul li .img img {
  border: none;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}

.search_box .search_con ul li .text {
  width: 100%;
  padding-left: 0;
  padding-top: 0;
  padding: 8px;
  height: auto;
}


.search_box .search_con ul li .text a.info {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: rgba(27, 56, 132, 0.2);
  color: #fff;
  text-shadow: 0 0 2px #13488f;
  flex-direction: column;
  margin: 0;
}

.search_box .search_con ul li:hover .text a.info {
  display: flex;
}

.search_box .search_con ul li .text .bt {
  text-overflow: unset;
  overflow: inherit;
  white-space: pre-wrap;
  font-size: 14px;
  text-align: center;
  color: #333;
}

.search_box .search_con ul li .text a.info span.btn {
  color: #fff;
  display: block;
  width: 80%;
  margin: 10px auto 0;
  background: #13488f;
  padding: 5px;
  text-align: center;
}

.search_box .name span {
  color: #063b83;
  font-weight: bold;
  margin: 0 3px;
  font-size: 1.1rem;
}

.search_box .search_con {
  border-top: 1px dashed #ccc;
  padding-top: 20px;
}

.search_btns {
  margin: 60px 0 60px;
  text-align: center;
}

.search_btns form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 300px;
  margin: 20px auto;
}


.search_btns form .text {
  width: calc(100% - 42px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px 0 0 3px;
  font-size: 16px;
  color: #666;
  background-color: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  transition: all 0.3s ease;
}

.search_btns form .btn {
  width: 78px;
  height: 40px;
  line-height: 40px;
  border: none;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(to bottom, #4285f4, #3367d6);
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service_banner p.h2 {
  margin-top: 13px;
  font-size: 47px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1280px;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 6px;
}

.category-title {
  color: #002a5c;
  background: url(/images/pro-icon.png) left center no-repeat;
  background-size: 31px;
  padding: 5px 0px 5px 38px;
}

.category-title a {
  color: #002a5c;
  font-weight: 500;
}

.category-title:hover a {}

/* CSS */
.highlight {
  color: #063b83;
  font-weight: bold;
}

p.slider-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

p.slider-container a {
  width: 31%;
  margin: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
}

p.slider-container img {
  width: 100%;
  height: auto;
}

.pro_nav {
  padding: 15px 0;
  box-sizing: content-box;
}

.pro_nav a:hover,
.pro_nav a.cur {
  background: #ccc;
  color: #094293;
  border-bottom: 2px solid;
  border-radius: 3px 3px 0 0;
  font-weight: bold;
}

.pro_nav a {
  height: 42px;
  line-height: 42px;
  background-image: none;
  margin: 1px;
  box-sizing: border-box;
}

.contact-support {
  display: none;
}

.box_os .os_x {
  display: none;
}

.box_os .osqq p span a {
  color: #FF6600;
  font-weight: bold;
}

.phone-only {
  display: none;
}

.modal-container {
  display: none;
}

/* Contact */
.contact_banner ol{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact_banner ol li{
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.contact_banner ol li span{
  line-height: 1.5;
}

.contact_banner ol li a{
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px dashed;
}


/* 媒体查询 */
/* 平板端 */
@media screen and (min-width: 480px) and (max-width: 1268px) {

  html {
    font-size: 18px;
    /* 减小字体大小 */
  }

  .container {
    padding: 0 10px;
  }

  .header {
    height: 72px;
    justify-content: space-around;
    position: fixed;
  }

  .header .logo {
    width: 40%;
    margin-top: 0;
    padding: 0 10px;
  }

  .header .logo img {
    max-width: 100%;
  }

  .pop-search {
    width: 60%;
    padding: 0 10px;
    justify-content: end;
  }

  .pop-search .text {
    width: calc(100% - 26px);
    font-size: 1rem;
    height: 42px;
  }

  .pop-search .btn{
    width: 100px;
    height: 42px;
    font-size: 1rem;
  }

  .header .nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    /* background: rgba(27, 56, 132, 0.9); */
    background: #ffffff;
    border-top: 1px solid #eee;
  }

  .header .nav>ul {
    display: flex;
    flex-direction: row;
  }

  .header .nav>ul>li {
    padding: 0;
    width: 20%;
    line-height: unset;
    height: auto;
  }

  .header .nav > ul > li > a {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 0;
    font-family: arial,Microsoft Yahei;
    color: #666;
  }

  .header .nav > ul > li.cur, .header .nav > ul > li:hover{
    background: unset;
  }

  .header .nav > ul > li > a svg{
    display: block;
    width: 2rem;
    height: 2rem;
  }

  .header .nav > ul > li.cur a, .header .nav > ul > li:hover a{
    color: #3367d6;
  }

  .header .nav > ul > li.cur a svg path, .header .nav > ul > li:hover a svg path{
    fill: #3367d6!important;
  }

  .header .nav > ul > li > a svg path{
    fill:#666!important;
  }

  .header .nav>ul>li:hover ul.sub-menu{
    display: none!important;
  }

  .banner_con {
    margin-top: 72px;
  }

  .banner {
    height: auto;
  }

  .banner_con .icon_btn {
    display: none;
  }

  .banner .slick-prev,
  .banner .slick-next {
    width: 60px;
    height: 60px;
  }

  .banner .slick-dots li button {
    width: 18px;
    height: 18px;
  }

  .chanpin {
    max-width: 100%;
    margin-top: 20px;
  }

  .title-text h2 {
    font-size: 2rem;
  }

  .chanpin-header {
    margin: 0 2% 20px;
  }

  .chanpin-cata .title_box {
    flex-wrap: wrap;
    height: auto;
  }

  .title_box a em {
    font-size: 1rem;
  }

  .title_box {
    background: none;
    border: 1px solid rgba(255, 255, 255, .3);
  }

  .title_box a {
    width: 25%;
  }

  .chanpin-cata .title_box a {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
  }

  .chanpin-cata .title_box a:nth-child(4n) {
    border-right: none;
  }

  .chanpin-cata .title_box a:nth-child(7n),
  .chanpin-cata .title_box a:nth-child(8n) {
    border-bottom: none;
  }

  .chanpin ul {
    justify-content: center;
  }

  .chanpin ul li {
    flex: none;
    width: 31%;
    margin: 0;
    margin-right: 2%;
    margin-bottom: 2%;
  }

  .chanpin ul li .pro-img {
    height: 276px;
    overflow: hidden;
  }

  .chanpin ul li .pro-img img{
    object-fit: contain;
    max-height: 100%;
  }

  .chanpin ul li h2 {
    margin: 5px;
    font-size: 1rem;
  }

  .chanpin ul li:nth-child(3n) {
    margin-right: 0;
  }

  .service-center .service-wrapper {
    max-width: 100%;
    padding: 30px 20px;
  }

  .service-header h2 {
    font-size: 2rem;
  }

  .service-header p {
    font-size: 1rem;
  }

  .service-item {
    flex-basis: calc(33% - 10px);
    margin: 0px;
  }

  .service-footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .service-footer h3 {
    width: 100%;
    font-size: 1.3rem;
    text-align: center;
    margin: 10px 0;
  }

  .service-footer p {
    margin: 5px 0;
    font-size: 1rem;
    width: 33%;
    padding: 0 5px;
  }

  .service-footer .contact-btn {
    width: 30%;
    margin: 10px auto;
    font-size: 1.1rem;
    text-align: center;
  }

  .hot-news {
    width: 100%;
  }

  .hot-news {
    width: 49%;
    font-size: 1rem;
  }

  .hot-news .date {
    font-size: 0.8rem;
  }

  .news-header h2 {
    font-size: 2rem;
  }

  .news-header h2 b {
    font-size: 1rem;
  }

  .imgnews-container h4 {
    padding: 10px;
    font-size: 1rem;
    font-weight: 500;
  }

  .buyz {
    padding-top: 30px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .buyz h5 {
    color: #333;
    font-weight: normal;
    font-size: 1rem;
    margin-top: 10px;
    font-family: "微软雅黑";
  }

  .buyz h1 {
    color: #002a5c;
    font-size: 1.5rem;
    font-family: "微软雅黑";
  }

  .buyz .amore {
    display: inline-block;
    width: autp;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background-color: #0e89d6;
    font-style: normal;
    font-size: 1rem;
    margin-top: 20px;
    position: relative;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 0 20px;
  }

  .buytu {
    position: relative;
    top: 0;
    left: 0;
  }

  .buytu img {
    max-width: 100%;
    width: 100%;
  }

  .buytu .buy1 {
    position: absolute;
    top: 10px;
    left: 20%;
    width: 60%;
    max-width: 100%;
  }

  .footer {
    margin-bottom: 62px;
  }

  .footer .footer_bottom .banquan {
    text-align: center;
    font-size: 1rem;
  }

  .footer .footer_bottom .banquan a {
    margin: 8px 0;
    display: inline-block;
  }

  .footer .footer_bottom .banquan a img {
    vertical-align: middle;
    margin-right: 0px;
    width: 16px;
  }

  .footer .footer_bottom {
    padding: 20px 0 10px;
  }

  .box_os {
    right: 10px;
    top: unset;
    bottom: 10vh;
  }

  .top {
    display: none;
  }

  /* 联系我们 About Us */
  .service_banner h1 {
    font-size: 2rem;
  }

  .service_banner .name {
    font-size: 1rem;
    padding: 0 20px;
    line-height: 1.5;
  }

  .fixedmeau {
    max-width: 100%;
  }

  .about_banner .title_box {
    padding-left: 0;
    height: auto;
  }

  .fixedmeau li {
    width: 20%;
    height: auto;
    padding: 10px 0;
  }

  .fixedmeau li span {
    margin-top: 0;
  }

  .fixedmeau li em {
    font-size: 1rem;
  }

  .about_jianjie .container {
    padding: 0;
  }

  .about_jianjie .box {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about_jianjie .left {
    width: 50%;
    display: none;
  }

  .about_jianjie .left img {
    max-width: 100%;
  }

  .about_jianjie .right {
    width: 100%;
    padding: 15px 10px 2%;
  }

  .about_jianjie .right .text img{
    width: 100%;
  }

  .about_jianjie .right .text{
    padding-top: 0;
  }

  .about_name {
    font-size: 1rem;
  }

  .about_jianjie .right .t p {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .timeline-container {
    width: 98%;
  }


  .product-line .container{
    padding: 0 5px;
  }

  .product-line .about_titlt{
    margin-bottom: 1rem;
  }

  .product-line .product-swiper{
    padding: 50px 5px 20px;
  }

  .product-line .product-category{
    margin-bottom: 10px;
  }

  .product-line .product-category h4{
    font-size: 1.2rem;
  }

  .product-line ul{
    flex-wrap: wrap;
  }

  .product-line ul li{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 10px;
  }

  .product-line ul li:nth-child(2n){
    margin-right: 0;
  }

  .product-line ul li .pro-img{
    height: 280px;
  }

  .product-line .swiper-button-prev{
    left: 1px;
  }

  .product-line .swiper-button-next{
    right: 1px;
  }

  .product-line .product-category{}

  .product-line .swiper-pagination{
    width: 100%;
    max-width: 100%;
    top: -35px;
  }

  .louceng .contact-banner h3 {
    font-size: 1rem;
  }

  .louceng .contact-banner p {
    font-size: 1rem;
    max-width: 90%;
  }

  .louceng .contact-banner .contact-info ol {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .louceng .contact-banner .contact-info li {
    width: 100%;
    font-size: 1rem;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    padding-left: 0;
  }

  .louceng .contact-banner .contact-info li img {
    width: 40px;
    margin-right: 5px;
  }

  .louceng .contact-banner h1,
  .about_titlt {
    font-size: 1.5rem;
    margin: 0 auto 1em;
  }

  .about_wenhua ol li .img .text {
    font-size: 16px;
  }

  .about_wenhua ol li .img span {
    font-size: 1.5rem;
  }

  .jobs .ke-zeroborder tr {
    display: flex;
    flex-direction: row;
  }

  .ke-zeroborder tr td {
    padding: 4px;
    font-size: 1rem;
  }

  .louceng .contact-banner {
    padding: 20px 10px;
  }

  /* 联系我们 About Us End */


  /* 产品中心 Product */

  .pro_banner.service_banner {
    min-height: auto;
    padding-top: 57px;
  }

  .pro_banner.service_banner .container {
    padding: 5px;
  }

  .service_banner p.h2 {
    margin-top: 4rem;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  .banner_pro .title_box {
    position: unset;
    left: 0;
    bottom: 0;
    transform: none;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    background: none;
    margin-top: 3rem;
    height: auto;
    max-width: 100%;
  }

  .pro_banner .title_box a {
    text-decoration: none;
    color: inherit;
    border-right: 1px solid rgba(255, 255, 255, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding: 15px 5px;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
  }

  .pro_banner .title_box a:nth-child(4n) {
    border-right: none;
  }

  .pro_banner .title_box a em {
    font-size: 1rem;
    margin: 5px auto 0;
    width: 100%;
  }

  .pro_banner .title_box a span {
    width: 100%;
    height: auto;
  }

  .pro_nav .container {
    max-width: 100%;
    padding: 0;
  }

  .pro_nav a {
    height: 36px;
    line-height: 36px;
    font-size: 1rem;
    margin: 1px 2px;
  }

  .breadcrumb {
    flex-direction: column;
    font-size: 1rem;
    margin: 20px auto 0;
    border-bottom: 0;
  }

  .breadcrumb-container {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 6px;
    margin-bottom: 20px;
  }

  .category-title {
    color: #002a5c;
    background: url(/images/pro-icon.png) left center no-repeat;
    background-size: 2rem;
    padding: 10px 0px 10px 2.2rem;
    font-size: 1.5rem;
  }

  .pro_box_img {
    max-width: 100%;
    margin-top: 0;
    padding: 0 10px;
  }

  .pro_box_img ul {
    justify-content: start;
  }

  .pro_box_img ul li {
    flex: unset;
    width: 49%;
    margin-right: 2%;
    margin-left: 0;
    margin-bottom: 2%;
    border: 1px solid #EEE;
  }

  .pro_box_img ul li a {
    display: flex;
    flex-direction: column;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pro_box_img ul li:nth-child(2n) {
    margin-right: 0%;
    margin-left: 0%;
  }

  .pro_box_img li .img {
    height: 300px;
  }

  .pro_box_img li .img img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
  }

  .pro_box_img .text {}

  .pro_box_img li .text h3 {
    font-size: 1rem;
    text-align: center;
    font-weight: normal;
    COLOR: #000;
    padding-bottom: 5px;
  }

  .pro_box_img li .text p {
    font-size: 1rem;
  }

  .pro_box_img li .text p a {}

  .pro_box_img li .text p a.btn {
    width: auto;
    border-radius: 3px;
  }

  .page {
    font-size: 1rem;
  }

  /* 产品中心 结束 End */

  /* ProductView Begin */
  /* 产品详情页开始 */
  .proshow_banner {
    margin-top: 52px;
  }

  .proshow_banner .container {
    padding: 10px;
  }

  .proshow_banner .container .con_box {
    margin-top: 0;
  }

  .proshow_banner .con_box .text {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .proshow_banner .container .con_box .text h1 {
    font-size: 1.2rem;
    width: 100%;
  }

  .proshow_banner .con_box .img img {
    position: unset;
    top: 0;
    left: 0;
    max-height: 300px;
    border-radius: 5px;
    -webkit-transform: unset;
    -moz-transform: unset;
    cursor: pointer;
    max-width: 100%;
    min-height: unset;
  }

  .proshow_banner .container .con_box .img {
    display: flex;
    width: 50%;
    height: auto;
    min-height: unset;
    align-items: center;
    justify-content: center;
  }

  .proshow_banner .con_box .img img:hover {
    transform: unset;
  }

  .proshow_banner .container .con_box .text .t {
    font-size: 1rem;
    line-height: 1.5;
    width: 48%;
    margin: 0 0 0 2%;
    padding: 10px;
    border-top: none;
    border-left: 1px solid #ffcac6;
  }

  .proshow_banner .con_box .text .t .price-highlight {
    font-size: 1.5rem;
  }

  .proshow_banner .con_box .text .t p strong {
    margin-right: 0;
    width: auto;
    display: block;
    margin-top: 5px;
  }

  .shop-info {
    display: none;
  }

  .productview {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }

  .productview .right {
    border-left: 0;
    width: 100%;
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.8;
  }

  .tel-wrapper,
  .contact-container .qq-wrapper {
    height: 3.5rem;
  }

  .tel-wrapper h4 {
    font-size: 1rem;
  }

  .tel-wrapper h4 a {
    font-size: 1.3rem;
  }

  .contact-container .qq-wrapper a {
    font-size: 1rem;
  }

  .productview .right .content-container .product-contact p {
    font-size: 1rem;
  }

  .tab-wrapper .tab-item {
    height: 3rem;
    line-height: 3rem;
    width: 33.33%;
    font-size: 1.2rem;
    padding: 0;
  }

  .content-container {
    padding: 15px 10px;
  }

  table {
    width: 100% !important;
  }

  .prenext{
    background: none;
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.prenext .return{
  line-height: 2.5rem;
  font-size: 1rem;
}

  .recommended-products {
    margin-top: 40px;
    padding: 0 10px;
  }

  .product-list li {
    width: calc(50% - 10px);
    margin: 0 10px 10px 0;
    font-size: 1rem;
  }

  .product-list li:nth-child(2n) {
    margin-right: 0;
  }

  .product-list li div.img {
    height: 368px;
  }

  .productview .left {
    padding: 30px 10px;
    width: 100%;
  }

  .productview .left b,
  .productview .right b {
    font-size: 1.2rem;
  }

  .productview .left li {
    font-size: 1rem;
  }

  .productview .left ul.cata-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .productview .left ul.cata-list li {
    width: 50%;
    border-top: 1px solid #eee;
    border-bottom: none;
  }

  .productview .left ul.cata-list li:nth-child(1),.productview .left ul.cata-list li:nth-child(2){
    border-top:none;
  }

  .productview .left ul.cata-list li:nth-child(2n) a {
    border-right: none;
  }

  .productview .left ul.cata-list li a {
    display: block;
    padding: 1rem;
    text-align: center;
    border-right: 1px solid #eee;
  }

  .productview .left ul.related-list {
    display: none;
  }

  .productview .left b:nth-child(3) {
    display: none;
  }

  .productview .left .lastest-news {
    padding-left: 0;
  }

  .productview .left .lastest-news li {
    padding: 0.6rem;
  }

  .productview .left .lastest-news li a {
    font-size: 1rem;
  }

  .productview .left .lastest-news li span {
    font-size: 0.9rem;
  }

  /* 产品详情页结束 */

  /* 新闻列表 News List Center Start */
  .news_banner.service_banner {
    padding-top: 120px;
    min-height: unset;
  }

  .service_banner .name {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .news_banner.service_banner .title_box {
    padding-left: 0;
    width: 80%;
  }

  .news_banner.service_banner .title_box a {
    width: 33.33%;
  }


  .news_box .container {
    max-width: 100%;
  }

  .news_box .left {
    width: 60%;
  }

  .news_box .left ul li .data {
    display: none;
  }

  .news_box .left ul li .text {
    float: right;
    width: 100%;
    padding: 0 1rem;
  }

  .news_box .left ul li .text h3 {
    font-size: 1.1rem;
  }

  .news_box .left ul li .text p {
    font-size: 1rem;
    line-height: 24px;
    height: 48px;
  }

  .news_box .left ul li .text span {
    margin-top: 15px;
    display: inline-block;
    border: 1px solid #124189;
    line-height: 2rem;
    padding: 0 1rem;
    color: #124189;
    font-size: 1rem;
    border-radius: 3px;
  }

  .news_box .left ul li:hover {
    transform: unset;
  }

  .news_box .right {
    width: 38%;
    float: right;
    display: block;
  }

  .news_box .right .right_nav h3 {
    font-size: 1.2rem;
  }

  .news_box .right .right_nav ul li a {
    font-size: 1rem;
  }

  .news_box .right .right_nav ol li a {
    font-size: 1rem;
  }

  .news_box .right .right_nav ol li .t {
    font-size: 0.9rem;
  }

  /* 新闻中心结束 */

  /* 新闻详情页开始 Articles Begin */
  .news_banner.service_banner.detail_banner .h2 {
    font-size: 2rem;
  }

  .news_banner.service_banner.detail_banner {
    padding-top: 80px;
  }

  .news_banner.service_banner.detail_banner .title_box {
    margin-top: 80px !important;
  }

  .news_box .left .news_con h1 {
    font-size: 1.5rem;
  }

  .news_box .left .news_con .name {
    font-size: 0.9rem;
  }

  .news_box .left .news_con {
    padding: 20px 0;
  }

  .news_box.news-detail .left {
    width: 100%;
  }

  .related-products div.xgcp a .img {
    height: 300px;
  }

  .related-products div.xgcp img {
    border: none;
    display: block;
    max-height: 100%;
    max-width: 100%;
    margin-bottom: 0;
    height: auto;
    width: auto;
  }

  .news_box .left .news_con .con {
    font-size: 1rem;
  }


  .news_box.news-detail .right {
    width: 100%;
  }


  .news_box.news-detail .container {
    padding: 0 10px;
  }

  .news_box .left .news_con .con p {
    text-align: justify;
    text-align: justify;
  }

  .news_box .left .news_con h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .related-products {
    justify-content: center;
  }

  .related-products div.xgcp {
    flex: 0 0 calc(50% - 10px);
    margin: 0;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .related-products div.xgcp:nth-child(2n) {
    margin-right: 0;
  }

  .related-products div.xgcp a p {
    font-size: 1rem;
  }

  .news_box .left .news_con .bottom ol,
  .news_box .left .news_con .bottom ol li a {
    font-size: 1rem;
  }

  .news_box .left .news_con .bottom .return {
    font-size: 1rem;
  }


  /* 新闻详情页 End */

  /* 服务中心 */
  .service_banner.service_section,
  .service_banner.document_page {
    min-height: unset;
    padding-top: 140px;
    padding-bottom: 0;
  }

  .service_banner.service_section .title_box,
  .service_banner.document_page .title_box {
    margin-top: 20px !important;
    padding-left: 0;
    width: 80%;
  }

  .service_banner.service_section .title_box a,
  .service_banner.document_page .title_box a {
    width: 33.33%;
  }

  .service_tit {
    font-size: 1.5rem;
  }

  .service_yw {
    font-size: 1.5rem;
  }

  .service_name,
  .service_linian ul li .text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .service_liucheng .img img {
    max-width: 100%;
  }

  .service_wenti {
    padding-bottom: 14vh;
  }

  .service_wenti .table {
    margin-top: 0;
    max-width: 100%;
  }

  .service_wenti .table table tr th {
    font-size: 1rem;
  }

  .service_wenti .table table tr td {
    font-size: 1rem;
  }

  .service_wenti .suosou {
    width: 100%;
  }

  .service_wenti .suosou form {
    width: 100%;
  }

  .service_wenti .suosou .text {
    font-size: 1rem;
  }

  .service_wenti .suosou .text,
  .service_wenti .suosou .btn {
    height: 3rem;
  }

  .service_wenti .suosou .btn {
    width: 24%;
  }

  /* 服务中心结束 */

    /* 搜索结果页 */
    .search_box{
      padding: 80px 0 60px;
    }
  
    .search_box .name {
      font-size: 1rem;
    }
  
    .search_box .search_con ul li {
      flex: 0 0 calc(33.33% - 6.66px);
      margin: 10px;
      margin-left: 0;
      margin-top: 0;
    }
  
    .search_box .search_con ul li:nth-child(3n) {
      margin: 10px;
      margin-left: 0;
      margin-top: 0;
      margin-right: 0;
    }
  
    .search_box .search_con ul li .img{
      height: 228px;
    }

    .search_box .search_con ul li .img img{
      width: auto;
      height: auto;
    }
  
    .search_box .search_con ul li .text .bt{
      font-size: 1rem;
    }
    
    .search_btns form{
      width: 60%;
    }

    .search_btns form .text,.search_btns form .btn{
      font-size: 1rem;
      height: 3rem;
    }

    .search_btns form .btn{
      width: 100px;
    }

    .search_btns p{
      font-size: 1rem;
    }
  
    /* 搜索结果页 End */



}



/* PC */

@media (min-width:1280px){
  .chanpin-cata .title_box a{
    width: 160px;
  }
  .pro_box_img ul li:nth-child(5n) {
    margin-right: 0; 
  }
}







/* 手机端 */

@media (max-width: 480px) {
  html {
    font-size: 16px;
    /* 减小字体大小 */
  }

  .header {
    height: 52px;
    justify-content: space-around;
    position: fixed;
  }

  .header .logo {
    width: 40%;
    margin-top: 0;
    padding: 0 10px;
  }

  .header .logo img {
    max-width: 100%;
    height: 42px;
    width: auto;
  }

  .pop-search {
    width: 60%;
    padding: 0 10px;
  }

  .pop-search .text {
    width: calc(100% - 26px);
    font-size: 1rem;
    height: 38px;
  }

  .pop-search .btn {
    height: 38px;
    line-height: 38px;
    font-size: 1rem;
  }

  .header .nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    /* background: rgba(27, 56, 132, 0.9); */
    background: #ffffff;
    border-top: 1px solid #eee;
  }

  .header .nav>ul {
    display: flex;
    flex-direction: row;
  }

  .header .nav>ul>li {
    padding: 0;
    width: 20%;
    line-height: unset;
    height: auto;
  }

  .header .nav > ul > li > a {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 0;
    font-family: arial,Microsoft Yahei;
    color: #666;
  }

  .header .nav > ul > li.cur, .header .nav > ul > li:hover{
    background: unset;
  }

  .header .nav > ul > li > a svg{
    display: block;
    width: 24px;
    height: 24px;
  }

  .header .nav > ul > li.cur a, .header .nav > ul > li:hover a{
    color: #3367d6;
  }

  .header .nav > ul > li.cur a svg path, .header .nav > ul > li:hover a svg path{
    fill: #3367d6!important;
  }

  .header .nav > ul > li > a svg path{
    fill:#666!important;
  }

  .header .nav>ul>li:hover ul.sub-menu{
    display: none!important;
  }

  /* .header .nav > ul > li.cur a svg {
    transform: scale(1.5);
    position: relative;
    top: -6px;
  } */

  .banner_con {
    margin-top: 52px;
  }

  .banner {
    height: auto;
  }

  .banner_con .icon_btn {
    display: none;
  }

  .banner .slick-prev,
  .banner .slick-next {
    width: 32px;
    height: 32px;
  }

  .banner .slick-dots li button {
    width: 12px;
    height: 12px;
  }

  .chanpin {
    max-width: 100%;
    margin-top: 20px;
  }

  .title-text h2 {
    font-size: 1.5rem;
  }

  .chanpin-header {
    margin: 0 2% 20px;
  }

  .chanpin-cata .title_box {
    flex-wrap: wrap;
  }

  .title_box {
    background: none;
    border: 1px solid rgba(255, 255, 255, .3);
  }

  .title_box a span {
    width: 100%;
  }

  .title_box a {
    width: 50%;
  }

  .title_box a em {
    font-size: 1rem;
  }

  .chanpin-cata .title_box a {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
  }

  .chanpin-cata .title_box a:nth-child(2n) {
    border-right: none;
  }

  .chanpin-cata .title_box a:nth-child(7n),
  .chanpin-cata .title_box a:nth-child(8n) {
    border-bottom: none;
  }

  .chanpin ul {
    justify-content: center;
  }

  .chanpin ul li {
    flex: none;
    width: 47%;
    margin: 0;
    margin-right: 2%;
    margin-bottom: 2%;
  }

  .chanpin ul li:nth-child(2n) {
    margin-right: 0;
  }

  .chanpin ul li:nth-child(n+9) {
    display: none;
  }


  .service-center{
    margin-bottom: 0;
    margin-top: 0;
  }

  .service-center .service-wrapper {
    max-width: 100%;
    padding: 30px 20px;
  }

  .service-header h2 {
    font-size: 1.5rem;
  }

  .service-header p {
    font-size: 1em;
  }

  .service-item {
    flex-basis: calc(100% - 40px);
    margin: 10px;
  }

  .service-footer>* {
    margin: 5px 0;
  }

  .service-footer .contact-btn {
    width: 50%;
    margin: 10px auto;
  }

  .hot-news {
    width: 100%;
  }

  .news-header h2 {
    font-size: 1.5rem;
  }

  .news-header h2 b {
    font-size: 1rem;
  }

  .imgnews-container{
    padding-bottom: 0;
  }

  .imgnews-container .imgk {
    height: auto;
  }

  .chanpin ul li .pro-img {
    height: 212px;
  }

  .chanpin ul li h2 {
    margin: 5px;
  }

  .buyz {
    padding-top: 30px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
  }

  .buyz h5 {
    color: #333;
    font-weight: normal;
    font-size: 1em;
    margin-top: 10px;
    font-family: "微软雅黑";
  }

  .buyz h1 {
    color: #002a5c;
    font-size: 1.5rem;
    font-family: "微软雅黑";
  }

  .buyz .amore {
    display: inline-block;
    width: 154px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background-color: #0e89d6;
    font-style: normal;
    font-size: 14px;
    margin-top: 20px;
    position: relative;
    border: 1px solid transparent;
    border-radius: 4px;
  }

  .buytu {
    position: relative;
    top: 0;
    left: 0;
  }

  .buytu img {
    max-width: 100%;
  }

  .buytu .buy1 {
    position: absolute;
    top: 10px;
    left: 20%;
    width: 60%;
    max-width: 100%;
  }

  .footer {
    margin-bottom: 46px;
  }

  .footer .footer_bottom .banquan {
    text-align: center;
  }

  .footer .footer_bottom .banquan a {
    margin: 8px 0;
    display: inline-block;
  }

  .footer .footer_bottom .banquan a img {
    vertical-align: middle;
    margin-right: 0px;
    width: 16px;
  }

  .footer .footer_bottom {
    padding: 20px 0 10px;
  }

  .top {
    width: 32px;
    height: 42px;
    right: 5px;
    bottom: 60px;
    display: none;
  }

  .table-wrapper{
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: gray transparent;
  }

  /* 客服按钮 */
  /* 重新自定义 */
  .contact-btns {
    position: fixed;
    bottom: 20vh;
    right: 0;
    width: 2.6rem;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    box-shadow: 0 0 3px rgb(27 56 132);
    z-index: 999;
    white-space: nowrap;
    font-size: 0;
    line-height: 0;
    display: flex!important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.7);
}

.contact-btns a{
  display: flex;
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.contact-btns a.to-top{
  display: none;
}

.contact-btns a.to-top.show{
  display: flex;
}

.contact-btns a:last-child{
  border-bottom: none;
}

.zoom-in-out {
  transition: transform 1s ease-in-out;
  cursor: pointer;
}

.zoom-in-out:hover {
  transform: scale(1.05);
}

.contact-btns a img{
  width: 70%;
  max-width: 100%;  
  display: block;
}

#wechat-id{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

  .box_os {
    display: none;
    box-shadow: 0px 0 10px rgb(0 0 0 / 40%);
  }

  .box_os.active {
    display: block;
    right: 76px;
    top: auto;
    bottom: 20vh;
    z-index: 99;
  }

  .contact-support {
    display: none;
  }

  .contact-support {
    width: 52px;
    height: 52px;
    right: 10px;
    bottom: 20vh;
  }

  .box_os .os_x {
    display: block;
  }

  .phone-only {
    display: block;
  }

  .box_os .osqq p span a b {
    font-size: 13px;
  }

  .pc-only {
    display: none;
  }

  .modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .modal-container.show {
    display: flex;
  }

  .modal-container .modal-wrapper {
    background: #ffffff;
    padding-bottom: 15px;
    width: 80%;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
  }

  .modal-container .modal-wrapper .modal-header {
    height: 42px;
    line-height: 42px;
    background: rgba(27, 56, 132, 0.75);
    color: #fff;
    font-size: 14px;
  }

  .modal-container .modal-wrapper .title {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    color: #000;
    margin: 0 auto 10px;
  }

  .modal-container .modal-wrapper .btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .modal-container .modal-wrapper .btns a {
    background: #ddd;
    display: block;
    margin: 0 9px;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 1em;
    color: #FFFFFF;
  }

  .modal-container .modal-wrapper .btns a.close-modal {
    background-color: #666;
  }

  .modal-container .modal-wrapper .btns a:last-child {
    background-color: #124189;
  }


  /* 联系我们 About Us */
  .service_banner.about_banner{
    padding: 100px 0 0;
  }


  .service_banner h1 {
    font-size: 2rem;
  }

  .fixedmeau {
    max-width: 100%;
  }

  .about_banner .title_box {
    padding-left: 0;
    margin-top: 20px!important;
  }

  .fixedmeau li {
    width: 20%;
    height: auto;
    padding: 10px 0;
  }

  .service_banner.about_banner .fixedmeau li:last-child{
    border-right: none;
  }

  .fixedmeau li span {
    margin-top: 0;
  }

  .about_jianjie .container {
    padding: 0;
  }

  .about_jianjie .right {
    width: 100%;
    padding: 0 10px 8%;
  }

  .about_name {
    font-size: 1rem;
  }

  .about_jianjie .right .t p {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .timeline{
    padding: 30px 5px;
  }

  .timeline-container{
    padding-left: 30px;
    padding-right: 15px;
  }

  .timeline-item{
    flex-direction: column;
    padding-left: 10px;
    padding-bottom: 30px;
  }

  .timeline-date{
    margin-bottom: 10px;
  }

  .timeline-content{
    padding: 10px;
  }

  .timeline-item:hover .timeline-content{
    transform: unset;
  }

  .product-line .container{
    padding: 0 5px;
  }

  .product-line .about_titlt{
    margin-bottom: 1rem;
  }

  .product-line .product-swiper{
    padding: 50px 5px 20px;
  }

  .product-line .product-category{
    margin-bottom: 10px;
  }

  .product-line .product-category h4{
    font-size: 1.2rem;
  }

  .product-line ul{
    flex-wrap: wrap;
  }

  .product-line ul li{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 10px;
  }

  .product-line ul li:nth-child(2n){
    margin-right: 0;
  }

  .product-line ul li .pro-img{
    height: 180px;
  }

  .product-line .swiper-button-prev{
    left: 1px;
  }

  .product-line .swiper-button-next{
    right: 1px;
  }

  .product-line .product-category{}

  .product-line .swiper-pagination{
    width: 100%;
    max-width: 100%;
    top: -40px;
  }


  .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 1.2rem;
    background: rgba(0, 0, 0, .7);
    padding: 8px 10px;
    border-radius: 4px;
    color: #FFF;
  }

  .louceng .contact-banner .contact-info ol {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .louceng .contact-banner .contact-info li {
    width: 100%;
    font-size: 1rem;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    padding-left: 0;
  }

  .louceng .contact-banner .contact-info li img {
    width: 40px;
    margin-right: 5px;
  }

  .louceng .contact-banner h1,
  .about_titlt {
    font-size: 1.5rem;
  }

  .about_wenhua ol li .img span {
    font-size: 1.5rem;
  }

  .jobs .ke-zeroborder tr {
    display: flex;
    flex-direction: column;
  }

  .ke-zeroborder tr td {
    padding: 4px;
    font-size: 1rem;
    /* word-break: keep-all; */
  }

  .louceng .contact-banner {
    padding: 20px 10px;
  }

  /* 联系我们 About Us End */


  /* 产品中心 Product */

  .pro_banner.service_banner {
    min-height: auto;
    padding-top: 57px;
    padding-bottom: 0;
  }

  .pro_banner.service_banner .container {
    padding: 5px;
  }

  .service_banner p.h2 {
    margin-top: 13px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  .banner_pro .title_box {
    position: unset;
    left: 0;
    bottom: 0;
    transform: none;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    background: none;
    height: auto;
    margin-top: 3rem;
    border-radius: 5px;
    overflow: hidden;
  }

  .pro_banner .title_box a {
    text-decoration: none;
    color: inherit;
    border-right: 1px solid rgba(255, 255, 255, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding: 10px 2px;
    width: 33.33%;
    background: rgba(0,0,0,.1);
  }

  .pro_banner .title_box a:nth-child(3n) {
    border-right: none;
  }

  .pro_banner .title_box a:nth-child(7),
  .pro_banner .title_box a:nth-child(8) {
    width: 50%;
    border-bottom: none;
  }

  .pro_banner .title_box a em {
    font-size: 13px;
    margin: 5px auto 0;
    width: 100%;
  }

  .pro_banner .title_box a span {
    width: 100%;
    height: auto;
  }

  .pro_nav .container {
    max-width: 100%;
    padding: 0;
  }

  .pro_nav a {
    height: 28px;
    line-height: 28px;
    font-size: 1rem;
    margin: 1px 2px;
  }

  .pro_nav a:hover {
    background: none;
    border-bottom: none;
  }

  .breadcrumb {
    flex-direction: column;
    font-size: 12px;
    margin: 20px auto 0;
    border-bottom: 0;
  }

  .breadcrumb-container {
    border-bottom: 1px dashed #ddd;
    padding: 0 10px 6px;
    margin-bottom: 20px;
  }

  .category-title {
    color: #002a5c;
    background: url(/images/pro-icon.png) left center no-repeat;
    background-size: 2rem;
    padding: 10px 0px 10px 2.2rem;
    font-size: 1.5rem;
  }

  .pro_box_img {
    max-width: 100%;
    margin-top: 0;
    padding: 0 10px;
  }

  .pro_box_img ul {
    justify-content: start;
  }

  .pro_box_img ul li {
    flex: unset;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    border: 1px solid #EEE;
  }

  .pro_box_img ul li a {
    display: flex;
    flex-direction: column;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
  }

  .pro_box_img ul li:nth-child(2n) {
    margin-right: 0%;
    margin-left: 0%;
  }

  .pro_box_img li .img {
    height: auto;
  }

  .pro_box_img li .img img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
  }

  .pro_box_img .text {
    background: #f5f4f4;
  }

  .pro_box_img li .text h3 {
    font-size: 1rem;
    text-align: left;
    font-weight: normal;
    COLOR: #000;
    padding-bottom: 5px;
  }

  .pro_box_img li .text p {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    font-size: 12px;
    background: none;
    padding: 0;
    height: auto;
    line-height: 1.5;
    text-shadow: unset;
  }

  .pro_box_img li .text p a {
    color: #999;
  }

  .pro_box_img li .text p a.btn {
    width: auto;
    padding: 5px 10px;
    margin: 6px 0 0;
    align-self: baseline;
    border-radius: 3px;
  }

  .page {
    font-size: 0.9rem;
  }


  /* 产品中心 结束 End */

  /* ProductView Begin */
  /* 产品详情页开始 */
  .proshow_banner {
    margin-top: 52px;
  }

  .proshow_banner .container {
    padding: 5px 10px;
  }

  .proshow_banner .container .con_box {
    margin-top: 0;
  }

  .proshow_banner .con_box .text {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .proshow_banner .container .con_box .text h1 {
    font-size: 1rem;
    width: 100%;
  }

  .proshow_banner .con_box .img img {
    position: unset;
    top: 0;
    left: 0;
    max-height: 300px;
    border-radius: 5px;
    -webkit-transform: unset;
    -moz-transform: unset;
    cursor: pointer;
    max-width: 100%;
    min-height: unset;
  }

  .proshow_banner .container .con_box .img {
    display: flex;
    width: 50%;
    height: auto;
    min-height: unset;
    align-items: center;
    justify-content: center;
  }

  .proshow_banner .con_box .img img:hover {
    transform: unset;
  }

  .proshow_banner .container .con_box .text .t {
    font-size: 12px;
    line-height: 1.5;
    width: 48%;
    margin: 0 0 0 2%;
    padding: 10px;
    border-top: none;
    border-left: 1px solid #ffcac6;
    word-break: break-all;
  }

  .proshow_banner .con_box .text .t .price-highlight {
    font-size: 1.5rem;
  }

  .proshow_banner .con_box .text .t p strong {
    margin-right: 0;
    width: 70px;
    display: block;
    margin-top: 5px;
  }

  .shop-info {
    display: none;
  }

  .productview {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }

  .productview .right {
    border-left: 0;
    width: 100%;
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.8;
  }

  .tel-wrapper,
  .contact-container .qq-wrapper {
    height: 3.5rem;
  }

  .tel-wrapper h4 a {
    font-size: 1.3rem;
  }

  .tab-wrapper .tab-item {
    height: 3rem;
    line-height: 3rem;
    width: 33.33%;
    font-size: 1rem;
    padding: 0;
  }

  .content-container {
    padding: 15px 10px;
  }

  table {
    width: 100% !important;
  }

  table.tablebigger{
    position: relative;
    margin-top: 20px;
  }

  .table-wrapper table.tablebigger::after {
    content: "(可左右滑动表格内容)";
    color: #3367d680;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    font-size: 12px;
}

.prenext{
    background: none;
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

  .recommended-products {
    margin-top: 40px;
    padding: 0 10px;
  }

  .product-list li {
    width: calc(50% - 10px);
    margin: 0 10px 10px 0;
    font-size: 1rem;
    padding: 5px;
  }

  .product-list li:nth-child(2n) {
    margin-right: 0;
  }

  .product-list li div.img {
    height: 12em;
  }

  .productview .left {
    padding: 30px 10px;
    width: 100%;
  }

  .productview .left ul.related-list {
    display: none;
  }

  .productview .left b:nth-child(3) {
    display: none;
  }

  .productview .left .lastest-news {
    padding-left: 0;
  }

  .productview .left .lastest-news li {
    padding: 5px 8px;
  }
  
  .productview .left .lastest-news li a{
    font-size: 1rem;
  }

  /* 产品详情页结束 */


  /* 新闻列表 News List Center Start */
  .news_banner.service_banner {
    padding-top: 100px;
    min-height: unset;
    padding-bottom: 0;
  }

  .service_banner .name {
    font-size: 1rem;
    line-height: 1.5;
  }

  .news_banner.service_banner .title_box a {
    width: 33.33%;
  }

  .news_box{
    min-height: 52vh;
  }

  .news_box .container {
    max-width: 100%;
  }

  .news_box .left ul li .text h3 {
    font-size: 1.1rem;
    overflow: unset;
    white-space: normal;
  }

  .news_box .left ul li .text p {
    font-size: 0.9rem;
    line-height: 18px;
    height: 36px;
  }

  .news_box .left ul li .text span {
    margin-top: 15px;
    display: inline-block;
    border: 1px solid #124189;
    line-height: 2rem;
    padding: 0 1rem;
    color: #124189;
    font-size: 1rem;
    border-radius: 3px;
  }

  .news_box .left ul li:hover {
    transform: unset;
  }

  /* 新闻中心结束 */

  /* 新闻详情页开始 Articles Begin */
  .news_banner.service_banner.detail_banner .h2 {
    font-size: 2rem;
  }

  .news_banner.service_banner.detail_banner {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .news_banner.service_banner.detail_banner .title_box {
    margin-top: 80px !important;
  }

  .news_box .left .news_con h1 {
    font-size: 1.2rem;
  }

  .news_box .left .news_con .con h2{
    font-size: 1.1rem;
  }

  .news_box .left .news_con .name {
    font-size: 0.9rem;
  }

  .news_box .left .news_con {
    padding: 20px 0;
  }

  .news_box .left .news_con .con {
    font-size: 1rem;
  }

  .news_box.news-detail .container {
    padding: 0 10px;
  }

  .news_box .left .news_con .con p {
    text-align: justify;
    text-align: justify;
  }

  .news_box .left .news_con .con h3{
    font-size: 1.05rem;
  }

  .news_box .left .news_con h4 {
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .related-products {
    justify-content: unset;
  }

  .related-products div.xgcp {
    flex: 0 0 calc(50% - 10px);
    margin: 0;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .related-products div.xgcp:nth-child(2n) {
    margin-right: 0;
  }

  .related-products div.xgcp a p {
    font-size: 1rem;
  }

  .news_box .left .news_con .bottom .return {
    font-size: 1rem;
  }

  .news_box .left .news_con .bottom ol {
    display: block;
    width: 100%;
  }

  .news_box .left .news_con .bottom ol li{
    display: flex;
  }

  .news_box .left .news_con .bottom ol li span{
    word-break: keep-all;
  }

  .news_box .left .news_con .bottom {
    font-size: 1rem;
  }

  /* 新闻详情页 End */

  /* 服务中心 */
  .service_banner.service_section,
  .service_banner.document_page {
    min-height: unset;
    padding-top: 110px;
    padding-bottom: 0;
  }

  .service_banner.service_section .title_box,
  .service_banner.document_page .title_box {
    margin-top: 20px !important;
  }

  .service_banner.service_section .title_box a,
  .service_banner.document_page .title_box a {
    width: 33.33%;
  }

  .service_tit {
    font-size: 1.5rem;
  }

  .service_yw {
    font-size: 1.5rem;
  }

  .service_name,
  .service_linian ul li .text {
    font-size: 1rem;
  }

  .service_liucheng .img img {
    max-width: 100%;
  }

  .service_wenti {
    padding-bottom: 14vh;
  }

  .service_wenti .table {
    margin-top: 0;
    max-width: 100%;
  }

  .service_wenti .table table tr th {
    font-size: 1rem;
  }

  .service_wenti .table table tr td {
    font-size: 1rem;
  }

  .service_wenti .suosou {
    width: 100%;
  }

  .service_wenti .suosou form {
    width: 100%;
  }

  .service_wenti .suosou .text {
    font-size: 1rem;
  }

  .service_wenti .suosou .text,
  .service_wenti .suosou .btn {
    height: 3rem;
  }

  .service_wenti .suosou .btn {
    width: 24%;
  }

  /* 服务中心结束 */

  /* 搜索结果页 */
  .search_box{
    padding: 80px 0 60px;
  }

  .search_box .name {
    font-size: 1rem;
  }

  .search_box .search_con ul li {
    flex: 0 0 calc(50% - 5px);
    margin: 10px;
    margin-left: 0;
    margin-top: 0;
  }
  
  .search_box .search_con ul li:nth-child(2n) {
    margin: 10px;
    margin-left: 0;
    margin-top: 0;
    margin-right: 0;
  }

  .search_box .search_con ul li .img{
    height: 166px;
  }

  .search_box .search_con ul li .text .bt{
    font-size: 1rem;
  }

  .search_box .search_con ul li .text a.info span.btn{
    width: 100%;
    border-radius: 5px;
  }

  /* 搜索结果页 End */

}


/* 首页底部地图 */
.map-container {
  padding-top: 20px;
  background: url(/images/shanghai.webp) no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
}

.map-container .container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#echartsMap {
    width: 100%;
    height: 500px;
}

.map-wrapper {
    display: flex;
    width: 70%;
    height: 500px;
    align-items: center;
    justify-content: center;
}

.map-container .container .shop-info {
    background-image: linear-gradient(#f5faff50, #ffffff50);
    border: none;
    box-shadow: 0 0 5px #ccc;
    height: auto;
    padding-bottom: 15px;
}

.map-container .container .shop-info .btn {
    background-color: #dddddd90;
    text-decoration: none;
}

.map-container .container .shop-info {
    display: block;
    width: 26%;
}

.map-container .container .shop-info .shop-tag{
    margin: 0.5rem auto;
}

.map-container .container .shop-info .product-desc{
    margin: 0.5rem 10%;
}

.map-container .container .shop-info .btn:hover{
    background: #cccccc;
}

@media (max-width: 480px) {
  .map-container{
    background-size: cover;
  }

  .map-container .container {
      flex-direction: column-reverse;
      background-position: bottom center;
      padding: 15px 0 0; 
  }

  .map-wrapper {
      width: 100%;
      height: 400px;
  }

  #echartsMap{
      height: 400px;
  }

  .map-container .container .shop-info {
      width: 80%;
  }
  .contact_banner{
    padding-top: 35%;
  }
}

@media screen and (min-width: 480px) and (max-width: 1268px) {
  .map-container{
    background-size: cover;
  }
    .map-container .container .shop-info {
        display: block;
        width: 30%;
    }

    .contact_banner{
      padding-top: 10%;
    }

    
  
}