body.home-body {
    margin: 0;
    background: #f7f7f7;
    color: #222;
    font-size: 14px;
}

a {
    text-decoration: none;
}

.home-page {
    max-width: 640px;
    margin: 0 auto;
    min-height: 100vh;
    background: #fff;
}

.home-top {
    background: linear-gradient(135deg, #d7232a, #ff4b52);
    padding: 14px 14px 16px;
    color: #fff;
}

.home-hero {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 8px 20px rgba(215, 35, 42, 0.18);
}

.home-hero-main {
    position: relative;
    z-index: 2;
}

.hero-decor {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    z-index: 1;
}

.hero-decor.decor-one {
    width: 130px;
    height: 130px;
    top: -58px;
    right: -26px;
}

.hero-decor.decor-two {
    width: 88px;
    height: 88px;
    top: 38px;
    right: 58px;
}

.hero-decor.decor-three {
    width: 56px;
    height: 56px;
    top: 6px;
    left: -18px;
}

.mall-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mall-title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

.hero-sub-title {
    margin: -4px 0 10px;
    font-size: 13px;
    opacity: 0.9;
}

.search-bar {
    display: flex;
    gap: 8px;
}

.hero-search-bar .form-control {
    border: 0;
    border-radius: 999px;
    height: 40px;
}

.hero-search-bar .btn {
    border-radius: 999px;
    min-width: 44px;
}

.banner-wrap {
    padding: 12px 12px 10px;
}

.banner-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.banner-placeholder {
    height: 160px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff595f, #d32228);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon-nav {
    padding: 0 12px 10px;
}

.icon-nav-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    height: 72px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff7f7 0%, #fff0f0 100%);
    color: #d7232a;
    border: 1px solid #ffe3e3;
    box-shadow: 0 4px 10px rgba(215, 35, 42, 0.06);
}

.icon-nav-item i {
    font-size: 20px;
}

.promo-area {
    padding: 0 12px 12px;
}

.promo-card {
    border-radius: 12px;
    padding: 14px;
    background: linear-gradient(90deg, #d7232a, #ff4b52);
    color: #fff;
}

.promo-card-beauty {
    position: relative;
    overflow: hidden;
}

.promo-decor {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.promo-decor.decor-left {
    width: 110px;
    height: 110px;
    left: -36px;
    top: -44px;
}

.promo-decor.decor-right {
    width: 74px;
    height: 74px;
    right: -20px;
    bottom: -26px;
}

.promo-title {
    font-size: 18px;
    font-weight: 700;
}

.promo-sub {
    margin-top: 4px;
    opacity: 0.95;
}

/* 商品区：标题 + 列表（list/grid 由 .goods-style-list / .goods-style-grid 控制） */
.goods-section {
    padding: 0 12px 16px;
}

.goods-list {
    padding: 0;
}

.goods-list__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.goods-card {
    margin: 0;
}

.goods-style-list .goods-list__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.goods-style-list .goods-card .goods-item {
    margin-bottom: 10px;
}

.goods-style-list .goods-card:last-child .goods-item {
    margin-bottom: 0;
}

.goods-style-grid .goods-list__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.goods-style-grid .goods-card .goods-item {
    flex-direction: column;
    margin-bottom: 0;
    height: 100%;
}

.goods-style-grid .goods-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.goods-style-grid .goods-info h3 {
    min-height: auto;
    -webkit-line-clamp: 2;
}

/* 首页横向商品条 */
.goods-carousel-section {
    padding: 0 12px 16px;
}

.goods-carousel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 2px;
}

.goods-carousel-head__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    padding-left: 12px;
    position: relative;
}

.goods-carousel-head__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff6b64, #e52f2f);
}

.goods-carousel-head__sub {
    margin: 4px 0 0;
    font-size: 12px;
    color: #999;
}

.goods-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin: 0 -12px;
    padding: 0 12px 4px;
}

.goods-carousel__track {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: max-content;
    padding-bottom: 2px;
}

.goods-carousel__cell {
    flex: 0 0 auto;
    width: 90px;
}

.goods-carousel-card {
    display: block;
    border: 1px solid #f0f0f0;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    color: #222;
    text-decoration: none;
}

.goods-carousel-card__thumb {
    width: 100%;
    aspect-ratio: 1;
    background: #fafafa;
    overflow: hidden;
}

.goods-carousel-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goods-carousel-card__body {
    padding: 8px;
}

