* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 16px;
}

html {
  font-size: 14px;
}

body {
  font-size: 1.6rem;
}

svg.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  overflow: hidden;
  vertical-align: -0.1em;
}

.txt-min {
  font-size: 1.2rem;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  scroll-behavior: auto;
}

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
}

/* 容器 */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.geo-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 15px;
}

.geo-card-body {
  padding: 22px;
  position: unset;
  background: #fff;
}
.geo-card-body h3{
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px;
  line-height: 1.45;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.geo-chip-list span {
  color: var(--primary) !important;
}

/* 头部导航栏 (高端简洁) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 8px 20px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid #eff3f6;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 80px;
}

.logo h1 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  white-space: nowrap;
  background: linear-gradient(135deg, #1a6d3f, #0e4a2a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #5a6e7c;
  display: inline;
  letter-spacing: 0;
}

/* 导航右侧 */
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: #1e2a3a;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #1a6d3f;
}

.nav-links a.nav-link.active,
.nav-links li.nav-item.active > a.nav-link {
  color: #1a6d3f;
  font-weight: 700;
}

.nav-links a.nav-link.active::after,
.nav-links li.nav-item.active > a.nav-link::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px auto 0;
  background: #1a6d3f;
  border-radius: 3px;
}

.contact-number {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f7f2;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  color: #1a6d3f;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-number i {
  font-size: 1.1rem;
}

.contact-number:hover {
  background: #e2ede6;
}

/* ===== 移动端汉堡菜单（桌面端隐藏） ===== */
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-mobile-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f7f2;
  color: #1a6d3f;
  font-size: 1.2rem;
}

.nav-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #1e2a3a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-menu-btn:hover span {
  background: #1a6d3f;
}

/* 侧滑菜单面板 */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.nav-mobile-menu.is-open {
  display: block;
}

.nav-mobile-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.nav-mobile-menu.is-open .nav-mobile-panel {
  transform: translateX(0);
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eff3f6;
}

.nav-mobile-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f2b20;
}

.nav-mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  color: #5a6e7c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile-close:hover {
  background: #f0f7f2;
  border-color: #1a6d3f;
  color: #1a6d3f;
}

.nav-mobile-links {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.nav-mobile-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f6f9f7;
  color: #1e2a3a;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.is-active {
  background: #e4f0e9;
  color: #1a6d3f;
  font-weight: 600;
}

.nav-mobile-bottom {
  padding: 16px 20px 24px;
  border-top: 1px solid #eff3f6;
}

.nav-mobile-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  background: #1a6d3f;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}

/* 响应式导航：≤900px 隐藏桌面导航，显示汉堡按钮 */
@media (max-width: 900px) {
  .nav-right {
    display: none;
  }

  .nav-mobile-actions {
    display: flex;
  }

  .nav-container {
    flex-wrap: nowrap;
  }

  .logo h1 {
    font-size: 1.2rem;
  }
}

/* 主视觉 Banner (高端大图区) */
.hero {
  background: linear-gradient(105deg, #f9fcfa 0%, #ffffff 100%);
  padding: 60px 0 40px;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.hero_content_inner {
  align-items: center;
}



.hero-badge {
  background: #e9f2ec;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a6d3f;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0f2b20;
}

.hero-content p {
  font-size: 0.95rem;
  color: #3a4c5c;
  margin-bottom: 10px;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;

}

.stat-item {
  font-weight: 600;
  width: 35%;
  padding-right: 10px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a6d3f;
}

.hero-image {
  flex: 0.9;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  background: #eff3f6;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 850px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    width: 100%;
  }

  .hero-image {
    width: 100%;
  }
}

/* 通用板块间距 */
section {
  padding: 45px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f2b20;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: #5a6e7c;
  max-width: 680px;
  margin: 0 auto;
}

.divider {
  width: 70px;
  height: 3px;
  background: #1a6d3f;
  margin: 20px auto 0;
  border-radius: 4px;
}

/* 产品展示区：三个正方形图文 */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.product-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f3f5;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
  border-color: #dde5e0;
}

/* 正方形图片区域 */
.product-img {
  width: 100%;
  background: #f6f9f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-img img {
  transform: scale(1.02);
}

.product-info {
  padding: 24px 20px 28px;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
  color: #1c2d3b;
}

.product-info p {
  color: #566b7a;
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-tag {
  display: inline-block;
  background: #edf5f0;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1a6d3f;
}

/* 资质荣誉 & 实力简介 */
.about-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.about-text {
  flex: 1.2;
}

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f2b20;
}

.about-text p {
  margin-bottom: 18px;
  color: #3a4c5c;
}

.cert-badge {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 28px 0 16px;
}

.badge {
  background: #f8faf9;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #333333;
  gap: 8px;
}

.badge i {
  color: #1a6d3f;
  font-size: 1rem;
}

.about-stats {
  flex: 0.8;
  background: #f3f8f4;
  border-radius: 32px;
  padding: 40px 32px;
}

