@charset "utf-8";
/* ===========================================================
   拓朴认证有限公司 · 移动端 H5 样式
   主色：香槟金 #c49a6b   辅助：深蓝 #1c3d7a（企业 logo 色）
   适配：以 375px 为基准，使用 px + 少量 vw，兼容到 320px
   =========================================================== */

:root {
    --gold: #c49a6b;
    --gold-d: #ab8153;
    --gold-l: #f3ece3;
    --navy: #1c3d7a;
    --ink: #211d1e;
    --text: #4d4d4d;
    --muted: #8c8c8c;
    --line: #ebebeb;
    --bg: #f5f6f8;
    --white: #fff;
    --hd-h: 52px;
    --bar-h: 54px;
    --radius: 8px;
    --shadow: 0 1px 6px rgba(0, 0, 0, .06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    padding: var(--hd-h) 0 var(--bar-h);
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue",
        "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    word-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 10px;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: 15px;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

/* ===================== 顶部固定栏 ===================== */
.hd {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--hd-h);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
    padding-top: env(safe-area-inset-top);
}

.hd-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.hd-logo img {
    max-height: 32px;
    width: auto;
}

.hd-menu {
    width: 40px;
    height: 40px;
    margin-right: -8px;
    padding: 0;
    border: 0;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.hd-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: .25s;
}

.hd-menu.on span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hd-menu.on span:nth-child(2) {
    opacity: 0;
}

.hd-menu.on span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================== 抽屉导航 ===================== */
.mask {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .28s;
}

.mask.on {
    opacity: 1;
    visibility: visible;
}

.nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 102;
    width: 78%;
    max-width: 320px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .12);
    overflow: hidden;
}

.nav.on {
    transform: translateX(0);
}

.nav-hd {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    padding-top: calc(14px + env(safe-area-inset-top));
}

.nav-hd img {
    max-height: 30px;
}

.nav-close {
    width: 32px;
    height: 32px;
    border: 0;
    background: var(--bg);
    border-radius: 50%;
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.nav-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.nav-list > li {
    border-bottom: 1px solid var(--line);
}

.nav-list > li > a {
    display: block;
    padding: 13px 46px 13px 16px;
    font-size: 15.5px;
    color: var(--ink);
    position: relative;
}

.nav-list > li.cur > a {
    color: var(--gold-d);
    font-weight: 600;
}

.nav-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-arrow::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--muted);
    border-bottom: 1.5px solid var(--muted);
    transform: rotate(45deg);
    transition: .25s;
    margin-top: -3px;
}

.nav-list > li.open .nav-arrow::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.nav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
    background: #fafafa;
}

.nav-list > li.open .nav-sub {
    max-height: 600px;
}

.nav-sub li a {
    display: block;
    padding: 10px 16px 10px 30px;
    font-size: 14px;
    color: #666;
    border-top: 1px dashed #eee;
}

.nav-sub li a:active {
    color: var(--gold-d);
}

.nav-hot > a {
    color: #d94040 !important;
    font-weight: 600;
}

/* ===================== 页面头部 / 面包屑 ===================== */
.hero {
    position: relative;
    height: 150px;
    background: #ddd center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .5));
}

.hero-txt {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 18px;
    padding: 0 16px;
    color: #fff;
}