.goods-carousel-card__title {
    font-size: 12px;
    line-height: 1.35;
    margin: 0 0 6px;
    max-height: 2.7em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.goods-carousel-card__price {
    font-size: 14px;
    font-weight: 600;
    color: #cf1f26;
}

.goods-carousel-empty {
    font-size: 13px;
    color: #999;
    padding: 8px 2px;
}

/* 横向滚动区 1：热销 — 暖色、光感卡片 */
.goods-carousel-section-1 {
    padding: 14px 12px 18px;
    margin: 0 0 2px;
    background: linear-gradient(180deg, #fff8f3 0%, #fff 52%);
    border-radius: 0 0 18px 18px;
}

.goods-carousel-section-1 .goods-carousel-head {
    margin-bottom: 12px;
}

.goods-carousel-section-1 .goods-carousel-head__title {
    color: #9a3412;
}

.goods-carousel-section-1 .goods-carousel-head__title::before {
    height: 18px;
    top: 2px;
    background: linear-gradient(180deg, #fb923c, #ea580c);
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
}

.goods-carousel-section-1 .goods-carousel-head__sub {
    color: #c2410c;
    opacity: 0.88;
}

.goods-carousel-section-1 .goods-carousel {
    padding-bottom: 8px;
}

.goods-carousel-section-1 .goods-carousel-card {
    border: none;
    background: linear-gradient(160deg, #ffffff 0%, #fff7ed 100%);
    box-shadow:
        0 4px 18px rgba(234, 88, 12, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.goods-carousel-section-1 .goods-carousel-card:active {
    transform: scale(0.98);
}

.goods-carousel-section-1 .goods-carousel-card__thumb {
    position: relative;
}

.goods-carousel-section-1 .goods-carousel-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 50%, rgba(234, 88, 12, 0.07) 100%);
    border-radius: 0;
}

.goods-carousel-section-1 .goods-carousel-card__price {
    color: #c2410c;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.goods-carousel-section-1 .goods-carousel-empty {
    color: #b45309;
    opacity: 0.75;
}

/* 横向滚动区 2：促销 — 冷紫、券感描边 */
.goods-carousel-section-2 {
    padding: 14px 12px 18px;
    margin: 0 0 2px;
    background: linear-gradient(180deg, #f5f3ff 0%, #fff 52%);
    border-radius: 0 0 18px 18px;
}

.goods-carousel-section-2 .goods-carousel-head__title {
    color: #3730a3;
}

.goods-carousel-section-2 .goods-carousel-head__title::before {
    height: 18px;
    top: 2px;
    background: linear-gradient(180deg, #818cf8, #4f46e5);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.38);
}

.goods-carousel-section-2 .goods-carousel-head__sub {
    color: #6d28d9;
    opacity: 0.85;
}

.goods-carousel-section-2 .goods-carousel-card {
    border: 1px dashed rgba(99, 102, 241, 0.5);
    background: linear-gradient(165deg, #ffffff 0%, #faf5ff 100%);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.goods-carousel-section-2 .goods-carousel-card:active {
    transform: scale(0.98);
}

.goods-carousel-section-2 .goods-carousel-card__body {
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05));
}

.goods-carousel-section-2 .goods-carousel-card__price {
    color: #7c3aed;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.goods-carousel-section-2 .goods-carousel-empty {
    color: #6d28d9;
    opacity: 0.7;
}

.category-goods-wrap .goods-section {
    padding: 0;
}

.category-goods-wrap .goods-list {
    padding: 0;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 6px 0 10px;
}

.section-title-featured {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 2px;
}

.section-title-featured span {
    position: relative;
    display: inline-block;
    padding-left: 12px;
}

.section-title-featured span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff6b64, #e52f2f);
}

.section-title-featured small {
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

.goods-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 10px;
    color: #222;
    background: #fff;
}

.goods-info {
    flex: 1;
    min-width: 0;
}

.goods-thumb {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    background: #fafafa;
    flex-shrink: 0;
}

.goods-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goods-thumb-empty,
.detail-img-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 24px;
    background: #f5f5f5;
}

.goods-info h3 {
    margin: 2px 0 6px;
    font-size: 15px;
    line-height: 1.4;
    min-height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sub-title {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.price {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    color: #cf1f26;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    background: linear-gradient(135deg, #fff5f5, #ffecec);
    border: 1px solid #ffd7d9;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 9px;
    border-radius: 14px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    color: #fff;
    background: linear-gradient(135deg, #ff5640, #d7232a);
}

.category-layout {
    display: grid;
    grid-template-columns: 92px 1fr;
    min-height: 480px;
}

.category-sidebar {
    background: #f7f7f7;
    border-right: 1px solid #ececec;
}

.category-link {
    display: block;
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #efefef;
}

.category-link.active {
    color: #d7232a;
    background: #fff;
    border-left: 3px solid #d7232a;
}

.category-content {
    padding: 10px;
}

.category-goods-item {
    margin-bottom: 8px;
}

.category-content .goods-style-grid .goods-card .category-goods-item {
    margin-bottom: 0;
}

.category-goods-item .goods-info {
    min-width: 0;
}

.category-goods-item .goods-thumb {
    width: 92px;
    height: 92px;
}

.category-content .goods-style-grid .category-goods-item .goods-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.category-goods-item .goods-info h3 {
    font-size: 14px;
    margin-bottom: 4px;
}

.category-goods-item .sub-title {
    font-size: 12px;
    margin-bottom: 8px;
}

.category-goods-item .price-row {
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.category-goods-item .price {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    font-size: 13px;
    font-weight: 600;
    padding: 2px 6px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-goods-item .buy-btn {
    flex-shrink: 0;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
}

.page-head,
.detail-header {
    display: grid;
    grid-template-columns: minmax(44px, auto) 1fr minmax(44px, auto);
    align-items: center;
    gap: 4px;
    padding: 8px 6px;
    border-bottom: 1px solid #f1f1f1;
}

.page-head-spaced {
    margin-bottom: 10px;
}

.page-head-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}

.page-head-side-left {
    justify-self: start;
}

.page-head-side-right {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 44px;
    min-height: 40px;
}

.page-head-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #212121;
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
}

.page-head-back:hover {
    color: #000;
}

.page-head-action,
.head-link {
    color: #d7232a;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    padding: 6px 4px;
}

.page-head-action:hover,
.head-link:hover {
    color: #b01b21;
}

.page-head-records-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #333333;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
}

.page-head-records-link:hover {
    color: #d7232a;
}

/* 账户：各类业务记录列表（与 points-list 共用骨架） */
.account-record-list .point-balance {
    white-space: normal;
    text-align: right;
    max-width: 62%;
}

.account-record-extra {
    padding-top: 2px;
}

.account-record-line {
    font-size: 12px;
    color: #777;
    line-height: 1.45;
    word-break: break-all;
}

.account-record-voucher-link {
    font-size: 13px;
    color: #d7232a;
    text-decoration: none;
}

.account-record-voucher-link:hover {
    text-decoration: underline;
}

.back-btn {
    color: #212121;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 15px;
}

.detail-gallery {
    padding: 10px 12px 0;
    position: relative;
}

.detail-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.detail-gallery .carousel-indicators {
    margin-bottom: 10px;
}

.detail-gallery .carousel-indicators button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.detail-gallery-count {
    position: absolute;
    right: 24px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 12px;
    font-size: 12px;
    padding: 2px 8px;
}

.detail-info {
    padding: 0 14px 10px;
}

.detail-info h1 {
    font-size: 19px;
    margin: 0;
    line-height: 1.4;
    min-height: 2.8em;
    max-height: 4.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.detail-price-bar {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff4d4f, #e02020);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-price-left {
    flex: 1;
    min-width: 0;
}

.price-main {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.detail-price-sub {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.price-market {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: line-through;
    font-size: 14px;
}

.price-limit-tag {
    display: inline-block;
    border-radius: 12px;
    padding: 1px 8px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    color: #fff;
}

.detail-title-row {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.detail-title-row h1 {
    flex: 1;
    min-width: 0;
}

.detail-share-btn {
    width: 52px;
    flex-shrink: 0;
    text-align: center;
    color: #666;
    font-size: 12px;
}

.detail-share-btn i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f4f5f7;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2px;
}

.detail-sub-title {
    margin-top: 6px;
    margin-bottom: 0;
}

.detail-meta-card {
    margin-top: 10px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 6px 10px;
}

.detail-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 1px solid #f2f2f2;
    color: #666;
    font-size: 14px;
}

.detail-meta-row:last-child {
    border-bottom: 0;
}

.meta-label {
    width: 34px;
    color: #999;
}

.meta-value {
    flex: 1;
}

.detail-tag {
    display: inline-block;
    border: 1px solid #ffbec1;
    color: #d7232a;
    border-radius: 10px;
    font-size: 12px;
    padding: 1px 6px;
}

.detail-content-text {
    margin-top: 10px;
    color: #666;
    line-height: 1.6;
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid #f0f0f0;
}

.detail-block-title {
    margin: 12px 0 6px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.detail-buy {
    padding: 12px 14px 76px;
}

.detail-qty-row {
    display: flex;
    align-items: center;
    width: 132px;
    gap: 6px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 18px;
    line-height: 1;
}

.detail-qty-input {
    text-align: center;
    width: 56px;
    padding: 4px 6px;
}

.detail-qty-select-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.detail-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 58px;
    z-index: 10;
    background: #fff;
    border-top: 1px solid #efefef;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
}

.detail-cart-entry {
    width: 74px;
    text-align: center;
    color: #333;
    font-size: 12px;
}

.detail-cart-entry i {
    display: block;
    font-size: 20px;
}

.detail-submit-btn {
    flex: 1;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-sheet-mask {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.detail-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 58px;
    z-index: 31;
    background: #fff;
    border-radius: 14px 14px 0 0;
    padding: 14px 14px 16px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    transform: translateY(110%);
    transition: transform 0.25s ease;
    box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.16);
}

.detail-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.detail-sheet-head strong {
    font-size: 16px;
}

.detail-sheet-close {
    border: 0;
    background: #f4f5f7;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #666;
}

body.detail-sheet-open {
    overflow: hidden;
}

body.detail-sheet-open .detail-sheet-mask {
    opacity: 1;
    pointer-events: auto;
}

body.detail-sheet-open .detail-sheet {
    transform: translateY(0);
}

.detail-sheet-spec-summary {
    font-size: 14px;
}

.detail-video-wrap {
    padding: 0 12px 10px;
}

.detail-video-inner {
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.detail-video {
    width: 100%;
    max-height: 220px;
    display: block;
    vertical-align: middle;
}

.detail-rich-images {
    margin-top: 10px;
}

.detail-rich-img-row {
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f7f7;
}

.detail-rich-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.spec-sku-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-sku-chip {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    text-align: left;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    font-size: 14px;
    line-height: 1.35;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.spec-sku-chip .spec-sku-chip-label {
    display: block;
    font-weight: 500;
    color: #333;
}

.spec-sku-chip .spec-sku-chip-price {
    display: inline-block;
    margin-top: 4px;
    color: #d7232a;
    font-weight: 600;
    font-size: 15px;
}

.spec-sku-chip .spec-sku-chip-stock {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #888;
}

.spec-sku-chip.active {
    border-color: #d7232a;
    box-shadow: 0 0 0 1px rgba(215, 35, 42, 0.25);
}

.spec-sku-chip-disabled,
.spec-sku-chip:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.spec-dim-row {
    margin-bottom: 14px;
}

.spec-dim-row:last-child {
    margin-bottom: 0;
}

.spec-dim-label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.spec-dim-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-val-chip {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 14px;
    background: #fff;
    font-size: 14px;
    color: #333;
    min-height: 40px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.spec-val-chip.active {
    border-color: #d7232a;
    color: #d7232a;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(215, 35, 42, 0.2);
}

.cart-list,
.checkout-list {
    padding: 12px;
}

.cart-list {
    background: #f2f3f7;
}

.cart-group-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

.cart-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 4px 4px 10px;
    border-bottom: 1px solid #f2f2f2;
}

.cart-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    border-radius: 10px;
    padding: 10px 4px;
    margin-bottom: 0;
    border-bottom: 1px dashed #f1f1f1;
}

.cart-item:last-child {
    border-bottom: 0;
}

.circle-check {
    display: flex;
    align-items: center;
    margin-right: 2px;
}

.circle-check input {
    display: none;
}

.circle-check span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-block;
    position: relative;
    background: #fff;
}

.circle-check input:checked + span {
    border-color: #d7232a;
    background: #d7232a;
}

.circle-check input:checked + span::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.cart-thumb {
    width: 84px;
    height: 84px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.cart-media {
    width: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-info {
    flex: 1;
    min-width: 0;
}

.cart-info h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.35;
    min-height: 2.7em;
    max-height: 2.7em;
    overflow: hidden;
}

.cart-info .spec,
.cart-info .line-price {
    color: #888;
    margin: 0 0 4px;
    font-size: 13px;
}

.cart-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.cart-op {
    display: flex;
    gap: 2px;
    align-items: center;
    margin: 0;
    padding-left: 2px;
    flex-shrink: 0;
}

.qty-input {
    width: 28px;
    border: 0;
    text-align: center;
    font-size: 16px;
    padding: 0;
    background: transparent;
}

.qty-input:focus {
    box-shadow: none;
}

.qty-circle-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    line-height: 0;
    font-size: 17px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qty-circle-btn span {
    display: block;
    line-height: 1;
    transform: translateY(-1px);
}

.line-total {
    margin: 0;
    color: #d7232a;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
}

.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #999;
    font-size: 12px;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 10px;
    background: #f7f7f8;
    border: 1px solid #ececee;
}

.cart-remove-btn i {
    font-size: 12px;
}

.cart-footer {
    padding: 10px 12px;
    border-top: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    bottom: 58px;
    background: #fff;
    z-index: 5;
}

.cart-check-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333;
}

.cart-check-all input {
    width: 18px;
    height: 18px;
}

.cart-submit-btn {
    min-width: 110px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
}


.checkout-item {
    border-bottom: 1px dashed #f0f0f0;
    padding: 10px;
    margin-bottom: 0;
    background: #fff;
}

.checkout-item:last-child {
    border-bottom: 0;
}

.checkout-item .title {
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.35;
}

.checkout-item-main {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkout-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.checkout-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item .meta {
    color: #888;
    display: flex;
    justify-content: space-between;
}

.checkout-item .amount {
    margin-top: 6px;
    color: #d7232a;
    font-weight: 600;
    text-align: right;
}

.checkout-card {
    margin: 0 12px 12px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 12px;
}


.checkout-total {
    margin-bottom: 10px;
    font-size: 16px;
}

.checkout-page-list {
    padding-top: 10px;
}

.checkout-address-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
    color: #333;
}

.address-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff2f2;
    color: #d7232a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-main {
    flex: 1;
    min-width: 0;
}

.address-title {
    font-size: 13px;
    color: #999;
}

.address-user {
    font-size: 14px;
    margin-top: 2px;
}

.address-text {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.checkout-order-card {
    margin-top: 10px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

.checkout-block-title {
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f4f4f4;
}

.checkout-pay-card {
    padding-bottom: 0px;
    margin-bottom: 70px;
}

.pay-method-wrap {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.pay-method-wrap .checkout-block-title {
    border-bottom: 1px solid #f4f4f4;
}

.pay-method-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid #f4f4f4;
    cursor: pointer;
}

.pay-method-item:last-child {
    border-bottom: 0;
}

.pay-method-item input {
    display: none;
}

.pay-method-item.active {
    background: #fff7f7;
}

.method-left {
    font-size: 14px;
    color: #333;
}

.method-right {
    font-size: 12px;
    color: #999;
}

.checkout-time-tip {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    background: #fff8ef;
    color: #a66b00;
    font-size: 13px;
}

.checkout-submit-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 58px;
    z-index: 10;
    background: #fff;
    border-top: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 10px;
}

.pay-amount {
    font-size: 14px;
}

.pay-amount strong {
    color: #d7232a;
    font-size: 20px;
}

.checkout-submit-btn {
    min-width: 118px;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 18px;
    font-weight: 600;
}

.auth-wrap {
    padding: 100px 25px 25px;
    min-height: calc(100vh - 114px);
}

.auth-wrap.auth-wrap-member {
    padding: 16px 20px 28px;
    min-height: auto;
}

.page-form-intro {
    padding: 12px 20px 4px;
}

.page-form-intro .page-form-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: #212121;
    line-height: 1.35;
}

.page-form-intro .page-form-desc {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.auth-wrap h2 {
    margin: 0;
    font-size: 40px;
    font-weight: normal;
    color: #212121;
}


.auth-sub {
    color: #a1a1a1;
    margin: 10px 0 50px;
    font-size: 22px;
}

.auth-sub a {
    color: #ff4a3d;
}

.auth-modern-form {
    margin-top: 24px;
}

.auth-line-field {
    border-bottom: 1px solid #ececec;
    margin-bottom: 18px;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-line-field .form-control {
    border: 0;
    border-radius: 0;
    padding: 12px 0;
    background: transparent;
    box-shadow: none;
    font-size: 18px;
    color: #333;
}

.auth-line-field .form-control:focus {
    box-shadow: none;
}

.auth-line-with-link .form-control {
    flex: 1;
}

.auth-inline-link {
    color: #7a7a7a;
    font-size: 16px;
    white-space: nowrap;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.auth-links.single {
    justify-content: center;
}

.auth-links a {
    color: #d7232a;
}

.login-wrap {
    padding-top: 46px;
}

.login-wrap .auth-sub a {
    color: #ff3b30;
}

.login-btn {
    height: 54px;
    border-radius: 8px;
    font-size: 22px;
    margin-top: 26px;
}

.member-top {
    padding: 14px;
    background: linear-gradient(135deg, #d7232a, #ff4b52);
    color: #fff;
}


.member-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 5px;
}

.avatar i {
    font-size: 46px;
}

.user-text h2 {
    margin: 0;
    font-size: 20px;
}

.user-text .login-register {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

.user-text .login-register a {
    color: inherit;
    text-decoration: none;
}

.user-text p {
    margin: 4px 0 0;
    opacity: 0.95;
}

.balance-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.points-balance-cards {
    margin-top: 0;
}

.points-balance-single {
    grid-template-columns: 1fr;
}

.point-card-current {
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 0;
}

.point-card-theme-register {
    background: linear-gradient(135deg, #577bff, #5f9bff);
}

.point-card-theme-active {
    background: linear-gradient(135deg, #18a999, #43c97a);
}

.point-card-theme-extra {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.point-balance-badge.badge-extra {
    color: #000000;
}

.point-card-current::after {
    content: "";
    position: absolute;
    right: -26px;
    top: -20px;
    width: 120px;
    height: 120px;
    border-radius: 32px;
    transform: rotate(28deg);
    background: rgba(255, 255, 255, 0.46);
}

.point-card-current::before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -34px;
    width: 98px;
    height: 98px;
    border-radius: 28px;
    transform: rotate(-18deg);
    background: rgba(255, 255, 255, 0.42);
}

.point-balance-icon {
    position: absolute;
    right: 14px;
    top: 12px;
    font-size: 18px;
    opacity: 0.85;
}

.point-balance-badge {
    position: absolute !important; 
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.point-balance-badge i {
    font-size: 30px;
}

.point-balance-badge.badge-register {
    /* background: rgba(237, 243, 255, 0.88); */
    color: #000000;
}

.point-balance-badge.badge-active {
    /* background: rgba(235, 248, 241, 0.9); */
    color: #000000;
}

.point-card-current span,
.point-card-current strong {
    position: relative;
    z-index: 1;
}

.point-card-current span {
    opacity: 0.95;
}

.point-card-current strong {
    font-size: 26px;
    margin-top: 2px;
}

.balance-card {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: inherit;
}

.balance-card span {
    display: block;
    opacity: 0.9;
}

.balance-card strong {
    font-size: 20px;
}

.game-banner {
    margin: 12px;
    border-radius: 12px;
    background: linear-gradient(120deg, #ff8a00, #ff4b52);
    color: #fff;
    padding: 14px;
}

.game-banner h3 {
    margin: 0;
    font-size: 20px;
}

.game-banner p {
    margin: 6px 0 0;
}

.member-panel {
    margin: 0 12px 12px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.member-panel h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.order-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.tab-item {
    background: #fff5f5;
    border-radius: 8px;
    text-align: center;
    padding: 8px 4px;
    color: #d7232a;
}

.tab-item.active {
    background: #d7232a;
    color: #fff;
}

.points-tabs {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
}

.points-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.points-action-card {
    border: 1px solid #f0e0e1;
    border-radius: 10px;
    padding: 10px;
    background: #fff9f9;
}

.points-action-trigger {
    width: 100%;
    text-align: center;
    border: 1px solid #f0d7d9;
    background: linear-gradient(180deg, #fffdfd, #fff6f7);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
}

a.points-action-trigger {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

.action-title {
    font-size: 14px;
    font-weight: 600;
    color: #b91b23;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-title i {
    margin-right: 5px;
}

.points-modal .modal-body {
    padding-top: 10px;
}

.points-modal .form-control,
.points-modal .form-select {
    min-height: 38px;
}

.order-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.4;
}

.badge-wait {
    background: #fff3cd;
    color: #8a6d3b;
}

.badge-paid {
    background: #d1ecf1;
    color: #0c5460;
}

.badge-done {
    background: #d4edda;
    color: #155724;
}

.badge-cancel {
    background: #f8d7da;
    color: #721c24;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.feature-item {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 10px;
    color: #444;
}

.feature-item i {
    margin-right: 6px;
    color: #d7232a;
}

.invite-box {
    background: #fff5f5;
    border-radius: 8px;
    padding: 14px 12px;
}

.invite-box p {
    margin: 0 0 8px;
}

.invite-box p:last-of-type {
    margin-bottom: 0;
}

.invite-box > .btn {
    margin-top: 8px;
}

.invite-link {
    word-break: break-all;
    color: #666;
}

.member-center-wrap {
    padding: 12px;
}

.member-card-hero {
    padding: 15px 15px 15px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff6a65, #ff3c3c);
    color: #fff;
    box-shadow: 0 8px 18px rgba(228, 54, 64, 0.22);
    position: relative;
    overflow: hidden;
}

.member-card-hero::before,
.member-card-hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.member-card-hero::before {
    inset: 0;
    background-image: repeating-linear-gradient(
        -28deg,
        rgba(255, 255, 255, 0.11) 0px,
        rgba(255, 255, 255, 0.11) 2px,
        transparent 2px,
        transparent 16px
    );
    opacity: 0.35;
}

.member-card-hero::after {
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 38%);
    opacity: 0.45;
}

.member-card-hero .member-hero-top,
.member-card-hero .member-invite-bar,
.member-card-hero .member-login-btn {
    position: relative;
    z-index: 1;
}

.member-theme-sunset .member-card-hero {
    background: linear-gradient(135deg, #ff6b66 0%, #ff4a4f 55%, #ff3b35 100%);
}

.member-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.member-center-wrap .avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-center-wrap .avatar i {
    font-size: 38px;
}

.member-center-wrap .user-text h2 {
    margin: 0;
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: normal;
}

.member-center-wrap .user-text p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.92;
    color: #ffffff99;
}

.member-top-action {
    display: flex;
    gap: 10px;
}

.member-top-action a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.member-top-action a i {
    font-size: 20px;
}

.member-top-action a em {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    padding: 0 4px;
    font-style: normal;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    color: #ff4f45;
    background: #fff;
    font-weight: 700;
}

.member-invite-bar {
    margin-top: 20px;
    min-height: 34px;
    border-radius: 999px;
    background: rgba(248, 242, 229, 0.9);
    color: #9b7042;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    font-size: 13px;
}

.member-invite-bar span {
    flex: 1;
}

.member-login-btn {
    margin-top: 10px;
}

.member-center-card {
    margin-top: 10px;
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    border: 1px solid #f0f0f0;
}

.member-wallet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.wallet-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #444;
    min-height: 62px;
}

.wallet-stat span {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.wallet-stat strong {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    color: #222;
}

.wallet-stat:last-child strong {
    color: #e03834;
}

.member-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.member-card-title h3 {
    margin: 0;
    font-size: 17px;
    color: #1f1f1f;
}

.member-card-title a {
    color: #959595;
    font-size: 13px;
}

.member-order-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.order-icon-item,
.promo-item {
    text-align: center;
    color: #303030;
}

.order-icon-item b,
.promo-item b {
    display: block;
    margin-top: 6px;
    font-weight: 500;
    font-size: 14px;
}

.member-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f5f7ff;
    color: #5d75f7;
}

.member-icon-badge i {
    font-size: 18px;
}

.member-icon-badge em {
    position: absolute;
    top: -5px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #ff584f;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    padding: 0 4px;
    font-style: normal;
}

.member-notice-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    min-height: 56px;
}

.member-notice-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.member-notice-left strong {
    flex-shrink: 0;
}

.notice-bell {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff0dc;
    color: #e59a3e;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px #ffd9ad;
}

.member-notice-left span {
    color: #7b6952;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.member-notice-row > .bi {
    color: #bfa88a;
}

.member-notice-scroll {
    flex: 1;
    min-width: 0;
    height: 22px;
    position: relative;
    overflow: hidden;
}

.notice-scroll-track {
    position: relative;
    transition: transform 0.4s ease;
}

.notice-scroll-item {
    display: block;
    height: 22px;
    line-height: 22px;
    color: #7b6952;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    text-decoration: none;
}

.member-notice-more {
    color: #bfa88a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 公告风格1：soft（柔和浅色，适合整体偏清爽的页面） */
.member-notice-row.notice-style-soft {
    background: linear-gradient(135deg, #fffdf9, #fff7ef);
    border-color: #f8e7d3;
}

.member-notice-row.notice-style-soft .notice-bell {
    background: #fff0dc;
    color: #e59a3e;
    box-shadow: inset 0 0 0 1px #ffd9ad;
}

.member-notice-row.notice-style-soft .notice-scroll-item {
    color: #7b6952;
}

.member-notice-row.notice-style-soft .member-notice-more {
    color: #bfa88a;
}

/* 公告风格2：solid（高亮红色，更醒目） */
.member-notice-row.notice-style-solid {
    background: linear-gradient(135deg, #ff5a58, #ff4141);
    border-color: #ff6d68;
    box-shadow: 0 6px 14px rgba(234, 66, 66, 0.2);
}

.member-notice-row.notice-style-solid .notice-bell {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.member-notice-row.notice-style-solid .notice-scroll-item {
    color: #fff8f8;
}

.member-notice-row.notice-style-solid .member-notice-more {
    color: #fff;
}

.member-data-card {
    padding-top: 10px;
}

.data-badge {
    color: #f35c5c;
    border: 1px solid #ffd0d0;
    border-radius: 999px;
    padding: 1px 8px;
    font-size: 12px;
}

.member-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.data-item span {
    color: #777;
    font-size: 13px;
}

.data-item strong {
    display: block;
    margin-top: 6px;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    color: #222;
}

.member-promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 8px;
}

.member-common-nav.nav-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.member-common-nav.nav-grid4-no-frame {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.member-common-nav.nav-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.member-common-nav.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.common-item {
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    padding: 10px 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    gap: 8px;
}

.common-item b {
    font-size: 15px;
    font-weight: 500;
    flex: 1;
}

.common-arrow {
    color: #b8b8b8;
    font-size: 12px;
}

.nav-grid4 .common-item,
.nav-grid4-no-frame .common-item,
.nav-grid2 .common-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 88px;
}

.nav-grid4 .common-item b,
.nav-grid4-no-frame .common-item b,
.nav-grid2 .common-item b {
    flex: none;
}

.nav-grid4 .common-arrow,
.nav-grid4-no-frame .common-arrow,
.nav-grid2 .common-arrow {
    display: none;
}

.nav-grid2 .common-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    min-height: 56px;
    padding: 10px 12px;
}

.nav-grid2 .common-item .member-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-grid2 .common-item .member-icon-badge i {
    font-size: 15px;
}

.nav-grid2 .common-item b {
    flex: none;
    margin-left: 8px;
}

.nav-grid2 .common-item .common-arrow {
    display: inline-flex;
    margin-left: auto;
}

.nav-list .common-item .member-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-list .common-item .member-icon-badge i {
    font-size: 15px;
}

.nav-list .common-item b {
    flex: 1;
    margin-left: 15px;
    text-align: left;
    font-weight: normal;
}

.nav-list .common-item .common-arrow {
    margin-left: auto;
}

.nav-grid4-no-frame .common-item {
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 6px 4px;
    min-height: 76px;
}

.nav-list .common-item {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 12px 5px;
    justify-content: flex-start;
}

.nav-list .common-item + .common-item {
    border-top: 1px solid #f0f0f0;
}

.layout-hint {
    font-size: 12px;
    color: #9f9f9f;
}

.member-community-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #1f1f1f;
}

.community-highlight-card {
    border: 0;
    background: linear-gradient(135deg, #ff6b66 0%, #ff4a4f 55%, #ff3b35 100%);
    box-shadow: 0 7px 0px rgba(228, 54, 64, 0.2);
}

.community-highlight-card h3 {
    color: #fff;
}

.community-highlight-card .community-slogan {
    margin: 0 0 14px;
    padding: 0 2px;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.03em;
}

.community-metrics-two {
    grid-template-columns: 1fr 1fr;
}

.setting-nav-panel {
    padding: 6px 0;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    background: #fff;
}

.setting-nav-item {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 14px;
    color: #2f2f2f;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s ease;
}

.setting-nav-item:active {
    background: #fafafa;
}

.setting-nav-item:last-child {
    border-bottom: 0;
}

.setting-nav-item > i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #d64b4b;
    background: #ffecee;
    margin-right: 10px;
}

.setting-nav-item span {
    flex: 1;
    font-size: 15px;
    font-weight: normal;
}

.setting-nav-item em {
    font-style: normal;
    color: #b9b9b9;
    font-size: 13px;
}

.setting-block {
    margin-bottom: 12px;
}

.setting-block:last-child {
    margin-bottom: 0;
}

/* 收款账户列表（精简） */
.member-bank-page {
    padding: 0 14px 24px;
}

.member-bank-tip {
    margin: 0 0 12px;
    font-size: 13px;
    color: #888;
    line-height: 1.45;
}

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

.member-bank-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.member-bank-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

.member-bank-ico {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.member-bank-card.is-bank .member-bank-ico {
    color: #c2410c;
}

.member-bank-card.is-alipay .member-bank-ico {
    color: #1677ff;
}

.member-bank-card.is-wechat .member-bank-ico {
    color: #059669;
}

.member-bank-head-mid {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.member-bank-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.member-bank-edit {
    font-size: 13px;
    color: #d7232a;
    text-decoration: none;
    white-space: nowrap;
}

.member-bank-edit i {
    margin-right: 2px;
    font-size: 0.95em;
}

.member-bank-del {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-bank-del:active,
.member-bank-del:hover {
    color: #dc2626;
    background: #fee2e2;
}

.member-bank-body {
    padding: 0 12px 12px;
    font-size: 14px;
}

.member-bank-kv {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    border-top: 1px solid #f5f5f5;
}

.member-bank-kv .k {
    flex: 0 0 3em;
    color: #999;
    font-size: 13px;
}

.member-bank-kv .v {
    flex: 1;
    min-width: 0;
    color: #444;
    word-break: break-all;
}

.member-bank-kv .v.mono {
    font-family: ui-monospace, monospace;
    font-size: 13px;
}

.member-bank-qr {
    padding-top: 6px;
    border-top: 1px solid #f5f5f5;
}

.member-bank-qr .k {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 6px;
}

.member-bank-qr-img {
    max-width: 180px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
    background: #fafafa;
}

.member-bank-qr-img img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
}

.member-bank-empty {
    margin-top: 8px;
    padding: 32px 16px;
    text-align: center;
    border-radius: 12px;
    border: 1px dashed #ddd;
    background: #fafafa;
    color: #9ca3af;
}

.member-bank-empty .bi-wallet2 {
    font-size: 40px;
}

.member-bank-pick-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 14px 20px;
}

.member-bank-pick-item {
    display: block;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    color: #212121;
    text-decoration: none;
    transition: background 0.15s ease;
}

.member-bank-pick-item:active {
    background: #fafafa;
}

.member-bank-pick-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.member-bank-pick-item span {
    font-size: 13px;
    color: #6c757d;
}

.community-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.community-metric-item {
    border: 0;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 242, 229, 0.9);
}

.community-metric-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #9b7042;
    background: rgba(255, 255, 255, 0.65);
}

.community-metric-icon i {
    font-size: 15px;
}

.community-metric-text label {
    display: block;
    font-size: 12px;
    color: #8e6b45;
    line-height: 1.2;
    font-weight: normal;
}

.community-metric-text strong {
    display: block;
    margin-top: 3px;
    font-size: 16px;
    color: #7a5734;
    line-height: 1.2;
    font-weight: normal;
}

.invite-inline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0;
}

.invite-copy-btn {
    line-height: 1.2;
    padding: 2px 9px;
    border-radius: 999px;
}

.invite-copy-icon-btn {
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: #d64b4b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.invite-copy-icon-btn i {
    font-size: 15px;
}

.invite-link-title {
    margin-top: 8px;
}

.invite-link-box {
    margin-top: 8px;
    background: #fff;
    border: 1px dashed #ffc7c7;
    border-radius: 10px;
    padding: 9px 10px;
    color: #666;
    line-height: 1.45;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.invite-link-actions {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

/* 账户 — 提现 */
.withdraw-balance-hero {
    text-align: center;
    padding: 18px 16px 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff8f8 0%, #fff 55%, #fff6f6 100%);
    border: 1px solid #f5dede;
    box-shadow: 0 2px 12px rgba(215, 35, 42, 0.06);
}

.withdraw-balance-hero-label {
    font-size: 13px;
    color: #888;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.withdraw-balance-hero-value {
    font-size: 22px;
    font-weight: 700;
    color: #c41e24;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

/* 账户 — 积分转换：双栏余额（沿用提现余额风格） */
.transform-dual-balance {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.transform-dual-balance .transform-balance-split {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding: 14px 12px 12px;
}

.transform-dual-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    color: #c9b4b4;
    font-size: 18px;
}

.withdraw-preview-card {
    border: 1px solid #f0e4e4;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.withdraw-preview-card-title {
    font-size: 13px;
    color: #888;
    padding: 10px 14px;
    background: #faf7f7;
    border-bottom: 1px solid #f3eaea;
}

#withdrawPreviewMount {
    padding: 12px 14px 14px;
    min-height: 48px;
}

.withdraw-bank-detail .withdraw-kv,
.withdraw-qr-detail .withdraw-kv {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f0f0;
    font-size: 14px;
}

.withdraw-bank-detail .withdraw-kv:last-of-type,
.withdraw-qr-detail > .withdraw-kv:last-of-type {
    border-bottom: 0;
}

.withdraw-k {
    flex-shrink: 0;
    width: 76px;
    color: #999;
    font-size: 13px;
}

.withdraw-v {
    flex: 1;
    min-width: 0;
    color: #333;
    word-break: break-all;
}

.withdraw-v-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
}

.withdraw-qr-block {
    padding-top: 4px;
}

.withdraw-k.withdraw-k-block {
    display: block;
    width: auto;
    margin-bottom: 8px;
}

.withdraw-qr-img-wrap {
    text-align: center;
    padding: 10px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px dashed #e8dddd;
}

.withdraw-qr-img-wrap img {
    max-width: 100%;
    max-height: 220px;
    height: auto;
    vertical-align: middle;
    border-radius: 8px;
}

.withdraw-qr-detail-alipay .withdraw-qr-img-wrap {
    border-color: rgba(22, 119, 255, 0.2);
}

.withdraw-qr-detail-wechat .withdraw-qr-img-wrap {
    border-color: rgba(7, 193, 96, 0.25);
}

.withdraw-no-method-box {
    text-align: center;
    padding: 28px 18px 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fffbfb 0%, #fff 100%);
    border: 1px solid #f0e0e0;
}

.withdraw-no-method-ico {
    display: block;
    font-size: 40px;
    color: #e8b4b8;
    margin-bottom: 12px;
}

.withdraw-no-method-title {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.withdraw-no-method-text {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin-bottom: 18px;
    text-align: left;
}

.withdraw-no-method-text a {
    color: #c41e24;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* 账户 — 线下充值：收款说明卡片 */
.recharge-method-block {
    margin-top: 4px;
}

.recharge-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.recharge-panel-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.recharge-panel-icon-bank {
    background: linear-gradient(135deg, #5b7cfa, #7c9cff);
}

.recharge-panel-icon-wx {
    background: linear-gradient(135deg, #07c160, #3dd68c);
}

.recharge-panel-icon-ali {
    background: linear-gradient(135deg, #1677ff, #69b1ff);
}

.recharge-panel-head-text strong {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}

.recharge-panel-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #888;
}

.recharge-info-card {
    background: #fff;
    border: 1px dashed #ffc7c7;
    border-radius: 12px;
    overflow: hidden;
}

.recharge-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid #fff2f2;
}

.recharge-info-row:last-child {
    border-bottom: 0;
}

.recharge-info-text {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #444;
    word-break: break-all;
}

.recharge-empty-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    background: #fffbf5;
    border: 1px solid #ffe4cc;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #996633;
}

.recharge-empty-hint > i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 16px;
    opacity: 0.85;
}

.recharge-qr-card {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border: 1px solid #f0e6e6;
    border-radius: 14px;
    padding: 16px;
}

.recharge-qr-frame {
    max-width: 260px;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.recharge-qr-frame img {
    max-width: 100%;
    max-height: 240px;
    height: auto;
    vertical-align: middle;
    border-radius: 8px;
}

.recharge-qr-empty {
    text-align: center;
    padding: 0px 16px;
    color: #999;
}

.recharge-qr-empty > i {
    font-size: 40px;
    opacity: 0.35;
    display: block;
    margin-bottom: 10px;
}

.recharge-qr-empty p {
    margin: 0 0 6px;
    font-size: 15px;
    color: #666;
}

.recharge-qr-empty .small {
    font-size: 12px;
    color: #aaa;
}

.member-logout-btn {
    margin-top: 12px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f1d5d5;
    color: #d64b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
}

.order-tone-colorful .member-order-card .icon-blue,
.common-tone-colorful .member-common-card .icon-blue {
    color: #4d85ff;
    background: #edf3ff;
}

.order-tone-colorful .member-order-card .icon-orange,
.common-tone-colorful .member-common-card .icon-orange {
    color: #f08a2f;
    background: #fff4e6;
}

.order-tone-colorful .member-order-card .icon-purple,
.common-tone-colorful .member-common-card .icon-purple {
    color: #8b63f2;
    background: #f2ecff;
}

.order-tone-colorful .member-order-card .icon-red,
.common-tone-colorful .member-common-card .icon-red {
    color: #f05a5a;
    background: #ffeeee;
}

.order-tone-colorful .member-order-card .icon-gold,
.common-tone-colorful .member-common-card .icon-gold {
    color: #d7a223;
    background: #fff7e6;
}

.order-tone-colorful .member-order-card .icon-pink,
.common-tone-colorful .member-common-card .icon-pink {
    color: #f262a6;
    background: #fff0f8;
}

.order-tone-colorful .member-order-card .icon-violet,
.common-tone-colorful .member-common-card .icon-violet {
    color: #7a70f4;
    background: #efefff;
}

.order-tone-colorful .member-order-card .icon-green,
.common-tone-colorful .member-common-card .icon-green {
    color: #27a76b;
    background: #ebf8f1;
}

.order-tone-colorful .member-order-card .icon-brand,
.common-tone-colorful .member-common-card .icon-brand {
    color: #5b70ff;
    background: #eef2ff;
}

.order-tone-mono .member-order-card .member-icon-badge,
.order-tone-mono .member-order-card .icon-blue,
.order-tone-mono .member-order-card .icon-orange,
.order-tone-mono .member-order-card .icon-purple,
.order-tone-mono .member-order-card .icon-red,
.order-tone-mono .member-order-card .icon-gold,
.order-tone-mono .member-order-card .icon-pink,
.order-tone-mono .member-order-card .icon-violet,
.order-tone-mono .member-order-card .icon-green,
.order-tone-mono .member-order-card .icon-brand,
.common-tone-mono .member-common-card .member-icon-badge,
.common-tone-mono .member-common-card .icon-blue,
.common-tone-mono .member-common-card .icon-orange,
.common-tone-mono .member-common-card .icon-purple,
.common-tone-mono .member-common-card .icon-red,
.common-tone-mono .member-common-card .icon-gold,
.common-tone-mono .member-common-card .icon-pink,
.common-tone-mono .member-common-card .icon-violet,
.common-tone-mono .member-common-card .icon-green,
.common-tone-mono .member-common-card .icon-brand {
    background: #ffecee;
    color: #ea4640;
}

.address-item,
.order-item,
.point-item,
.invite-item {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
}

.address-top,
.order-head-row,
.order-foot-row,
.point-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.address-text,
.point-left {
    margin-top: 6px;
    color: #666;
}

.invite-row {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.invite-row-title {
    margin-bottom: 10px;
}

.invite-row-title strong {
    font-size: 15px;
    font-weight: 700;
    color: #2f2f2f;
}

.invite-row-mid,
.invite-row-foot {
    margin-top: 4px;
}

.invite-row-mid span:last-child,
.invite-row-foot span:last-child {
    text-align: right;
}

.address-op {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.address-select-btn {
    margin-left: auto;
}

.address-select-tip {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.address-default-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    line-height: 1;
}

.points-list .point-item {
    border: 1px solid #eee;
    border-left: 3px solid #ffb9bd;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.points-list .point-main-row {
    align-items: center;
}

.points-list .point-remark {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    padding-right: 8px;
    flex: 1;
}

.point-amount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.point-amount.is-plus {
    color: #b8121b;
    background: #fff2f3;
    border: 1px solid #ffd3d6;
}

.point-amount.is-minus {
    color: #2f7f4f;
    background: #effaf3;
    border: 1px solid #cdeed9;
}

.points-list .point-meta-row {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #f0f0f0;
}

.points-list .point-time {
    font-size: 12px;
    color: #999;
}

.points-list .point-balance {
    font-size: 12px;
    color: #888;
}

.points-list .reward-meta-row {
    align-items: flex-start;
}

.points-list .reward-meta-left,
.points-list .reward-meta-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.points-list .reward-meta-left {
    flex: 1;
    text-align: left;
}

.points-list .reward-meta-right {
    min-width: 150px;
    text-align: right;
}

.points-list .reward-meta-line {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

.points-list .reward-real {
    color: #c8232c;
    font-weight: 600;
}

.points-list .reward-time {
    color: #999;
}

.order-items {
    margin-top: 8px;
}

.order-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    padding: 4px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.order-product-row:last-child {
    border-bottom: none;
}

.order-foot-row {
    margin-top: 8px;
}

.order-foot-row-with-actions {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 8px;
}

.order-foot-row-with-actions strong {
    flex-shrink: 0;
}

.order-foot-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.order-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.order-review-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.order-review-goods-title {
    font-weight: 600;
    font-size: 15px;
    color: #222;
    line-height: 1.4;
}

.order-review-stars {
    margin-bottom: 10px;
}

.order-review-body {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    word-break: break-word;
}

.order-review-images {
    margin-top: 10px;
}

.order-review-reply {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

.order-review-reply-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.order-review-reply-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f3f3;
}

.detail-row:last-child {
    border-bottom: none;
}

.order-remark-text {
    color: #666;
    line-height: 1.75;
    font-size: 14px;
    min-height: 44px;
    word-break: break-word;
    background: #f8f9fb;
    border: 1px solid #eceff4;
    border-radius: 10px;
    padding: 10px 12px;
}

.point-card {
    background: #ffe7e8;
    color: #9d1218;
}

.article-content {
    line-height: 1.8;
    color: #3c4450;
    white-space: normal;
    font-size: 17px;
}

.article-meta-time {
    font-size: 13px;
    color: #8b8b8b;
    margin-bottom: 10px;
}

.article-cover-wrap {
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.article-cover-img {
    width: 100%;
    display: block;
}

.news-article-wrap {
    margin: 0 14px 16px;
    padding: 0 2px;
}

.news-article-header {
    padding: 4px 0 12px;
    border-bottom: 1px solid #f0f1f3;
    margin-bottom: 14px;
}

.news-article-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.35;
    color: #1f2937;
    font-weight: 700;
}

.news-article-meta {
    margin-top: 10px;
    color: #9aa3af;
    font-size: 13px;
}

.news-article-content {
    line-height: 2;
    letter-spacing: 0.2px;
}

.article-list-wrap {
    padding-top: 0;
}

.article-list-section {
    padding: 12px;
}

.article-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    padding: 12px;
    margin-bottom: 10px;
    color: #333;
}

.article-list-main h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.5;
}

.article-list-main p {
    margin: 0 0 6px;
    font-size: 13px;
    color: #777;
}

.article-list-main span {
    font-size: 12px;
    color: #999;
}

.article-list-item > i {
    color: #bbb;
}

.page-nav .pagination {
    margin-bottom: 6px;
}

/* Home分页（移动端友好） */
.home-page-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px !important;
}

.home-page-nav .pagination {
    margin: 0;
    padding: 4px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.home-page-nav .page-link {
    border: 0;
    min-width: 42px;
    height: 34px;
    border-radius: 999px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: transparent;
}

.home-page-nav .page-item.active .page-link {
    color: #fff;
    background: #d7232a;
}

.home-page-nav .page-item.disabled .page-link {
    color: #bbb;
    background: transparent;
}

.home-page-nav .pagination-info {
    margin-top: 0 !important;
    font-size: 12px;
    color: #999 !important;
}

@media (max-width: 420px) {
    .mobile-hide {
        display: none !important;
    }

    .home-page-nav .page-link {
        min-width: 40px;
        height: 32px;
        padding: 0 12px;
        font-size: 12px;
    }
}

.bottom-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 640px;
    height: 58px;
    border-top: 1px solid #e9e9e9;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 999;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
    position: relative;
}

.bottom-nav-item i {
    font-size: 20px;
    line-height: 1;
}

.bottom-nav-item span {
    margin-top: 2px;
    font-size: 14px;
}

.bottom-nav-item.active {
    color: #d7232a;
}

.badge-count {
    position: absolute;
    top: 6px;
    right: calc(50% - 18px);
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: #d7232a;
    border: 1px solid #fff;
}

.empty-box {
    border-radius: 10px;
    background: #fafafa;
    border: 1px dashed #ddd;
    color: #888;
    text-align: center;
    padding: 18px 10px;
}

.page-bottom-space {
    height: 70px;
}

.home-toast-container {
    position: fixed;
    left: 50%;
    bottom: 86px;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.home-toast {
    min-width: 120px;
    max-width: 70vw;
    text-align: center;
    padding: 8px 12px;
    border-radius: 18px;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.home-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.home-toast.success {
    background: rgba(34, 34, 34, 0.85);
}

.home-toast.error {
    background: rgba(180, 30, 30, 0.92);
}

/* 产品反馈列表 */
.goods-feedback-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.goods-feedback-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.goods-feedback-title {
    font-weight: 600;
    font-size: 15px;
    color: #222;
    line-height: 1.35;
}

.goods-feedback-time {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
}

.goods-feedback-user {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.goods-feedback-stars {
    color: #f5b301;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.goods-feedback-content {
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    word-break: break-word;
}

.goods-feedback-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.goods-feedback-images a {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.goods-feedback-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-comment-row {
    text-align: right;
    margin-bottom: 6px;
}

.order-comment-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.order-comment-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.order-comment-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* 订单评价页：星级 */
.order-comment-star-block .form-label {
    font-weight: 600;
    color: #333;
}

.order-star-picker {
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-star-btn {
    border: none;
    background: transparent;
    padding: 6px 4px;
    font-size: 30px;
    line-height: 1;
    color: #e0e0e0;
    transition: color 0.15s ease, transform 0.1s ease;
}

.order-star-btn.is-active {
    color: #f5b301;
}

.order-star-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(245, 179, 1, 0.35);
    border-radius: 6px;
}

.order-star-hint {
    min-height: 1.25rem;
}

/* 订单评价页：上传区域（更易点击） */
.order-comment-upload-block .form-label {
    font-weight: 600;
    color: #333;
}

.order-comment-file-wrap {
    position: relative;
    border: 1px dashed #d8d8d8;
    border-radius: 12px;
    background: #fafafa;
    min-height: 52px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.order-comment-file-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #c8232c;
    cursor: pointer;
    user-select: none;
}

.order-comment-file-label:hover {
    background: #fff5f5;
}

.order-comment-file-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    font-size: 0;
}

