@charset "utf-8";

/* 字体引入 */
@font-face {font-family: 'iconfont';
    src: url('/static/font/iconfont.eot');
    src: url('/static/font/iconfont.eot?#iefix') format('embedded-opentype'),
    url('/static/font/iconfont.woff') format('woff'),
    url('/static/font/iconfont.ttf') format('truetype'),
    url('/static/font/iconfont.svg#iconfont') format('svg');
}

.iconfont{
    font-family:"iconfont" !important;
    font-size:16px;font-style:normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;}
	
	
/* 基础样式重置与设置 - 新增茶色变量定义 */
:root {
  --tea-light: #f5f0e8;      /* 浅茶色 */
  --tea-medium: #e8ded0;     /* 中茶色 */
  --tea-dark: #8c7051;       /* 深茶色 */
  --tea-darker: #6d553c;     /* 更深的茶色 */
  --tea-accent: #c89666;     /* 茶色强调色 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  font-family: PingFangSC, helvetica neue, hiragino sans gb, arial, microsoft yahei ui, microsoft yahei, simsun, sans-serif !important;
  color: #333;
  font-size: 16px;
}

li, ul, dl {
  list-style: none;
  vertical-align: middle;
}

a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  outline: none;
}

img {
  display: block;
  border: none;
  max-width: 100%;
}

.clear {
  clear: both;
}

.none {
  display: none;
}

/* 通用组件样式 */
.bodytitle {
  padding: 60px 0 40px 0;
  text-align: center;
  background-color: var(--tea-light); /* 浅茶色背景 */
}

.bodytitle h2 {
  font-size: 35px;
  color: #000;
  font-weight: normal;
  margin-bottom: 15px;
}

.bodytitle h2 i {
  color: var(--tea-dark); /* 深茶色强调 */
}

.bodytitle p {
  padding: 10px 0;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.bodytitle h3 {
  background-color: var(--tea-dark); /* 深茶色背景 */
  font-size: 32px;
  color: #FFF;
  font-weight: normal;
  padding: 20px 0;
}

/* 头部导航 */
.head {
  height: 55px;
  line-height: 55px;
  background: #A0522D; /* 调整为稍浅的茶色，减少压迫感 */
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* 轻微阴影增加层次感 */
}

.head div {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px; /* 改为最大宽度，适配小屏幕 */
  padding: 0 1rem;
  box-sizing: border-box;
}

.head a.back {
  display: none;
}

.head ul.logo {
  float: left;
  width: 250px;
  height: 55px;
  overflow: hidden;
}

.head ul.nav {
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}

.head ul.nav li {
  float: left;
  position: relative;
}

/* 简化边框，减少分割感 */
.head ul.nav li.left {
  border-left: 1px solid rgba(255,255,255,0.15); /* 半透明边框更柔和 */
}

.head ul.nav li.right {
  border-right: 1px solid rgba(255,255,255,0.15);
}

.head ul.nav li span {
  font-size: 15px; /* 稍小字体更精致 */
  border-left: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
  display: block;
  color: rgba(255,255,255,0.9); /* 白色稍带透明度，减少刺眼感 */
  cursor: pointer;
  transition: all 0.3s ease; /* 过渡动画增加柔和感 */
}

.head ul.nav li span a {
  color: inherit; /* 继承父元素颜色 */
  display: block;
  padding: 0 18px; /* 适当缩减内边距 */
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* 悬停效果改为温和的颜色变化 */
.head ul.nav li span a:hover {
  background: #8B4513; /* 深一点的茶色，保持主题一致性 */
  color: #fff;
}

/* 横幅样式补充，与头部风格统一 */
.banner {
  width: 100%;
  overflow: hidden;
}

.banner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease; /* 图片加载过渡 */
}

.banner img:hover {
  transform: scale(1.02); /* 轻微放大效果，增加互动感 */
}

/* 通知栏 */
.notice {
  font-size: 25px;
  color: #ff0000;
  text-align: center;
  padding: 20px 0;
  background: var(--tea-light); /* 浅茶色背景 */
}

.notice i:before {
  font-family: 'iconfont';
  content: "\e6c8";
  padding-right: 15px;
  color: var(--tea-dark); /* 深茶色图标 */
}

.notice strong {
  font-size: 28px;
}

/* 轮播图 */
.banner {
  background: #092103;
}

.banner ul {
  width: 1200px;
  height: 550px;
  margin: 0 auto;
}

.banner ul img {
  margin: 0 auto;
  vertical-align: middle;
}

/* 项目展示 */
.project .nav {
  width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  background-color: #fff;
}

.project .nav ul {
  position: relative;
}

.project .nav ul li {
  width: 380px;
  height: 365px;
  border-radius: 3px;
  border: solid 1px #e9e9e9;
  background: #fff;
}

.project .nav ul li.left {
  margin: 28px 0 0 0;
  float: left;
}

.project .nav ul li.mid {
  position: absolute;
  z-index: 1;
  left: 400px;
  top: 0;
  width: 400px;
  height: 420px;
  border-color: var(--tea-dark); /* 深茶色边框 */
  box-shadow: 0 0 4px 2px rgba(140, 112, 81, 0.2); /* 茶色阴影 */
  overflow: hidden;
}

.project .nav ul li.mid h3 {
  color: #fff;
  border: var(--tea-accent);
  background: var(--tea-accent); /* 茶色强调色 */
}

.project .nav ul li.right {
  margin: 28px 0 0 0;
  float: right;
}

.project .nav ul li h3 {
  height: 80px;
  line-height: 80px;
  font-size: 28px;
  text-align: center;
  color: #666;
  border-bottom: solid 1px #ebebeb;
  background: var(--tea-light); /* 浅茶色背景 */
  margin-bottom: 15px;
}

.project .nav ul li dl {
  padding: 10px 30px 0 30px;
  font-size: 12px;
  color: #666;
  line-height: 22px;
}

.project .nav ul li dl span {
  color: #ccc;
  text-align: center;
  display: block;
}

/* 介绍部分 */
/* 基础样式重置 */
/* 基础样式重置 */
.introduce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* 标题区域样式 */
.introduce .bodytitle {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--tea-light);
}