.stat-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.stat-block {
  width: 45%;
}

.stat-block h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a6d3f;
}

/* 四大系统/核心领域 */
.systems {
  background: #f9fcfa;
}

.system-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.system-item {
  background: white;
  border-radius: 32px;
  padding: 32px 24px;
  flex: 1 1 30%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: 0.2s;
  border: 1px solid #ecf2ef;
}

.system-item i {
  font-size: 2.5rem;
  color: #1a6d3f;
  margin-bottom: 20px;
}

.system-item h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

/* 工程案例概览 */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.case-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #eef2f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.case-card i {
  font-size: 2rem;
  color: #1a6d3f;
  margin-bottom: 14px;
}

.case-card h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* 移动端拨号按钮 */
.mobile-tel-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1a6d3f;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(26, 109, 63, 0.4);
  z-index: 1100;
  transition: 0.2s;
  text-decoration: none;
  font-size: 1.8rem;
}

.mobile-tel-btn:hover {
  background: #0e542f;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .mobile-tel-btn {
    display: flex;
  }

  .stat-block h4 {
    font-size: 1.6rem;
  }

  .about-grid {
    flex-direction: column;
  }

  .about-stats {
    flex: 0 0 100%;
    width: 100%;
    padding: 20px 25px;
    border-radius: 10px;
  }

  .logo span {
    font-size: 0.78rem;
  }
}

