* {
      margin: 0;
      padding: 0;
    }
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
	font-size: 15.5px;
	line-height: 28px;
	color: #495057;
}
@media (max-width:768px){
	body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
	font-size: 14px;
	line-height: 22px;
	color: #495057;
}
	}
h1 { line-height: 50px; color: #3a3f45;}
h2 {
    font-weight: 500 !important;
	font-size: 1.25rem;
    font-weight: 600;
	line-height: 50px;
}

h3 {
    font-weight: 600 !important;
    color: #3a3f45;
	font-size: 21px;
	line-height: 50px;
}
a {
    color: #3a3f45;
	text-decoration: none;
}

a:hover {
    color: #0085d0;
}
li{ list-style-type: none;}
::after, ::before {
    box-sizing: border-box;
}
.clear { clear:both; }


/*---------------------------------------------------index.html------------------------------------------------*/
/*=============导航栏==============*/
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      padding-top: 100px;
    }

    .nav {
      width: 100%;
      background: #fff;
      box-shadow: 0 2px 2px rgba(0,0,0,0.08);
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
    }
	.meuntop { width: 100%; min-height: 35px; line-height: 35px; background: #2E353A; color: #fff; font-size: 14px;}
	.meuntop-all { width: 100%; max-width: 1350px; margin: 0 auto;}
	.meuntop-all-l { width:auto; float:left;}
	.meuntop-all-r { width:auto; float:right;}
	.meuntop-all-r i { margin-right: 10px;}

    .nav-inner {
      max-width: 1350px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
	  padding: 0 0;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
      color: #222;
      text-decoration: none;
    }
	.meunright { text-align:right;}
	.meunright d { margin-left: 30px; font-weight: 600; color:#0085d0; font-size: 16px;}
	.meunright d i {
    width: 50px;
    height: 30px;
    line-height: 30px; font-size:12px;
    border-radius: 50px;
    border: 1px solid #0085d0;
    margin: 0 5px 0 0;
	color:#0085d0; padding: 3px 3px;
}
.cmenua {display: inline-block;
    text-align: center;
    background-color: #2E353A;
    border: 1px solid #2E353A;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 55px;
	padding: 2px 15px;
    transition: all 0.3s;}
.cmenua:hover {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #2E353A;}

    .menu {
      list-style: none;
      display: flex;
      height: 100%;
    }

    .menu > li {
      position: static;
      padding: 0 28px;
      display: flex;
      align-items: center;
    }

    .menu > li > a {
      text-decoration: none;
      color: #333;
      font-size: 17px;
	  font-weight: 500;
    }

    /* 一级导航下拉小三角 */
    
.menu > li:has(.full-dropdown) > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.menu > li:has(.full-dropdown) > a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}
.menu > li:hover > a::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

    

    .submenu a::after,
    .third-menu a::after {
      display: none !important;
    }

    /* 下拉按钮 */
    .dropdown-toggle {
      display: none;
      width: 40px;
      height: 40px;
      position: relative;
      border: none;
      background: none;
      cursor: pointer;
    }
    .dropdown-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transition: transform 0.3s;
}
.dropdown-toggle.active::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

    /* 汉堡按钮 —— 无小三角 */
    .hamburger {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
    }

    .full-dropdown {
      position: absolute;
      top: 105px;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	  border-top: 1px solid rgba(0,0,0,0.1);
      display: none;
      padding: 40px 0;
    }

    .dropdown-content {
      max-width: 1350px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      padding: 0 20px;
      gap: 0;
      justify-content: center;
    }

    /* ------------------------------ */
    /* �电脑端二级菜单 居中竖虚线 */
    /* ------------------------------ */
    .submenu {
      flex: 1;
      list-style: none;
	  margin-right: 80px;
      position: relative;
    }
	.third-menu .vall a { color: #000; font-weight: 500; text-decoration: underline;}


    /* 电脑端才显示虚线 */
    @media (min-width: 993px) {
      .submenu:not(:last-child)::after {
        content: "";
        width: 1px;
        height: 93%;
        position: absolute;
        right: 0;
        top: 2%;
        background: linear-gradient(to bottom, #ccc 50%, transparent 50%);
        background-size: 100% 8px;
      }
    }

    .submenu > li {
      margin-bottom: 12px;
    }
    .submenu > li > a {
      font-weight: bold;
      font-size: 15px;
      white-space: nowrap;
    }

    .third-menu {
      list-style: none;
      padding-left: 0;
      margin-top: 10px;
    }
    .third-menu li {
      margin-bottom: 6px;
      white-space: nowrap;
    }
    .third-menu a {
      color: #2e353a;
      font-size: 14px;
    }

    .menu > li:hover .full-dropdown {
      display: block;
    }

    .overlay {
      position: fixed;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.3);
      z-index: 998;
      display: none;
    }

    /* 手机端 */
@media (max-width: 992px) {
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  .menu > li > a {
      text-decoration: none;
      color: #333;
      font-size: 15px;
	  font-weight: 500;
    }
  /* 修复：类名拼写错误 */
  .meunright { display: none;}
  .meuntop-all-l { display:none;}

  .menu.active {
    left: 0;
  }

  .menu > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 !important;
    border-bottom: 1px solid #f1f1f1;
  }

  .menu a {
    flex: 1;
    padding: 15px 20px;
    display: block;
  }

  .menu > li > a::after {
    display: none !important;
  }

  .third-menu {
    list-style: none;
    padding-left: 0;
    margin-top: 0px;
  }
  .third-menu li {
    margin-bottom: 0px;
    white-space: nowrap;
  }
  .third-menu a {
    color: #666;
    font-size: 14px;
    padding: 10px 20px;
  }

  /* 下拉菜单开关按钮 */
  .dropdown-toggle {
    display: block;
  }
  /* 汉堡按钮显示 */
  .hamburger {
    display: block;
  }

  /* 大下拉菜单样式 */
  .full-dropdown {
    width: 100% !important;
    position: static !important;
    box-shadow: none !important;
    padding: 0 0 10px 20px !important;
    background: #fafafa !important;
    display: none;
  }
  .full-dropdown.open {
    display: block !important;
  }

  .dropdown-content {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .submenu {
    padding: 8px 0;
  }
}

/* 轮播容器 全屏自适应 */
.banner{
  width: 100%;
  position: relative;
  overflow: hidden;
  /* 高度比例：PC 400px / 手机 30vh */
  height: 600px;
}
@media (max-width:768px){
  .banner{
    height: 35vh;
    min-height: 180px;
  }
}
/* 图片滑动容器 */
.banner-wrapper{
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}
.banner-item{
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.banner-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 左右切换按钮 移动端缩小 */
.banner-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev{ left: 16px; }
.next{ right: 16px; }
@media (max-width:768px){
  .banner-btn{
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .prev{ left: 8px; }
  .next{ right: 8px; }
}
/* 底部圆点指示器 */
.dots{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
@media (max-width:768px){
  .dots{
    bottom: 10px;
    gap: 6px;
  }
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
@media (max-width:768px){
  .dot{
    width: 7px;
    height: 7px;
  }
}
.dot.active{
  background: #fff;
}

.time { width: 100%; height: 184px; background: #f0f0f5;}
.timefix { width: 25%;
border-right: 1px solid #dddddd;
    float: left;
    padding: 70px 0 60px 45px;}
	
.timefixe { width: 25%;
    float: left;
    padding: 70px 0 60px 45px;}
#number {font-size: 40px;
  font-weight: 500;}
#numbera {font-size: 40px;
  font-weight: 500;}
#numberb {font-size: 40px;
  font-weight: 500;}
#numberc {font-size: 40px;
  font-weight: 500;}
.timefix i {font-size: 40px;
  font-weight: 500; float:left; color: #CCC;}
@media (max-width:768px){
  .time { width: 100%; height: 380px; background: #f0f0f5;}
.timefix { width: 100%;
border-right: 0px solid #dddddd;
    float: left;
    padding: 30px 0 0px 45px;}
	
.timefixe { width: 100%;
    float: left;
    padding: 30px 0 60px 45px;}
#number {font-size: 40px;
  font-weight: 500;}
#numbera {font-size: 40px;
  font-weight: 500;}
#numberb {font-size: 40px;
  font-weight: 500;}
#numberc {font-size: 40px;
  font-weight: 500;}
.timefix i {font-size: 40px;
  font-weight: 500; float:left; color: #CCC;}
}

.title { width: 100%; max-width: 1350px; margin: 0 auto; text-align: center;}
.about { width: 100%; max-width: 1350px; height:550px; margin: 60px auto; }
.about-l { width: 50%; float: left;}
.about-l d {margin-top: 40px; height:60px; display: block;}
.about-l d a { padding: 10px 20px; background: #000; color: #fff; margin-right: 20px; border-radius: 50px; border: 1px solid #000; margin-top: 20px; font-weight: 600;}
.about-l d a:hover {background: #fff; color: #000; margin-right: 20px; border-radius: 50px; border: 1px solid #000;}
@media (max-width: 768px) {
.about-l { width: 100%; float: left;}	
	
}

/*=============首页产品列表==============*/
/* 全局容器 */
.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}

/* TAB 导航栏（修复冲突，统一布局） */
.tab-nav {
  width: 100%;
  max-width: 1350px;
  align-items: center;
  
  
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}


/* 左侧标题 */
.tab-nav h2 {
  margin-right: auto;
  font-size: 30px;
  font-weight: lighter;
  position: relative;
  text-align: left;
}
.tab-nav h2::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #0085d0;
}

/* TAB 按钮 */
.tab-btn {
  border-radius: 50px;
  padding-bottom: 5%;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
  
  
  
  padding: 10px 5px;
  color: #3a3f45;;
  border-radius: 50px;
  border: 1px solid #000;
  margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  text-align: center;
  transition: all 0.3s;
}
.tab-btn.active {
  background: #000;
  color: #fff;
}

/* 图片组 - 默认隐藏 */
.img-group {
  display: none;
  margin-top: 20px;
}
.img-group.show {
  display: block;
}

/* 图片网格布局（4列） */
.img-group ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* 卡片样式 */
.img-group ul li {
  border-radius: 5px;
  padding-bottom: 5%;
  background: #fff;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

/* hover 动效 */
.img-group ul li:hover {
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 图片 */
.img-group img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  display: block;
}

/* 标题（单行省略） */
.img-group ul li h2 a {
  width: 90%;
  margin: 2% 5%;
  height: 30px;
  font-size: 18px;
  font-weight:600;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* 描述（两行省略） */
.img-group ul li p {
  width: 90%;
  margin: 2% 5%;
  font-size: 15.5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
.tab-nav h2 { display: none;}
.tab-nav dd { display: none;}
.tab-nav  { width: 100%;
  max-width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); /* 一行3张 */ gap: 10px; /* 图片间距 */}
.img-group ul { display: grid; grid-template-columns: repeat(2, 1fr); /* 一行3张 */ gap: 10px; /* 图片间距 */ }
.tab-btn {
  padding: 10px 5px;
  background: #fff;
  color: #3a3f45;;
  border-radius: 50px;
  border: 1px solid #000;
  margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  width: 100%;
  text-align: center;
  transition: all 0.3s;
}
}


.ouradv { width: 100%; max-width: 1350px; height: 320px; margin: 40px auto; text-align:center;background-color: #0085d0; border-radius: 5px; padding: 40px 20px;
    color: #ffffff;}
.ouradv i { font-size: 30px; }
.ouradv h1 {color: #ffffff;}
.ouradv ul { display: grid; grid-template-columns: repeat(6, 1fr); /* 一行3张 */ gap: 30px; /* 图片间距 */ margin-top: 50px;}
.ouradv ul li:hover { color: #e5f7fc;}


/*=============右侧悬浮==============*/
/* 右侧悬浮容器 */
.side { position: fixed; right: 0; top: 70%; transform: translateY(-50%); z-index: 999; width: 50px;}

.side ul { list-style: none; padding: 0; margin: 0;}

.side ul li { margin: 0; padding: 0; position: relative; border-bottom: 1px solid #fff;}

/* 每个客服按钮样式 */
.sidebox { width: 50px; height: 50px; background: #0788de; color: #fff; font-size: 12px; text-align: center; line-height: 1.3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; position: relative; z-index: 1;}
.sidebox i { font-size: 20px;}

.sidebox img { width: 22px; height: 22px; margin-bottom: 3px; object-fit: contain;}

/* 微信二维码悬浮显示 */
.side li .wx { position: absolute; right: 50px; top: 0; width: 160px; height: 160px; background: #fff; padding: 10px; border: 1px solid #eee; box-shadow: 0 0 5px rgba(0,0,0,0.1); display: none; z-index: 2;}
.side li .wx img { width: 100%; height: 100%;}

.side li:hover .wx {
  display: block;
}
/*  手机号悬浮显示 */
.side li .telme { position: absolute; right: 50px; top: 0; width: 180px; height: 54px; background: #0788de; color: #fff; font-size: 15px; padding: 10px; border: 1px solid #eee; box-shadow: 0 0 5px rgba(0,0,0,0.1); display: none; z-index: 2;}
.side li .telme img { width: 100%; height: 100%;}

.side li:hover .telme {
  display: block;
}

/* 返回顶部 */
.sidetop { display: block; width: 50px; height: 50px; background: #0788de;  text-align: center; line-height: 50px;}

.sidetop img { width: 50px; vertical-align: middle;}

/* 鼠标悬浮变色 */
.sidebox:hover,
.sidetop:hover {
  background: #0673c0 !important;
}

/* 去链接下划线 */
.side a { text-decoration: none; color: inherit;}


/*=============首页产品类目==============*/
.cplmall { width: 100%; max-width: 1350px; margin: 20px auto;}
        /* 图片组容器 */
.cplmall { display: block; margin-top: 60px;}
        /* 图片列表 - 网格布局 */
.cplmall ul { display: grid; grid-template-columns: repeat(4, 1fr); /* 一行3张 */ gap: 30px; /* 图片间距 */ }
.cplmall li { position: relative; border: 0px solid #c0c1c2; border-radius: 5px; background: #fff;box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); }
.cplmall li:hover { background:#e5f7fc;}
.cplmall li img {width: 95%; /* 让图片填满容器 */ height: auto; /* 让图片填满容器 */ margin: 2.5% 2.5%; border-radius: 5px;}
.cplmall li h1 { width: 95%; font-size:18px; line-height: 30px; margin: 0 auto;margin-top: 15px;}
.cplmall li p { width: 95%; margin: 2% auto; overflow: hidden; height: 75px; line-height: 25px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.cplmall li d { width:95%; margin: 2% auto; display: inherit;margin-top: 45px; height: 50px; line-height: 25px;}

.cplmall li d i { display: inline-block; text-align: center; width: 35px; height: 35px; background-color: #0085d0; border: 1px solid #0085d0; color: #fff; margin-right: 10px; font-size:13px; font-weight: 400; border-radius: 5px; line-height: 35px; transition: all 0.3s; }
.cplmall li d i:hover { background: #fff; border: 1px solid #0085d0; color: #0085d0;}
.cplmall li d a { border-radius: 50px;
  padding-bottom: 5%;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 10px 25px;
  color: #3a3f45;;
  border-radius: 50px;
  border: 1px solid #000;
  margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s;}
.cplmall li d a:hover { border: 1px solid #3a3f45; color: #fff;background: #3a3f45;}


@media (max-width: 768px) {
.cplmall ul { display: grid; grid-template-columns: repeat(2, 1fr); /* 一行3张 */ gap: 10px; /* 图片间距 */ }
.kwsmenuall-l { display:none;}
}



.footer { width: 100%; min-height:400px; background:#2e353a; padding-top: 40px; margin-top: 40px; color: #d5d7d8;}
.footer a { font-size: 14.5px; color: #d5d7d8; line-height: 35px; font-weight:500;}
.footer a:hover {color: #00a0ea;}
.footer h3 { font-size: 15px; color: #fff;}
.footer h3 a { font-size: 15px; color: #fff;}
.footer h4 { font-size: 16px; line-height: 40px; color: #fff; font-weight:600; text-transform: uppercase !important;}
.footer h4 a { font-size: 15px; color: #fff;}
.footer h5 { font-size: 18px; line-height: 40px; color: #fff; font-weight:600;}
.footermain { width: 100%; max-width: 1350px; margin: 0 auto;}
.footermain-l { width: 20%; height:auto; float:left; margin-right:7%;}
.footermain-l i { font-size: 20px; color: #d5d7d8; margin-right: 10px;}
.footermain-m { width: 23%; height:auto; float:left;}
.footermain-mr { width: 23%; height:auto; float:left;}
.footermain-r { width: 25%; height:auto; float:right;}
.footermain-r-folus { width: 100%; height: 40px; margin-top: 20px; margin-bottom: 20px;}
.footermain-r-folus a { color: #d5d7d8; margin-right: 20px; font-size: 35px; border-radius: 5px;}
.footermain-r-folus a:hover { color: #00a0ea;}
.fgetq a { padding: 8px 15px; background:#0085d0; color: #fff; border-radius: 5px; font-size: 16px; font-weight:500;}
.fgetq a:hover { background:#d5d7d8; color: #000;}
.footerbottom { padding-top:20px; background:#252A2E; color: #d5d7d8; height: 90px; font-size: 14px;}
.ftinc { width: 100%; max-width: 1350px; margin: 0 auto;}

.ep-breadcrumb { width: 100%; max-width: 1350px; margin: 20px auto;}
 
.productsall { width: 100%; max-width: 1350px; margin: 20px auto; display: block; margin-top: 20px;}
        /* 图片组容器 */
        /* 图片列表 - 网格布局 */
.productsall ul { display: grid; grid-template-columns: repeat(4, 1fr); /* 一行3张 */ gap: 30px; /* 图片间距 */ }
.productsall li { position: relative; border: 0px solid #c0c1c2; border-radius: 5px; background: #fff;box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2); }
.productsall li:hover { background:#e5f7fc;}
.productsall li img {width: 100%; /* 让图片填满容器 */ height: auto; /* 让图片填满容器 */  border-radius: 5px;}
.productsall li h1 { width: 92%; font-size:18px; line-height: 30px; margin: 2% auto; font-weight: 600; margin-top: 15px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;}
.productsall li p { width: 92%; margin: 2% auto; margin-bottom: 20px; overflow: hidden; height: 50px; line-height: 25px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.productsall li d { width:92%; margin: 4% auto; display: inherit;margin-top: 45px; height: 50px; line-height: 25px;}

.productsall li d i { display: inline-block; text-align: center; width: 35px; height: 35px; background-color: #0085d0; border: 1px solid #0085d0; color: #fff; margin-right: 10px; font-size:13px; font-weight: 400; border-radius: 5px; line-height: 35px; transition: all 0.3s; }
.productsall li d i:hover { background: #fff; border: 1px solid #0085d0; color: #0085d0;}
.productsall li d a { border-radius: 50px;
  padding-bottom: 5%;
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 10px 25px;
  color: #3a3f45;;
  border-radius: 50px;
  border: 1px solid #000;
  margin-top: 20px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s;}
.productsall li d a:hover { border: 1px solid #3a3f45; color: #fff;background: #3a3f45;}
.pagesitemall { width: 100%; max-width:1350px; line-height:50px; text-align:center; margin: 0px auto; height:50px;}
.pagesitem { width: 100%; max-width:1350px; line-height:50px; text-align:center; margin: 0px auto; height:50px;}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    background-color: #00a0ea;
    cursor: default;
    background: #222;
    border: solid 1px #ddd;
    border-radius: 5px;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 20px;
    line-height: 30px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;font-size:17px; font-weight:500;
    
}
.pagination>li>a {
    margin-right: 10px;
}
.pagination>li>a:hover {
    background: #1f91f7;
    border-radius: 5px;
    font-weight:500;border: 1px solid #00a0ea;
}
.pageall { width: 100%; max-width: 1350px; margin: 20px auto;}
.newsall { width: 100%; max-width: 1350px; margin: 20px auto;}
.newsall-l { width: 65%; float:left; margin-bottom: 30px;}
.newsall-lp li { width: 100%; height:280px; margin-bottom: 30px;}
.newsall-lp li img { width: 40%; height:260px; float:left; border-radius:5px;}
.newsall-lp li d { width: 57%; height:280px; float:right;}
.newsall-lp li h1 { font-size:18px; line-height: 30px;}
.newsall-lp li d p { height: 75px; margin-top: 20px; overflow: hidden; line-height: 25px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.newsall-lp li dd { margin-top: 40px;}
.newsall-lp li dd a { padding: 10px 20px; color: #fff;background: #0085d0; border-radius:5px; border: 1px solid #0085d0;}
.newsall-lp li dd a:hover { color: #3a3f45; background: #fff; border: 1px solid #0085d0;}
.newsall-r { width: 30%; float:right;}
.kwsmenuall-t { width:100%;}
 /* 搜索框容器 */
   /* 搜索表单布局 */
.search-form {
    display: inline-flex;
    align-items: center;
    position: relative;width:100%;
}

/* 输入框样式（保留原 class，只美化） */
.search-form .el-input__inner {
    width: 80%;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    border: 1px solid #DCDFE6;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 15.5px;font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
}

/* 输入框聚焦效果 */
.search-form .el-input__inner:focus {
    border-color: #409EFF;
}

/* 搜索按钮（保留原 class） */
.search-form .ep-header-search-submit {
    width: 20%;
	height: 36px;
    padding: 0 15px;
    border: none;
    background-color: #3a3f45;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 15.5px;font-family: 'Poppins', sans-serif;
    transition: background 0.2s;border-top: 1px solid #3a3f45;
	border-right: 1px solid #3a3f45;border-bottom: 1px solid #3a3f45;
}

/* 按钮 hover 效果 */
.search-form .ep-header-search-submit:hover {
    background-color: #0085d0;border-top: 1px solid #0085d0;
	border-right: 1px solid #0085d0;border-bottom: 1px solid #0085d0;
}
.newsall-r h3 { width: 100%; margin-top: 40px; padding-top: 20px; font-size: 17px; text-transform: uppercase !important;border-top: 1px solid #d5d7d8;}
.folus { width: 100%; height: 40px;}
.folus a { color: #3a3f45; margin-right: 20px; font-size: 35px; border-radius: 5px;}
.folus a:hover { color: #0085d0;}
.ppreads { width: 100%; min-height: 500px; border-bottom: 1px solid #d5d7d8; padding-bottom: 20px;}
.ppreads li { width: 100%; height: 110px; margin-bottom: 20px;}
.ppreads img { width: 150px; height: 100%; float:left; border-radius: 5px; margin-right: 15px;}
.ppreads li h2 { font-size:18px; line-height: 28px; font-weight: 600 !important;}
.Signup { background: #E5F7FC; padding: 20px; border-radius: 10px !important; margin-top: 40px;}
.Signup h3 { width: 100%; margin-top: 0px; padding-top: 0px; font-size: 17px; text-transform: uppercase !important;border-top: 0px solid #d5d7d8;}
.tagskw a { background: #E5F7FC; padding: 4px 8px; margin-bottom: 20px; margin-right: 5px; border-radius: 5px; font-size: 14px; font-weight:600; overflow-wrap: break-word; line-height: 40px;}
.Signup i { font-size: 35px; color: #0085d0;}