@font-face{font-family:'RJZ HuiSong';src:url('/mobile-v2/assets/fonts/rjz/JiYingHuiPianHuiSong-2.ttf') format('truetype');font-weight:300 700;font-style:normal;font-display:swap}
@font-face{font-family:'RJZ DingLie';src:url('/mobile-v2/assets/fonts/rjz/dingliesongtypeface20241217-2.ttf') format('truetype');font-weight:300 700;font-style:normal;font-display:swap}
@font-face{font-family:'RJZ Raleway';src:url('/mobile-v2/assets/fonts/rjz/Raleway-400.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'RJZ Raleway';src:url('/mobile-v2/assets/fonts/rjz/Raleway-600.ttf') format('truetype');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'RJZ Raleway';src:url('/mobile-v2/assets/fonts/rjz/Raleway-700.ttf') format('truetype');font-weight:700;font-style:normal;font-display:swap}

:root{
  --bg:#f8fbf8;
  --paper:#fff;
  --paper-soft:#f1f7f3;
  --mist:#e8f5ec;
  --mist-2:#d9eee0;
  --jade:#2f6a4e;
  --jade-2:#3a7558;
  --jade-dark:#183c2a;
  --leaf:#7bc093;
  --sage:#779486;
  --ink:#1f3c2e;
  --sub:#607c6e;
  --line:rgba(58,117,88,.14);
  --shadow:0 14px 38px rgba(39,92,65,.08);
  --shadow-soft:0 8px 22px rgba(39,92,65,.06);
  --r:8px;
  --font-title:'RJZ DingLie','RJZ HuiSong',serif;
  --font-body:'RJZ Raleway','RJZ HuiSong',Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 15% 0%, rgba(123,192,147,.16), transparent 26rem),
    radial-gradient(circle at 85% 12%, rgba(47,106,78,.08), transparent 24rem),
    var(--bg);
  color:var(--sub);
  font-family:var(--font-body);
  line-height:1.65;
  letter-spacing:0;
  padding-bottom:86px;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.025;
  z-index:90;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}

.m-app{
  width:100%;
  max-width:920px;
  margin:0 auto;
  min-height:100vh;
}
.m-topbar{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(248,251,248,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(58,117,88,.08);
}
.m-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px 10px;
}
.m-brand{display:flex;align-items:center;gap:9px;min-width:0}
.m-brand img{width:30px;height:30px;object-fit:contain}
.m-brand span{
  color:var(--jade);
  font-family:var(--font-title);
  font-size:19px;
  line-height:1;
}
.m-actions{display:flex;align-items:center;gap:8px}
.m-icon-btn{
  width:36px;
  height:36px;
  border:1px solid var(--line);
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.72);
  color:var(--jade);
  font-size:16px;
  flex:0 0 auto;
}
.m-channel-strip{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:0 18px 12px;
  scrollbar-width:none;
}
.m-channel-strip::-webkit-scrollbar{display:none}
.m-channel{
  flex:0 0 auto;
  padding:7px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--sub);
  background:rgba(255,255,255,.64);
  font-size:12px;
  white-space:nowrap;
}
.m-channel.is-active{
  background:var(--jade);
  color:#fff;
  border-color:var(--jade);
}

