:root{
  --bg:#f6f6f7;
  --text:#111827;
  --muted:#6b7280;
  --card:#ffffff;
  --red:#d90000;
  --red2:#ff3b30;
  --gold:#ffcc00;
  --border:rgba(17,24,39,.08);
  --shadow:0 8px 24px rgba(17,24,39,.10);
  --radius:14px;
  --radius2:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.app{
  max-width:420px;
  margin:0 auto;
  min-height:100vh;
  background:#fff;
  position:relative;
}

.topbar{
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:sticky;
  top:0;
  z-index:10;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.topbar.topbar-red{background:linear-gradient(180deg,#b50000 0%, #d80000 100%);color:#fff;border-bottom:none}
.topbar.my-sub-topbar{background:#004564;color:#fff;border-bottom:none}
.topbar .back{
  position:absolute;
  left:10px;
  height:28px;
  min-width:28px;
  padding:0 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
}
.topbar.topbar-red .back{background:rgba(255,255,255,.16)}
.topbar.my-sub-topbar .back{background:rgba(255,255,255,.16);color:#fff}
.topbar .title{font-size:16px;font-weight:700;letter-spacing:.2px}
.topbar.my-sub-topbar .title{color:#fff}

.main{
  padding:12px 12px 84px;
  background:var(--bg);
  min-height:calc(100vh - 44px);
}
.main.no-pad{padding:0 0 84px}

.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:0 6px 18px rgba(17,24,39,.08);
  border:1px solid rgba(17,24,39,.06);
}
.card.pad{padding:14px}

.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:12px 0;
  color:#111;
  font-weight:800;
  font-size:16px;
}
.section-title .dot{width:18px;height:18px;border-radius:999px;background:var(--red)}

.btn{
  width:100%;
  height:44px;
  border:none;
  border-radius:12px;
  background:linear-gradient(180deg,#e60000 0%, #c50000 100%);
  color:#fff;
  font-size:15px;
  font-weight:800;
  letter-spacing:.2px;
}
.btn:active{transform:translateY(1px)}
.btn-outline{
  background:#fff;
  color:var(--red);
  border:1px solid rgba(217,0,0,.35);
}
.btn-pill{
  height:34px;
  border-radius:999px;
  padding:0 14px;
  width:auto;
}

.input{
  display:flex;
  align-items:center;
  gap:10px;
  background:#f3f4f6;
  border:1px solid rgba(17,24,39,.06);
  border-radius:12px;
  padding:12px 12px;
}
.input input{
  border:none;
  outline:none;
  background:transparent;
  font-size:14px;
  width:100%;
}
.input .icon{
  width:18px;
  height:18px;
  border-radius:4px;
  background:rgba(217,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--red);
  font-weight:900;
  font-size:12px;
}
.input .eye{width:30px;display:flex;justify-content:flex-end;color:#9ca3af;user-select:none}

.tabs{
  display:flex;
  gap:8px;
  padding:10px;
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:44px;
  z-index:19;
}
.tab{
  flex:1;
  text-align:center;
  padding:10px 0;
  color:#6b7280;
  font-size:13px;
  font-weight:700;
  background:#f3f4f6;
}
 .tab.active{
  background:linear-gradient(180deg,#ff3b30 0%, #d90000 100%);
  color:#fff;
 }

 .fd-page{background:#d90000}
 .fd-main{position:relative;background:#d90000;min-height:calc(100vh - 44px)}
 .fd-bg{position:absolute;left:0;top:0;width:100%;height:auto;display:block}
 .fd-content{position:relative;padding:14px 12px 84px}

 .fd-tabs{
  margin:10px 12px 0;
  background:#fff;
  border-radius:14px;
  padding:8px;
  display:flex;
  gap:6px;
 }
 .fd-tab{
  flex:1;
  text-align:center;
  padding:10px 0;
  border-radius:12px;
  color:#111827;
  font-size:13px;
  font-weight:800;
  position:relative;
 }
 .fd-tab.active{color:#d90000}
 .fd-tab.active::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:4px;
  transform:translateX(-50%);
  width:18px;
  height:3px;
  border-radius:999px;
  background:#d90000;
 }

 .fd-card{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(17,24,39,.06);
  box-shadow:0 8px 24px rgba(0,0,0,.10);
 }
 .fd-empty{
  min-height:170px;
  padding:40px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
 }
 .fd-empty .ico{width:64px;height:64px;display:flex;align-items:center;justify-content:center}
 .fd-empty .txt{margin-top:10px;font-weight:900;font-size:12px;color:#bdbdbd}

 .fd-item{padding:14px;display:flex;align-items:center;justify-content:space-between}
 .fd-left{display:flex;align-items:center;gap:12px;min-width:0}
 .fd-ico{width:42px;height:42px;border-radius:999px;background:rgba(217,0,0,.08);display:flex;align-items:center;justify-content:center;flex:0 0 auto}
 .fd-ico .sq{width:14px;height:14px;border-radius:4px;background:#d90000;opacity:.65}
 .fd-meta{min-width:0}
 .fd-meta .t{font-weight:900;color:#111827;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
 .fd-meta .d{margin-top:6px;color:#9ca3af;font-size:12px}
 .fd-amt{color:#16a34a;font-weight:900;font-size:14px;white-space:nowrap}

 .sn-page{background:#f2f5ff}
.sn-app{background:#f2f5ff}
.sn-top{width:100%}
.sn-top-img{width:100%;height:auto;display:block}

.sn-main{padding:0 12px 90px}
.sn-hero{
    margin-top:235px;
    position:relative;
    border-radius:14px;
    overflow:
    hidden;
    height:150px
    background-image:url("/static/new/zhuanxiang1.png");
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
}
.sn-hero-img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.sn-hero-sub{
  position:absolute;
  left:12px;
  bottom:10px;
  color:#334155;
  font-size:12px;
  font-weight:900;
  background:rgba(255,255,255,.72);
  padding:6px 10px;
  border-radius:999px;
}

.sn-card{margin-top:12px;background:#fff;border-radius:14px;box-shadow:0 10px 26px rgba(18,26,43,.10);overflow:hidden}
.sn-card-bg{width:100%;height:auto;display:block;position:absolute;left:0;top:0;z-index:0}
.sn-card2{position:relative;padding-top:92px}
.sn-card2 .sn-card-in{position:relative;left:auto;right:auto;top:auto;bottom:auto;overflow:visible;padding:0 14px 110px;z-index:1}

.sn-greet{font-weight:900;color:#111827}
.sn-desc{margin-top:8px;color:#475569;font-size:12px;line-height:1.65}

.sn-form{margin-top:10px;display:flex;flex-direction:column;gap:8px}
.sn-field{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;background:#f3f4f6;border-radius:10px;padding:10px 12px;font-size:12px}
.sn-field .k{color:#6b7280;font-weight:800;white-space:nowrap}
.sn-field .v{color:#111827;font-weight:900;text-align:right;white-space:normal;word-break:break-all}
.sn-photo{width:74px;height:54px;border-radius:10px;background:#e5e7eb;flex:0 0 auto}

.sn-result{margin-top:10px;padding:10px 12px;border-radius:12px;background:#fff0f0;border:1px solid rgba(239,68,68,.18);color:#b91c1c;font-weight:900;font-size:12px;line-height:1.55;text-align:center}

.sn-kv{margin-top:10px;display:flex;flex-direction:column;gap:8px}
.sn-kv .row{display:flex;align-items:center;justify-content:space-between;font-size:12px}
.sn-kv .k{color:#6b7280;font-weight:800}
.sn-kv .v{color:#111827;font-weight:900}
.sn-kv .v.ok{color:#16a34a}

.sn-stamp{position:absolute;right:12px;bottom:12px;width:86px;height:86px;opacity:.95}

.sn-notice{margin-top:12px}
.sn-notice-bg{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 22px rgba(17,24,39,.10)}

.sn-agree-main{padding:12px 12px 170px}
.sn-agree-card{background:#fff;border-radius:14px;box-shadow:0 10px 26px rgba(18,26,43,.10);padding:16px 16px 18px}
.sn-agree-title{font-weight:900;color:#111827;font-size:14px;text-align:center}
.sn-agree-sub{margin-top:10px;color:#6b7280;font-size:12px;line-height:1.6}
.sn-agree-list{margin-top:10px;display:flex;flex-direction:column;gap:8px}
.sn-agree-item{color:#111827;font-size:12px;line-height:1.55}
.sn-agree-foot{margin-top:12px;color:#6b7280;font-size:12px;line-height:1.6}
.sn-agree-sign{margin-top:14px;position:relative;min-height:92px;padding-right:94px}
.sn-agree-sign-row{color:#111827;font-size:12px;line-height:1.9}
.sn-agree-stamp{position:absolute;right:0;bottom:-4px;width:92px;height:92px;opacity:.95}

.sn-agree-cta{position:fixed;left:50%;transform:translateX(-50%);bottom:76px;width:100%;max-width:420px;padding:0 12px;z-index:55}
.sn-agree-btn{width:100%;height:48px;border:none;border-radius:10px;background:linear-gradient(180deg,#2aa3e6 0%, #0b78b0 100%);color:#fff;font-weight:900;font-size:14px;box-shadow:0 10px 18px rgba(11,120,176,.22)}
.sn-agree-btn:active{transform:translateY(1px)}

.cn-comp-page{background:#f2f5ff}
.cn-comp-app{background:#f2f5ff;min-height:100vh;padding-bottom:92px}
.cn-comp-top{background:linear-gradient(180deg,#0b78b0 0%, #2aa3e6 100%);padding:10px 12px 12px}
.cn-comp-top-in{display:flex;align-items:center;gap:10px}
.cn-comp-emblem{width:28px;height:28px;border-radius:999px;background:rgba(255,255,255,.22);border:1px solid rgba(255,255,255,.35);position:relative;flex:0 0 auto}
.cn-comp-emblem:before{content:"";position:absolute;inset:7px;border-radius:999px;border:2px solid rgba(255,255,255,.65)}
.cn-comp-brand{min-width:0}
.cn-comp-t1{color:#fff;font-weight:900;font-size:14px;line-height:1.1}
.cn-comp-t2{margin-top:2px;color:rgba(255,255,255,.82);font-weight:800;font-size:10px;line-height:1.1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.cn-comp-main{
    
    padding:12px;
    background-image:url("/static/new/333/1 (13)/1 (3).png");
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
    
}





.cn-comp-card{background:#fff;border-radius:14px;box-shadow:0 10px 26px rgba(18,26,43,.10);padding:12px}
.cn-comp-card-title{text-align:center;font-weight:900;color:#111827;font-size:14px;padding:6px 0 10px}

.cn-comp-form{display:flex;flex-direction:column;gap:0}
.cn-comp-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 10px;border-radius:12px;background:#f8fafc}
.cn-comp-row + .cn-comp-row{margin-top:8px}
.cn-comp-l{color:#111827;font-weight:900;font-size:12px;white-space:nowrap}
.cn-comp-r{flex:1;min-width:0}
.cn-comp-r input{width:100%;border:none;outline:none;background:transparent;text-align:right;font-size:12px;color:#111827;font-weight:800}
.cn-comp-r input::placeholder{color:#9ca3af;font-weight:700}

.cn-comp-upload{align-items:flex-start}
.cn-comp-up{width:98px;height:74px;border-radius:10px;background:#e5e7eb;position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;flex:0 0 auto}
.cn-comp-file{position:absolute;inset:0;opacity:0;cursor:pointer}
.cn-comp-plus{font-size:26px;color:#fff;font-weight:900;opacity:.85;line-height:1}
.cn-comp-preview{display:none;width:100%;height:100%;object-fit:cover}

.cn-comp-amt{background:#fff;border:1px solid rgba(15,23,42,.06)}
.cn-comp-amtv{color:#ef4444;font-weight:900;font-size:12px;white-space:nowrap}

.cn-comp-btn{margin-top:10px;width:100%;height:44px;border:none;border-radius:10px;background:linear-gradient(180deg,#2aa3e6 0%, #0b78b0 100%);color:#fff;font-weight:900;font-size:13px;box-shadow:0 10px 18px rgba(11,120,176,.22)}
.cn-comp-btn:active{transform:translateY(1px)}

.cn-comp-notice{margin-top:12px;background:#fff;border-radius:14px;box-shadow:0 10px 26px rgba(18,26,43,.10);padding:12px 12px 22px;position:relative}
.cn-comp-nh{font-weight:900;color:#111827;font-size:13px}
.cn-comp-nh.mt{margin-top:10px}
.cn-comp-nt{margin-top:6px;color:#4b5563;font-size:12px;line-height:1.65}
.cn-comp-stamp{position:absolute;right:10px;bottom:10px;width:90px;height:90px;opacity:.92;transform:rotate(-10deg)}

 .ca-page{background:#d9d9d9}
 .ca-wrap{position:relative;padding:0 0 84px;background:#d9d9d9}
 .ca-wrap img{width:100%;display:block}
 .ca-paper{
  position:absolute;
  left:14px;
  right:14px;
  top:238px;
  bottom:84px;
  border:3px solid #caa46a;
  background:rgba(255,255,255,.96);
  padding:14px;
  overflow:auto;
 }

 .tm-page{background:#f3f4f6}
 .tm-main{background:#f3f4f6;padding:12px 12px 84px}
 .tm-card{background:#fff;border-radius:14px;border:1px solid rgba(17,24,39,.06);box-shadow:0 6px 18px rgba(17,24,39,.08)}
 .tm-card + .tm-card{margin-top:12px}
 .tm-total{padding:14px;text-align:center}
 .tm-total .k{color:#9ca3af;font-weight:900;font-size:12px}
 .tm-total .v{margin-top:8px;font-size:22px;font-weight:900;color:#111827}

 .tm-invite{padding:14px;display:flex;gap:12px;align-items:center}
 .tm-qrbox{width:120px;flex:0 0 auto}
 .tm-qr{width:120px;height:120px;border-radius:10px;background:#fff;border:1px solid rgba(17,24,39,.10);overflow:hidden}
 .tm-qr img{width:100%;height:100%;object-fit:cover}
 .tm-qr-cap{margin-top:8px;text-align:center;color:#6b7280;font-size:12px;font-weight:800}
 .tm-right{flex:1;min-width:0}
 .tm-code{font-weight:900;color:#111827;font-size:13px}
 .tm-btns{margin-top:10px;display:flex;flex-direction:column;gap:10px}
 .tm-btn{height:36px;border:none;border-radius:999px;font-weight:900;font-size:12px}
 .tm-btn.orange{background:#fbbf24;color:#fff}
 .tm-btn.blue{background:#60a5fa;color:#fff}

 .tm-table{padding:12px}
 .tm-tabs{display:flex;justify-content:space-between;border-bottom:1px solid rgba(17,24,39,.06);padding-bottom:10px}
 .tm-t{flex:1;text-align:center;font-weight:900;color:#6b7280;font-size:12px;position:relative;padding-bottom:8px}
 .tm-t.active{color:#111827}
 .tm-t.active::after{content:'';position:absolute;left:50%;bottom:0;transform:translateX(-50%);width:28px;height:3px;border-radius:999px;background:#d90000}
 .tm-head{margin-top:12px;display:grid;grid-template-columns:1fr 1fr 1fr;color:#d90000;font-weight:900;font-size:12px}
 .tm-row{margin-top:8px;display:grid;grid-template-columns:1fr 1fr 1fr;font-size:12px;color:#111827}
 .tm-row .r{text-align:right}

 .my-page{background:#f3f4f6}
 .my-app{background:#f3f4f6}
 .my-top-bg{width:100%;height:auto;display:block}
 .my-main{padding:0 12px 90px}

 .my-profile{
  margin-top:-8px;
  background:#fff;
  border-radius:14px;
  padding:12px;
  display:flex;
  gap:10px;
  align-items:center;
  box-shadow:0 10px 22px rgba(17,24,39,.10);
  border:1px solid rgba(17,24,39,.06);
 }
 .my-avatar{width:56px;height:56px;border-radius:999px;overflow:hidden;flex:0 0 auto;background:#fff}
 .my-avatar img{width:100%;height:100%;object-fit:cover;display:block}
 .my-pinfo{flex:1;min-width:0}
 .my-name{font-weight:900;color:#111827;font-size:16px;line-height:1.1}
 .my-sub{margin-top:6px;color:#6b7280;font-size:12px;font-weight:800;line-height:1.1}
 .my-sign-btn{display:block;flex:0 0 auto}
 .my-sign{height:34px;width:auto;display:block;flex:0 0 auto;object-fit:contain}

 .my-account{
  margin-top:10px;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 22px rgba(17,24,39,.10);
  border:1px solid rgba(17,24,39,.06);
  background-image:url("/static/new/333/1 (15)/1 (18).png");
  background-repeat:no-repeat;
  background-position:top center;
  background-size:100% 86px;
 }
 .my-ac-top{padding:14px 12px 18px;display:flex;align-items:center;justify-content:space-between;gap:10px}
 .my-ac-left{color:#fff}
 .my-ac-lab{font-size:12px;font-weight:900;opacity:.95}
 .my-ac-amt{margin-top:6px;font-size:20px;font-weight:900;letter-spacing:.2px}
 .my-ac-actions{display:flex;gap:10px;align-items:center}
 .my-ac-actions a{display:block}
 .my-ac-actions img{height:30px;width:auto;display:block}
 .my-ac-mid{height:4px}
 .my-ac-grid{
  display:grid;
  grid-template-columns:1fr 1px 1fr;
  gap:0;
  padding:10px 0 12px;
  background:#fff;
 }
 .my-ac-div{background:rgba(17,24,39,.12)}
 .my-ac-col{padding:0 10px;text-align:center}
 .my-ac-num{font-size:18px;font-weight:900;color:#111827;line-height:1.1}
 .my-ac-cap{margin-top:6px;font-size:12px;font-weight:800;color:#6b7280}
 .my-ac-actions2{margin-top:8px;display:flex;gap:10px;justify-content:center}
 .my-ac-actions2 a{display:block}
 .my-ac-actions2 img{height:28px;width:auto;display:block}

 .my-dual{margin-top:10px;display:grid;grid-template-columns:1fr 1fr;gap:10px}
 .my-dual-item{position:relative;border-radius:14px;overflow:hidden;box-shadow:0 10px 22px rgba(17,24,39,.10)}
 .my-dual-bg{width:100%;height:auto;display:block;position:relative;z-index:1}
 .my-dual-in{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;padding-top:18px;color:#fff;z-index:2}
 .my-dual-big{font-weight:900;font-size:22px;line-height:1}
 .my-dual-pill{margin-top:10px;display:inline-flex;align-items:center;justify-content:center;width:92px;height:26px;border-radius:999px;background:#fff;color:#1f2937;font-weight:900;font-size:12px}
 .my-dual-btns{margin-top:12px;display:flex;gap:10px}
 .my-dual-btns a{display:block}
 .my-dual-btns img{height:28px;width:auto;display:block}

 .my-banner{margin-top:10px;display:block;border-radius:14px;overflow:hidden;box-shadow:0 10px 22px rgba(17,24,39,.10)}
 .my-banner img{width:100%;height:auto;display:block}

 .my-tools{margin-top:12px;background:#fff;border-radius:14px;padding:12px;box-shadow:0 10px 22px rgba(17,24,39,.08);border:1px solid rgba(17,24,39,.06)}
 .my-tools-title{font-weight:900;color:#111827;font-size:14px}
 .my-tools-grid{margin-top:10px;display:grid;grid-template-columns:repeat(4,1fr);gap:14px 10px}
 .my-tool{display:flex;flex-direction:column;align-items:center;gap:8px;color:#111827;font-weight:800;font-size:12px}
 .my-tool .my-ico{width:44px;height:44px;border-radius:999px;display:flex;align-items:center;justify-content:center}
 .my-tool .my-ico img{width:22px;height:22px;display:block;filter:brightness(0) invert(1);mix-blend-mode:normal}
 .my-tools-grid .my-tool:nth-child(1) .my-ico{background:#ff8a3d}
 .my-tools-grid .my-tool:nth-child(2) .my-ico{background:#4f8ef7}
 .my-tools-grid .my-tool:nth-child(3) .my-ico{background:#34c759}
 .my-tools-grid .my-tool:nth-child(4) .my-ico{background:#3b82f6}
 .my-tools-grid .my-tool:nth-child(5) .my-ico{background:#ff5a5f}
 .my-tools-grid .my-tool:nth-child(6) .my-ico{background:#22c55e}
 .my-tools-grid .my-tool:nth-child(7) .my-ico{background:#ff8a3d}
 .my-tools-grid .my-tool:nth-child(8) .my-ico{background:#4f8ef7}
 .my-tool-empty{visibility:hidden}

 .my-sub-page{background:#f3f4f6}
 .my-sub-app{background:#f3f4f6}
 .my-sub-main{padding:12px 12px 24px}
 .my-sub-card{background:#fff;border-radius:14px;border:1px solid rgba(17,24,39,.06);box-shadow:0 10px 22px rgba(17,24,39,.08);padding:14px}
 .my-sub-card + .my-sub-card{margin-top:12px}
 .my-sub-h{font-weight:900;color:#111827;font-size:15px}
 .my-sub-note{margin-top:6px;color:#6b7280;font-size:12px;font-weight:800}
 .my-sub-p{margin-top:10px;color:#6b7280;font-size:12px;line-height:1.7}

 .my-sub-field{margin-top:12px;display:flex;flex-direction:column;gap:8px}
 .my-sub-field .k{font-size:12px;font-weight:900;color:#111827}
 .my-sub-field input{height:44px;border-radius:12px;border:1px solid rgba(17,24,39,.10);padding:0 12px;font-size:13px;outline:none}
 .my-sub-field input::placeholder{color:#9ca3af}

 .my-sub-actions{margin-top:12px;display:flex;flex-direction:column;gap:10px}
 .my-sub-btn{height:44px;border-radius:12px;border:1px solid rgba(17,24,39,.10);background:#fff;color:#111827;font-weight:900;font-size:14px;display:flex;align-items:center;justify-content:center;text-decoration:none}
 .my-sub-btn:active{transform:translateY(1px)}
 .my-sub-btn-primary{background:#ba0000;border-color:#ba0000;color:#fff}
 .my-sub-btn2{background:#f3f4f6}

 .my-gift-page{background:linear-gradient(180deg,#27b6ff 0%, #0a86c8 40%, #086aa6 100%)}
 .my-gift-page .my-sub-app{background:transparent}
 .my-gift-page .topbar.my-sub-topbar.my-gift-topbar{background:linear-gradient(180deg,#27b6ff 0%, #0a86c8 100%);border-bottom:none}
 .my-gift-page .my-sub-topbar.my-gift-topbar .title{color:#fff}
 .my-gift-page .my-sub-topbar.my-gift-topbar .back{background:rgba(255,255,255,.22);color:#fff}

 .my-gift-main{padding:10px 12px 24px}
 .my-gift-page .my-gift-hero{margin-top:0}
 .my-gift-hero{position:relative;border-radius:18px;overflow:hidden;box-shadow:0 14px 26px rgba(0,0,0,.18)}
 .my-gift-hero-img{width:100%;height:auto;display:block}
 .my-gift-hero-t{position:absolute;left:18px;top:58px;font-weight:900;font-size:42px;letter-spacing:1px;color:#ff8a00;text-shadow:0 2px 0 rgba(255,255,255,.95), 0 10px 18px rgba(0,0,0,.18)}
 .my-gift-hero-sub{position:absolute;left:18px;top:114px;font-weight:900;font-size:14px;color:#111827;text-shadow:0 2px 0 rgba(255,255,255,.85)}

 .my-gift-list{margin-top:12px;display:flex;flex-direction:column;gap:12px}
 .my-gift-item{background:#fff;border-radius:16px;border:2px solid rgba(10,134,200,.85);box-shadow:0 10px 18px rgba(0,0,0,.12);padding:12px;display:flex;align-items:center;gap:12px}
 .my-gift-thumb{width:116px;height:78px;border-radius:12px;overflow:hidden;background:#f3f4f6;flex:0 0 auto}
 .my-gift-thumb img{width:100%;height:100%;object-fit:cover;display:block}
 .my-gift-info{flex:1;min-width:0}
 .my-gift-name{font-size:14px;font-weight:900;color:#111827;line-height:1.25;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
 .my-gift-price{margin-top:8px;font-size:12px;font-weight:900;color:#6b7280}
 .my-gift-coupon{margin-top:6px;font-size:16px;font-weight:900;color:#ff4d00;letter-spacing:.4px}
 .my-gift-btn{height:38px;padding:0 18px;border:none;border-radius:999px;background:linear-gradient(180deg,#ff9a3d 0%, #ff6a1b 100%);color:#fff;font-weight:900;font-size:13px;box-shadow:0 10px 18px rgba(255,106,27,.25);flex:0 0 auto}
 .my-gift-btn:active{transform:translateY(1px)}
 .my-gift-actions{margin-top:14px}

 .my-checkin-page{background:linear-gradient(180deg,#c9f2ff 0%, #eefaff 40%, #f3f4f6 100%)}
 .my-checkin-page .my-sub-app{background:transparent}
 .my-checkin-page .my-sub-topbar.my-checkin-topbar{background:linear-gradient(180deg,#bfefff 0%, #8fe6ff 100%);color:#111827;border-bottom:none}
 .my-checkin-page .my-sub-topbar.my-checkin-topbar .title{color:#111827;font-weight:900}
 .my-checkin-page .my-sub-topbar.my-checkin-topbar .back{background:rgba(255,255,255,.50);color:#111827}

 .my-checkin-main{padding:10px 12px 24px}
 .my-checkin-hero{position:relative;border-radius:18px;overflow:hidden;box-shadow:0 10px 22px rgba(17,24,39,.10)}
 .my-checkin-hero-img{width:100%;height:auto;display:block}
 .my-checkin-hero-t1{position:absolute;left:18px;top:22px;font-weight:900;font-size:38px;letter-spacing:1px;color:#ff7a1a;text-shadow:0 2px 0 rgba(255,255,255,.95)}
 .my-checkin-hero-t2{position:absolute;left:18px;top:70px;font-weight:900;font-size:38px;letter-spacing:1px;color:#ff7a1a;text-shadow:0 2px 0 rgba(255,255,255,.95)}

 .my-checkin-card{margin-top:12px;background:#fff;border-radius:18px;border:1px solid rgba(17,24,39,.06);box-shadow:0 10px 22px rgba(17,24,39,.08);overflow:hidden}
 .my-checkin-month{height:44px;background:linear-gradient(180deg,#ffe9b5 0%, #ffe3a1 100%);display:flex;align-items:center;justify-content:center;gap:14px;position:relative}
 .my-checkin-month-t{font-weight:900;color:#8b5a00;border:none;background:transparent;padding:0;margin:0;font:inherit;cursor:pointer}
 .my-checkin-month-picker{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);opacity:0;width:1px;height:1px;pointer-events:none}
 .my-checkin-arrow{width:38px;height:30px;border:none;border-radius:999px;background:rgba(255,255,255,.55);color:#8b5a00;font-weight:900}
 .my-checkin-title{padding:12px 14px 6px;font-weight:900;color:#111827}
 .my-checkin-week{padding:0 14px;display:grid;grid-template-columns:repeat(7,1fr);gap:8px;color:#ba0000;font-weight:900;font-size:12px;text-align:center}
 .my-checkin-grid{padding:10px 14px 14px;display:grid;grid-template-columns:repeat(7,1fr);gap:8px}
 .my-checkin-day{height:46px;border-radius:12px;background:#f3f4f6;display:flex;align-items:center;justify-content:center;font-weight:900;color:#111827;position:relative}
 .my-checkin-day.selected{background:#fff;border:2px solid rgba(26,140,200,.55);color:#ba0000}
 .my-checkin-day.off{opacity:.45}
 .my-checkin-day.signed{background:#fff7e6;border:1px solid rgba(255,122,26,.25);color:#ff7a1a}
 .my-checkin-day.signed:after{content:'';position:absolute;left:50%;bottom:6px;transform:translateX(-50%);width:18px;height:18px;border-radius:999px;background:radial-gradient(circle at 30% 30%, #fff 0%, #ffd56a 35%, #ffb200 100%);box-shadow:0 3px 8px rgba(255,122,26,.25)}
 .my-checkin-day.today{background:#fff;border:2px solid rgba(255,122,26,.55);color:#ff7a1a}

 .my-checkin-btn{margin:0 14px 14px;width:calc(100% - 28px);height:46px;border:none;border-radius:999px;background:linear-gradient(180deg,#ff9a3d 0%, #ff6a1b 100%);color:#fff;font-weight:900;font-size:15px;box-shadow:0 10px 18px rgba(255,106,27,.25)}
 .my-checkin-btn:active{transform:translateY(1px)}

 .my-checkin-tip{margin-top:12px;background:#fff;border-radius:18px;border:1px solid rgba(17,24,39,.06);box-shadow:0 10px 22px rgba(17,24,39,.08);padding:14px}
 .my-checkin-tip-row{display:flex;align-items:center;gap:10px}
 .my-checkin-dot{width:10px;height:10px;border-radius:999px;background:linear-gradient(180deg,#ff9a3d 0%, #ff6a1b 100%)}
 .my-checkin-tip-t{font-weight:900;color:#111827}
 .my-checkin-tip-sub{margin-top:8px;color:#6b7280;font-size:12px;font-weight:800;line-height:1.6}

 .my-sub-table{margin-top:12px;border-radius:12px;overflow:hidden;border:1px solid rgba(17,24,39,.08)}
 .my-sub-th,.my-sub-tr{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;padding:10px 12px;font-size:12px}
 .my-sub-th{background:#f9fafb;color:#ef4444;font-weight:900}
 .my-sub-tr{background:#fff;color:#111827;font-weight:800;border-top:1px solid rgba(17,24,39,.06)}
 .my-sub-th .r,.my-sub-tr .r{text-align:right}

 .my-fund-tabs{display:flex;gap:8px;margin-bottom:12px}
 .my-fund-tab{flex:1;height:34px;border-radius:999px;background:#fff;border:1px solid rgba(17,24,39,.10);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:900;color:#111827;text-decoration:none}
 .my-fund-tab.on{background:#004564;border-color:#004564;color:#fff}
 .my-fund-list{margin-top:12px;border-radius:12px;overflow:hidden;border:1px solid rgba(17,24,39,.08)}
 .my-fund-item{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 12px;background:#fff}
 .my-fund-item + .my-fund-item{border-top:1px solid rgba(17,24,39,.06)}
 .my-fund-item .l{min-width:0}
 .my-fund-item .t{font-weight:900;color:#111827;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
 .my-fund-item .d{margin-top:6px;color:#9ca3af;font-size:12px;font-weight:800}
 .my-fund-item .r{font-weight:900;font-size:14px;white-space:nowrap}
 .my-fund-item .r.plus{color:#16a34a}
 .my-fund-item .r.minus{color:#ef4444}

 .grp-page{background:#fff}
 .grp-main{padding:10px 12px 84px;background:#fff}
 .grp-title{margin-top:10px;text-align:center;font-weight:900;font-size:20px;color:#111827}
 .grp-logo{margin:12px auto 0;width:74px;height:74px;border-radius:999px;overflow:hidden;box-shadow:0 6px 18px rgba(17,24,39,.10)}
 .grp-logo img{width:100%;height:100%;object-fit:cover}
 .grp-name{margin-top:10px;text-align:center;color:#111827;font-weight:900}
 .grp-qr{margin:16px auto 0;width:180px;height:180px;border-radius:10px;background:#fff;border:1px solid rgba(17,24,39,.10);overflow:hidden}
 .grp-qr img{width:100%;height:100%;object-fit:cover}
 .grp-note{margin-top:12px;text-align:center;color:#9ca3af;font-size:12px;line-height:1.5}
 .grp-enter{margin-top:60px;text-align:center;color:#d90000;font-weight:900;font-size:12px}

 .rm-page{background:linear-gradient(180deg,#c9f2ff 0%, #eefaff 40%, #f3f4f6 100%)}
 .rm-main{padding:18px 14px 84px}
 .rm-card{background:#fff;border-radius:18px;border:1px solid rgba(17,24,39,.06);box-shadow:0 10px 28px rgba(17,24,39,.12);padding:14px}
 .rm-head{margin:8px 10px 14px;background:linear-gradient(180deg,#dbeafe 0%, #93c5fd 100%);border-radius:16px;padding:16px;text-align:center;font-weight:900;color:#0b78b0;box-shadow:inset 0 2px 8px rgba(11,120,176,.18)}
 .rm-field{margin-top:10px;background:#fff;border-radius:12px;border:1px solid rgba(11,120,176,.28);padding:10px 12px;display:flex;align-items:center;gap:8px}
 .rm-field .k{color:#111827;font-weight:900;font-size:12px;white-space:nowrap}
 .rm-field .star{color:#0b78b0;font-weight:900}
 .rm-field input{border:none;outline:none;background:transparent;width:100%;font-size:12px;color:#111827}
 .rm-blur{margin:14px 10px 10px;height:14px;border-radius:999px;background:linear-gradient(90deg,rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,0) 100%)}
 .rm-status{margin-top:8px;width:100%;height:44px;border:none;border-radius:6px;background:linear-gradient(180deg,#2aa3e6 0%, #0b78b0 100%);color:#fff;font-weight:900}

 .rm-reward{margin-top:14px;background:rgba(255,255,255,.92);border-radius:18px;border:1px solid rgba(17,24,39,.06);box-shadow:0 10px 28px rgba(17,24,39,.12);padding:14px}
 .rm-rbtn{margin:0 auto;display:block;width:140px;height:34px;border:none;border-radius:999px;background:linear-gradient(180deg,#2aa3e6 0%, #0b78b0 100%);color:#fff;font-weight:900;font-size:12px}
 .rm-rtext{margin-top:10px;color:#111827;font-size:12px;line-height:1.6}
 .rm-rtext b{color:#0b78b0}
 .rm-warn{margin-top:10px;background:#fff;border-radius:12px;border:1px solid rgba(11,120,176,.28);padding:10px;color:#0b3f84;font-weight:900;font-size:12px;line-height:1.5}

 .pw-page{background:linear-gradient(180deg,#c9f2ff 0%, #eefaff 40%, #f3f4f6 100%)}
 .pw-main{padding:12px 12px 84px}
 .pw-card{background:#fff;border-radius:14px;border:1px solid rgba(17,24,39,.06);box-shadow:0 10px 28px rgba(17,24,39,.12);overflow:hidden}
 .pw-hero{background:linear-gradient(90deg,#004564 0%, #0b78b0 45%, #2aa3e6 100%);padding:12px;display:flex;align-items:center;justify-content:space-between;color:#fff;position:relative}
 .pw-hero::before{content:'';position:absolute;left:0;top:0;right:0;bottom:0;background:radial-gradient(circle at 30% 20%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 55%);pointer-events:none}
 .pw-hero .t1{font-weight:900}
 .pw-hero .t2{font-size:12px;opacity:.9;margin-top:4px}
 .pw-hero .sec{background:rgba(0,0,0,.18);padding:8px 12px;border-radius:999px;display:flex;align-items:center;gap:8px;position:relative}
 .pw-hero .sec .lock{width:16px;height:16px;border-radius:4px;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:12px}
 .pw-hero .sec span{font-weight:900;font-size:12px}

 .pw-body{padding:14px}
 .pw-h{font-weight:900;color:#111827}
 .pw-sub{margin-top:6px;color:#9ca3af;font-size:12px}
 .pw-row{margin-top:12px}
 .pw-lab{font-weight:900;font-size:12px;color:#111827;margin-bottom:8px}
 .pw-inp{display:flex;align-items:center;background:#fff;border:1px solid rgba(11,120,176,.28);border-radius:8px;overflow:hidden}
 .pw-inp input{border:none;outline:none;background:transparent;flex:1;padding:12px;font-size:12px}
 .pw-eye{width:44px;height:40px;display:flex;align-items:center;justify-content:center;border-left:1px solid rgba(11,120,176,.22);color:#0b78b0;font-weight:900;font-size:12px}
 .pw-rule{margin-top:12px;background:#eefaff;border-radius:12px;border:1px solid rgba(11,120,176,.18);padding:12px}
 .pw-rule .rt{display:flex;align-items:center;gap:8px;color:#0b78b0;font-weight:900}
 .pw-rule .dot{width:10px;height:10px;border-radius:999px;background:#0b78b0}
 .pw-rule .rc{margin-top:8px;color:#6b7280;font-size:12px;line-height:1.6}
 .pw-submit{margin-top:14px;width:100%;height:44px;border:none;border-radius:6px;background:linear-gradient(180deg,#2aa3e6 0%, #0b78b0 100%);color:#fff;font-weight:900}
 .pw-tip{margin-top:12px;background:#fff;border-radius:14px;border:1px solid rgba(17,24,39,.06);padding:14px}
 .pw-tip .tt{font-weight:900;color:#111827}
 .pw-tip .tc{margin-top:8px;color:#6b7280;font-size:12px}

 .rh-page{background:#f3f4f6}
 .rh-main{padding:0 0 84px;background:#f3f4f6}
 .rh-img{padding:12px}
 .rh-img img{width:100%;height:auto;display:block;border-radius:2px;background:#fff}

 .list-item{
  display:flex;
  gap:10px;
  padding:12px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(17,24,39,.06);
 }
 .list-item .thumb{width:96px;height:54px;border-radius:10px;background:#e5e7eb;overflow:hidden;flex:0 0 auto}
 .list-item .meta{flex:1;min-width:0}
 .list-item .title{font-size:14px;font-weight:800;line-height:1.2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
 .list-item .date{margin-top:6px;font-size:12px;color:#9ca3af}

 .h1-page{background:#f6f6f7}
 .h1-banner img{width:100%;height:auto;display:block}
 .h1-main{padding:12px 12px 84px;background:#f6f6f7}
 .h1-videos{display:flex;flex-direction:column;gap:12px}
 .h1-video{border-radius:14px;overflow:hidden;background:#111;box-shadow:0 10px 24px rgba(17,24,39,.14)}
 .h1-video .thumb{position:relative}
 .h1-video .thumb img{width:100%;height:auto;display:block}
 .h1-ctrl{position:absolute;left:0;right:0;bottom:0;padding:10px 10px 8px;color:#fff;background:linear-gradient(180deg,rgba(0,0,0,0) 0%, rgba(0,0,0,.78) 75%)}
 .h1-ctrl-row{display:flex;align-items:center;gap:8px}
 .h1-play{width:20px;height:20px;border-radius:999px;background:rgba(0,0,0,.55);display:flex;align-items:center;justify-content:center;font-size:11px;line-height:1}
 .h1-time{font-size:11px;font-weight:800;opacity:.95}
 .h1-progress{margin-top:6px;height:3px;border-radius:999px;background:rgba(255,255,255,.28);overflow:hidden}
 .h1-progress .in{height:100%;background:#fff;border-radius:999px;width:10%}

 .h1-shortcuts{margin-top:12px;background:#fff;border-radius:16px;box-shadow:0 8px 18px rgba(17,24,39,.08);border:1px solid rgba(17,24,39,.06);padding:14px;display:flex;justify-content:space-between;gap:6px}
 .h1-sc{flex:1;min-width:0;text-align:center}
 .h1-sc .ico{width:46px;height:46px;border-radius:999px;background:#fff;border:1px solid rgba(217,0,0,.18);margin:0 auto;display:flex;align-items:center;justify-content:center}
 .h1-sc .ico img{width:24px;height:24px;display:block}
 .h1-sc .lab{margin-top:6px;font-size:12px;font-weight:800;color:#111827;white-space:nowrap}
 .h1-sc .ico.txt{color:#d90000;font-weight:900;font-size:14px}

 .h1-news{margin-top:12px;background:#fff;border-radius:16px;box-shadow:0 8px 18px rgba(17,24,39,.08);border:1px solid rgba(17,24,39,.06);overflow:hidden}
 .h1-news-title{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px 14px 10px;font-weight:900;font-size:16px}
 .h1-news-title .ico{width:22px;height:22px;border-radius:999px;background:rgba(217,0,0,.12);display:flex;align-items:center;justify-content:center;color:var(--red);font-weight:900;font-size:12px}
 .h1-news-list{padding:0 14px}
 .h1-news-item{display:flex;gap:10px;padding:12px 0;border-bottom:1px solid rgba(17,24,39,.08)}
 .h1-news-item:last-child{border-bottom:none}
 .h1-news-item .thumb{width:108px;height:62px;border-radius:10px;background:#e5e7eb;overflow:hidden;flex:0 0 auto}
 .h1-news-item .thumb img{width:100%;height:100%;object-fit:cover}
 .h1-news-item .meta{flex:1;min-width:0}
 .h1-news-item .t{font-size:13px;font-weight:900;line-height:1.25;max-height:2.5em;overflow:hidden}
 .h1-news-item .d{margin-top:6px;font-size:12px;color:#9ca3af}
 .h1-news-item .s{margin-top:6px;font-size:12px;color:#6b7280;line-height:1.25;max-height:2.5em;overflow:hidden}

 .h1-foot{margin-top:12px;background:linear-gradient(180deg,#b50000 0%, #d90000 100%);color:#fff;text-align:center;padding:14px 12px 16px;border-radius:12px;font-size:12px;line-height:1.7}
 .h1-foot .row{display:flex;align-items:center;justify-content:center;gap:6px}
 .h1-foot .i{width:14px;height:14px;border-radius:3px;background:rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:900}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.grid .gitem{
  padding:12px 6px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(17,24,39,.06);
  text-align:center;
}
.grid .gitem .gicon{width:28px;height:28px;margin:0 auto 8px;border-radius:999px;background:rgba(217,0,0,.10);display:flex;align-items:center;justify-content:center;color:var(--red);font-weight:900}
.grid .gitem .glabel{font-size:12px;color:#111827;font-weight:700}

.tabbar{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width:100%;
  max-width:420px;
  height:64px;
  background:#fff;
  border-top:1px solid var(--border);
  display:grid;
  grid-template-columns:repeat(6,1fr);
  z-index:50;
}
.tabbar a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  font-size:11px;
  color:#6b7280;
}
.tabbar img{width:22px;height:22px}
.tabbar a.active{color:var(--red);font-weight:800}
.sn-page .tabbar a.active{color:#ba0000}

.notice{
  font-size:12px;
  color:#6b7280;
  line-height:1.4;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:2px 8px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}
.badge.ok{background:rgba(34,197,94,.12);color:#16a34a}
.badge.no{background:rgba(239,68,68,.12);color:#ef4444}

.toast{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:88px;
  background:rgba(17,24,39,.92);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  font-size:13px;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:100;
}
.toast.show{opacity:1}

.bg-red-grad{background:linear-gradient(180deg,#d90000 0%, #ff3b30 100%)}
.bg-soft{background:#fff4f2}

.qr-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.qr-card{background:#fff;border-radius:16px;border:1px solid rgba(17,24,39,.06);padding:12px;text-align:center}
.qr-card .qtitle{font-weight:900;font-size:13px;margin-bottom:8px}
.qr-card img{width:140px;height:140px;object-fit:contain;margin:0 auto 8px}
.qr-actions{display:flex;gap:10px;justify-content:center;margin-top:10px}
.qr-actions .btn{width:auto;height:34px;border-radius:999px;padding:0 12px;font-size:12px}

.hero-login{
  background:#fff;
}
.hero-login .hero{
  width:100%;
  height:auto;
}

.cn-auth{
  margin:0;
  min-height:100vh;
  background:#0b78b0;
}
.cn-auth-bg{
  position:fixed;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:100%;
  max-width:420px;
  height:100vh;
  background-image:url("/static/new/333/1 (10)/2 (2).png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
}
.cn-auth-wrap{
  position:relative;
  z-index:1;
  width:100%;
  max-width:420px;
  margin:0 auto;
  min-height:100vh;
  padding:220px 16px 60px;
  box-sizing:border-box;
}
.cn-auth-card{
  background:#fff;
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 28px rgba(0,0,0,.16);
}
.cn-field{
  height:44px;
  border-radius:12px;
  background:rgba(243,244,246,.92);
  display:flex;
  align-items:center;
  padding:0 12px;
  gap:8px;
}
.cn-field + .cn-field{margin-top:12px}
.cn-field .ico{width:18px;height:18px;flex:0 0 auto;opacity:.9}
.cn-field .lab{font-weight:800;color:#111827;font-size:13px;white-space:nowrap}
.cn-field input{border:none;outline:none;background:transparent;flex:1;font-size:13px;color:#111827}
.cn-field input::placeholder{color:#9ca3af}
.cn-field .input{flex:1;display:flex;align-items:center;gap:8px}
.cn-field .input input{flex:1;min-width:0}
.cn-field .eye{width:44px;text-align:right;color:#9ca3af;font-weight:800;font-size:12px;user-select:none}

.cn-btn{
  margin-top:14px;
  width:100%;
  height:46px;
  border:none;
  border-radius:999px;
  background: #ba0000;
  color:#fff;
  font-weight:900;
  font-size:15px;
}
.cn-btn:active{transform:translateY(1px)}

.cn-agree{margin-top:10px;display:flex;align-items:flex-start;gap:8px}
.cn-agree .ck{border:none;background:transparent;padding:0;margin:2px 0 0;flex:0 0 auto}
.cn-agree .ck img{width:18px;height:18px;display:block}
.cn-agree .txt{font-size:12px;line-height:1.45;color:#111827}
.cn-agree .txt a{color:#111827;font-weight:900}

.cn-bottom{margin-top:10px;text-align:center;font-size:13px;color:#111827}
.cn-bottom a{color:#111827;font-weight:900}

.cn-home{background:#f4f7ff}
.cn-home .app{background:#f4f7ff}
.cn-home-top img{width:100%;height:auto;display:block}
.cn-home-main{
    padding:10px 12px 96px;
    background-image:url("/static/new/top1.png");
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
}

.cn-home-videos{display:flex;flex-direction:column;gap:10px}
.cn-v{display:block;border-radius:12px;overflow:hidden;position:relative;box-shadow:0 10px 24px rgba(17,24,39,.10)}
.cn-v img{width:100%;height:auto;display:block}
.cn-v .ctrl{position:absolute;left:10px;right:10px;bottom:10px;display:flex;align-items:center;gap:10px;color:#fff}
.cn-v .play{width:26px;height:26px;border-radius:999px;background:rgba(0,0,0,.45);position:relative}
.cn-v .play:before{content:'';position:absolute;left:10px;top:7px;border-left:10px solid #fff;border-top:6px solid transparent;border-bottom:6px solid transparent}
.cn-v .time{font-size:12px;font-weight:800;text-shadow:0 1px 3px rgba(0,0,0,.45)}

.news{
    margin:12px;
    background:#f3f3f3;
    border-radius:12px;
    padding:10px;
}

.news-title{
    text-align:center;
    font-size:16px;
    font-weight:600;
    color:#333;
    padding:8px 0 12px;
    position:relative;
}

.news-title{
    background:#f3f3f3;
    border-radius:12px 12px 0 0;
    padding:12px 0;
    font-size:16px;
    font-weight:600;
    color:#333;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
}

.news-title img{
    width:18px;
    height:18px;
}

.news-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.news-item{
    display:flex;
    background:#fff;
    border-radius:10px;
    padding:10px;
    align-items:center;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.news-item img{
    width:100px;
    height:65px;
    border-radius:6px;
    object-fit:cover;
    margin-right:10px;
}

.news-text{
    flex:1;
}

.news-text p{
    font-size:14px;
    color:#333;
    line-height:1.4;
    margin:0 0 6px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.news-text span{
    font-size:12px;
    color:#999;
}

.cn-home-actions{
display:flex;
justify-content:space-around;
background:#fff;
padding-top:15px;
border-radius:12px;
}

.cn-home-actions .act{
text-align:center;
}

.cn-home-actions img{
  width: 50px;
  display:block;
    margin:0 auto;
}

.cn-home-actions p{
  font-size: 14px;
  font-weight: 700;
}

.cn-home-qrs{margin-top:10px;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.cn-home-qrs .qrc{background:#fff;border-radius:14px;padding:10px;box-shadow:0 8px 18px rgba(17,24,39,.08);border:1px solid rgba(17,24,39,.06)}
.cn-home-qrs .t{font-weight:900;font-size:13px;text-align:center}
.cn-home-qrs .qr{margin:8px auto 0;display:block;background:#fff;border-radius:6px}
.cn-home-qrs .btns{margin-top:8px;display:flex;gap:8px;justify-content:center}
.cn-home-qrs .b{border:none;background:transparent;padding:0}
.cn-home-qrs .b img{height:30px;width:auto;display:block}

.cn-home-banner{margin-top:10px;overflow:hidden;box-shadow:0 8px 18px rgba(17,24,39,.10)}
.cn-home-banner img{width:100%;height:auto;display:block}
.cn-home-links .ln{display:flex;align-items:center;gap:10px;padding:12px 12px;border-bottom:1px solid rgba(17,24,39,.06)}
.cn-home-links .ln:last-child{border-bottom:none}
.cn-home-links .n{width:22px;height:22px;border-radius:999px;background:#ba0000;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:12px;flex:0 0 auto}
.cn-home-links .u{flex:1;font-size:13px;font-weight:800;color:#2563eb}
.cn-home-links .go{font-size:13px;font-weight:900;color:#ef4444;flex:0 0 auto}
.cn-home-links .foot{padding:10px 12px;background:#000;text-align:center}
.cn-home-links .cn-foot-t{color:rgba(255,255,255,.86);font-size:11px;line-height:1.35}
.cn-home-links .cn-foot-b{margin-top:6px;color:rgba(255,255,255,.62);font-size:11px;line-height:1.35}

.cn-tab{position:fixed;left:50%;transform:translateX(-50%);bottom:0;width:100%;max-width:420px;height:66px;background:#fff;border-top:1px solid rgba(17,24,39,.08);display:grid;grid-template-columns:repeat(6,1fr);z-index:50}
.cn-tab a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;font-size:10px;color:#6b7280;font-weight:800;line-height:1}
.cn-tab a .ico{width:22px;height:22px;object-fit:contain}
.cn-tab a.on{color:#ba0000}

.cn-pdl{background:#f4f7ff}
.cn-pdl .app{background:#f4f7ff}
.cn-pdl-top{
  position:sticky;
  top:0;
  z-index:20;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0b78b0;
  color:#fff;
}
.cn-pdl-top .back{
  position:absolute;
  left:10px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.18);
  font-weight:900;
  font-size:18px;
}
.cn-pdl-brand{display:flex;flex-direction:column;align-items:center;gap:2px;line-height:1.05}
.cn-pdl-brand-row{display:flex;align-items:center;gap:6px}
.cn-pdl-emblem{width:22px;height:22px;border-radius:999px;background:radial-gradient(circle at 30% 30%, #ffe7ad 0%, #ffcc00 40%, #f59e0b 100%);box-shadow:0 2px 6px rgba(0,0,0,.18)}
.cn-pdl-brand-t1{font-weight:900;font-size:16px;letter-spacing:.5px}
.cn-pdl-brand-t2{font-weight:800;font-size:10px;opacity:.95;letter-spacing:3px}

.cn-pdl-main{padding:12px 12px 84px}
.cn-pdl-page-title{margin:10px 0 12px;text-align:center;font-weight:900;font-size:20px;color:#0b78b0}

.cn-pdl-card{background:#eaf5ff;border-radius:16px;border:1px solid rgba(11,120,176,.22);padding:10px;box-shadow:0 10px 24px rgba(17,24,39,.10)}
.cn-pdl-row{display:flex;gap:10px;align-items:flex-start;padding:10px 8px;border-radius:12px;color:inherit}
.cn-pdl-row + .cn-pdl-row{border-top:1px solid rgba(17,24,39,.08);border-top-left-radius:0;border-top-right-radius:0}
.cn-pdl-num{width:28px;height:28px;border-radius:999px;background:#0b78b0;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;flex:0 0 auto}
.cn-pdl-mid{flex:1;min-width:0}
.cn-pdl-t{font-weight:900;color:#111827;font-size:13px}
.cn-pdl-l{margin-top:4px;color:#2563eb;font-size:12px;word-break:break-all}
.cn-pdl-go{color:#ef4444;font-weight:900;font-size:13px;flex:0 0 auto;padding-top:2px;white-space:nowrap}

.cn-pdl-section{margin-top:12px;background:#fff;border-radius:16px;border:1px solid rgba(11,120,176,.18);padding:12px;box-shadow:0 10px 24px rgba(17,24,39,.08)}
.cn-pdl-sec-title{font-weight:900;font-size:15px;color:#111827}
.cn-pdl-sec-sub{margin-top:8px;color:#9ca3af;font-size:12px;font-weight:800}
.cn-pdl-btn{margin-top:10px;width:100%;height:46px;border:none;border-radius:10px;background:linear-gradient(180deg,#f6a633 0%, #f59e0b 100%);color:#fff;font-weight:900;font-size:15px}
.cn-pdl-btn:active{transform:translateY(1px)}
.cn-pdl-sec-tip{margin-top:8px;color:#9ca3af;font-size:12px;font-weight:800}

.cn-apply{background:#f4f7ff}
.cn-apply-app{background:#f4f7ff}
.cn-apply-shot{width:100%;height:auto;display:block}

.cn-share{background:linear-gradient(180deg,#2d5cff 0%, #1b4fd7 45%, #1b4fd7 100%)}
.cn-share-app{background:linear-gradient(180deg,#2d5cff 0%, #1b4fd7 45%, #1b4fd7 100%)}
.cn-share-hero{
  height:320px;
  background-image:url("/static/new/333/1 (6)/1 (6).png");
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}

.cn-share-main{margin-top:-92px;padding:0 12px 90px}
.cn-share-card{
  border-radius:18px;
  padding:14px;
  background-image:url("/static/new/333/1 (6)/1 (2).png");
  background-size:100% 100%;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:0 14px 26px rgba(17,24,39,.22);
}
.cn-share-panel-top{
  border-radius:14px;
  padding:10px 10px 8px;
  background:transparent;
  border:none;
}
.cn-share-note{font-size:12px;line-height:1.7;color:#ffffff;text-shadow:0 1px 2px rgba(0,0,0,.15)}

.cn-share-panel-bottom{margin-top:10px}
.cn-share-qr{
  display:flex;
  gap:12px;
  align-items:center;
  background:#ffffff;
  border-radius:12px;
  padding:12px 12px;
  border:1px solid rgba(2,6,23,.12);
  box-shadow:none;
}
.cn-share-qr .qr-box{
  width:90px;
  height:90px;
  background:#fff;
  border-radius:10px;
  border:2px solid #111827;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.cn-share-qr canvas{width:78px;height:78px}
.cn-share-qr .qr-info{display:flex;flex-direction:column;gap:8px;min-width:0}
.cn-share-qr .qr-code{font-size:12px;color:#111827;font-weight:900;white-space:nowrap}
.cn-share-qr .btn{width:138px;height:auto;display:block}

.cn-share-cta{margin-top:12px;display:flex;justify-content:center}
.cn-share-cta-img{width:260px;max-width:100%;height:auto;display:block}
.cn-share-list{margin-top:10px;display:flex;flex-direction:column;gap:10px}
.cn-share-item{background:#fff;border-radius:14px;padding:11px 12px;border:1px solid #cfe0ff;box-shadow:0 6px 16px rgba(17,24,39,.09)}
.cn-share-item .r{display:flex;align-items:center;justify-content:space-between;gap:10px}
.cn-share-item .t{font-weight:900;color:#111827;font-size:13px;min-width:0}
.cn-share-item .s{color:#3b82f6;font-size:11px;font-weight:900;white-space:nowrap}
.cn-share-item .d{margin-top:6px;color:#ef4444;font-weight:900;font-size:12px}
.cn-share-list-tail{margin-top:8px}
.cn-share-footnote{width:100%;height:auto;display:block;margin-top:12px;border-radius:14px;box-shadow:none}

.cn-commit{background:#eaf0ff}
.cn-commit-app{background:#eaf0ff}
.cn-commit-hero{
  height:260px;
  background-image:url("/static/new/333/1 (1)/1 (5).png");
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}
.cn-commit-main{margin-top:-40px;padding:0 12px 86px}
.cn-commit-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(17,24,39,.12);
  padding:14px 14px 16px;
}
.cn-commit-title{
  text-align:center;
  font-weight:900;
  color:#1a6fb8;
  font-size:15px;
}
.cn-commit-sub{
  text-align:center;
  margin-top:6px;
  font-weight:900;
  font-size:16px;
  color:#1f2937;
}
.cn-commit-form{margin-top:10px;display:flex;flex-direction:column;gap:8px}
.cn-commit-field{display:flex;align-items:center;gap:8px;background:#f3f4f6;border-radius:8px;padding:8px 10px}
.cn-commit-field .k{font-size:12px;color:#6b7280;flex:0 0 auto}
.cn-commit-field input{border:none;outline:none;background:transparent;font-size:12px;width:100%}
.cn-commit-upload{margin-top:10px;display:flex;align-items:center;justify-content:space-between;font-size:12px;color:#6b7280}
.cn-commit-upload .box{width:48px;height:36px;border-radius:8px;background:#f3f4f6;display:flex;align-items:center;justify-content:center;color:#9ca3af;font-weight:900}
.cn-commit-btn{margin-top:12px;width:100%;height:40px;border:none;border-radius:10px;background:linear-gradient(180deg,#ff9a3d 0%, #ff6a1b 100%);color:#fff;font-weight:900;font-size:13px}
.cn-commit-statement{
  margin-top:12px;
  height:220px;
  background-image:url();
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.cn-report{background:#eaf0ff}
.cn-report-app{background:#eaf0ff}
.cn-report-hero{
  height:260px;
  background-image:url("../22222222222222222/6.png");
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}
.cn-report-main{margin-top:-40px;padding:0 12px 86px}
.cn-report-card{background:#fff;border-radius:16px;box-shadow:0 10px 24px rgba(17,24,39,.12);border:1px solid rgba(26,111,184,.22);overflow:hidden}
.cn-report-head{height:46px;display:flex;align-items:center;justify-content:center;background:#bfe0ff;color:#0b3f84;font-weight:900;font-size:18px;position:relative}
.cn-report-head:before,.cn-report-head:after{content:'';position:absolute;top:50%;transform:translateY(-50%);width:10px;height:10px;border-radius:999px;background:#0b78b0}
.cn-report-head:before{left:14px}
.cn-report-head:after{right:14px}
.cn-report-body{padding:12px 14px 16px}
.cn-report-greet{font-weight:900;color:#111827;font-size:15px}
.cn-report-fields{margin-top:8px}
.cn-report-field{display:grid;grid-template-columns:84px 1fr;gap:10px;padding:10px 0;border-bottom:1px dashed rgba(17,24,39,.14);font-size:13px}
.cn-report-field:last-child{border-bottom:none}
.cn-report-field .k{font-weight:800;color:#111827}
.cn-report-field .v{font-weight:900;color:#111827;word-break:break-all}
.cn-report-subject{margin-top:10px;font-weight:900;color:#111827;font-size:13px}
.cn-report-note{margin-top:6px;color:#111827;font-size:12px;line-height:1.65}
.cn-report-sect{margin-top:10px}
.cn-report-sect-title{font-weight:900;color:#111827;font-size:13px}
.cn-report-sect-text{margin-top:6px;color:#111827;font-size:12px;line-height:1.65}
.cn-report-ol{margin-top:6px;display:flex;flex-direction:column;gap:6px}
.cn-report-li{color:#111827;font-size:12px;line-height:1.65}
.cn-report-stamp{margin-top:10px;margin-left:auto;width:120px;height:120px;display:block;opacity:.95}

.cn-warm{background:#f4f7ff}
.cn-warm-app{background:#f4f7ff;min-height:100vh;position:relative;overflow:hidden}
.cn-warm-bg{position:absolute;inset:0;z-index:0}
.cn-warm-bg img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block}
.cn-warm-mask{position:absolute;inset:0;background:rgba(17,24,39,.55);z-index:1}
.cn-warm-dialog{position:relative;z-index:2;width:calc(100% - 44px);max-width:360px;margin:110px auto 0;background:#fff;border-radius:12px;box-shadow:0 18px 40px rgba(0,0,0,.22);padding:26px 16px 16px;text-align:center}
.cn-warm-bell{width:72px;height:72px;margin:-62px auto 10px;border-radius:999px;background:radial-gradient(circle at 30% 30%, #dbeafe 0%, #93c5fd 50%, #3b82f6 100%);box-shadow:0 10px 22px rgba(59,130,246,.28);position:relative}
.cn-warm-bell:before{content:'';position:absolute;left:50%;top:18px;transform:translateX(-50%);width:30px;height:30px;border-radius:8px;background:rgba(255,255,255,.85)}
.cn-warm-title{font-weight:900;font-size:18px;color:#111827;letter-spacing:.5px}
.cn-warm-text{margin-top:10px;color:#374151;font-size:12px;line-height:1.75;text-align:left}
.cn-warm-qt{margin-top:12px;font-weight:900;color:#111827;font-size:12px}
.cn-warm-qr{margin:10px auto 0;width:170px;height:170px;border-radius:10px;background:#fff;border:2px solid rgba(17,24,39,.18);display:flex;align-items:center;justify-content:center}
.cn-warm-qr canvas{width:150px;height:150px}
.cn-warm-btn{margin-top:14px;width:100%;height:44px;border:none;border-radius:6px;background:#0b78b0;color:#fff;font-weight:900;font-size:14px}
.cn-warm-btn:active{transform:translateY(1px)}

.cn-mine{background:#f4f7ff}
.cn-mine-app{background:#f4f7ff}
.cn-mine-shot{width:100%;height:auto;display:block}

.cn-checkin{background:#f4f7ff}
.cn-checkin-app{background:#f4f7ff}
.cn-checkin-shot{width:100%;height:auto;display:block}

.cn-giftshop{background:#0b78b0}
.cn-giftshop-app{background:#0b78b0}
.cn-giftshop-shot{width:100%;height:auto;display:block}

.cn-fund{background:#f4f7ff}
.cn-fund-app{background:#f4f7ff}
.cn-fund-shot{width:100%;height:auto;display:block}

.cn-addspeed{background:#0b78b0}
.cn-addspeed-app{background:#0b78b0}
.cn-addspeed-shot{width:100%;height:auto;display:block}

.auth{
  background:#fff;
}
.auth .app{
  background:#fff;
}
.auth-main{
  background:#fff;
  padding:0 0 24px;
}
.auth-hero{
  width:100%;
  position:relative;
  background:#fff;
  height:220px;
  overflow:hidden;
}
.auth-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
}
.auth-form{
  padding:14px 16px 0;
}
.auth-field{
  margin:14px 0 0;
}
.auth-label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#111827;
  font-weight:800;
  margin:0 0 8px;
}
.auth-input{
  display:flex;
  align-items:center;
  gap:10px;
  background:#f3f4f6;
  border:1px solid rgba(17,24,39,.06);
  border-radius:10px;
  padding:12px 12px;
}
.auth-input .i{
  width:18px;
  height:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111827;
  opacity:.65;
  font-weight:900;
  font-size:14px;
}
.auth-input input{
  border:none;
  outline:none;
  background:transparent;
  font-size:14px;
  width:100%;
}
.auth-input .eye{
  width:44px;
  display:flex;
  justify-content:flex-end;
  color:#9ca3af;
  user-select:none;
  font-size:12px;
  font-weight:800;
}
.auth-agree{
  display:flex;
  align-items:center;
  gap:8px;
  margin:12px 0 0;
  font-size:12px;
  color:#6b7280;
}
.auth-agree .ck{
  width:14px;
  height:14px;
  border-radius:999px;
  background:rgba(217,0,0,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#d90000;
  font-weight:900;
  font-size:10px;
}
.auth-agree a{
  color:#d90000;
  font-weight:900;
}
.auth-btn{
  margin-top:14px;
  border-radius:10px;
  height:44px;
}
.auth-bottom{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
  font-size:13px;
  color:#6b7280;
}
.auth-bottom a{
  color:#d90000;
  font-weight:900;
}

.user-main{
  background:#f3f4f6;
  padding:0 12px 84px;
}
.u-header{
  background-image:url('./pages/user/index/userimg.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:10px 12px 14px;
}
.u-brand{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#fff;
}
.u-brand img{
  width:18px;
  height:18px;
  flex:0 0 auto;
}
.u-brand .logo{
  width:18px;
  height:18px;
  border-radius:4px;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:12px;
}
.u-brand .t1{
  font-weight:900;
  font-size:16px;
  line-height:1.1;
  letter-spacing:.5px;
}
.u-brand .t2{
  margin-top:2px;
  font-size:11px;
  opacity:.9;
  letter-spacing:4px;
}
.u-userinfo{
  margin-top:10px;
  background:rgba(255,255,255,.96);
  border-radius:14px;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.u-user-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.u-avatar{
  width:46px;
  height:46px;
  border-radius:999px;
  background:#fff;
  flex:0 0 auto;
}
.u-ntxt .n{
  font-weight:900;
  font-size:15px;
  color:#111827;
  line-height:1.1;
}
.u-ntxt .s{
  margin-top:4px;
  font-size:12px;
  color:#6b7280;
}
.u-signbtn{
  display:block;
  padding:0;
  border:none;
  background:transparent;
  border-radius:0;
}
.u-signbtn img{height:34px;width:auto;display:block}

.u-cards{margin-top:12px;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.u-card{
  border-radius:14px;
  overflow:hidden;
  color:#fff;
  padding:12px;
  position:relative;
  background:#d90000;
}
.u-card.full{grid-column:1 / -1}
.u-card.bg1{background:#d90000;background-image:url('./pages/user/index/userbg1.png');background-size:cover;background-position:center}
.u-card.bg2{background:#e24a4a;background-image:url('./pages/user/index/userbg2.png');background-size:cover;background-position:center}
.u-card.bg3{background:#b50000;background-image:url('./pages/user/index/userbg3.png');background-size:cover;background-position:center}
.u-card .ct{font-size:12px;font-weight:900;opacity:.95}
.u-card .cv{margin-top:8px;font-size:22px;font-weight:900}
.u-card .sub{margin-top:6px;font-size:12px;opacity:.95}
.u-card .actions{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  gap:8px;
}
.u-card .actions.bottom{
  top:auto;
  bottom:10px;
  transform:none;
}
.u-mini{
  height:32px;
  padding:0 12px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.92);
  color:#d90000;
  font-weight:900;
  font-size:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  min-width:54px;
  white-space:nowrap;
}
.u-mini.gray{color:#111827}
.u-mini:active{transform:translateY(1px)}

.u-func{
  margin-top:12px;
  background:#fff;
  border-radius:14px;
  padding:14px 12px;
  border:1px solid rgba(17,24,39,.06);
}
.u-func-title{font-weight:900;color:#111827;margin-bottom:10px}
.u-func-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px 6px}
.u-fi{text-align:center;color:#111827}
.u-fi .ico{width:28px;height:28px;margin:0 auto 6px;display:flex;align-items:center;justify-content:center;color:#111827}
.u-fi .ico svg{width:24px;height:24px;display:block}
.u-fi .lab{font-size:12px;font-weight:800}

.u-logout{
  margin-top:12px;
  width:100%;
  height:44px;
  border-radius:12px;
  border:none;
  background:#d90000;
  color:#fff;
  font-weight:900;
  font-size:15px;
}
.u-footer{
  margin-top:12px;
  background:linear-gradient(180deg,#b50000 0%, #d90000 100%);
  color:#fff;
  border-radius:0;
  padding:12px 10px 14px;
  text-align:center;
  font-size:12px;
  line-height:1.45;
}
.u-footer .t{font-weight:900}
.u-footer .row{margin-top:6px;display:flex;align-items:center;justify-content:center;gap:6px}
.u-footer .i{width:14px;height:14px;border-radius:3px;background:rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:900}
.u-footer .b{margin-top:6px}

.pdl-wrap{background:#f7e3cf;min-height:100vh}
.pdl-main{padding:0 12px 84px;background:#f7e3cf}
.pdl-header{padding:0}
.pdl-header .header-img-top{border-radius:0;border:none;background:transparent}
.pdl-title{margin:10px 0 8px;text-align:center;font-weight:900;font-size:16px;color:#b91c1c}
.pdl-card{border-radius:16px;background:#ffeede;border:1px solid rgba(239,68,68,.22);padding:12px;box-shadow:0 10px 24px rgba(17,24,39,.10)}
.pdl-item{display:flex;gap:10px;align-items:center;padding:10px 0}
.pdl-item + .pdl-item{border-top:1px solid rgba(17,24,39,.08)}
.pdl-num{width:26px;height:26px;border-radius:999px;background:#ef4444;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;flex:0 0 auto}
.pdl-mid{flex:1;min-width:0}
.pdl-mid .t{font-weight:900;color:#111827;font-size:13px}
.pdl-mid .l{display:block;margin-top:4px;color:#2563eb;font-size:12px;word-break:break-all}
.pdl-go{color:#ef4444;font-weight:900;font-size:13px;flex:0 0 auto;padding-top:2px}

.pdl-section{margin-top:12px;background:#fff;border-radius:16px;border:1px solid rgba(17,24,39,.06);padding:12px}
.pdl-sec-title{font-weight:900;font-size:15px;color:#111827;margin-bottom:10px}
.pdl-video{border-radius:14px;overflow:hidden;background:#000;position:relative}
.pdl-video .time{position:absolute;left:50%;bottom:40px;transform:translateX(-50%);color:#fff;font-weight:900;background:rgba(0,0,0,.55);padding:4px 10px;border-radius:999px;font-size:12px}
.pdl-video .play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:56px;height:56px;border-radius:999px;background:rgba(255,255,255,.25);display:flex;align-items:center;justify-content:center;color:#fff;font-size:20px}
.pdl-video .ph{height:190px;background:radial-gradient(circle at 50% 35%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 55%), linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%)}
.pdl-vcap{position:absolute;left:10px;right:10px;bottom:10px;display:flex;flex-direction:column;gap:6px;pointer-events:none}
.pdl-vcap .t1{height:22px;border-radius:4px;background:rgba(217,0,0,.55);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:12px;letter-spacing:.5px}
.pdl-vcap .t2{height:22px;border-radius:4px;background:rgba(37,99,235,.55);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:12px;letter-spacing:.5px}

.pdl-getbtn{height:44px;border-radius:10px;background:#d90000;color:#fff;font-weight:900;border:none;width:100%}
.pdl-tip{margin-top:8px;color:#9ca3af;font-size:12px}

.pdl-qrs{margin-top:12px;background:transparent;border-radius:16px;border:none;padding:0}
.pdl-qr-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.pdl-qr{background:#ffeede;border-radius:14px;border:1px solid rgba(239,68,68,.22);padding:10px;text-align:center;box-shadow:0 10px 24px rgba(17,24,39,.10)}
.pdl-qr .qt{font-weight:900;font-size:13px;color:#ef4444;margin-bottom:8px}
.pdl-qr img{width:140px;height:140px;object-fit:contain;margin:0 auto 8px}
.pdl-qa{display:flex;gap:10px;justify-content:center;margin-top:8px}
.pdl-qa .b1{height:32px;border-radius:999px;padding:0 12px;font-size:12px;font-weight:900;border:none;background:linear-gradient(180deg,#ffb25a 0%, #ff7a00 100%);color:#fff}
.pdl-qa .b2{height:32px;border-radius:999px;padding:0 12px;font-size:12px;font-weight:900;border:1px solid rgba(255,122,0,.55);background:#fff;color:#ff7a00}

.ck-page{background:#fff}
.ck-topbar{height:44px;display:flex;align-items:center;justify-content:center;position:sticky;top:0;z-index:20;background:#ff3b30;color:#fff}
.ck-topbar .back{position:absolute;left:10px;height:28px;width:28px;display:flex;align-items:center;justify-content:center;border-radius:999px;color:#fff}
.ck-topbar .title{font-size:16px;font-weight:900}
.ck-main{background:#f7efe8;padding:0 12px 84px}
.ck-hero{background:#ff3b30}
.ck-hero img{width:100%;display:block}
.ck-card{margin-top:-38px;background:#fff;border-radius:16px;border:1px solid rgba(17,24,39,.06);box-shadow:0 6px 18px rgba(17,24,39,.08);padding:14px}
.ck-card h3{margin:0 0 10px;font-size:14px;font-weight:900;color:#111827}
.ck-signbar{position:relative;border-radius:16px;overflow:hidden}
.ck-signbar img{width:100%;display:block}
.ck-signbar .dates{position:absolute;left:12px;right:12px;top:12px;display:flex;justify-content:space-between;font-size:11px;color:#6b7280}
.ck-signbar .dates .today{color:#d90000;font-weight:900}
.ck-signbar .icons{position:absolute;left:12px;right:12px;top:44px;display:flex;justify-content:space-between}
.ck-signbar .icons img{width:34px;height:34px}
.ck-btn{margin-top:12px;width:100%;height:44px;border:none;border-radius:999px;background:linear-gradient(180deg,#ff7a7a 0%, #ff3b30 100%);color:#fff;font-weight:900;font-size:15px}
.ck-section{margin-top:12px}
.ck-sec-title{font-weight:900;color:#111827;margin:0 0 10px}
.ck-task{background:#fff;border-radius:16px;border:1px solid rgba(17,24,39,.06);overflow:hidden}
.ck-task-row{display:flex;align-items:center;justify-content:space-between;padding:14px 14px;border-top:1px solid rgba(17,24,39,.06)}
.ck-task-row:first-child{border-top:none}
.ck-task-left .t{font-weight:900;color:#111827}
.ck-task-left .v{margin-top:6px;color:#9ca3af;font-size:12px}
.ck-tag{height:30px;border-radius:999px;padding:0 14px;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:12px}
.ck-tag.done{background:#e5e7eb;color:#6b7280}
.ck-tag.go{background:linear-gradient(180deg,#ff7a7a 0%, #ff3b30 100%);color:#fff}

.as-page{background:#d90000}
.as-topbar{height:44px;display:flex;align-items:center;justify-content:center;position:sticky;top:0;z-index:20;background:#d90000;color:#fff}
.as-topbar .back{position:absolute;left:10px;height:28px;width:28px;display:flex;align-items:center;justify-content:center;border-radius:999px;color:#fff}
.as-topbar .title{font-size:16px;font-weight:900}
.as-main{background:#d90000;padding:0 12px 84px}
.as-hero{display:flex;justify-content:center;padding:10px 0 0}
.as-hero img{width:86%;max-width:360px;display:block}
.as-card{margin-top:10px;background:#fff;border-radius:16px;border:1px solid rgba(17,24,39,.06);overflow:hidden}
.as-prog{padding:0 12px 12px;background:linear-gradient(180deg,#ffe4c7 0%, #ffefd5 100%)}
.as-prog .ptext{font-weight:900;color:#111827;margin:12px 0 10px}
.as-prog .scale{display:flex;align-items:center;justify-content:space-between;font-size:12px;color:#111827;font-weight:900}
.as-prog .bar{height:8px;border-radius:999px;background:rgba(17,24,39,.10);overflow:hidden;margin-top:8px}
.as-prog .bar > div{height:100%;width:1%;background:linear-gradient(90deg,#ff3b30,#d90000)}
.as-prog .go{margin:10px auto 0;display:block;width:220px;height:44px;border:none;border-radius:999px;background:linear-gradient(180deg,#ff7a7a 0%, #ff3b30 100%);color:#fff;font-weight:900}
.as-prog .sub{margin-top:8px;text-align:center;color:#b91c1c;font-size:12px}
.as-rule{margin-top:12px;background:#fff;border-radius:16px;border:1px solid rgba(17,24,39,.06);padding:12px}
.as-rule .t{font-weight:900;margin-bottom:8px}
.as-rule .c{color:#111827;font-size:12px;line-height:1.5}
.as-tasks{margin-top:12px;background:#fff;border-radius:16px;border:1px solid rgba(17,24,39,.06);overflow:hidden}
.as-tasks .t{padding:12px;font-weight:900}
.as-task{display:flex;align-items:center;justify-content:space-between;padding:14px 12px;border-top:1px solid rgba(17,24,39,.06)}
.as-task:first-of-type{border-top:none}
.as-task .l{font-weight:900;color:#111827}
.as-task .r{color:#ff3b30;font-weight:900;font-size:12px}

.inv-page{background:#fff}
.inv-main{position:relative;background:#fff}
.inv-hero img{width:100%;display:block}
.inv-overlay{position:absolute;left:0;top:170px;right:0;padding:0 12px 84px}
.inv-desc{margin-top:0;background:rgba(255,255,255,.94);border-radius:14px;padding:12px;box-shadow:0 10px 28px rgba(0,0,0,.18)}
.inv-desc .c{color:#111827;font-size:12px;line-height:1.55}
.inv-block{margin-top:12px;background:#ff3b30;border-radius:14px;overflow:hidden;box-shadow:0 10px 28px rgba(0,0,0,.18)}
.inv-block .hd{background:transparent;color:#fff;text-align:center;font-weight:900;padding:10px 10px 8px;font-size:15px}
.inv-inner{margin:0 10px 10px;background:rgba(255,255,255,.96);border-radius:12px;padding:12px}
.inv-method{display:flex;gap:12px;align-items:center}
.inv-qr{width:110px;height:110px;border-radius:10px;background:#fff;display:flex;align-items:center;justify-content:center;overflow:hidden;border:1px solid rgba(17,24,39,.08)}
.inv-qr img{width:100%;height:100%;object-fit:contain}
.inv-qr-cap{margin-top:8px;text-align:center;color:#6b7280;font-size:12px;font-weight:800}
.inv-right{flex:1}
.inv-code{font-weight:900;color:#111827;font-size:13px}
.inv-btn{margin-top:10px;height:34px;border-radius:8px;border:none;background:#d90000;color:#fff;font-weight:900;width:124px;font-size:12px}
.inv-reward{padding:0}
.inv-reward-item{background:#ffe6bf;border-radius:14px;padding:14px;display:flex;justify-content:space-between;align-items:flex-start;border:1px solid rgba(245,158,11,.18)}
.inv-reward-item + .inv-reward-item{margin-top:10px}
.inv-reward-item .l1{font-weight:900;color:#111827}
.inv-reward-item .l2{margin-top:6px;font-weight:900;color:#d90000;font-size:13px}
.inv-reward-item .r1{font-weight:900;color:#d90000;font-size:12px;text-align:right}
.inv-reward-item .r2{margin-top:6px;font-weight:900;color:#d90000;font-size:13px;text-align:right}
.inv-reward-item .unit{margin-left:6px;color:#111827;font-weight:900;font-size:12px}

.cert-page{background:#f3f4f6}
.cert-topbar{
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:sticky;
  top:0;
  z-index:20;
  background:#fff;
  border-bottom:1px solid rgba(17,24,39,.08);
}
.cert-topbar .back{
  position:absolute;
  left:10px;
  height:28px;
  width:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#111827;
}
.cert-topbar .title{font-size:16px;font-weight:800;color:#111827}

.cert-wrap{padding:14px 14px 84px}
.cert-logo{display:flex;justify-content:center;margin:10px 0 6px}
.cert-logo img{width:64px;height:64px;border-radius:999px;background:#fff}
.cert-h1{
  text-align:center;
  color:#d90000;
  font-weight:900;
  font-size:18px;
  margin:8px 0 10px;
}
.cert-card2{
  background:#fff;
  border-radius:14px;
  border:2px solid rgba(245,158,11,.55);
  padding:10px 12px 14px;
  position:relative;
}
.cert-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid rgba(17,24,39,.08);
  font-size:13px;
}
.cert-row:last-child{border-bottom:none}
.cert-row .k{color:#6b7280;font-weight:800}
.cert-row .v{color:#d90000;font-weight:900}
.cert-mark2{
  position:absolute;
  left:12px;
  top:56px;
  width:66px;
  opacity:.20;
}
.cert-stamp2{
  position:absolute;
  right:14px;
  bottom:96px;
  width:92px;
  opacity:.92;
}
.cert-note{margin-top:10px;color:#9ca3af;font-size:12px;line-height:1.45}
.cert-save{
  margin-top:14px;
  width:100%;
  height:44px;
  border:none;
  border-radius:4px;
  background:#b50000;
  color:#fff;
  font-weight:900;
  font-size:15px;
}

.form{
  padding:14px;
}
.cert-card{
  background:#fff;
  border-radius:18px;
  border:2px solid rgba(245,158,11,.60);
  padding:12px;
  position:relative;
}
.cert-title{
  text-align:center;
  color:var(--red);
  font-weight:900;
  font-size:18px;
  margin:6px 0 10px;
}
.cert-grid{
  display:grid;
  grid-template-columns:110px 1fr;
  row-gap:10px;
  column-gap:10px;
  font-size:13px;
}
.cert-grid .k{color:#6b7280}
.cert-grid .v{text-align:right;color:#111827;font-weight:800}
.cert-stamp{position:absolute;right:12px;bottom:86px;width:96px;opacity:.9}
.cert-mark{position:absolute;left:14px;top:62px;width:56px;opacity:.25}

.header-img-top{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(17,24,39,.06);
}

.big-img-page{padding:0 0 84px;background:#fff}
.big-img-page img{width:100%;height:auto;display:block}
