/* ===================================================
   绿色企业网站系统 - 移动端样式表
   设计风格：深色首屏 + 底部 Tab 导航
   =================================================== */

:root {
  --m-primary: #2e7d32;
  --m-primary-light: #43a047;
  --m-primary-dark: #1b5e20;
  --m-dark: #0d1f0e;
  --m-dark-2: #152a16;
  --m-gold: #2e7d32;
  --m-text: #333;
  --m-text-2: #666;
  --m-text-light: #999;
  --m-bg: #f6f8f6;
  --m-card: #fff;
  --m-border: #e8ebe8;
  --m-tabbar: #fff;
  --m-tabbar-border: #e0e6e0;
  --m-tab-inactive: #888;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--m-text);
  background: var(--m-bg);
  padding-top: 58px;
  padding-bottom: calc(84px + var(--safe-bottom));
}
a { color: var(--m-primary); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ====== 顶部固定导航（参考骏依美：白底 + 品牌名/副标题 + 右侧搜索框） ====== */
.m-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 58px;
  background: #fff;
  border-bottom: 1px solid var(--m-border);
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.m-header .m-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 46%;
}
.m-header .m-logo-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--m-primary), var(--m-primary-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-left: -2px;
}
.m-header .m-logo img {
  height: 22px;
  width: auto;
  max-width: 55px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -2px;
}
.m-header .m-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}
.m-header .m-logo-text strong {
  font-size: 19px;
  font-weight: 700;
  color: var(--m-primary);
}
.m-header .m-logo-text small {
  font-size: 13px;
  color: #222;
  margin-top: 2px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 顶部常驻搜索框 */
.m-header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: 8px;
  min-width: 0;
}
.m-header .m-top-search {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 55%;
  max-width: 210px;
  min-width: 140px;
  height: 34px;
  background: #f5f5f5;
  border-radius: 17px;
  padding: 0 3px 0 10px;
  overflow: hidden;
  transition: width .25s ease, max-width .25s ease, flex .25s ease;
}
.m-header .m-top-search.is-focus,
.m-header .m-top-search:focus-within {
  flex: 1;
  width: auto;
  max-width: none;
}
.m-header .m-top-search input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 13px;
  color: var(--m-text);
  outline: none;
  min-width: 0;
}
.m-header .m-top-search input::placeholder { color: #bbb; font-size: 12px; }
.m-header .m-top-search button {
  width: 28px; height: 28px;
  border: 0; border-radius: 50%;
  background: var(--m-gold);
  color: #fff;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.m-header .m-top-search button span {
  filter: brightness(0) invert(1);
}
/* 搜索结果页内搜索框 */
.m-search-form form {
  display: flex; gap: 8px;
  background: #fff; border: 1px solid var(--m-border);
  border-radius: 22px; padding: 5px 6px 5px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.m-search-form input {
  flex: 1; border: 0; outline: none; font-size: 15px; background: transparent; color: var(--m-text);
}
.m-search-form button {
  height: 34px; padding: 0 18px; border: 0; border-radius: 17px;
  background: var(--m-primary); color: #fff; font-size: 14px; cursor: pointer;
}
.m-search-stat { font-size: 13px; color: var(--m-text-2); padding: 14px 4px 6px; }
.m-search-group { font-size: 15px; color: var(--m-primary-dark); margin: 16px 0 10px; padding-left: 10px; border-left: 3px solid var(--m-primary); }


/* ====== 底部 Tab 导航 ====== */
.m-tabbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: calc(56px + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--m-tabbar);
  border-top: 1px solid var(--m-tabbar-border);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding-top: 6px;
}
.m-tabbar a {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #333;
  font-size: 10px;
  transition: color .2s;
}
.m-tabbar a span:not(.ico) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.m-tabbar a .ico {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-tabbar a .ico svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.m-tabbar a.active {
  color: var(--m-primary);
}

/* ====== 首屏 Banner（参考骏依美：大图 + 左上文案 + 右上 English） ====== */
.m-hero {
  position: relative;
  height: 182px;
  background: var(--m-dark);
  color: #fff;
  overflow: hidden;
}
.m-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(13,31,14,.72) 100%);
  pointer-events: none;
  z-index: 1;
}
.m-hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.m-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 14px;
}
.m-hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.m-hero-slide .m-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  z-index: 0;
}
.m-hero-slide .m-hero-content {
  position: relative;
  z-index: 2;
}
.m-hero .m-lang-en {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  height: 28px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--m-gold);
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
}
/* 内页常驻语言切换（首页用 banner 按钮，不重复显示） */
.m-inner-lang {
  position: fixed;
  top: 64px;
  right: 12px;
  z-index: 999;
}
.m-inner-lang .m-lang-en {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--m-gold);
  border-radius: 15px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.m-hero-content {
  position: relative;
  z-index: 2;
}
.m-hero h1 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.m-hero p {
  font-size: 12px;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.m-btn-primary {
  background: var(--m-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46,125,50,.35);
}
.m-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.m-btn-block { width: 100%; }

/* ====== 轮播图点 ====== */
.m-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.m-hero-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.m-hero-dots span.active {
  background: var(--m-gold);
  width: 14px;
  border-radius: 3px;
}

/* ====== 产品分类标签（参考骏依美：横向滚动胶囊） ====== */
.m-cat-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 12px;
  padding: 0 12px 14px;
  background: #fff;
  scrollbar-width: none;
}
.m-cat-tabs::-webkit-scrollbar { display: none; }
.m-cat-tabs a {
  white-space: nowrap;
  padding: 7px 16px;
  border-radius: 18px;
  font-size: 13px;
  background: #f5f5f5;
  color: var(--m-text-2);
}
.m-cat-tabs a.active {
  background: var(--m-gold);
  color: #fff;
}