.m-page{padding:16px 14px 28px}
.hero{
  position:relative;
  overflow:hidden;
  border-radius:var(--r);
  min-height:560px;
  padding:26px 18px 20px;
  background:
    radial-gradient(circle at 58% 16%, rgba(123,192,147,.28), transparent 14rem),
    linear-gradient(180deg,#fcfefc 0%,#eef8f1 100%);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow-soft);
}
.hero.compact{min-height:360px}
.hero-grid{display:grid;gap:18px;position:relative;z-index:2}
.kicker{
  font-size:10px;
  letter-spacing:.26em;
  color:var(--leaf);
  text-transform:uppercase;
  font-weight:700;
}
.hero h1,.page-title{
  margin:12px 0 10px;
  color:var(--jade);
  font-family:var(--font-title);
  font-size:clamp(34px, 9vw, 58px);
  line-height:1.32;
  font-weight:400;
}
.hero p,.lead{
  margin:0;
  color:var(--sub);
  font-size:14px;
}
.hero-ctas,.inline-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--jade);
  font-size:13px;
  font-weight:700;
  box-shadow:0 6px 16px rgba(58,117,88,.06);
  white-space:nowrap;
}
.btn.primary{background:var(--jade);border-color:var(--jade);color:#fff}
.btn.dark{background:var(--jade-dark);border-color:var(--jade-dark);color:#fff}
.btn.flat{box-shadow:none;background:transparent}
.visual-stack{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:10px;
  align-items:stretch;
  margin-top:18px;
}
.visual-card{
  min-height:190px;
  border-radius:var(--r);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.82);
  background:var(--mist);
  box-shadow:var(--shadow-soft);
  position:relative;
}
.visual-card.small{min-height:92px}
.visual-card img{width:100%;height:100%;object-fit:cover}
.visual-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,0),rgba(24,60,42,.18));
}
.visual-column{display:grid;gap:10px}
.breath{
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle,rgba(123,192,147,.34),rgba(232,245,236,.16),transparent 70%);
  filter:blur(22px);
  animation:breath 8s ease-in-out infinite;
  pointer-events:none;
}
.breath.one{width:220px;height:220px;right:-40px;top:60px}
.breath.two{width:180px;height:180px;left:-50px;bottom:80px;animation-delay:2s}
@keyframes breath{0%,100%{transform:scale(.9);opacity:.55}50%{transform:scale(1.18);opacity:.85}}