.hero-txt h1 {
    font-size: 21px;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

.hero-txt p {
    margin: 2px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 12.5px;
    color: var(--muted);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    white-space: nowrap;
}

.crumb a {
    color: var(--muted);
}

.crumb i {
    font-style: normal;
    color: #ccc;
}

/* ===================== 通用区块 ===================== */
.sec {
    margin-top: 10px;
    background: var(--white);
    padding: 20px 16px;
}

.sec:first-child {
    margin-top: 0;
}

.sec-hd {
    text-align: center;
    margin-bottom: 16px;
}

.sec-hd h2 {
    font-size: 19px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.sec-hd h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 28px;
    height: 2px;
    margin-left: -14px;
    background: var(--gold);
}

.sec-hd p {
    margin: 6px 0 0;
    font-size: 11.5px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sec-hd.left {
    text-align: left;
}

.sec-hd.left h2::after {
    left: 0;
    margin-left: 0;
}

/* ===================== 首页轮播 ===================== */
.slider {
    position: relative;
    background: #2b2b2b;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform .4s ease;
    will-change: transform;
}

.slider-track > a {
    flex: 0 0 100%;
    display: block;
    height: 32.3vw;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.slider-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    transition: .25s;
}

.slider-dots i.on {
    background: var(--gold);
    width: 16px;
    border-radius: 3px;
}

/* ===================== 首页四宫格 ===================== */
.quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    padding: 18px 4px;
    gap: 4px;
}

.quick a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quick img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.quick span {
    font-size: 12.5px;
    color: var(--ink);
}

.quick a:active span {
    color: var(--gold-d);
}

/* ===================== 服务项目横滑 ===================== */
.scroller {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.scroller::-webkit-scrollbar {
    display: none;
}

.scroller .card {
    flex: 0 0 62%;
    scroll-snap-align: start;
    background: linear-gradient(135deg, #fdfbf8, var(--gold-l));
    border: 1px solid #efe6da;
    border-radius: var(--radius);
    padding: 18px 14px;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
}

.scroller .card:active {
    border-color: var(--gold);
}

/* ===================== 新闻 Tab ===================== */
.tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tabs li {
    flex: none;
    padding: 11px 12px;
    font-size: 14px;
    color: var(--muted);
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.tabs li.on {
    color: var(--ink);
    font-weight: 600;
}

.tabs li.on::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 22px;
    height: 2px;
    margin-left: -11px;
    background: var(--gold);
    border-radius: 2px;
}

/* 新闻条目 */
.nlist li {
    border-bottom: 1px dashed var(--line);
}

.nlist li:last-child {
    border-bottom: 0;
}

.nlist a {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    align-items: flex-start;
}

.ndate {
    flex: none;
    width: 52px;
    text-align: center;
    border-right: 1px solid var(--line);
    padding-right: 10px;
}

.ndate em {
    display: block;
    font-style: normal;
    font-size: 17px;
    font-weight: 700;
    color: var(--gold-d);
    line-height: 1.2;
}

.ndate span {
    display: block;
    font-size: 11px;
    color: var(--muted);
}

.ntext {
    flex: 1;
    min-width: 0;
}

.ntext h5 {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
}

.ntext p {
    margin: 5px 0 0;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nmore {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 13.5px;
    color: var(--gold-d);
    border: 1px solid var(--gold);
    border-radius: 40px;
    padding: 9px 0;
}

.nmore:active {
    background: var(--gold);
    color: #fff;
}

/* ===================== 关于我们 ===================== */
.about-txt {
    font-size: 14px;
    line-height: 1.85;
    color: #5a5a5a;
}

.about-txt p {
    margin-bottom: 12px;
}

.about-txt img {
    border-radius: 6px;
    margin: 6px 0;
}

.about-txt span,
.about-txt font {
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}

/* ===================== 联系 / 二维码 ===================== */
.qr-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 18px;
}

.qr-row figure {
    margin: 0;
    text-align: center;
    flex: 1;
    max-width: 132px;
}

.qr-row img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 4px;
    background: #fff;
}

.qr-row figcaption {
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
}

.clist li {
    display: flex;
    gap: 10px;
    padding: 11px 0;
    border-top: 1px dashed var(--line);
    font-size: 13.5px;
}

.clist li:first-child {
    border-top: 0;
}

.clist .ci {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-l);
    color: var(--gold-d);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.clist .ct {
    flex: none;
    width: 62px;
    color: var(--muted);
}

.clist .cv {
    flex: 1;
    color: var(--ink);
    min-width: 0;
}

.clist .cv a {
    color: var(--navy);
}

/* ===================== 栏目页（二级栏目卡片） ===================== */
.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.grid2 a {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: block;
}

.grid2 .thumb {
    height: 96px;
    background: #eee center/cover no-repeat;
}

.grid2 .txt {
    padding: 10px 11px 12px;
}

.grid2 .txt strong {
    display: block;
    font-size: 14.5px;
    color: var(--ink);
    font-weight: 600;
}

.grid2 .txt span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.grid2 a:active {
    box-shadow: 0 2px 12px rgba(196, 154, 107, .3);
}

/* ===================== 列表页 ===================== */
.sublist {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 11px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.sublist::-webkit-scrollbar {
    display: none;
}

.sublist a {
    flex: none;
    padding: 6px 14px;
    font-size: 13px;
    color: #666;
    background: var(--bg);
    border-radius: 30px;
    white-space: nowrap;
}

.sublist a.on {
    background: var(--gold);
    color: #fff;
}

/* ===================== 详情页 ===================== */
.art {
    background: var(--white);
    padding: 18px 16px 24px;
}

.art-hd {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 16px;
}

.art-hd h1 {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.art-meta {
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: var(--muted);
}

.art-body {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    overflow-x: auto;
}

.art-body p {
    margin-bottom: 14px;
}

.art-body img {
    display: block;
    margin: 12px auto;
    border-radius: 6px;
    max-width: 100%;
    height: auto;
}

.art-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 12px 0;
}

.art-body td,
.art-body th {
    border: 1px solid var(--line);
    padding: 7px 8px;
}

.art-body span,
.art-body font {
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}

.art-body * {
    max-width: 100% !important;
}

/* ===================== 表单（查询/留言/登录） ===================== */
.form-card {
    background: var(--white);
    padding: 20px 16px;
}

.form-card h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 6px;
}

.form-card .sub {
    text-align: center;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 18px;
}

.fld {
    margin-bottom: 14px;
}

.fld label {
    display: block;
    font-size: 13.5px;
    color: var(--ink);
    margin-bottom: 7px;
}

.fld label i {
    color: #e2574c;
    font-style: normal;
    margin-right: 3px;
}

.fld input[type=text],
.fld input[type=password],
.fld input[type=email],
.fld input[type=tel],
.fld input[type=number],
.fld textarea,
.fld select {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
    font-size: 15px;
    color: var(--ink);
    transition: .2s;
}

.fld input:focus,
.fld textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

.fld textarea {
    min-height: 92px;
    resize: vertical;
}

.fld-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.fld-row input[type=text] {
    flex: 1;
    min-width: 0;
}

.captcha-img {
    flex: none;
    height: 43px;
    width: 100px;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
    object-fit: cover;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    border: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-d));
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(196, 154, 107, .35);
}