/* 平板：产品网格降为 2 列 */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* 手机端深度适配 */
@media (max-width: 768px) {
  section {
    padding: 32px 0;
  }

  .hero {
    padding: 36px 0 28px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-stats {
    gap: 18px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-item {
    width: 45%;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-info {
    padding: 16px 12px 20px;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 1.55rem;
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .stat-block h4 {
    font-size: 1.3rem;
  }

  .system-item {
    flex: 1 1 100%;
    padding: 26px 20px;
    border-radius: 22px;
  }

  .contact-block {
    padding: 24px 18px;
    border-radius: 24px;
    margin-top: 32px;
  }

  .contact-block p {
    font-size: 1.3rem;
    flex-wrap: wrap;
  }

  footer {
    padding: 36px 0 24px;
  }

  .footer-grid {
    gap: 20px;
  }
}

/* 超小屏：产品网格单列 */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .logo h1 {
    font-size: 1.05rem;
  }

  /* 超小屏隐藏手机号（汉堡旁已有拨号按钮），保证 logo 单行不挤压 */
  .logo span {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.45rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .stat-block {
    width: 100%;
  }
}

#contact{
  background: #F5F9F6;
}
.contact-block {
  margin-top: 48px;
  background: white;
  border-radius: 40px;
  padding: 32px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.contact-block h3 {
  margin: 16px 0;
}
.contact-block p {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-block .icon {
  font-size: 30px;
}
.contact-block a {
  background: #1A6D3F;
  color: white;
  display: inline-block;
  margin-top: 24px;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
}

/* 页脚区域 */
footer {
  background: #0f2b20;
  color: #d9e1dd;
  padding: 48px 0 32px;
  margin-top: 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  border-top: 1px solid #264f3a;
  padding-top: 28px;
}

.footer-contact h4 {
  margin-bottom: 20px;
}

.footer-contact p .icon {
  font-size: 18px;
  margin-right: 6px;
}

.footer-contact p {
  margin-bottom: 10px;
}

/* 按钮样式 */
.btn-outline {
  border: 1.5px solid #1a6d3f;
  background: transparent;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 500;
  color: #1a6d3f;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: #1a6d3f;
  color: white;
}

.city_web {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.city_web a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  transition: 0.3s;
  text-decoration: none;
}

.city_web a:hover {
  background: rgba(255, 255, 255, 0.1);
}



/* 文章详情 */

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

.section_news .mains .mains_fr_box ul {
  padding: 0;
}

.section_news {
  padding: 55px 0;
}

.phone_medile {
  display: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
  background-color: #0069e6;
  padding: 15px 20px;
  position: fixed;
  bottom: 26px;
  left: 50%;
  width: 80%;
  transform: translate(-50%, 10px);
  border-radius: 330px;
}

.phone_medile img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

.section_news .mains {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.section_news .mains .mains_fl_box {
  flex: 1;
  padding: 20px 25px;
  background-color: #ffffff;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section_news .mains .mains_fr_box {
  width: 25%;
}

.box_page_line {
  padding: 15px;
  background: #e5ebff;
  border-radius: 10px;
}

.box_page_line .line {
  color: #333333;
  line-height: 1.5;
  font-size: 14px;
}

.box_page_line .line img {
  width: 18px;
}

.section_news .main_box {
  padding: 20px 25px;
  background-color: #ffffff;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section_news .main_content {
  margin: 25px 0;
}

/* 首页最新文章：两列卡片网格 */
.news-section-home {
  padding: 55px 0;
  background: #f6f9f7;
}

.news-title-home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
}

.news-title-home::before,
.news-title-home::after {
  content: "";
  width: 72px;
  height: 3px;
  background: #1a6d3f;
  border-radius: 4px;
}

.news-title-home h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f2b20;
  margin: 0;
  white-space: nowrap;
}

.news-list-home {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.news-item-home {
  background: #ffffff;
  border: 1px solid #e6ede9;
  border-radius: 14px;
  padding: 24px 28px;
  color: #1e2a3a;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 43, 32, 0.05);
  transition: all 0.25s ease;
  min-width: 0;
}

.news-item-home:hover {
  border-color: #1a6d3f;
  color: #1a6d3f;
  box-shadow: 0 12px 28px rgba(26, 109, 63, 0.13);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .news-title-home {
    gap: 12px;
    margin-bottom: 30px;
  }

  .news-title-home::before,
  .news-title-home::after {
    width: 36px;
  }

  .news-title-home h2 {
    font-size: 1.5rem;
  }

  .news-list-home {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-item-home {
    padding: 18px 20px;
    font-size: 0.98rem;
  }
}

.main_content .title {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}

.main_content .title h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
}

.main_content .title .time {
  color: #999;
  text-align: center;
  width: 100%;
  margin-top: 10px;
  font-size: 12px;
}

.mains .mains_fr_box .box_detail_title {
  color: #204c41;
  box-sizing: border-box;
  border-bottom: 1px solid #e1e1e1;
  align-items: center;
  width: 100%;
  height: 36px;
  padding-left: 6px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  position: relative;
  margin-bottom: 10px;
}

.mains .mains_fr_box .box_detail_title::before {
  content: "";
  background-color: #204c41;
  width: 100px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.main_content .custom-html-style p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 2;
  text-indent: 30px;
}

.main_content .custom-html-style h1 {
  border: none;
  margin: 25px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.main_content .custom-html-style h2 {
  border: none;
  margin: 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: 30px;
}

.main_content .custom-html-style h3 {
  border: none;
  margin: 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: 30px;
}

.main_content .custom-html-style h4 {
  border: none;
  margin: 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: 30px;
}


.main_content .custom-html-style h5 {
  border: none;
  margin: 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: 30px;
}


.custom-html-style table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.custom-html-style table th {
  text-align: center !important;
  padding: 12px 14px;
  white-space: nowrap;
  background-color: #f5f5f5;
  font-weight: 600;
  border-bottom: 2px solid #ddd;
}

.custom-html-style table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
}


.custom-html-style ol,
.custom-html-style ul {
  line-height: 28px;
  padding: 0;
}

.custom-html-style li {
  margin-bottom: 8px;
  line-height: 1.7;
  text-indent: 30px;
  list-style: none;
}

.custom-html-style p strong,
.custom-html-style li strong {
  font-weight: 400;
}


.custom-html-style table tbody tr:nth-child(even) {
  background-color: #fafafa;
}


.custom-html-style table tbody tr:hover {
  background-color: #f0f7ff;
}

.custom-html-style table td strong {
  font-weight: 400;
}

.main_content .custom-html-style img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.main_content .custom-html-style em {
  font-style: normal;
}

.main_content .custom-html-style strong {
  font-weight: 400;
}

.main_content .custom-html-style p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 2;
  text-indent: 30px;
}

@media (max-width: 768px) {
  .section_news .mains {
    flex-direction: column;
  }

  .section_news .mains .mains_fr_box {
    width: 100%;
  }
}

/* ===== 首页/内页关于我们区块背景 ===== */
#about {
  background: #FDFEFC;
}

/* ===== 分站推荐（city_web） ===== */
.rand-shop-100 {
  background: #ffffff;
  padding: 0.95rem 0;
  font-size: 12px;
  line-height: 1.4;
}

.rand-shop-100__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

.rand-shop-100__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.rand-shop-100__item {
  margin: 0;
  min-width: 0;
}

.rand-shop-100__item a {
  display: block;
  padding: 8px 10px;
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.rand-shop-100__item a:hover {
  color: #2563eb;
  border-color: #93c5fd;
  background: #eff6ff;
}

.rand-shop-100__list .rand-shop-extra {
  display: none;
}

.rand-shop-100__list.expanded .rand-shop-extra {
  display: list-item;
}

.rand-shop-100.is-hidden {
  display: none;
}

.rand-shop-more-btn {
  display: block;
  width: 130px;
  margin: 12px auto 0;
  cursor: pointer;
  background: #5384c5;
  border-radius: 36px;
  padding: 8px 10px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
}

.rand-shop-more-btn:hover {
  background: rgba(83, 132, 197, 0.64);
}

@media (max-width: 991px) {
  .rand-shop-100__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .rand-shop-100__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 6px;
  }

  .rand-shop-100__item a {
    font-size: 11px;
    padding: 4px 6px;
  }
}