/* ========== 全局重置与基础 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
    background-color: #fff7f0;
    color: #3d2b1f;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

/* ========== 通用组件 ========== */
.card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 6px 0 #f0d5b8, 0 12px 24px rgba(201, 95, 13, 0.06);
    padding: 20px 18px;
    margin: 20px 0px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #c95f0d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.section-title i {
    font-size: 24px;
    width: 1em;
    text-align: center;
}

.subtitle {
    font-size: 13px;
    color: #a0806a;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background: #c95f0d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 36px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 0 #8e4207, 0 8px 20px rgba(201, 95, 13, 0.25);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #8e4207, 0 4px 12px rgba(201, 95, 13, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: #fff7f0;
    color: #c95f0d;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 28px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 0 #f0d5b8;
    border: 2px solid #f9cd9c;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.tag {
    display: inline-block;
    background: #fef3e8;
    color: #c95f0d;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 2px 2px;
    text-decoration: none;
}

.divider {
    height: 1px;
    background: #f5e0cc;
    margin: 16px 0;
    border: none;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.price-now {
    font-size: 18px;
    font-weight: 800;
    color: #c95f0d;
}

.price-original {
    font-size: 12px;
    color: #b8a090;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.cta-center {
    text-align: center;
    margin: 20px 0 8px;
}

@media (max-width: 768px) {
    .cta-center {
        display: none;
    }
}

/* ========== 页头 HERO ========== */
/* ========== 微信二维码区域 ========== */
.hero-qrcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-qrcode-img {
    width: 30%;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.hero-qrcode-img:active {
    transform: scale(0.97);
}
@media (max-width: 768px) {
    .hero-qrcode-img {
        width: 55%;
    }
}
.hero-qrcode-text {
    font-size: 12px;
    color: #8a6a50;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.hero-section {
    background: linear-gradient(165deg, #fff7f0 0%, #fef3e8 40%, #fde8d4 100%);
    border-radius: 40px;
    padding: 32px 20px 28px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 0 #f0d5b8, 0 16px 32px rgba(201,95,13,0.08);
    position: relative;
    overflow: hidden;
}

.hero-decoration-right,
.hero-decoration-left {
    position: absolute;
    background: #f9cd9c;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-decoration-right {
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    opacity: 0.5;
}

.hero-decoration-left {
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: #c95f0d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 34px;
    font-weight: 900;
    color: #3d2b1f;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 16px;
    color: #a0806a;
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-stats {
    font-size: 13px;
    color: #8a6a50;
    margin-bottom: 10px;
    line-height: 1.7;
}

.hero-stats strong {
    color: #c95f0d;
}

.hero-footer-text {
    font-size: 11px;
    color: #b8a090;
    margin-top: 12px;
}

/* ========== 数据条 ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.stat-item {
    background: #fff;
    border-radius: 20px;
    padding: 12px 8px;
    text-align: center;
    box-shadow: 0 4px 0 #f0d5b8;
}

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #c95f0d;
}

.stat-label {
    font-size: 10px;
    color: #a0806a;
}

/* ========== 痛点卡片 ========== */
.pain-card {
    background: #fff7f0;
    border-radius: 20px;
    padding: 14px 16px;
    margin-top: 8px;
}

.pain-title {
    font-size: 13px;
    color: #c95f0d;
    font-weight: 600;
}

.pain-list {
    font-size: 13px;
    color: #6b4f3a;
    margin-top: 6px;
}

/* ========== 科普区 ========== */
.edu-section {
    background: #fef3e8;
    border-radius: 28px;
    padding: 20px 18px;
    margin-bottom: 20px;
    box-shadow: 0 6px 0 #f0d5b8;
}

.edu-text {
    font-size: 13px;
    color: #6b4f3a;
    line-height: 1.8;
}

/* ========== 服务卡片（网格） ========== */
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 16px 14px;
    box-shadow: 0 5px 0 #f0d5b8;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 26px;
    margin-bottom: 6px;
    color: #c95f0d;
}

.service-name {
    font-size: 16px;
    font-weight: 700;
    color: #3d2b1f;
}

.service-effect {
    font-size: 11px;
    color: #a0806a;
    margin: 4px 0;
}

.service-duration {
    font-size: 11px;
    color: #b8a090;
}

.service-price {
    margin-top: 8px;
}

/* ========== 抢单列表 ========== */
.flash-section {
    background: #fff7f0;
    border-radius: 24px;
    padding: 14px 16px;
    box-shadow: 0 5px 0 #f0d5b8;
}

.flash-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f0d5b8;
}

.flash-item:last-child {
    border-bottom: none;
}

.flash-name {
    font-weight: 700;
    color: #3d2b1f;
    font-size: 15px;
}

.flash-desc {
    font-size: 11px;
    color: #a0806a;
    display: block;
}

.flash-price {
    text-align: right;
}

/* ========== 艾灸卡片 ========== */
.moxa-card {
    background: #fff;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 5px 0 #f0d5b8;
}

/* ========== 优惠券区 ========== */
.coupon-hero {
    background: linear-gradient(135deg, #c95f0d, #e07c2e);
    border-radius: 28px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 0 #8e4207, 0 16px 32px rgba(201,95,13,0.2);
    margin-bottom: 16px;
}

.coupon-hero-label {
    font-size: 13px;
    color: #fef3e8;
    font-weight: 500;
}

.coupon-hero-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.coupon-hero-desc {
    font-size: 14px;
    color: #fef3e8;
}

.coupon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.coupon-item {
    background: #fff;
    border-radius: 20px;
    padding: 12px 14px;
    box-shadow: 0 4px 0 #f0d5b8;
    border-left: 4px solid #c95f0d;
}

.coupon-value {
    font-size: 18px;
    font-weight: 800;
    color: #c95f0d;
}

.coupon-condition {
    font-size: 11px;
    color: #a0806a;
}

/* ========== 会员区 ========== */
.member-block {
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 6px 0 #f0d5b8;
    margin-bottom: 16px;
}

.member-title {
    font-size: 16px;
    font-weight: 700;
    color: #c95f0d;
    margin-bottom: 10px;
}

.member-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.member-level {
    background: #fef3e8;
    border-radius: 18px;
    padding: 12px;
    text-align: center;
}

.member-level-name {
    font-weight: 800;
    color: #c95f0d;
    font-size: 15px;
}

.member-level-info {
    font-size: 12px;
    color: #6b4f3a;
}

.member-level-note {
    font-size: 10px;
    color: #a0806a;
}

.member-ordinary .member-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.member-card {
    background: #fff7f0;
    border-radius: 16px;
    padding: 10px 8px;
    text-align: center;
}

.member-card.highlight {
    border: 2px solid #f9cd9c;
}

.member-card-name {
    font-weight: 700;
    font-size: 14px;
}

.member-card-price {
    font-size: 12px;
    color: #c95f0d;
    font-weight: 700;
}

.member-card-original {
    font-size: 10px;
    color: #b8a090;
}

.member-note {
    font-size: 11px;
    color: #a0806a;
    margin-top: 10px;
    text-align: center;
}

/* ========== 服务流程 ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
}

.process-step {
    background: #fef3e8;
    border-radius: 20px;
    padding: 14px 6px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-icon {
    font-size: 24px;
    color: #c95f0d;
}

.process-label {
    font-size: 11px;
    font-weight: 600;
    color: #3d2b1f;
    margin-top: 4px;
}

/* ========== 优势卡片 ========== */
.advantage-card {
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 5px 0 #f0d5b8;
}

.advantage-icon {
    font-size: 24px;
    color: #c95f0d;
}

.advantage-title {
    font-weight: 700;
    font-size: 15px;
    margin: 4px 0;
}

.advantage-text {
    font-size: 12px;
    color: #a0806a;
}

/* ========== 城市标签 ========== */
.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ========== 关于我们 ========== */
.about-text {
    font-size: 13px;
    color: #6b4f3a;
    line-height: 1.8;
}

.about-legal {
    font-size: 11px;
    color: #b8a090;
    margin-top: 12px;
}

/* ========== 安全提示 ========== */
.safety-box {
    background: #fef3e8;
    border-radius: 24px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 5px 0 #f0d5b8;
}

.safety-title {
    font-size: 14px;
    font-weight: 700;
    color: #c95f0d;
    margin-bottom: 8px;
}

.safety-text {
    font-size: 11px;
    color: #6b4f3a;
    line-height: 1.8;
}

/* ========== 购买须知 ========== */
.notice-box {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 5px 0 #f0d5b8;
}

.notice-title {
    font-size: 14px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 8px;
}

.notice-text {
    font-size: 11px;
    color: #6b4f3a;
    line-height: 1.8;
}

/* ========== 底部 CTA ========== */
.final-cta {
    text-align: center;
    margin-top: 28px;
    padding: 20px 0 8px;
}

.final-cta-box {
    background: linear-gradient(135deg, #c95f0d, #e07c2e);
    border-radius: 32px;
    padding: 24px 20px;
    box-shadow: 0 8px 0 #8e4207, 0 20px 40px rgba(201,95,13,0.2);
}

.final-cta-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.final-cta-desc {
    font-size: 13px;
    color: #fef3e8;
    margin-bottom: 16px;
}

.final-cta .btn-primary {
    background: #ffffff;
    color: #c95f0d;
    box-shadow: 0 5px 0 #f9cd9c;
    font-size: 17px;
    padding: 14px 40px;
}

.final-cta-footnote {
    font-size: 10px;
    color: #fef3e8;
    margin-top: 12px;
    opacity: 0.8;
}

.copyright {
    font-size: 10px;
    color: #c0a890;
    margin-top: 16px;
}

/* ========== 头部 ========== */
.site-header {
    max-width: 640px;
    margin: 0 auto;
    background: #fff7f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* box-shadow: 0 2px 0 #f0d5b8; */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.header-title {
    font-size: 18px;
    font-weight: 700;
    color: #c95f0d;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #c95f0d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 0 #8e4207;
}

/* ========== 页脚 ========== */
.site-footer {
    background: #fff7f0;
    padding: 20px 16px;
    text-align: center;
    font-size: 11px;
    color: #b8a090;
    border-top: 1px solid #f5e0cc;
}

.site-footer a {
    color: #c95f0d;
    text-decoration: none;
}

/* ========== 按摩实景图模块 ========== */
.real-scene-section {
    margin-bottom: 20px;
}

.real-scene-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.real-scene-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 0 #f0d5b8, 0 8px 16px rgba(201, 95, 13, 0.08);
    background: #fff7f0;
    aspect-ratio: 1 / 1; /* 正方形比例，可根据需要调整 */
    transition: transform 0.2s ease;
}

.real-scene-item:active {
    transform: scale(0.97);
}

.real-scene-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== 首页 Post 模块 ========== */
.post-home .section-title i { color: #c95f0d; }

.post-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.post-home-item {
    display: flex;
    flex-direction: column;
    background: #fff7f0;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 0 #f0d5b8;
    transition: transform 0.2s ease;
}

.post-home-item:active { transform: scale(0.98); }

.post-home-item__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #fef3e8;
    overflow: hidden;
}

.post-home-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-home-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f9cd9c;
    background: linear-gradient(135deg, #fef3e8, #fde8d4);
}

.post-home-item__body {
    padding: 10px 12px 12px;
}

.post-home-item__meta {
    font-size: 10px;
    color: #a0806a;
    margin-bottom: 4px;
}

.post-home-item__title {
    font-size: 13px;
    font-weight: 700;
    color: #3d2b1f;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-home-item__excerpt {
    font-size: 11px;
    color: #a0806a;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 标签云 ========== */
.post-home-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-home-tags__label {
    font-size: 12px;
    color: #a0806a;
    font-weight: 600;
}

.post-home-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.post-home-tags__list .tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag__count {
    font-size: 9px;
    background: #c95f0d;
    color: #fff;
    padding: 0 5px;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1.5;
}

/* ========== 文章列表 ========== */
.post-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post-item__media {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #fff7f0;
    box-shadow: 0 4px 0 #f0d5b8;
}

.post-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-item__body { display: flex; flex-direction: column; }

.post-item__meta {
    font-size: 12px;
    color: #a0806a;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.post-item__meta i { color: #c95f0d; }

.post-item__title {
    font-size: 18px;
    font-weight: 800;
    color: #3d2b1f;
    line-height: 1.4;
    margin-bottom: 8px;
}

.post-item__title a { color: inherit; text-decoration: none; }
.post-item__title a:hover { color: #c95f0d; }

.post-item__excerpt {
    font-size: 13px;
    color: #6b4f3a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.post-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.post-item__more {
    align-self: flex-start;
    font-size: 13px;
    font-weight: 700;
    color: #c95f0d;
    text-decoration: none;
}

/* ========== 分页 ========== */
.pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.pager__info {
    font-size: 12px;
    color: #a0806a;
    font-weight: 600;
}

.pager__disabled { opacity: 0.4; pointer-events: none; }

.post-tag-cloud .section-title { margin-bottom: 10px; }

/* ========== 文章详情 ========== */
.post-cover { padding: 10px; }
.post-cover img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.post-content {
    font-size: 15px;
    color: #3d2b1f;
    line-height: 1.9;
    word-break: break-word;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: #c95f0d;
    font-weight: 800;
    margin: 22px 0 10px;
    letter-spacing: 0.5px;
}
.post-content h2 { font-size: 19px; }
.post-content h3 { font-size: 17px; }
.post-content h4 { font-size: 15px; }
.post-content p { margin-bottom: 14px; }

.post-content a {
    color: #c95f0d;
    text-decoration: none;
    border-bottom: 1px dashed #f9cd9c;
}

.post-content img {
    max-width: 100%;
    border-radius: 16px;
    display: block;
    margin: 16px auto;
    box-shadow: 0 4px 0 #f0d5b8;
}

.post-content blockquote {
    background: #fef3e8;
    border-left: 4px solid #c95f0d;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 13px;
    color: #6b4f3a;
}

.post-content code {
    background: #fef3e8;
    color: #c95f0d;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 13px;
}

.post-content pre {
    background: #3d2b1f;
    color: #fff7f0;
    padding: 14px;
    border-radius: 16px;
    overflow-x: auto;
    margin: 16px 0;
    font-size: 13px;
    line-height: 1.7;
}
.post-content pre code { background: none; color: inherit; padding: 0; }

.post-content ul, .post-content ol { padding-left: 20px; margin-bottom: 14px; }
.post-content li { margin-bottom: 6px; }

.post-content hr {
    height: 1px;
    background: #f5e0cc;
    border: none;
    margin: 20px 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13px;
}
.post-content th, .post-content td {
    border: 1px solid #f0d5b8;
    padding: 8px 10px;
    text-align: left;
}
.post-content th { background: #fef3e8; color: #c95f0d; font-weight: 700; }

/* ========== 上下篇 ========== */
.post-nav { margin-top: 16px; }
.post-nav__link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

@media (max-width: 400px) {
    .post-home-grid { grid-template-columns: 1fr; }
}
/* ========== 标签总览页 terms ========== */
.term-top { margin-bottom: 20px; }

.term-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.term-top-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff7f0, #fef3e8);
    border-radius: 22px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 0 #f0d5b8;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.term-top-card:active { transform: scale(0.97); }

.term-top-card::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f9cd9c;
    opacity: 0.35;
}

.term-top-card__hash {
    font-size: 26px;
    font-weight: 900;
    color: #c95f0d;
    line-height: 1;
    opacity: 0.55;
}

.term-top-card__body { flex: 1; min-width: 0; }

.term-top-card__name {
    font-size: 15px;
    font-weight: 800;
    color: #3d2b1f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.term-top-card__count {
    font-size: 11px;
    color: #a0806a;
    font-weight: 600;
}

.term-top-card__arrow {
    color: #c95f0d;
    font-size: 12px;
    opacity: 0.7;
}

/* 全部标签列表 */
.term-all { margin-top: 4px; }

.term-rows {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.term-row__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 3px 0 #f0d5b8;
    transition: transform 0.15s ease;
}

.term-row__link:active { transform: translateY(2px); }

.term-row__name {
    font-size: 13px;
    font-weight: 700;
    color: #3d2b1f;
    flex: 0 0 auto;
    max-width: 45%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.term-row__bar {
    flex: 1;
    height: 6px;
    background: #fef3e8;
    border-radius: 6px;
    overflow: hidden;
    min-width: 30px;
}

.term-row__fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #f9cd9c, #c95f0d);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.term-row__count {
    font-size: 11px;
    font-weight: 800;
    color: #c95f0d;
    min-width: 22px;
    text-align: right;
}

/* ========== 标签详情页 taxonomy ========== */
.tag--active {
    background: #c95f0d;
    color: #fff;
    font-weight: 700;
}