/* ====== 产品中心标题（参考骏依美：左侧小图标 + 文字） ====== */
.m-section-head-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
  margin-bottom: 16px;
}
.m-section-head-left .icon {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--m-gold);
  color: #fff;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.m-section-head-left h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--m-text);
}

/* ====== 通用板块 ====== */
.m-section {
  padding: 32px 16px;
}
.m-section-head {
  text-align: center;
  margin-bottom: 24px;
}
.m-section-head .en {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--m-gold);
  text-transform: uppercase;
}
.m-section-head h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--m-text);
  margin-top: 6px;
}
.m-section-head .line {
  width: 36px; height: 3px;
  background: var(--m-primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ====== 卡片 ====== */
.m-card {
  background: var(--m-card);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  overflow: hidden;
  margin-bottom: 14px;
}
.m-card:active {
  transform: scale(.99);
  transition: transform .1s;
}
.m-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #eef4ee;
  overflow: hidden;
}
.m-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.m-card-thumb .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: #c8e6c9;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
}
.m-card-body {
  padding: 14px;
}
.m-card-body .cat {
  display: inline-block;
  font-size: 11px;
  color: var(--m-primary);
  background: var(--m-green-50, #e8f5e9);
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.m-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--m-text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.m-card-body p {
  font-size: 13px;
  color: var(--m-text-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.m-card-body .meta {
  font-size: 12px;
  color: var(--m-text-light);
  margin-top: 10px;
}

/* ====== 网格 ====== */
.m-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
/* OEM / 贴牌 / 加 Logo 移动端网格 */
.m-oem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ====== 产品列表（参考骏依美：无边框 2 列网格） ====== */
.m-product-section {
  padding-top: 8px;
  background: #fff;
}
.m-product-item {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.m-product-item .thumb {
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
}
.m-product-item .thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.m-product-item .info {
  padding: 8px 2px;
}
.m-product-item .info h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.4;
  color: var(--m-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-product-item .info .cat {
  font-size: 11px;
  color: var(--m-text-light);
}

/* ====== 分类筛选条 ====== */
.m-filter {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 14px;
  scrollbar-width: none;
}
.m-filter::-webkit-scrollbar { display: none; }
.m-filter a {
  white-space: nowrap;
  padding: 7px 16px;
  border-radius: 18px;
  font-size: 13px;
  background: #fff;
  color: var(--m-text-2);
  border: 1px solid var(--m-border);
}
.m-filter a.active {
  background: var(--m-primary);
  color: #fff;
  border-color: var(--m-primary);
}

/* ====== 产品详情 ====== */
.m-detail-hero {
  background: #fff;
  padding: 16px;
}
.m-detail-hero .m-gallery {
  border-radius: 14px;
  overflow: hidden;
  background: #eef4ee;
  margin-bottom: 16px;
}
.m-detail-hero .m-gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
}
.m-detail-hero .m-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.m-detail-hero .m-gallery-count {
  position: absolute;
  right: 10px; bottom: 10px;
  background: rgba(0,0,0,.5); color: #fff;
  font-size: 12px; padding: 2px 8px; border-radius: 10px;
}
.m-detail-hero .m-gallery-thumbs {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 8px 2px 2px; scrollbar-width: none;
}
.m-detail-hero .m-gallery-thumbs::-webkit-scrollbar { display: none; }
.m-detail-hero .m-gallery-thumbs .m-thumb {
  flex: 0 0 auto; width: 60px; height: 60px; border-radius: 8px;
  object-fit: cover; border: 2px solid transparent; cursor: pointer;
}
.m-detail-hero .m-gallery-thumbs .m-thumb.active {
  border-color: var(--m-primary);
}
.m-detail-hero .m-gallery-stage { position: absolute; inset: 0; }
.m-detail-hero .m-gallery-media { width: 100%; height: 100%; object-fit: cover; background: #000; }
.m-detail-hero .m-gallery-thumbs .m-video-thumb {
  position: relative; background: #1f2937; display: flex; align-items: center; justify-content: center;
}
.m-detail-hero .m-gallery-thumbs .m-thumb-play {
  color: #fff; font-size: 20px; text-shadow: 0 1px 4px rgba(0,0,0,.6); pointer-events: none;
}
.m-detail-hero h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.m-detail-hero .m-cat-tags {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
  margin-bottom: 10px;
}
.m-detail-hero .m-cat-tags .cat-tag {
  display: inline-flex; align-items: center;
  font-size: 12px; color: var(--m-primary-dark);
  background: rgba(46, 125, 50, .08);
  padding: 2px 10px; border-radius: 10px;
  border: 1px solid rgba(46, 125, 50, .15);
  line-height: 1.4;
}
.m-detail-hero .m-model {
  font-size: 13px;
  color: var(--m-text-light);
  margin-bottom: 12px;
}
.m-detail-hero .m-price {
  font-size: 20px;
  color: var(--m-primary);
  font-weight: 700;
  margin-bottom: 16px;
}
.m-detail-hero .m-actions-row {
  display: flex; gap: 10px;
}
.m-detail-hero .m-actions-row .m-btn {
  flex: 1;
}

.m-detail-body {
  padding: 20px 16px;
  background: #fff;
  margin-top: 10px;
}
.m-detail-body h2 {
  font-size: 17px;
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 3px solid var(--m-primary);
}
.m-detail-body p {
  margin-bottom: 12px;
  color: var(--m-text-2);
}
.m-detail-body img {
  border-radius: 10px;
  margin: 10px 0;
}

/* ====== 新闻详情 ====== */
.m-article-header {
  background: #fff;
  padding: 20px 16px;
}
.m-article-header h1 {
  font-size: 21px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.m-article-header .meta {
  font-size: 12px;
  color: var(--m-text-light);
}
.m-article-body {
  background: #fff;
  padding: 16px;
  margin-top: 10px;
}
.m-article-body p {
  margin-bottom: 14px;
  color: var(--m-text);
  line-height: 1.85;
}
.m-article-body img {
  border-radius: 10px;
  margin: 12px 0;
}

/* ====== 分页 ====== */
.m-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
}
.m-pager a, .m-pager span {
  min-width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  background: #fff;
  color: var(--m-text);
  border: 1px solid var(--m-border);
}
.m-pager a.active, .m-pager span.current {
  background: var(--m-primary);
  color: #fff;
  border-color: var(--m-primary);
}

/* ====== 联系表单 ====== */
.m-form {
  background: #fff;
  padding: 20px 16px;
}
.m-form .field {
  margin-bottom: 14px;
}
.m-form label {
  display: block;
  font-size: 13px;
  color: var(--m-text-2);
  margin-bottom: 6px;
}
.m-form input,
.m-form select,
.m-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--m-border);
  border-radius: 10px;
  font-size: 15px;
  background: #fafbfa;
  -webkit-appearance: none;
}
.m-form textarea {
  min-height: 110px;
  resize: vertical;
}
.m-form .m-btn-primary {
  margin-top: 6px;
}
.m-flash {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 14px;
}
.m-flash.success {
  background: #e8f5e9;
  color: var(--m-primary-dark);
}
.m-flash.error {
  background: #ffebee;
  color: #c62828;
}

/* ====== 联系信息卡片 ====== */
.m-contact-cards {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}
.m-contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.m-contact-card .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--m-green-50, #e8f5e9);
  color: var(--m-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.m-contact-card h4 {
  font-size: 13px;
  color: var(--m-text-light);
  margin-bottom: 4px;
}
.m-contact-card p {
  font-size: 15px;
  color: var(--m-text);
  font-weight: 600;
}

/* ====== 关于页特色 ====== */
.m-feature-list {
  display: grid;
  gap: 12px;
}
.m-feature {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
.m-feature .icon {
  width: 50px; height: 50px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--m-green-50, #e8f5e9);
  color: var(--m-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.m-feature h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.m-feature p {
  font-size: 13px;
  color: var(--m-text-2);
}

/* ====== 数据条 ====== */
.m-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 20px 16px;
  background: var(--m-dark);
  color: #fff;
}
.m-stats .item {
  text-align: center;
}
.m-stats .num {
  font-size: 22px;
  font-weight: 700;
  color: var(--m-gold);
}
.m-stats .label {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}

/* ====== 页脚（简洁版权） ====== */
.m-footer {
  background: #fff;
  color: var(--m-text-light);
  padding: 18px 16px 98px;
  text-align: center;
  font-size: 12px;
  border-top: 1px solid var(--m-border);
}
.m-copyright-bar {
  position: fixed;
  bottom: calc(56px + var(--safe-bottom));
  left: 0; right: 0;
  z-index: 999;
  height: 28px;
  background: #fff;
  border-top: 1px solid var(--m-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--m-text-2);
}

/* ====== 空状态 ====== */
.m-empty {
  text-align: center;
  padding: 40px 16px;
  color: var(--m-text-light);
}

/* ====== 数据统计 数字后缀 ====== */
.m-stats .num .suf { font-size: 13px; font-weight: 700; margin-left: 1px; }

/* ====== 核心能力 ====== */
.m-caps-section { background: var(--m-bg); }
.m-caps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-cap {
  background: var(--m-card);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.m-cap .num {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--m-primary);
  color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.m-cap .cap-body h4 { font-size: 14px; font-weight: 600; color: var(--m-text); margin-bottom: 4px; line-height: 1.4; }
.m-cap .cap-body p { font-size: 12px; color: var(--m-text-2); line-height: 1.55; }

/* ====== 应用场景 ====== */
.m-scenes-section { background: #fff; }
.m-scenes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-scene {
  background: var(--m-bg);
  border-left: 3px solid var(--m-primary);
  border-radius: 10px;
  padding: 14px;
}
.m-scene h4 { font-size: 14px; font-weight: 600; color: var(--m-text); margin-bottom: 4px; }
.m-scene p { font-size: 12px; color: var(--m-text-2); line-height: 1.55; }
.m-scene.tone-1 { border-left-color: #2e7d32; }
.m-scene.tone-2 { border-left-color: #43a047; }
.m-scene.tone-3 { border-left-color: #1b5e20; }

/* ====== 新闻列表 ====== */
.m-news-section { background: var(--m-bg); }
.m-section-head-left .more {
  margin-left: auto;
  font-size: 12px;
  color: var(--m-primary);
  font-weight: 600;
  text-decoration: none;
}
.m-news-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.m-news-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--m-card);
  border-radius: 10px;
  padding: 12px 14px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.m-news-item .date {
  flex: 0 0 auto;
  font-size: 11px;
  color: var(--m-primary);
  background: var(--m-green-50, #e8f5e9);
  padding: 3px 8px;
  border-radius: 8px;
  white-space: nowrap;
}
.m-news-item .t {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: var(--m-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ====== CTA ====== */
.m-cta {
  background: linear-gradient(135deg, var(--m-primary-dark), var(--m-primary));
  color: #fff;
  text-align: center;
  padding: 32px 20px;
}
.m-cta h2 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.m-cta p { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 16px; line-height: 1.6; }
.m-cta .m-btn-primary {
  background: #fff;
  color: var(--m-primary-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

/* ====== 内页标题 Hero（统一移动端各内页顶部标题条） ====== */
.m-hero.m-inner-hero {
  height: auto;
  min-height: 140px;
  padding: 66px 20px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.m-hero.m-inner-hero .m-hero-content { text-align: center; }
.m-hero.m-inner-hero .m-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.m-hero.m-inner-hero h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