.btn:active {
    opacity: .88;
}

.btn.ghost {
    background: none;
    color: var(--gold-d);
    border: 1px solid var(--gold);
    box-shadow: none;
}

.tips {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 14px;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
}

/* 查询结果 */
.result {
    margin-top: 18px;
}

.result .rh {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    padding-left: 9px;
    border-left: 3px solid var(--gold);
}

.result .rb {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    word-break: break-all;
}

.result .rb span {
    display: block !important;
    font-size: 13.5px !important;
    line-height: 1.75 !important;
    padding: 11px 13px !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
    background: var(--gold-l) !important;
    color: #6b5334 !important;
}

.result .rb .ok {
    background: #eaf7ee !important;
    color: #1f7a44 !important;
}

.result .rb .err {
    background: #fdeceb !important;
    color: #c0392b !important;
}

.result .rb.err {
    color: #c0392b;
    background: #fdeceb;
    border-radius: 6px;
    padding: 10px 13px;
    font-size: 13.5px;
}

/* ===================== 分页 ===================== */
.pager {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    padding: 18px 16px 6px;
}

.pager a {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    color: #555;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.pager a.cpb {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 600;
}

/* ===================== 友情链接 ===================== */
.links {
    margin-top: 10px;
    background: var(--white);
    padding: 16px;
}

.links h3 {
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 10px;
    padding-left: 9px;
    border-left: 3px solid var(--gold);
    line-height: 1.2;
}

.links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.links li a {
    display: inline-block;
    padding: 5px 11px;
    font-size: 12.5px;
    color: #666;
    background: var(--bg);
    border-radius: 4px;
}

/* ===================== 页脚 ===================== */
.ft {
    background: #2a2a2a;
    color: rgba(255, 255, 255, .62);
    padding: 22px 16px calc(22px + env(safe-area-inset-bottom));
    font-size: 12.5px;
    line-height: 1.9;
    text-align: center;
    margin-top: 10px;
}

.ft p {
    margin: 0;
}

.ft a {
    color: rgba(255, 255, 255, .62);
}

.ft .cp {
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    margin-bottom: 4px;
}

/* ===================== 底部固定工具条 ===================== */
.bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    height: var(--bar-h);
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 -1px 8px rgba(0, 0, 0, .05);
}

.bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 11px;
    color: #666;
}

.bar a svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-d);
}

.bar a:active {
    background: var(--gold-l);
}

/* 回到顶部 */
.totop {
    position: fixed;
    right: 12px;
    bottom: calc(var(--bar-h) + 14px + env(safe-area-inset-bottom));
    z-index: 98;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    padding: 0;
}

.totop.on {
    opacity: 1;
    visibility: visible;
}

.totop svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-d);
}

/* 微信弹层 */
.pop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.pop.on {
    opacity: 1;
    visibility: visible;
}

.pop-box {
    width: 74%;
    max-width: 290px;
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    text-align: center;
}

.pop-box img {
    width: 100%;
    border-radius: 6px;
}

.pop-box p {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--ink);
}

.pop-box small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

/* ===================== 空状态 ===================== */
.empty {
    padding: 46px 16px;
    text-align: center;
    color: var(--muted);
    font-size: 13.5px;
    background: #fff;
}

.empty::before {
    content: "";
    display: block;
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--bg);
}

/* ===================== 会员中心 ===================== */
.ucard {
    background: linear-gradient(135deg, var(--gold), var(--gold-d));
    color: #fff;
    padding: 22px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ucard img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    object-fit: cover;
    background: #fff;
}

.ucard .un {
    font-size: 17px;
    font-weight: 600;
}

.ucard .ui {
    font-size: 12.5px;
    opacity: .9;
}

.menu-list {
    background: #fff;
    margin-top: 10px;
}

.menu-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.menu-list a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #ccc;
    border-bottom: 1.5px solid #ccc;
    transform: rotate(-45deg);
    flex: none;
}

.menu-list a:last-child {
    border-bottom: 0;
}

/* ===================== 其它 ===================== */
.hide {
    display: none !important;
}

.tc {
    text-align: center;
}

.mt10 {
    margin-top: 10px;
}

@media (max-width: 340px) {
    body {
        font-size: 14px;
    }

    .quick img {
        width: 40px;
        height: 40px;
    }

    .quick span {
        font-size: 11.5px;
    }

    .tabs li {
        padding: 11px 9px;
        font-size: 13px;
    }
}

@media (min-width: 560px) {
    .slider-track > a {
        height: 220px;
    }

    .hero {
        height: 190px;
    }
}
