/* daming wap — mobile redesign aligned with PC brand */
:root {
  --m-green: #09664a;
  --m-green-deep: #074c23;
  --m-green-soft: #e8f5ef;
  --m-gold: #c78f01;
  --m-gold-bright: #ffe400;
  --m-ink: #1a2e28;
  --m-muted: #5a6e66;
  --m-line: #e2ebe6;
  --m-paper: #f4f7f5;
  --m-white: #fff;
  --m-radius: 14px;
  --m-top: 52px;
  --m-safe: env(safe-area-inset-bottom, 0px);
  --accent: var(--m-green);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--m-ink);
  background: var(--m-paper);
  padding-bottom: calc(58px + var(--m-safe));
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, textarea { font: inherit; border: 0; background: none; }
button { cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; }

.m-main { min-height: 50vh; }
.m-main--dock { padding-bottom: 72px; }
.m-pad { width: min(100% - 28px, 720px); margin: 0 auto; }

/* top bar */
.m-top {
  position: sticky; top: 0; z-index: 100;
  height: var(--m-top);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px 0 14px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--m-line);
}
.m-logo { display: flex; align-items: center; gap: 8px; min-width: 0; }
.m-logo img { height: 30px; width: auto; }
.m-logo strong {
  font-size: 15px; color: var(--m-green); font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.m-top-actions { display: flex; gap: 2px; }
.m-icon {
  width: 40px; display: grid; place-items: center;
  color: var(--m-green); border-radius: 10px;
}
.m-icon:active { background: var(--m-paper); }
.m-burger span {
  display: block; width: 18px; height: 2px; margin: 3px 0;
  background: var(--m-green); border-radius: 1px; transition: .2s;
}
.m-burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.m-burger.is-open span:nth-child(2) { opacity: 0; }
.m-burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.m-search {
  position: fixed; top: 0; left: 0; right: 0; z-index: 220;
  background: #fff; padding: 10px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-120%); transition: .25s;
}
.m-search.is-open { transform: translateY(0); }
.m-search form { display: flex; gap: 8px; align-items: center; }
.m-search input {
  flex: 1; height: 40px; border: 1px solid var(--m-line);
  border-radius: 10px; padding: 0 12px; outline: none;
}
.m-search input:focus { border-color: var(--m-green); }
.m-search button[type=submit] {
  height: 40px; padding: 0 14px; border-radius: 10px;
  background: var(--m-green); color: #fff; font-weight: 600;
}

.m-mask {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,30,24,.48);
  opacity: 0; visibility: hidden; transition: .25s;
}
.m-mask.is-open { opacity: 1; visibility: visible; }
.m-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 210;
  width: min(80vw, 300px); background: #fff;
  transform: translateX(100%); transition: transform .28s ease;
  display: flex; flex-direction: column;
  padding: 14px 0 calc(20px + var(--m-safe));
  overflow-y: auto;
}
.m-drawer.is-open { transform: translateX(0); }
.m-drawer-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 16px 14px; border-bottom: 1px solid var(--m-line);
}
.m-drawer-hd strong { color: var(--m-green); }
.m-drawer-nav a {
  display: block; padding: 14px 20px;
  border-bottom: 1px solid #f0f4f2; font-size: 15px;
}
.m-drawer-nav a.active,
.m-drawer-nav a.is-active,
.m-drawer-nav a.nav-active {
  color: var(--m-green); background: var(--m-green-soft); font-weight: 600;
}
.m-drawer-cta { margin: 20px 16px 0; text-align: center; }
.m-drawer-cta p { margin: 10px 0 0; font-size: 12px; color: var(--m-muted); }

/* buttons */
.m-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 44px; padding: 0 20px; border-radius: 22px;
  background: linear-gradient(135deg, var(--m-green), var(--m-green-deep));
  color: #fff !important; font-weight: 600; font-size: 15px;
}
.m-btn--block { width: 100%; }