.section{margin-top:18px}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin:0 2px 12px;
}
.section-head h2{
  margin:0;
  color:var(--jade);
  font-family:var(--font-title);
  font-size:23px;
  line-height:1.25;
  font-weight:400;
}
.section-head p{margin:4px 0 0;color:#91a69a;font-size:11px;letter-spacing:.12em}
.section-more{font-size:12px;color:#8ca296;white-space:nowrap}

.card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(58,117,88,.1);
  border-radius:var(--r);
  box-shadow:var(--shadow-soft);
}
.quick-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.quick-link{
  min-height:84px;
  padding:12px 8px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
}
.quick-link strong{
  width:42px;height:42px;border-radius:999px;background:var(--mist);display:flex;align-items:center;justify-content:center;color:var(--jade);font-size:17px;
}
.quick-link span{font-size:12px;color:var(--ink);font-weight:700}

.check-card{
  overflow:hidden;
  padding:18px;
  background:
    radial-gradient(circle at 92% 18%, rgba(123,192,147,.28), transparent 7rem),
    linear-gradient(135deg,var(--jade) 0%,var(--jade-dark) 100%);
  color:#fff;
}
.check-top{display:flex;justify-content:space-between;gap:12px;align-items:center}
.check-card h3{font-family:var(--font-title);font-size:24px;margin:0 0 4px;font-weight:400}
.check-card p{margin:0;color:rgba(255,255,255,.72);font-size:12px}
.week{display:grid;grid-template-columns:repeat(7,1fr);gap:8px;margin-top:16px}
.day{display:grid;justify-items:center;gap:5px;font-size:10px;color:rgba(255,255,255,.72)}
.day i{display:block;width:7px;height:7px;border-radius:999px;background:rgba(255,255,255,.3)}
.day.is-on i{background:#fff}

.h-scroll{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding:2px 2px 10px;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.h-scroll::-webkit-scrollbar{display:none}
.product-card{overflow:hidden}
.h-scroll .product-card{
  flex:0 0 74%;
  min-width:230px;
  scroll-snap-align:start;
}
.product-card .pic{height:180px;background:var(--mist);overflow:hidden}
.product-card .pic img{width:100%;height:100%;object-fit:cover}
.product-card .body{padding:13px}
.product-card h3{margin:0 0 5px;color:var(--ink);font-size:16px;line-height:1.35}
.product-card p{margin:0 0 10px;color:var(--sub);font-size:12px}
.price-row{display:flex;align-items:center;justify-content:space-between;gap:8px}
.price{font-weight:700;color:var(--jade);font-size:16px}
.mini-buy{width:34px;height:34px;border-radius:999px;background:var(--jade);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px}

.news-card,.reply-card,.info-card{
  display:grid;
  gap:12px;
  padding:12px;
}
.news-card{grid-template-columns:104px 1fr}
.news-card .pic{height:100%;min-height:104px;border-radius:var(--r);overflow:hidden;background:var(--mist)}
.news-card img{width:100%;height:100%;object-fit:cover}
.news-card h3,.reply-card h3,.info-card h3{margin:0;color:var(--ink);font-size:15px;line-height:1.42}
.news-card p,.reply-card p,.info-card p{margin:5px 0 0;font-size:12px;color:var(--sub)}
.news-list,.stack{display:grid;gap:12px}
.h-scroll .reply-card{min-width:250px;flex:0 0 76%;scroll-snap-align:start}
.reply-head{display:flex;align-items:center;gap:8px}
.avatar{
  width:36px;height:36px;border-radius:999px;background:var(--mist);overflow:hidden;display:flex;align-items:center;justify-content:center;color:var(--jade);font-weight:700;
}
.stars{color:#d8a947;font-size:12px;letter-spacing:.05em}

.grid-two,.grid-three{display:grid;gap:12px}
.page-grid{display:grid;gap:14px}
.image-band{
  border-radius:var(--r);
  min-height:230px;
  overflow:hidden;
  background:var(--mist);
  position:relative;
}
.image-band img{width:100%;height:100%;object-fit:cover}
.image-band::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,0),rgba(24,60,42,.25))}

.trace-box{padding:14px}
.trace-form{
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:5px 5px 5px 14px;
}
.trace-form input{
  min-width:0;
  flex:1;
  border:0;
  outline:0;
  background:transparent;
  color:var(--ink);
  font-size:14px;
}
.trace-form button{border:0}

.form{display:grid;gap:12px}
.field{display:grid;gap:6px}
.field label{color:var(--ink);font-size:13px;font-weight:700}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:var(--r);
  background:#fff;
  color:var(--ink);
  outline:0;
  padding:12px;
  font-size:14px;
}
.field textarea{min-height:96px;resize:vertical}
.status{display:none;padding:10px;border-radius:var(--r);font-size:13px}
.status.show{display:block}
.status.ok{background:#e8f5ec;color:var(--jade)}
.status.err{background:#fff0f0;color:#9c3b3b}

.tab-rail{display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;padding-bottom:8px}
.tab-rail::-webkit-scrollbar{display:none}
.chip{
  flex:0 0 auto;
  border:1px solid var(--line);
  background:#fff;
  color:var(--sub);
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
}
.chip.is-active{background:var(--jade);border-color:var(--jade);color:#fff}

.bottom-nav{
  position:fixed;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:100%;
  max-width:820px;
  z-index:80;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:2px;
  padding:7px 8px calc(7px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.94);
  border-top:1px solid rgba(58,117,88,.1);
  backdrop-filter:blur(18px);
}
.bottom-nav a{
  min-height:52px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  color:#789285;
  font-size:10px;
  font-weight:700;
}
.bottom-nav strong{font-size:18px;line-height:1;color:inherit}
.bottom-nav a.is-active{color:var(--jade)}

.empty{padding:18px;text-align:center;color:#8ca296;font-size:13px}
.muted{color:#8ca296}
.small{font-size:12px}
.hide{display:none!important}

@media (min-width:560px){
  body{padding-bottom:96px}
  .m-page{padding:20px 22px 34px}
  .hero{padding:34px 28px;min-height:530px}
  .quick-grid{grid-template-columns:repeat(5,minmax(0,1fr))}
  .grid-two{grid-template-columns:repeat(2,minmax(0,1fr))}
  .h-scroll .product-card{flex-basis:46%;min-width:260px}
  .h-scroll .reply-card{flex-basis:48%;min-width:280px}
}
@media (min-width:720px){
  .m-topbar-inner{padding:16px 28px 10px}
  .m-channel-strip{padding:0 28px 12px}
  .m-page{padding:24px 30px 40px}
  .hero{min-height:500px}
  .hero-grid{grid-template-columns:1fr 1.1fr;align-items:center}
  .visual-stack{margin-top:0}
  .quick-grid{grid-template-columns:repeat(8,minmax(0,1fr))}
  .grid-three{grid-template-columns:repeat(3,minmax(0,1fr))}
  .h-scroll .product-card{flex-basis:32%;min-width:240px}
  .news-card{grid-template-columns:150px 1fr}
  .news-card .pic{min-height:130px}
  .bottom-nav{border-radius:18px 18px 0 0}
}
@media (min-width:960px){
  .m-app{max-width:980px}
  .m-page{padding-left:34px;padding-right:34px}
}