.introduce .bodytitle h2 {
  font-size: 1.8rem;
  color: #333;
  margin: 0 0 0.8rem 0;
  font-weight: 600;
}

.introduce .bodytitle p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* 列表容器样式 */
.introduce ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 电脑端布局（默认3列） */
.introduce ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.introduce ul li {
  background-color: #f9f6f0;
  border-radius: 0.6rem;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* 整体内容居中 */
  display: flex;
  flex-direction: column;
  align-items: center; /* 子元素水平居中 */
}

.introduce ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 图标样式（放大并居中） */
.introduce ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; /* 放大图标容器 */
  height: 80px;
  border-radius: 50%;
  background-color: var(--tea-light);
  margin-bottom: 1.2rem;
  font-family: "iconfont"; /* 确保引入对应字体库 */
  font-size: 1.8rem; /* 放大图标 */
  color: #5a4a36;
}

/* 图标背景色区分 */
.introduce ul li span.a { background-color: #e8f4ea; }
.introduce ul li span.b { background-color: #e6f2f8; }
.introduce ul li span.c { background-color: #f8f3e6; }
.introduce ul li span.d { background-color: #f4e6ea; }
.introduce ul li span.e { background-color: #e6eaf8; }
.introduce ul li span.f { background-color: #f3e6f8; }

/* 图标代码 */
.introduce ul li span.a:before { content: "\e698"; }
.introduce ul li span.b:before { content: "\e655"; }
.introduce ul li span.c:before { content: "\e67f"; }
.introduce ul li span.d:before { content: "\e65c"; }
.introduce ul li span.e:before { content: "\e6f0"; }
.introduce ul li span.f:before { content: "\e645"; }

/* 列表标题样式（i标签居中） */
.introduce ul li i {
  font-style: normal;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
  text-align: center; /* 强制居中 */
}

/* 列表内容样式 */
.introduce ul li p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  text-align: left; /* 内容文字也居中 */
}

/* 移动端适配（768px以下 - 双列布局） */
@media (max-width: 768px) {
  .introduce {
    padding: 1.5rem 0.8rem;
  }

  .introduce .bodytitle {
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
  }

  .introduce .bodytitle h2 {
    font-size: 1.5rem;
  }

  .introduce .bodytitle p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  /* 移动端双列布局 */
  .introduce ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .introduce ul li {
    padding: 1rem 0.8rem;
  }

  /* 移动端图标调整（保持比例放大） */
  .introduce ul li span {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .introduce ul li i {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .introduce ul li p {
    font-size: 0.7rem;
    line-height: 1rem;
  }
}

/* 平板尺寸适配 */
@media (min-width: 769px) and (max-width: 1024px) {
  .introduce ul {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* 流程步骤 */
/* 流程步骤基础样式 */
.process {
  margin: 1rem 0;
  background-color: #fff;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* 标题区域优化 */
.process .bodytitle {
  text-align: center;
  margin-bottom: 2rem;
}

.process .bodytitle h2 {
  font-size: 1.8rem;
  color: #333;
  margin: 0;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--tea-light);
  display: inline-block;
}

/* 列表容器优化 */
.process ul {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 1rem 0.5rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 1rem; /* 统一间距 */
}

/* 步骤项样式 */
.process li {
  font-size: 1rem;
  color: #383838;
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 120px;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

/* 步骤连接线 - PC端水平连接 */
.process li+li:after {
  font-family: 'iconfont';
  content: "\e75e";
  position: absolute;
  top: 3.5rem;
  left: -1rem;
  font-size: 1.5rem;
  color: var(--tea-light);
  z-index: 1;
  transition: color 0.3s ease;
}

/* 步骤图标优化 */
.process li i {
  font-family: 'iconfont';
  color: #fff;
  font-size: 2.5rem;
  width: 7rem;
  height: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  background: var(--tea-dark);
  margin: 0 auto 1rem;
  display: block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.process li i:hover {
  transform: scale(1.05);
  background-color: var(--tea-accent);
}

/* 图标内容 */
.process li i.a:before { content: "\e601"; }
.process li i.b:before { content: "\e65b"; }
.process li i.c:before { content: "\e627"; }
.process li i.d:before { content: "\ebba"; }
.process li i.e:before { content: "\e612"; }

/* 步骤文字 */
.process li p {
  font-size: 1rem;
  margin: 0;
  color: #555;
  font-weight: 500;
  white-space: nowrap; /* 防止文字换行 */
  overflow: hidden;
  text-overflow: ellipsis; /* 超出显示省略号 */
}

/* 移动端适配（768px以下 - 三列布局） */
@media (max-width: 768px) {
  .process {
    margin: 1rem 0;
    padding: 1rem 0.5rem;
  }

  .process .bodytitle h2 {
    font-size: 1.5rem;
  }

  /* 移动端三列布局 */
  .process ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 强制三列 */
    gap: 0.8rem;
    padding: 0.5rem;
  }

  .process li {
    min-width: auto;
    padding: 0 0.3rem;
  }

  /* 调整图标大小适配三列 */
  .process li i {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  /* 移动端连接线优化 */
  .process li+li:after {
    display: none; /* 隐藏默认连接线 */
  }

  /* 添加移动端流程指引（替代连接线） */
  .process:after {
    content: "→ 左右滑动查看更多步骤";
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
  }

  /* 步骤文字调整 */
  .process li p {
    font-size: 0.8rem;
  }

  /* 最后两行单独处理（5个步骤特殊布局） */
  .process li:nth-child(4),
  .process li:nth-child(5) {
    margin-top: 1rem;
  }
  
  .process li:nth-child(4) {
    grid-column: 1 / 2; /* 第4项放第一列 */
  }
  
  .process li:nth-child(5) {
    grid-column: 2 / 3; /* 第5项放第二列 */
  }
}

/* 平板适配（769px-1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .process ul {
    padding: 1rem;
    gap: 0.5rem;
  }

  .process li i {
    width: 6rem;
    height: 6rem;
    line-height: 6rem;
    font-size: 2.2rem;
  }

  .process li+li:after {
    left: -0.6rem;
    font-size: 1.2rem;
  }
}

.service-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--tea-dark) 0%, var(--tea-accent) 100%); /* 茶色渐变 */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-cta h1 {
  font-size: 24px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.3;
}

.service-cta a {
  text-decoration: none;
}

.service-cta h3 {
  font-size: 22px;
  color: #fff;
  margin: 25px 0;
  padding: 12px 0;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  width: 80%;
  max-width: 400px;
  transition: all 0.3s ease;
}

.service-cta h3:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-cta p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* 服务区域 */
.service-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2 {
  font-size: 32px;
  color: #3a2e1f;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--tea-dark); /* 深茶色下划线 */
}
.service-slider {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* 左右箭头控制样式 - 优化后更明显 */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #5a7247; /* 改为茶绿色背景，更醒目 */
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* 白色图标，与绿色背景形成对比 */
  font-size: 1.5rem; /* 增大图标尺寸 */
  box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* 增强阴影，突出立体感 */
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

/* 悬停效果增强 */
.slider-control:hover {
  background-color: #3d5229; /* 加深颜色 */
  color: #ffffff;
  transform: translateY(-50%) scale(1.15); /* 更大的缩放效果 */
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* 按钮位置微调，更靠近边缘 */
.slider-control.prev-control {
  left: 0.5rem;
}

.slider-control.next-control {
  right: 0.5rem;
}

/* 禁用状态优化，保持可见性 */
.slider-control:disabled {
  background-color: #b3c2a4;
  cursor: not-allowed;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 控制按钮在移动端的优化 */
@media (max-width: 768px) {
  .slider-control {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  
  .slider-control.prev-control {
    left: 0.25rem;
  }
  
  .slider-control.next-control {
    right: 0.25rem;
  }
}

.service-items {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

/* 隐藏滚动条，但保留滚动功能 */
.service-items::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.service-image {
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-icon {
  background-color: var(--tea-light); /* 浅茶色背景 */
  width: 56px;
  height: 56px;
  border-radius: 50%; /* 背景圆形 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -28px auto 1rem;
  position: relative;
  z-index: 2;
  color: #5a7247;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 2px; /* 内部间距，让图标与背景有呼吸感 */
  overflow: hidden; /* 确保内容不会超出圆形范围 */
}

/* 针对图片图标的圆形处理 */
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保持图片比例 */
  border-radius: 50%; /* 图片圆形 */
  display: block; /* 去除图片底部间隙 */
  background-color: #fff; /* 图片透明部分显示白色背景 */
}

.service-content {
  padding: 0 1.2rem 1.4rem;
}

.service-content h3 {
  color: #5a7247;
  text-align: center;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  color: #666;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8d9e7c;
  font-weight: bold;
}

/* 响应式布局调整 */
@media (max-width: 768px) {
  .service-card {
    flex: 0 0 calc(85% - 1rem);
    max-width: 300px;
  }
  
  .service-image {
    height: 140px;
  }
  
  .service-content p {
    -webkit-line-clamp: 2;
    font-size: 0.75rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(50% - 1.5rem);
  }
}





.contact-btn {
  display: inline-block;
  background-color: var(--tea-dark); /* 深茶色背景 */
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: var(--tea-darker); /* 更深的茶色 */
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(109, 85, 60, 0.3);
}

/* 客户评价 */
.customer-reviews {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Noto Serif SC", "Georgia", serif;
  color: #333;
  background-color: #f9f7f5;
  border-radius: 8px;
}

.customer-reviews h3 {
  text-align: center;
  font-size: 2rem;
  color: #5d4037;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #d7ccc8;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-item::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 5rem;
  color: rgba(187, 173, 160, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.review-rating {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-item p {
  color: #5d4037;
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.review-item .author {
  text-align: right;
  color: #8d6e63;
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed #d7ccc8;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .customer-reviews {
    padding: 1.5rem 0.8rem;
  }
  
  .customer-reviews h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .review-item {
    padding: 1rem;
  }
  
  .review-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .review-rating {
    font-size: 1rem;
  }
}

/* 热点资讯 */
.HL_rdzx_nr {
  width: 1200px;
  height: 900px;
  margin: auto;
  margin-top: 20px;
  background-color: #fff;
  padding: 20px;
}

.HL_rdzx span {
  float: right;
  line-height: 110px;
}

.HL_rdzx span a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
}

.HL_rdzx span a:hover {
  color: var(--tea-accent); /* 茶色强调色 */
}

.HL_rdzx_zm {
  width: 380px;
  float: left;
  margin-right: 30px;
}

.HL_rdzx_ym {
  width: 380px;
  float: left;
  margin-right: 0px;
}

.HL_rdzx_img {
  width: 380px;
  height: 144px;
  position: relative;
}

.HL_rdzx_img_img {
  width: 380px;
  height: 144px;
  float: left;
}

.HL_rdzx_img_img img {
  width: 380px;
  height: 144px;
}

.HL_rdzx_img_title {
  width: 380px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 13px;
  background: rgba(0,0,0,0.38);
  color: #fff;
  position: absolute;
  bottom: 0;
}

.HL_rdzx_ym a:hover img, 
.HL_rdzx_zm a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.HL_rdzx_zx {
  width: 380px;
  height: 45px;
  line-height: 60px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
  color: var(--tea-dark); /* 深茶色标题 */
}

.HL_rdzx_zx a {
  float: right;
  font-size: 12px;
  color: #000;
  text-decoration: none;
}

.HL_rdzx_zx a:hover {
  color: var(--tea-accent); /* 茶色强调色 */
  text-decoration: none;
}

.HL_rdzx_zx_nr {
  width: 380px;
  height: 155px;
  float: left;
  font-size: 12px;
}

.HL_rdzx_zx_nr li {
  color: #5b5b5b;
  line-height: 23px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.HL_rdzx_zx_nr li:hover {
  text-decoration: underline;
}

.HL_rdzx_zx_nr span {
  float: right;
}

/* 常见问题 */
.ask {
  background: var(--tea-light); /* 浅茶色背景 */
  overflow: hidden;
}

.ask ul {
  width: 1200px;
  height: 195px;
  margin: 0 auto;
  overflow: hidden;
}

.ask ul li {
  font-size: 15px;
  line-height: 22px;
  color: #666;
  margin-bottom: 25px;
}

.ask ul li span {
  display: block;
  padding-bottom: 7px;
}

.ask ul li span i {
  font-family: 'iconfont';
  color: var(--tea-dark); /* 深茶色图标 */
  padding-right: 5px;
  float: left;
}

.ask ul li span i:before {
  content: "\e6c8";
}

.ask ul li p {
  text-indent: 20px;
  font-size: 14px;
  color: #999;
}

.ask .entrust {
  width: 500px;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 0 60px 0;
}

.ask .entrust a {
  float: left;
  color: var(--tea-dark); /* 深茶色文字 */
  border: 1px solid var(--tea-dark); /* 深茶色边框 */
  border-radius: 4px;
  width: 166px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  display: block;
  font-size: 16px;
  margin: 0 40px;
}

.ask .entrust a:hover, 
.ask .entrust a.hover {
  color: #fff;
  background: var(--tea-dark); /* 深茶色背景 */
  border-color: var(--tea-dark);
}

/* 关于我们 */
.describe {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #fff;
  padding: 30px;
}

.describe .bodytitle {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e6e6e6;
}

.describe .bodytitle h2 {
  font-size: 28px;
  color: #333;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.describe .bodytitle h2 i {
  position: relative;
  padding: 0 15px;
}

.describe .bodytitle h2 i::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--tea-dark); /* 深茶色下划线 */
}

.describe .prompt {
  line-height: 1.8;
  color: #555;
  font-size: 16px;
  text-align: justify;
}

.describe .prompt p {
  margin-bottom: 20px;
  padding: 0 10px;
}

.describe .prompt p:last-child {
  margin-bottom: 0;
}

.describe .prompt p:hover {
  transition: all 0.3s ease;
  transform: translateX(5px);
}

/* 友情链接 */
.link {
  padding: 35px 0;
  background: var(--tea-light); /* 浅茶色背景 */
}

.link ul {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 10px;
  overflow: hidden;
}

.link ul li {
  float: left;
  text-align: left;
  color: #999;
  width: 1146px;
  line-height: 24px;
  font-size: 12px;
}

.link ul li a {
  color: #999;
  font-size: 12px;
  float: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 24px;
  line-height: 24px;
}

.link ul li.name {
  font-weight: 700;
  color: #666;
  width: 54px;
}

.link ul li.nav {
  margin-left: 21px;
  width: 1125px;
}

.link ul li.nav a {
  margin-right: 12px;
  width: auto;
}

/* 页脚 */
.footer {
  height: 60px;
  line-height: 60px;
  color: #565b5f;
  background: #21292f;
  font-size: 12px;
}

.footer ul {
  width: 1200px;
  margin: 0 auto;
}

.footer .fl {
  float: left;
}

.footer .fr {
  float: right;
}

/* 侧边联系工具 */
.sideonlie {
  font-family: 微软雅黑, microsoft yahei, Arial, Helvetica, sans-serif, 宋体;
  z-index: 16777271;
  position: fixed !important;
  position: absolute;
  bottom: 100px;
  right: 30px;
  width: 50px;
}

.sideonlie a, .sideonlie img {
  border: 0;
  text-decoration: none;
}

.sideonlie ul, .sideonlie li, .sideonlie p, .sideonlie i {
  margin: 0;
  padding: 0;
  font-style: normal;
  list-style: none;
}

.sideonlie .family {
  font-family: "iconfont";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 24px;
}


.sideonlie .both {
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}

.sideonlie .showbox {
  width: 48px;
  height: 48px;
  border: 1px solid #ddd;
  text-align: center;
  display: block;
  margin-bottom: 6px;
  position: relative;
  background: #fff;
  color: var(--tea-dark); /* 深茶色图标 */
  cursor: pointer;
}

.sideonlie .showbox span {
  font-size: 26px;
  line-height: 48px;
}

.sideonlie .showbox sup {
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  border-radius: 50%;
  background: var(--tea-dark); /* 深茶色背景 */
  position: absolute;
  left: -10px;
  top: -10px;
  font-size: 12px;
}

.sideonlie .hidebox {
  display: none;
  position: absolute;
  right: 48px;
  padding-right: 25px;
  top: -10px;
}

.sideonlie .hidebox .border {
  border: 1px solid #ccc;
  border-top: 4px solid var(--tea-dark); /* 深茶色顶部边框 */
  padding: 20px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
  position: relative;
}

.sideonlie .hidebox .border .title span {
  font-size: 42px;
  float: left;
  display: inline;
  line-height: 56px;
  color: #9c9c9c;
  margin-right: 20px !important;
  margin-right: 10px;
}

.sideonlie .hidebox .border .title p {
  float: left;
  color: #9c9c9c;
  font-size: 24px;
  line-height: 28px;
}

.sideonlie .hidebox .border .title p i {
  display: block;
  font-size: 14px;
  color: #9c9c9c;
}

.sideonlie .hidebox .border .list {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #e4e4e4;
  overflow: hidden;
}

.sideonlie .hidebox .border .list h4 {
  color: #ccc;
  font-size: 13px;
  font-weight: normal;
  padding-bottom: 15px;
}

.sideonlie .hidebox .border .list ul {
  padding: 10px 0 15px 0;
}

.sideonlie .hidebox .border .list li {
  float: left;
  width: 50%;
}

.sideonlie .hidebox .border .list li a {
  font-family: "iconfont";
  display: inline-block;
  color: #999;
  font-size: 16px;
}

.sideonlie .hidebox .border .list li a:before {
  font-family: "iconfont";
  content: "\e633";
  padding-right: 10px;
  font-size: 18px;
  line-height: 22px;
  color: var(--tea-dark); /* 深茶色图标 */
}

.sideonlie .hidebox .border .list li a:hover {
  color: var(--tea-dark); /* 深茶色文字 */
}

.sideonlie .hidebox .border .list img {
  width: 130px;
  margin: 0 10px;
  float: left;
}

.sideonlie .hidebox .border .arrow {
  display: block;
  width: 13px;
  height: 16px;
  background: url(/static/img/sideonlie_arrow.png) no-repeat;
  position: absolute;
  right: -13px;
  top: 25px;
}

.sideonlie .hidebox .w300 {
  width: 300px;
}

.sideonlie ul {
  position: relative;
}

.sideonlie ul .hover {
  background: var(--tea-dark); /* 深茶色背景 */
  color: #fff;
  border: 1px solid var(--tea-dark);
}

.sideonlie ul.shopping {
  margin-bottom: 20px;
  display: none;
}

.sideonlie ul.wx .hidebox {
  top: -120px;
}

.sideonlie ul.wx .hidebox .border .arrow {
  top: 134px;
}

.sideonlie ul.phone {
  display: none;
}

.sideonlie ul.phone .hidebox .border {
  width: 230px;
}

.sideonlie ul.phone .hidebox {
  top: 0;
}

.sideonlie ul.phone .hidebox .border .arrow {
  top: 15px;
}

.sideonlie ul.top {
  height: 50px;
}

.sideonlie_m {
  display: none;
}


.foot-relative {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.foot-relative a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 100%;
}

.foot-relative a:hover {
    color: #6aff85;
}
.foot-relative a i.ppim {
    font-size: 18px;
}
.foot-relative a h3 {
    font-size: 12px;
    font-weight: normal;
}

/* 弹窗样式 */
.tan_wx {
    color: #f00;
    border: 1px solid #3c0;
    width: 90%;
    margin: 10px 5%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 1px #888;
}

.sld_wx {
    width: 100%;
    border-radius: 10px;
}

/* 微信弹窗 */
#sldwx, #sldwx2, #sldpp, #sldqq, #sldqqun {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.nrdf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 300px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 2px 10px #333;
    border-radius: 10px;
    text-align: center;
}

.nrdf img {
    width: 80%;
    margin: 0 auto 15px;
}

.nrdf p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.nrdf i {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    font-style: normal;
}

.nrdf span {
    display: inline-block;
    padding: 8px 15px;
    line-height: 1;
    background-color: #009882;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.nrdf span.wx {
    padding-left: 35px;
    background-image: url(../img/wx.png);
    background-size: 20px;
    background-position: 10px center;
    background-repeat: no-repeat;
}

/* 复制提示 */
#weixin {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999;
    font-size: 16px;
    color: #fff;
    width: 80%;
    max-width: 300px;
    line-height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    display: none;
}


/* 响应式设计 */
@media screen and (max-width: 1200px) {
  html, body {
    font-size: 20px;
  }
  
  .bodytitle {
    padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    background-color: var(--tea-light); /* 浅茶色背景 */
  }
  
  .bodytitle h2 {
    font-size: 0.9rem;
  }
  
  .bodytitle h2 i {
    color: var(--tea-dark); /* 深茶色强调 */
  }
  
  .bodytitle p {
    padding: 0.3rem 0;
    line-height: 1rem;
    font-size: 0.6rem;
  }
  
  .bodytitle h3 {
    font-size: 1rem;
    line-height: 1.4rem;
    padding: 0.5rem 0;
    background-color: var(--tea-dark); /* 深茶色背景 */
  }
  
  .head {
    height: 2.2rem;
    line-height: 2.2rem;
    position: fixed;
    z-index: 1984001;
    width: 100%;
    top: 0rem;
  }
  
  .head div {
    width: 100%;
    text-align: center;
  }
  
  .head a.back {
    display: none;
    width: 1.25rem;
    height: 2.2rem;
    overflow: hidden;
    position: absolute;
    left: 0.15rem;
    z-index: 100001;
  }
  
  .head a.back:before {
    font-family: 'iconfont';
    content: "\e635";
    color: #fff;
    font-size: 0.8rem;
  }
  
  .head ul.logo {
    width: 100%;
    height: 2.2rem;
    overflow: hidden;
    position: absolute;
    margin: 0 auto;
    z-index: 100000;
  }
  
  .head ul.logo img {
    height: 2.2em;
    width: auto;
    margin: 0 auto;
  }
  
  .head ul.nav {
    display: none;
  }
  
  .banner ul {
    width: 100%;
    height: auto;
    margin-top: 2.2rem;
  }
  
  .notice {
    line-height: 1.2rem;
    font-size: 0.7rem;
    padding: 0.8rem 0.5rem;
    height: auto;
    background: var(--tea-light); /* 浅茶色背景 */
  }
  
  .notice i:before {
    color: var(--tea-dark); /* 深茶色图标 */
  }
  
  .notice strong {
    font-size: 0.7rem;
  }
  
 .project .nav {
  width: 100%;
  padding: 0 0.5rem;
  background-color: #fff;
  box-sizing: border-box; /* 确保padding不撑开宽度 */
}

.project .nav ul {
  margin: 0;
  padding: 0;
  list-style: none; /* 清除默认列表样式 */
}

.project .nav ul li {
  width: 100%;
  height: auto;
  margin-bottom: 1rem; /* 增加间距提升呼吸感 */
  padding: 0.75rem; /* 增加内边距提升触控区域 */
  background-color: #f9f6f0; /* 浅底色区分区块 */
  border-radius: 0.5rem; /* 圆角增加柔和感 */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* 轻微阴影增强层次感 */
  box-sizing: border-box;
}

.project .nav ul li h3 {
  height: auto; /* 取消固定高度 */
  padding: 0.6rem 0.5rem; /* 增加内边距 */
  line-height: 1.4; /* 优化行高 */
  font-size: 0.8rem; /* 适当放大标题 */
  font-weight: 600; /* 增强标题权重 */
  margin: 0 0 0.75rem 0; /* 调整间距 */
  background: var(--tea-light);
  border-radius: 0.3rem; /* 标题添加圆角 */
  color: #333; /* 明确文字颜色 */
}

.project .nav ul li.mid {
  border: 1px solid var(--tea-dark); /* 明确边框样式 */
}

.project .nav ul li.mid h3 {
  background: var(--tea-accent);
  color: #fff; /* 强调色背景下用白色文字 */
}

/* 统一清除浮动和定位影响 */
.project .nav ul li.left, 
.project .nav ul li.right,
.project .nav ul li.mid {
  margin: 0 0 1rem 0;
  float: none;
  position: static;
  width: 100%;
  height: auto;
}

.project .nav ul li dl {
  padding: 0 0.25rem 0.5rem; /* 优化内边距 */
  font-size: 0.7rem; /* 放大文字提升可读性 */
  line-height: 1rem; /* 增加行高便于阅读 */
  color: #555; /* 文字颜色柔和化 */
  margin: 0 0 0.5rem 0;
}

/* 图片响应式处理 */
.project .nav ul li dl img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem; /* 图片添加圆角 */
  display: block; /* 去除图片底部间隙 */
  margin: 0.5rem 0; /* 图片上下增加间距 */
}

/* 最后一个dl的样式优化 */
.project .nav ul li dl:last-child {
  font-size: 0.8rem;
  color: var(--tea-dark); /* 用主题色突出关键信息 */
  font-weight: 500;
  padding-top: 0.5rem;
  border-top: 1px dashed #eee; /* 分隔线区分内容 */
}

/* 适配超小屏设备 */
@media (max-width: 320px) {
  .project .nav ul li h3 {
    font-size: 1rem;
  }
  .project .nav ul li dl {
    font-size: 0.75rem;
  }
}

  
  .ask {
    background: var(--tea-light); /* 浅茶色背景 */
    height: auto;
  }
  
  .ask ul {
    width: auto;
    margin: 0 0.5rem;
  }
  
  .ask ul li {
    font-size: 0.65rem;
    line-height: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .ask ul li span {
    padding-bottom: 0.25rem;
  }
  
  .ask ul li span i {
    color: var(--tea-dark); /* 深茶色图标 */
  }
  
  .ask .entrust {
    width: 100%;
    padding: 1.5rem 0 1.5rem 0;
  }
  
  .ask .entrust a {
    color: var(--tea-dark); /* 深茶色文字 */
    border: 1px solid var(--tea-dark); /* 深茶色边框 */
  }
  
  .ask .entrust .hover {
    display: none;
  }
  
  .ask .entrust #ask_more {
    border: 0.05rem solid var(--tea-dark);
    border-radius: 0.2rem;
    width: 5rem;
    height: 1.7rem;
    line-height: 1.7rem;
    font-size: 0.6rem;
    margin: 0 auto;
    float: none;
  }
  

  .link {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    background: var(--tea-light); /* 浅茶色背景 */
  }
  
  .link ul {
    width: auto;
    padding-bottom: 0.5rem;
  }
  
  .link ul li {
    width: auto;
    line-height: 1.2rem;
    font-size: 0.6rem;
  }
  
  .link ul li a {
    font-size: 0.6rem;
    height: 1.2rem;
    line-height: 1.2rem;
  }
  
  .link ul li.name {
    width: 2.7rem;
  }
  
  .link ul li.nav {
    margin-left: 0.4rem;
    width: auto;
    height: 3.3rem;
  }
  
  .link ul li.nav a {
    margin-right: 0.5rem;
    width: auto;
  }
  
  .footer {
    height: 2.25rem;
    line-height: 2.25rem;
    margin-bottom: 2.5rem;
  }
  
  .footer ul {
    width: 100%;
  }
  
  .footer .fl {
    display: none;
  }
  
  .footer .fr {
    text-align: center;
    float: none;
  }
  
  .sideonlie {
    display: none;
  }
  
  .sideonlie_m {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    border-top: 0.05rem solid #eee;
    box-sizing: border-box;
    z-index: 16777270;
    text-align: center;
    width: 100%;
    display: block;
  }
  
  .sideonlie_m .showbox {
    height: 2.5rem;
  }
  
  .sideonlie_m .showbox li {
    width: 20%;
    display: block;
    float: left;
  }
  
  .sideonlie_m .showbox li a {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  .sideonlie_m .showbox li a i {
    font-family: 'iconfont';
    display: block;
    font-size: .6rem;
    height: 1.2rem;
    overflow: hidden;
    line-height: 1.2rem;
    padding-top: 0.2rem;
    color: var(--tea-dark); /* 深茶色图标 */
  }
  
  .sideonlie_m .showbox li a span {
    display: block;
    font-size: 0.6rem;
    height: 1.1rem;
    line-height: 1.1rem;
    color: #666;
  }
  

  
  .sideonlie_m .hidebox {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 0.2rem solid var(--tea-dark); /* 深茶色顶部边框 */
    background: #fff;
    z-index: 16777271;
    display: none;
  }
  
  .sideonlie_m .hidebox>li {
    display: none;
  }
  
  .sideonlie_m .hidebox li dl {
    padding: 0.5rem 0.8rem;
    overflow: hidden;
  }
  
  .sideonlie_m .hidebox li .title span {
    font-family: 'iconfont';
    display: block;
    font-size: 1.5rem;
    float: left;
    line-height: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    color: var(--tea-dark); /* 深茶色图标 */
  }
  
  .sideonlie_m .hidebox li .title p {
    float: left;
    color: #9c9c9c;
    font-size: 0.8rem;
    font-style: normal;
    text-align: left;
    height: 2.35rem;
    padding-top: 0.15rem;
  }
  
  .sideonlie_m .hidebox li .title p i {
    display: block;
    font-size: 0.6rem;
    color: #9c9c9c;
    line-height: 1.2rem;
  }
  
  .sideonlie_m .hidebox li .list {
    border-top: solid 0.05rem #eee;
  }
  
  .sideonlie_m .hidebox li .list li {
    width: 33.3%;
    float: left;
  }
  
  .sideonlie_m .hidebox li .list a {
    display: block;
    width: 100%;
    font-size: 0.7rem;
    text-align: center;
    margin: 0.15rem 0;
    line-height: 1.6rem;
  }
  
  .sideonlie_m .hidebox li .list a:before {
    font-family: "iconfont";
    content: "\e633";
    padding-right: 0.5rem;
    font-size: 0.8rem;
    color: var(--tea-dark); /* 深茶色图标 */
  }
  
  .sideonlie_m .hidebox li .list img {
    width: 50%;
    float: left;
  }

  
  .sideonlie_m .hidebox li.close {
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    background: #f2f2f2;
    display: block;
  }
  
  
  /* 服务区域响应式 */
  .service-section {
    margin: 40px auto;
    background-color: #fff;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .section-header h2::after {
    background-color: var(--tea-dark); /* 深茶色下划线 */
  }
  
  .service-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .service-icon {
    background-color: var(--tea-light); /* 浅茶色背景 */
	padding:1%;
  }
  
  .service-icon i {
    color: var(--tea-dark); /* 深茶色图标 */
  }
  
  .service-features li::before {
    color: var(--tea-dark); /* 深茶色标记 */
  }
  
  .service-cta {
    padding: 20px;
    background: linear-gradient(135deg, var(--tea-dark) 0%, var(--tea-accent) 100%); /* 茶色渐变 */
  }
  
  .service-cta h1 {
    font-size: 18px;
  }
  
  .service-cta h3 {
    font-size: 16px;
    width: 90%;
  }
  
  .service-cta p {
    font-size: 14px;
  }
  
  /* 客户评价响应式 */

  
  /* 关于我们响应式 */
  .describe {
    margin: 25px auto;
    background-color: #fff;
    padding: 30px;
  }
  
  .describe .bodytitle h2 {
    font-size: 24px;
  }
  
  .describe .bodytitle h2 i::after {
    background-color: var(--tea-dark); /* 深茶色下划线 */
  }
  
  .describe .prompt {
    font-size: 15px;
    line-height: 1.7;
  }
  
  /* 热点资讯响应式 */
  .HL_rdzx_nr {
    background-color: #fff;
    padding: 20px;
  }
  
  .HL_rdzx_zx {
    color: var(--tea-dark); /* 深茶色标题 */
  }
  
  .HL_rdzx_zx a:hover {
    color: var(--tea-accent); /* 茶色强调色 */
  }
  
  
  /* 底部联系栏 */
.footer_lxfs {
    width: 100%;
    height: 40px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background: #8B5A2B;
    transition: all 0.3s ease-in-out;
}
  
  
}