/* hero */
.m-hero { background: #0a3d2e; }
.m-hero .swiper-slide img {
  width: 100%; height: 46vw; min-height: 180px; max-height: 260px; object-fit: cover;
}
.m-hero .swiper-pagination-bullet { background: #fff; opacity: .45; }
.m-hero .swiper-pagination-bullet-active { opacity: 1; background: var(--m-gold-bright); }

/* quick */
.m-quick {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 14px 14px 6px; background: #fff;
}
.m-quick a {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px 4px; border-radius: 12px; font-size: 12px; color: var(--m-ink);
}
.m-quick i {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--m-green-soft); color: var(--m-green); font-size: 18px;
}

/* sections */
.m-sec { padding: 46px 14px; }
.m-sec--tint { background: #fff; }
.m-sec--dark {
  background: linear-gradient(165deg, #0d3d2e 0%, #09664a 55%, #0a4a36 100%);
  color: #fff;
}
.m-sec-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.m-sec-hd--center { flex-direction: column; align-items: center; text-align: center; }
.m-sec-hd .en {
  margin: 0; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--m-gold); font-weight: 600;
}
.m-sec-hd h2 { margin: 4px 0 0; font-size: 20px; color: var(--m-green); font-weight: 700; }
.m-sec-hd .sub { margin: 6px 0 0; font-size: 13px; color: var(--m-muted); }
.m-sec-hd--light .en { color: var(--m-gold-bright); }
.m-sec-hd--light h2 { color: #fff; }
.m-sec-hd--light .sub { color: rgba(255,255,255,.75); }
.more { flex-shrink: 0; font-size: 13px; color: var(--m-green); font-weight: 600; white-space: nowrap; }
.more--light { color: rgba(255,255,255,.9); }

/* news */
.m-tabs {
  display: flex; gap: 8px; overflow-x: auto; margin-bottom: 14px; scrollbar-width: none;
}
.m-tabs::-webkit-scrollbar { display: none; }
.m-tabs button {
  flex: 0 0 auto; height: 34px; padding: 0 14px; border-radius: 17px;
  background: #fff; border: 1px solid var(--m-line); color: var(--m-muted); font-size: 13px;
}
.m-tabs button.is-on {
  background: var(--m-green); border-color: var(--m-green); color: #fff; font-weight: 600;
}
.m-news-panel { display: none; }
.m-news-panel.is-on { display: block; }
.m-news-feature {
  display: grid; grid-template-columns: 112px 1fr; gap: 12px;
  background: #fff; border-radius: var(--m-radius); overflow: hidden;
  padding: 10px; margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(9,102,74,.06);
}
.m-news-feature img { width: 112px; height: 84px; object-fit: cover; border-radius: 10px; }
.m-news-feature.no-img { grid-template-columns: 1fr; }
.m-news-feature.no-img img { display: none; }
.m-news-feature h3 {
  margin: 0 0 6px; font-size: 15px; font-weight: 700; line-height: 1.45;
  color: var(--m-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; word-break: break-word;
}
.m-news-feature p { margin: 0; font-size: 12px; color: var(--m-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.m-news-list {
  background: #fff; border-radius: var(--m-radius); padding: 2px 14px;
  box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-news-list li { border-bottom: 1px solid var(--m-line); }
.m-news-list li:last-child { border-bottom: 0; }
.m-news-list a {
  display: flex; justify-content: space-between; gap: 12px; padding: 13px 0; font-size: 14px;
}
.m-news-list span {
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.m-news-list time { flex-shrink: 0; font-size: 12px; color: var(--m-muted); }

/* story / value */
.m-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-story {
  position: relative; border-radius: var(--m-radius); overflow: hidden; min-height: 140px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.m-story img { width: 100%; height: 140px; object-fit: cover; }
.m-story div {
  position: absolute; inset: auto 0 0 0; padding: 28px 10px 10px;
  background: linear-gradient(transparent, rgba(7,40,28,.88));
  color: #fff;
}
.m-story h3 { margin: 0 0 2px; font-size: 14px; }
.m-story p { margin: 0; font-size: 11px; opacity: .85; }

.m-value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-value-grid a {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--m-radius); padding: 18px 10px;
  text-align: center; box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-value-grid img { width: 80px; height: 80px; object-fit: contain; }
.m-value-grid span { font-size: 13px; font-weight: 600; color: var(--m-green); }

/* product cats */
.m-cat-scroll {
  display: flex; gap: 8px; overflow-x: auto; margin-bottom: 14px;
  padding-bottom: 2px; scrollbar-width: none;
}
.m-cat-scroll::-webkit-scrollbar { display: none; }
.m-cat-scroll a {
  flex: 0 0 auto; height: 34px; padding: 0 14px;
  display: inline-flex; align-items: center; border-radius: 17px;
  background: rgba(255,255,255,.14); color: #fff; font-size: 13px;
  border: 1px solid rgba(255,255,255,.22);
}

.m-prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-prod-grid--page { margin-top: 4px; }
.m-prod {
  background: #fff; border-radius: var(--m-radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.m-sec--dark .m-prod { background: rgba(255,255,255,.96); }
.m-prod .pic { position: relative; aspect-ratio: 1; background: #eef4f1; overflow: hidden; }
.m-prod .pic img { width: 100%; height: 100%; object-fit: cover; }
.m-prod .view {
  position: absolute; inset: auto 0 0 0; padding: 8px;
  background: rgba(9,102,74,.82); color: #fff; font-size: 12px; text-align: center;
  transform: translateY(100%); transition: .2s;
}
.m-prod:active .view { transform: translateY(0); }
.m-prod h3 {
  margin: 0; padding: 10px; font-size: 13px; font-weight: 600; line-height: 1.4;
  color: var(--m-ink);
  min-height: calc(1.4em * 2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; word-break: break-word;
}
.m-sec--dark .m-prod h3 { color: var(--m-ink); }

/* cases */
.m-case-list { display: grid; gap: 10px; }
.m-case {
  display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: start;
  background: #fff; border-radius: var(--m-radius); padding: 10px;
  box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-case .pic {
  width: 96px; height: 72px; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, #e8f0ec, #f5f8f6);
}
.m-case .pic img { width: 100%; height: 100%; object-fit: cover; }
.m-case .pic.is-empty img { display: none; }
.m-case > div { min-width: 0; padding-top: 2px; }
.m-case h3 {
  margin: 0 0 6px; font-size: 14px; font-weight: 700; line-height: 1.45;
  color: var(--m-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; word-break: break-word;
}
.m-case p {
  margin: 0; font-size: 12px; color: var(--m-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; word-break: break-word;
}

/* honor */
.m-honor { padding: 0 4px 8px; }
.m-honor .swiper-slide {
  background: #fff; border-radius: 12px; overflow: hidden; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.m-honor img { width: 100%; height: 205px; object-fit: cover; }
.m-honor p { margin: 0; padding: 10px; font-size: 12px; color: var(--m-muted); }

/* form */
.m-form {
  display: grid; gap: 10px; background: #fff; padding: 16px;
  border-radius: var(--m-radius); box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-form input, .m-form textarea {
  width: 100%; border: 1px solid var(--m-line); border-radius: 10px;
  padding: 11px 12px; outline: none; background: #fafcfb;
}
.m-form input:focus, .m-form textarea:focus { border-color: var(--m-green); background: #fff; }
.m-form textarea { min-height: 96px; resize: vertical; }
.lead-hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; }
.lead-msg { margin: 0; text-align: center; font-size: 13px; color: var(--m-green); }
.lead-msg.is-error { color: #c0392b; }

/* inner banner */
.m-banner {
  position: relative; height: 160px; overflow: hidden;
  background: linear-gradient(145deg, var(--m-green-deep), #0a3d2e 60%, #0d4a38);
}
.m-banner--sm { height: 110px; }
.m-banner img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.m-banner .cap {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: #fff; padding: 16px 20px;
}
.m-banner .cap-sub { margin: 0 0 4px; font-size: 12px; opacity: .88; letter-spacing: .06em; }
.m-banner h1 { margin: 0; font-size: 22px; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.m-banner .cap-desc { margin: 8px 0 0; font-size: 13px; opacity: .92; max-width: 90%; }
.m-banner .cap-sub:empty, .m-banner .cap-desc:empty { display: none; }

.m-crumb {
  margin: 14px 12px; font-size: 12px; color: var(--m-muted);
}
.m-crumb a { color: var(--m-green); }
.m-crumb span { margin: 0 6px; opacity: .45; }

.m-searchbar {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--m-line); border-radius: 12px;
  padding: 6px 6px 6px 12px; margin-bottom: 12px;
}
.m-searchbar i { color: var(--m-muted); }
.m-searchbar input { flex: 1; min-width: 0; height: 34px; outline: none; }
.m-searchbar button {
  height: 34px; padding: 0 14px; border-radius: 10px;
  background: var(--m-green); color: #fff; font-size: 13px; font-weight: 600;
}

.m-chips {
  display: flex; gap: 8px; overflow-x: auto; margin-bottom: 14px; scrollbar-width: none;
}
.m-chips::-webkit-scrollbar { display: none; }
.m-chips:empty { display: none; }
.m-chips a {
  flex: 0 0 auto; height: 32px; padding: 0 14px;
  display: inline-flex; align-items: center; border-radius: 16px;
  background: #fff; border: 1px solid var(--m-line); font-size: 12px; color: var(--m-muted);
}
.m-chips a.active, .m-chips a.is-active, .m-chips a.nav-active {
  background: var(--m-green); border-color: var(--m-green); color: #fff;
}

/* article list cards */
.m-article-list { display: grid; gap: 12px; }
.m-article-card {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px; align-items: stretch;
  background: #fff; border-radius: var(--m-radius); padding: 12px;
  box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-article-card .thumb {
  position: relative;
  width: 110px; height: 110px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #e8f0ec, #f5f8f6); flex-shrink: 0;
}
.m-article-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.m-article-card .thumb.is-empty img { display: none; }
.m-article-card .date {
  position: absolute; left: 6px; bottom: 6px;
  min-width: 44px; padding: 6px 6px 5px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(255,255,255,.94); border-radius: 8px;
  color: var(--m-green); box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.m-article-card .date strong { font-size: 16px; line-height: 1; font-weight: 700; }
.m-article-card .date span { font-size: 9px; margin-top: 2px; opacity: .85; letter-spacing: -.02em; }
.m-article-card .body {
  min-width: 0; display: flex; flex-direction: column; min-height: 110px;
}
.m-article-card h2 {
  margin: 0 0 6px; font-size: 15px; font-weight: 700; line-height: 1.45;
  color: var(--m-ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; word-break: break-word;
}
.m-article-card .body > p {
  margin: 0; font-size: 12px; color: var(--m-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; word-break: break-word; flex: 1;
}
.m-article-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; font-size: 12px; color: var(--m-muted);
}
.m-article-card .meta em {
  font-style: normal; color: var(--m-green); font-weight: 600;
}

@media (max-width: 360px) {
  .m-article-card { grid-template-columns: 92px 1fr; gap: 10px; }
  .m-article-card .thumb { width: 92px; height: 92px; }
  .m-article-card .body { min-height: 92px; }
  .m-article-card h2 { font-size: 14px; }
}

.m-pager {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  padding: 18px 0 28px;
}
.m-pager a, .m-pager span {
  min-width: 36px; height: 36px; padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; background: #fff; border: 1px solid var(--m-line); font-size: 13px;
}
.m-pager .current { background: var(--m-green); border-color: var(--m-green); color: #fff; }
.m-pager .disabled { opacity: .4; pointer-events: none; }

/* detail */
.m-detail {
  background: #fff; border-radius: var(--m-radius); padding: 16px;
  margin: 20px auto 20px; width: min(100% - 28px, 720px);
  box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-detail-hd h1 { margin: 0 0 10px; font-size: 20px; line-height: 1.4; }
.m-detail-hd .meta {
  display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--m-muted);
  padding-bottom: 14px; border-bottom: 1px solid var(--m-line); margin-bottom: 16px;
}
.m-detail-hd .kicker { margin: 0 0 6px; font-size: 12px; color: var(--m-gold); font-weight: 600; }
.m-detail-hd .summary { margin: 0 0 12px; color: var(--m-muted); font-size: 14px; }
.m-detail-cover { margin-bottom: 16px; border-radius: 10px; overflow: hidden; }
.m-detail-cover img { width: 100%; }
.m-rich { font-size: 15px; line-height: 1.85; color: #2a3a34; word-break: break-word; }
.m-rich img { max-width: 100% !important; height: auto !important; border-radius: 8px; margin: 12px 0; }
.m-rich p { margin: 0 0 12px; }
.m-adjacent { display: grid; gap: 8px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--m-line); }
.m-adjacent > div { padding: 12px; background: var(--m-paper); border-radius: 10px; font-size: 13px; }
.m-adjacent span { display: block; color: var(--m-green); font-weight: 600; margin-bottom: 4px; }

/* product detail */
.m-pd-gallery {
  background: #fff; padding: 12px;
}
.m-pd-gallery img {
  width: 100%; aspect-ratio: 1; object-fit: contain; background: #f7faf8; border-radius: 12px;
}
.m-pd-info {
  background: #fff; padding: 16px; margin-bottom: 10px; border-top: 1px solid var(--m-line);
}
.m-pd-info .kicker { margin: 0 0 6px; font-size: 12px; color: var(--m-gold); font-weight: 600; }
.m-pd-info h1 { margin: 0 0 8px; font-size: 18px; }
.m-pd-info .summary { margin: 0 0 12px; color: var(--m-muted); font-size: 13px; }
.m-pd-meta { display: grid; gap: 8px; }
.m-pd-meta li {
  display: flex; gap: 10px; font-size: 13px; padding: 8px 0;
  border-bottom: 1px dashed var(--m-line);
}
.m-pd-meta li:last-child { border-bottom: 0; }
.m-pd-meta label { width: 40px; color: var(--m-muted); flex-shrink: 0; }
.m-pd-body { background: #fff; padding: 16px; border-radius: var(--m-radius); margin-bottom: 12px; }
.m-pd-body h2 {
  margin: 0 0 12px; font-size: 16px; color: var(--m-green);
  padding-bottom: 8px; border-bottom: 2px solid var(--m-line);
}
.m-buybar {
  position: fixed; left: 0; right: 0; bottom: calc(52px + var(--m-safe)); z-index: 85;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
  padding: 10px 14px; background: rgba(255,255,255,.97);
  border-top: 1px solid var(--m-line); backdrop-filter: blur(8px);
}
.m-buybar a {
  height: 44px; border-radius: 22px; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 600; font-size: 14px;
}
.m-buybar .ghost { background: var(--m-green-soft); color: var(--m-green); }
.m-buybar .solid { background: linear-gradient(135deg, var(--m-green), var(--m-green-deep)); color: #fff; }
.page-pd { padding-bottom: calc(120px + var(--m-safe)); }

/* contact / oem blocks */
.m-contact-list { display: grid; gap: 10px; margin-bottom: 16px; }
.m-contact-list > a, .m-contact-list > div {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border-radius: var(--m-radius); padding: 14px;
  box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-contact-list i {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--m-green-soft); color: var(--m-green); font-size: 18px;
}
.m-contact-list em { display: block; font-style: normal; font-size: 12px; color: var(--m-muted); }
.m-contact-list strong { font-size: 15px; word-break: break-all; }
.m-contact-list .wechat img { width: 120px; margin-top: 8px; border-radius: 8px; }
.m-intro {
  background: #fff; border-radius: var(--m-radius); padding: 16px; margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-intro h3 { margin: 0 0 8px; color: var(--m-green); }
.m-intro p { margin: 0; font-size: 14px; color: var(--m-muted); }

.m-feature { display: grid; gap: 10px; margin-bottom: 18px; }
.m-feature li {
  display: flex; gap: 12px; background: #fff; border-radius: var(--m-radius); padding: 14px;
  box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-feature i {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--m-green-soft); color: var(--m-green); font-size: 18px;
}
.m-feature h3 { margin: 0 0 4px; font-size: 15px; }
.m-feature p { margin: 0; font-size: 13px; color: var(--m-muted); }

.m-block-title { margin: 8px 0 12px; font-size: 17px; color: var(--m-green); }
.m-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.m-tags span {
  padding: 8px 12px; border-radius: 999px; background: #fff; font-size: 12px;
  border: 1px solid var(--m-line); color: var(--m-ink);
}
.m-steps { display: grid; gap: 10px; margin-bottom: 18px; }
.m-steps li {
  display: flex; gap: 12px; background: #fff; border-radius: var(--m-radius); padding: 14px;
  box-shadow: 0 2px 12px rgba(9,102,74,.05);
}
.m-steps b {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 12px;
  background: linear-gradient(135deg, var(--m-green), var(--m-green-deep)); color: #fff;
}
.m-steps h3 { margin: 0 0 4px; font-size: 15px; }
.m-steps p { margin: 0; font-size: 13px; color: var(--m-muted); }

.m-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px;
}
.m-stats > div {
  text-align: center; color: #fff; border-radius: var(--m-radius); padding: 14px 8px;
  background: linear-gradient(160deg, var(--m-green), var(--m-green-deep));
}
.m-stats strong { display: block; font-size: 22px; }
.m-stats strong span { font-size: 13px; font-weight: 500; }
.m-stats em { font-style: normal; font-size: 12px; opacity: .85; }

/* footer / tabbar */
.m-foot {
  background: #084237; color: rgba(255,255,255,.78);
  padding: 28px 16px 22px; text-align: center; font-size: 13px;
}
.m-foot-brand strong { display: block; color: #fff; font-size: 17px; margin-bottom: 6px; }
.m-foot-brand p { margin: 0 0 14px; opacity: .75; }
.m-foot-phone {
  display: inline-flex; flex-direction: column; align-items: center;
  margin-bottom: 14px; padding: 10px 24px; border-radius: 12px;
  background: rgba(255,255,255,.08);
}
.m-foot-phone span { font-size: 12px; color: rgba(255,228,0,.85); }
.m-foot-phone em { font-style: normal; font-size: 22px; color: #ffe400; font-weight: 700; }
.m-foot-meta p { margin: 6px 0; }
.m-foot-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px; margin: 14px 0;
}
.m-foot-links a { color: rgba(255,255,255,.88); }
.m-foot-copy { margin-top: 10px; font-size: 12px; opacity: .65; }
.m-foot-copy a { color: inherit; }

.m-tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: calc(52px + var(--m-safe)); padding-bottom: var(--m-safe);
  background: rgba(255,255,255,.97); border-top: 1px solid var(--m-line);
  backdrop-filter: blur(10px);
}
.m-tabbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  font-size: 11px; color: var(--m-muted);
}
.m-tabbar i { font-size: 18px; }
.m-tabbar a.is-active { color: var(--m-green); font-weight: 600; }

.m-backtop {
  position: fixed; right: 14px; bottom: calc(70px + var(--m-safe)); z-index: 80;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--m-green); color: #fff; display: none; place-items: center;
  box-shadow: 0 4px 14px rgba(9,102,74,.35);
}
.m-backtop.is-show { display: grid; }
.page-pd .m-backtop { bottom: calc(130px + var(--m-safe)); }

.is-empty { background: linear-gradient(135deg, #e8f0ec, #f5f8f6); min-height: 48px; }
.is-empty > img { display: none; }

@media (max-width: 360px) {
  .m-banner { height: 140px; }
  .m-banner h1 { font-size: 20px; }
  .m-quick { gap: 4px; }
}
