* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    height: 100%;
    background: #f6f7f9;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 15px;
    line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 22px; }
#app { min-height: 100%; display: flex; flex-direction: column; }

.site-header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 10;
}
.nav-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand {
    font-size: 22px;
    font-weight: 700;
    color: #BC0442;
    letter-spacing: 1px;
}
.nav {
    display: flex;
    gap: 26px;
    flex: 1;
}
.nav a {
    color: #444;
    font-size: 15px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.nav a:hover, .nav a.router-link-active {
    color: #BC0442;
    border-bottom-color: #BC0442;
}
.auth {
    display: flex;
    gap: 10px;
    align-items: center;
}
.auth a {
    font-size: 14px;
    padding: 7px 16px;
    border-radius: 4px;
    border: 1px solid #BC0442;
    color: #BC0442;
}
.auth a:hover {
    background: #BC0442;
    color: #fff;
}
.auth .user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 14px 4px 4px;
    border: 1px solid #eee;
    border-radius: 24px;
    color: #444;
    font-size: 14px;
    cursor: pointer;
}
.auth .user-chip:hover { border-color: #BC0442; color: #BC0442; }
.auth .user-chip .avatar-sm {
    width: 28px;
    height: 28px;
    background: #BC0442;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}
.auth .logout-btn {
    border: none;
    background: none;
    color: #999;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 8px;
}
.auth .logout-btn:hover { color: #BC0442; }

.main {
    flex: 1;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 28px 22px 60px;
}

.site-footer {
    background: #1c2023;
    color: #c8c8c8;
    margin-top: 40px;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px 22px 12px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 28px;
}
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
.footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.footer-desc { font-size: 13px; color: #9aa0a6; line-height: 1.85; }
.footer-title { color: #fff; font-size: 14px; margin-bottom: 10px; font-weight: 600; }
.footer-col a {
    display: block;
    font-size: 13px;
    color: #9aa0a6;
    margin-bottom: 6px;
}
.footer-col a:hover { color: #fff; }
.footer-col div { font-size: 13px; color: #9aa0a6; margin-bottom: 6px; }
.footer-bottom {
    border-top: 1px solid #2c3035;
    text-align: center;
    padding: 14px 22px;
    font-size: 13px;
    color: #6c7077;
}

.page-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1c2023;
}
.page-sub {
    color: #777;
    font-size: 13px;
    margin-bottom: 22px;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 18px;
}
.card h3 {
    font-size: 16px;
    color: #1c2023;
    margin-bottom: 12px;
}
.card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}
.card-head h2 {
    font-size: 18px;
    color: #1c2023;
}
.link {
    color: #BC0442;
    font-size: 13px;
    cursor: pointer;
}
.link:hover { text-decoration: underline; }

.banner {
    background: linear-gradient(135deg, #BC0442, #f06390);
    color: #fff;
    border-radius: 10px;
    padding: 50px 32px;
    margin-bottom: 22px;
}
.banner h1 { font-size: 30px; margin-bottom: 8px; }
.banner p { opacity: .9; margin-bottom: 18px; }
.banner-actions { display: flex; gap: 12px; }

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.grid.two-col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid, .grid.two-col { grid-template-columns: 1fr; }
}

.show-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.show-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.show-card .cover {
    width: 100%;
    height: 170px;
    background: #ddd;
    object-fit: cover;
    display: block;
}
.show-card .body { padding: 14px 16px; }
.show-card .title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.show-card .meta { color: #888; font-size: 12px; margin-bottom: 6px; }
.show-card .price { color: #BC0442; font-weight: 700; font-size: 15px; }

.feature-list { list-style: none; padding: 0; }
.feature-list li {
    padding: 6px 0;
    color: #444;
    font-size: 14px;
    border-bottom: 1px dashed #f0f0f0;
}
.feature-list li:last-child { border-bottom: none; }

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.form-row label { font-size: 13px; color: #555; }
.form-row input, .form-row select, .form-row textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    outline: none;
    transition: border-color .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    border-color: #BC0442;
}
.form-row textarea { min-height: 90px; resize: vertical; }

.sms-row { display: flex; gap: 10px; }
.sms-row input { flex: 1; }
.price-row { display: flex; gap: 10px; align-items: center; }
.price-row input { flex: 1; }
.price-row span { color: #999; }

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0;
    font-size: 13px;
    color: #555;
}
.checkbox-row a {
    color: #BC0442;
    cursor: pointer;
}
.checkbox-row a:hover { color: #7a0329; text-decoration: underline; }

.btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #BC0442;
    background: #BC0442;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity .2s;
    font-family: inherit;
}
.btn:hover { opacity: .88; }
.btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}
.btn.secondary {
    background: #fff;
    color: #BC0442;
}
.btn.small { padding: 6px 14px; font-size: 13px; }
.btn.danger { background: #d63031; border-color: #d63031; }
.btn.success { background: #27ae60; border-color: #27ae60; }

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
}
.auth-foot {
    margin-top: 18px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.divider {
    text-align: center;
    margin: 22px 0 14px;
    color: #999;
    font-size: 13px;
    position: relative;
}
.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #eee;
}
.divider::before { left: 0; }
.divider::after { right: 0; }
.divider span { background: #fff; padding: 0 12px; }

.third-login {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}
.third-login .btn { flex: 1; }

table.list {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
table.list th, table.list td {
    border: 1px solid #eaeaea;
    padding: 10px 12px;
    text-align: left;
}
table.list th {
    background: #fafafa;
    font-weight: 600;
    color: #1c2023;
}
.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.tag.pending { background: #fff7e6; color: #b97a00; }
.tag.approved { background: #e9f7ef; color: #1e8449; }
.tag.rejected { background: #fdecea; color: #c0392b; }

.tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 18px;
}
.tabs .tab {
    padding: 9px 16px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    color: #555;
}
.tabs .tab.active {
    color: #BC0442;
    border-bottom-color: #BC0442;
    font-weight: 600;
}

.balance-box {
    background: linear-gradient(135deg, #FF6B35 0%, #FF2E63 60%, #BC0442 100%);
    color: #fff;
    border-radius: 16px;
    padding: 26px 28px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(188, 4, 66, .18);
}
.balance-box::before {
    content: '';
    position: absolute;
    right: -60px; top: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.balance-box::after {
    content: '';
    position: absolute;
    right: 30px; bottom: -80px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.balance-row { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 1; }
.balance-left .balance-label { font-size: 13px; opacity: .92; letter-spacing: .5px; }
.balance-left .balance-value { font-size: 38px; font-weight: 700; margin: 8px 0 4px; letter-spacing: 1px; }
.balance-left .balance-value small { font-size: 18px; font-weight: 500; opacity: .9; margin-right: 2px; }
.balance-left .balance-tip { font-size: 12px; opacity: .85; }
.balance-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    border: 2px solid rgba(255,255,255,.3);
    position: relative; z-index: 1;
}

.balance-quicks {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    position: relative; z-index: 1;
}
.balance-quicks .quick-btn {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,.18);
    border-radius: 8px;
    padding: 8px 0;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    transition: background .2s;
}
.balance-quicks .quick-btn:hover { background: rgba(255,255,255,.28); }

.qr-box {
    display: flex;
    gap: 26px;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 22px;
    background: #fafafa;
    margin-bottom: 16px;
}
.qr-img {
    width: 180px;
    height: 180px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr-img svg { width: 100%; height: 100%; display: block; }
.qr-info { flex: 1; }
.qr-info .amount-row {
    font-size: 28px;
    font-weight: 700;
    color: #BC0442;
    margin-bottom: 10px;
}
.qr-info .amount-row small {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-left: 6px;
}
.qr-info p { color: #555; font-size: 13px; line-height: 1.85; }
.qr-info .merchant {
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #444;
}
.qr-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.qr-modal .modal-body {
    padding: 28px 22px;
    text-align: center;
}
.qr-modal .qr-img { margin: 0 auto 14px; }
.qr-modal .qr-status {
    font-size: 15px;
    color: #1c2023;
    margin-bottom: 6px;
}
.qr-modal .qr-status-sub {
    font-size: 13px;
    color: #888;
    line-height: 1.85;
}

.recharge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}
@media (max-width: 800px) {
    .recharge-grid { grid-template-columns: repeat(2, 1fr); }
}
.recharge-item {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 16px 12px 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s, transform .15s;
    background: #fff;
    position: relative;
}
.recharge-item:hover { border-color: #FF6B35; transform: translateY(-2px); }
.recharge-item.active {
    border-color: #FF6B35;
    background: #fff7f3;
    box-shadow: 0 2px 8px rgba(255, 107, 53, .15);
}
.recharge-item.active::before {
    content: '✓';
    position: absolute;
    top: -8px; right: -8px;
    width: 22px; height: 22px;
    background: #FF6B35;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    line-height: 22px;
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.recharge-item .amount { font-size: 22px; font-weight: 700; color: #1c2023; }
.recharge-item.active .amount { color: #FF6B35; }
.recharge-item .bonus {
    display: inline-block;
    font-size: 11px;
    color: #fff;
    background: #FF2E63;
    border-radius: 10px;
    padding: 2px 8px;
    margin-top: 6px;
    font-weight: 500;
}
.recharge-item .bonus.gray { background: #e5e5e5; color: #999; }

.pay-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.pay-channel {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 14px 12px;
    font-size: 13px;
    cursor: pointer;
    color: #1c2023;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    transition: border-color .2s, background .2s;
}
.pay-channel:hover { border-color: #FF6B35; }
.pay-channel.active {
    border-color: #FF6B35;
    background: #fff7f3;
    color: #FF6B35;
}
.pay-channel .pc-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}
.pay-channel .pc-icon.wx { background: #1aad19; }
.pay-channel .pc-icon.ali { background: #1677ff; }
.pay-channel .pc-icon.bank { background: #e60012; }
.pay-channel .pc-name { font-weight: 500; }
.pay-channel .pc-sub { font-size: 11px; color: #999; margin-top: 2px; }

.recharge-pay-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35, #FF2E63);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, .25);
    transition: transform .15s, box-shadow .2s;
    letter-spacing: 1px;
}
.recharge-pay-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 107, 53, .35); }
.recharge-pay-btn:active { transform: translateY(0); }
.recharge-pay-btn small { font-size: 13px; opacity: .9; font-weight: 400; margin-left: 4px; }

.recharge-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 14px;
    padding: 12px 14px;
    background: #f8f8f8;
    border-radius: 8px;
    font-size: 12px;
    color: #777;
}
.recharge-tips span::before {
    content: '✓';
    color: #27ae60;
    margin-right: 4px;
    font-weight: 700;
}

.recent-recharges {
    margin-top: 24px;
}
.recent-recharges h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1c2023;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.recent-recharges h3 .more { font-size: 12px; color: #999; font-weight: 400; }
.recent-recharges h3 .more::after { content: ' ›'; }
.recent-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
}
.recent-item:last-child { border-bottom: none; }
.recent-item .ri-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff7f3;
    color: #FF6B35;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
}
.recent-item .ri-info { flex: 1; min-width: 0; }
.recent-item .ri-info .ri-name { font-size: 14px; color: #1c2023; font-weight: 500; }
.recent-item .ri-info .ri-meta { font-size: 12px; color: #999; margin-top: 2px; }
.recent-item .ri-amt { text-align: right; font-size: 15px; font-weight: 600; }
.recent-item .ri-amt .bonus { font-size: 11px; color: #FF2E63; margin-top: 2px; font-weight: 400; }
.recent-item .ri-status { margin-left: 12px; }
.recent-empty {
    text-align: center;
    padding: 30px 0;
    color: #999;
    font-size: 13px;
}

.recharge-foot {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed #eee;
    font-size: 12px;
    color: #999;
    line-height: 1.85;
}

.modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 720px;
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.modal-header {
    padding: 16px 22px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 { font-size: 17px; color: #1c2023; }
.modal-close {
    cursor: pointer;
    font-size: 22px;
    color: #888;
    line-height: 1;
    padding: 0 4px;
    background: none;
    border: none;
}
.modal-close:hover { color: #BC0442; }
.modal-body {
    padding: 22px;
    overflow-y: auto;
    flex: 1;
    font-size: 14px;
    color: #444;
    line-height: 1.85;
}
.modal-body h2 { font-size: 16px; margin: 18px 0 8px; color: #1c2023; }
.modal-body h2:first-child { margin-top: 0; }
.modal-body p { margin-bottom: 10px; }
.modal-body ul, .modal-body ol { margin-bottom: 12px; }
.modal-body table.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 14px;
    font-size: 13px;
}
.modal-body table.policy-table th,
.modal-body table.policy-table td {
    border: 1px solid #eaeaea;
    padding: 8px 10px;
    text-align: left;
}
.modal-body table.policy-table th { background: #fafafa; }
.modal-footer {
    padding: 12px 22px;
    border-top: 1px solid #eaeaea;
    text-align: right;
    background: #fafafa;
}

.alert-modal {
    max-width: 420px;
}
.alert-modal .modal-body {
    text-align: center;
    padding: 28px 22px 18px;
    font-size: 15px;
}
.alert-modal .modal-footer {
    text-align: center;
    background: #fff;
    border-top: none;
    padding-bottom: 22px;
}

.shop-card {
    cursor: pointer;
    transition: box-shadow .2s, transform .2s;
}
.shop-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.shop-card-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}
.shop-card-head .shop-logo {
    width: 64px;
    height: 64px;
    font-size: 24px;
}
.shop-card-head .shop-meta { flex: 1; }
.shop-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.shop-desc { color: #888; font-size: 13px; margin-bottom: 6px; }
.shop-stats { font-size: 12px; color: #999; }
.shop-stats span { margin-right: 12px; }
.shop-card-action { text-align: right; }

.shop-detail-hero {
    display: flex;
    gap: 22px;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 22px;
}
.shop-logo {
    width: 110px;
    height: 110px;
    background: #BC0442;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    flex-shrink: 0;
}
.shop-info { flex: 1; }
.shop-info h2 { font-size: 22px; margin-bottom: 6px; }
.shop-info .desc { color: #666; font-size: 14px; margin-bottom: 8px; }
.shop-actions { display: flex; flex-direction: column; gap: 8px; }

.back-link {
    display: inline-block;
    color: #BC0442;
    font-size: 13px;
    margin-bottom: 6px;
    cursor: pointer;
}
.back-link:hover { text-decoration: underline; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .product-grid { grid-template-columns: 1fr; }
}
.product-item {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}
.product-cover {
    height: 120px;
    background: linear-gradient(135deg, #f8d7e2, #fdecef);
}
.product-body {
    padding: 14px;
    text-align: center;
}
.product-body .name { font-size: 14px; margin-bottom: 6px; }
.product-body .price { color: #BC0442; font-weight: 600; font-size: 16px; margin-bottom: 8px; }

.user-side {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
}
@media (max-width: 800px) {
    .user-side { grid-template-columns: 1fr; }
}
.user-side .side {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px;
    height: max-content;
}
.user-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.avatar {
    width: 48px;
    height: 48px;
    background: #BC0442;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}
.user-name { font-size: 14px; font-weight: 600; color: #1c2023; }
.user-tip { font-size: 12px; color: #999; }
.user-side h4 {
    font-size: 13px;
    color: #999;
    margin: 14px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.user-side h4:first-child { margin-top: 0; }
.user-side ul { list-style: none; padding: 0; }
.user-side li {
    padding: 8px 10px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 2px;
}
.user-side li:hover { background: #fff7f8; color: #BC0442; }
.user-side li.active { background: #fff7f8; color: #BC0442; font-weight: 600; }

.side-content { margin: 0; }
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    font-size: 14px;
    color: #555;
}
.profile-row span { color: #999; margin-right: 6px; }
.empty-tip {
    padding: 60px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.qr-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 4px 0;
}
.qr-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
    flex-shrink: 0;
}
.qr-step span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.qr-step.active { color: #BC0442; }
.qr-step.active span { background: #BC0442; color: #fff; }
.qr-step.done span { background: #27ae60; color: #fff; }
.qr-step.done { color: #27ae60; }
.qr-step-line {
    flex: 1;
    height: 1px;
    background: #eee;
    min-width: 30px;
}

.order-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    border-radius: 6px;
    padding: 14px 18px;
    margin-bottom: 18px;
}
.order-product-name { font-size: 15px; color: #1c2023; font-weight: 600; }
.order-product-price { color: #BC0442; font-weight: 700; font-size: 16px; }

.order-section-title {
    font-size: 14px;
    color: #1c2023;
    font-weight: 600;
    margin: 18px 0 12px;
    padding-left: 10px;
    border-left: 3px solid #BC0442;
}
.order-section-title:first-of-type { margin-top: 0; }

.order-total {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    padding: 12px 16px;
    background: #fff7f8;
    border-radius: 6px;
    margin: 14px 0;
}
.order-total span:first-child { color: #555; font-size: 14px; }
.order-total .total-amount { color: #BC0442; font-size: 22px; font-weight: 700; margin-left: 8px; }

.upload-row { margin-top: 6px; }
.upload-label { cursor: pointer; display: block; }
.upload-area {
    border: 2px dashed #d0d0d0;
    border-radius: 8px;
    padding: 32px 18px;
    text-align: center;
    background: #fafafa;
    transition: border-color .2s, background .2s;
}
.upload-area:hover { border-color: #BC0442; background: #fff7f8; }
.upload-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #BC0442;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.upload-text { font-size: 14px; color: #1c2023; margin-bottom: 4px; }
.upload-sub { font-size: 12px; color: #999; }

.upload-preview {
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    background: #fafafa;
}
.upload-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}
.upload-preview-info { flex: 1; }
.upload-preview-info .file-name { font-size: 13px; color: #1c2023; margin-bottom: 4px; word-break: break-all; }
.upload-preview-info .file-tip { font-size: 12px; color: #999; }

.order-tip {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    color: #8c6e00;
    font-size: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    line-height: 1.75;
    margin-top: 14px;
}

.audit-extra {
    background: #fafafa;
    border-radius: 6px;
    padding: 10px 14px;
    margin-top: 6px;
    font-size: 12px;
    color: #555;
    line-height: 1.7;
}
.audit-extra img {
    max-width: 160px;
    max-height: 160px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 6px;
    display: block;
}

/* ============================================================
 * 视觉重做 · 编辑杂志风
 * ========================================================== */

/* 全局节奏 */
:root {
    --ink: #141414;
    --ink-soft: #2c2c2c;
    --muted: #6f6f6f;
    --line: #e8e6e0;
    --paper: #f7f5f0;
    --paper-warm: #faf8f3;
    --accent: #c8102e;        /* 戏院红 */
    --accent-deep: #8b0a1f;
    --gold: #b8975a;
    --serif: "Source Han Serif SC", "Songti SC", "STSong", "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}
body { background: var(--paper); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ----- Hero（杂志大封面） ----- */
.hero {
    position: relative;
    background: #0e0e10;
    color: #fff;
    overflow: hidden;
    padding: 96px 0 110px;
    border-bottom: 1px solid var(--line);
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(900px 500px at 12% 20%, rgba(200,16,46,.55), transparent 60%),
        radial-gradient(700px 400px at 90% 80%, rgba(184,151,90,.35), transparent 60%),
        linear-gradient(135deg, #14110f 0%, #1f1612 50%, #0a0a0c 100%);
}
/* 右上：百大迷音品牌标志 */
.hero-brand {
    position: absolute;
    right: 26px;
    top: 36px;
    z-index: 2;
    pointer-events: none;
    text-align: right;
    line-height: 1;
}
.hero-brand .hb-zh {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 235, 200, .85);
    letter-spacing: 6px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.hero-brand .hb-en {
    display: block;
    font-family: var(--serif);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 235, 200, .55);
    letter-spacing: 8px;
    margin-top: 10px;
    padding-right: 2px;
}
.hero-brand .hb-line {
    display: block;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 160, .8));
    margin: 12px 0 0 auto;
}
@media (max-width: 1100px) {
    .hero-brand .hb-zh { font-size: 36px; letter-spacing: 4px; }
}
@media (max-width: 768px) {
    .hero-brand { right: 16px; top: 24px; }
    .hero-brand .hb-zh { font-size: 28px; letter-spacing: 3px; }
    .hero-brand .hb-en { font-size: 10px; letter-spacing: 5px; }
}
.hero-inner {
    position: relative; z-index: 1;
    max-width: 1180px; margin: 0 auto; padding: 0 22px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: 12px; letter-spacing: 2px;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    font-family: var(--sans);
}
.hero-eyebrow::before {
    content: ""; width: 6px; height: 6px;
    border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 0 4px rgba(200,16,46,.25);
}
.hero-title {
    font-family: var(--serif);
    font-size: 78px;
    font-weight: 700;
    line-height: 1.05;
    margin: 24px 0 18px;
    letter-spacing: -1px;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,.72);
    max-width: 620px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.12);
    max-width: 720px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats .stat-num {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-stats .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    letter-spacing: 1px;
}

/* ----- Section 标题（杂志栏目标题） ----- */
.section { padding: 64px 0; }
.section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.section-head .eyebrow {
    font-size: 11px; letter-spacing: 3px;
    color: var(--accent); text-transform: uppercase;
    font-weight: 600;
}
.section-head h2 {
    font-family: var(--serif);
    font-size: 38px; font-weight: 700;
    color: var(--ink);
    margin-top: 6px;
    letter-spacing: -0.5px;
}
.section-head .head-right {
    text-align: right; color: var(--muted); font-size: 13px;
    line-height: 1.7;
}
.section-head .head-right a {
    color: var(--accent); font-weight: 600;
    border-bottom: 1px solid currentColor;
}

/* ----- 演出卡片（杂志 item） ----- */
.show-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.show-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}
.show-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(20,20,20,.18);
}
.show-cover {
    height: 200px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex; align-items: flex-end;
    padding: 18px;
}
.show-cover::before {
    content: "";
    position: absolute; inset: 0;
    opacity: .92;
}
.show-cover::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(400px 200px at 80% 10%, rgba(255,255,255,.2), transparent 60%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 14px);
    mix-blend-mode: overlay;
}
.show-cover .cover-glyph {
    position: absolute; top: 14px; right: 18px;
    font-size: 72px;
    opacity: .18;
    z-index: 2;
}
.show-cover .cover-tag {
    position: relative; z-index: 2;
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
}
.show-body {
    padding: 18px 18px 20px;
    flex: 1;
    display: flex; flex-direction: column;
}
.show-body .show-title {
    font-family: var(--serif);
    font-size: 17px; font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    margin: 10px 0 12px;
    min-height: 48px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.show-body .show-meta {
    font-size: 12px; color: var(--muted);
    margin-bottom: 4px;
    display: flex; align-items: center; gap: 6px;
}
.show-body .show-price {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-family: var(--serif);
    color: var(--accent);
    font-size: 22px; font-weight: 700;
}
.show-body .show-price span {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--muted);
    margin-left: 4px;
    font-weight: 400;
}

/* ----- 渐变封面调色板（按 category） ----- */
.cover-concert   { background: linear-gradient(135deg, #c8102e 0%, #5b0a1f 100%); }
.cover-opera     { background: linear-gradient(135deg, #b8975a 0%, #4a3a1f 100%); }
.cover-drama     { background: linear-gradient(135deg, #2c3e50 0%, #0d1b2a 100%); }
.cover-kids      { background: linear-gradient(135deg, #f4a261 0%, #c1440e 100%); }
.cover-classical { background: linear-gradient(135deg, #1f3b5c 0%, #0a1a30 100%); }
.cover-dance     { background: linear-gradient(135deg, #6a1b9a 0%, #2d0a4e 100%); }
.cover-sports    { background: linear-gradient(135deg, #00897b 0%, #004d40 100%); }

/* ----- 优势横排 ----- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.feature-item {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
    text-align: left;
    transition: background .25s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--paper-warm); }
.feature-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: inline-block;
    line-height: 1;
}
.feature-item h3 {
    font-family: var(--serif);
    font-size: 19px; font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 13px; color: var(--muted);
    line-height: 1.7;
}

/* ----- 公告（杂志式） ----- */
.news-list {
    background: #fff;
    border: 1px solid var(--line);
}
.news-row {
    display: grid;
    grid-template-columns: 130px 1fr 60px;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: background .2s;
}
.news-row:last-child { border-bottom: none; }
.news-row:hover { background: var(--paper-warm); }
.news-row .news-date {
    font-family: var(--serif);
    font-size: 16px; font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
}
.news-row .news-title {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
}
.news-row .news-arrow {
    text-align: right;
    color: var(--muted);
    font-size: 20px;
}

/* ----- 店铺列表（杂志 grid） ----- */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.shop-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    display: grid;
    grid-template-columns: 140px 1fr;
}
.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -20px rgba(20,20,20,.18);
}
.shop-card .shop-cover {
    position: relative;
    color: #fff;
    padding: 22px 18px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 180px;
}
.shop-card .shop-cover::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 60%);
}
.shop-card .shop-cover .logo-big {
    font-size: 56px;
    position: relative; z-index: 2;
}
.shop-card .shop-cover .cover-no {
    position: relative; z-index: 2;
    font-family: var(--serif);
    font-size: 12px; letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .7;
}
.shop-card .shop-cover-1 { background: linear-gradient(160deg, #c8102e, #5b0a1f); }
.shop-card .shop-cover-2 { background: linear-gradient(160deg, #b8975a, #3a2c15); }
.shop-card .shop-cover-3 { background: linear-gradient(160deg, #1f3b5c, #0a1a30); }
.shop-card .shop-cover-4 { background: linear-gradient(160deg, #2d6a4f, #0a2e22); }

.shop-card .shop-body {
    padding: 22px 24px;
    display: flex; flex-direction: column;
}
.shop-card .shop-body .shop-name {
    font-family: var(--serif);
    font-size: 22px; font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.shop-card .shop-body .shop-desc {
    font-size: 13px; color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.7;
}
.shop-card .shop-body .shop-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 16px;
}
.tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    border: 1px solid var(--line);
    color: var(--muted);
    letter-spacing: 1px;
}
.tag.pending  { color: var(--accent); border-color: var(--accent); background: rgba(200,16,46,.06); }
.tag.approved { color: var(--gold); border-color: var(--gold); background: rgba(184,151,90,.08); }
.tag.rejected { color: #999; }

.shop-card .shop-body .shop-foot {
    margin-top: auto;
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}
.shop-card .shop-body .shop-stats-mini {
    font-size: 12px; color: var(--muted);
}
.shop-card .shop-body .shop-cta {
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
}
.shop-card .shop-body .shop-cta::after { content: " →"; }

/* ----- page-title（详情类页面） ----- */
.page-title {
    font-family: var(--serif);
    font-size: 34px; font-weight: 700;
    color: var(--ink);
    margin: 30px 0 8px;
    letter-spacing: -0.5px;
}
.page-sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 26px;
}

.back-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px;
    color: var(--muted);
    margin: 22px 0 0;
    transition: color .2s;
}
.back-link:hover { color: var(--accent); }

/* ----- 响应式 ----- */
@media (max-width: 980px) {
    .show-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: none; }
    .shops-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 52px; }
    .detail-hero { grid-template-columns: 1fr !important; }
    .biz-flow { grid-template-columns: repeat(2, 1fr); }
    .biz-shot { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- 协议文档（杂志风正文） ----- */
.agreement-doc {
    background: #fff;
    border: 1px solid var(--line);
    padding: 36px 44px 28px;
    margin-bottom: 40px;
}
.agree-section {
    padding: 18px 0;
    border-bottom: 1px dashed var(--line);
}
.agree-section:last-of-type { border-bottom: none; }
.agree-section h3 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    padding-left: 12px;
    border-left: 3px solid var(--accent);
    line-height: 1.4;
}
.agree-section p {
    font-size: 15px;
    line-height: 1.95;
    color: var(--ink-soft);
    margin-bottom: 10px;
    text-indent: 2em;
}
.agree-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}
@media (max-width: 560px) {
    .agreement-doc { padding: 24px 22px; }
    .agree-section h3 { font-size: 17px; }
}

/* ============================================================
 * 公司门户板块（ICP 备案 / 公司介绍）
 * ========================================================== */
.portal-section { background: #fff; }
.portal-section .section-head { margin-bottom: 28px; }

.portal-block {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px dashed var(--line);
}
.portal-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.portal-h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    padding-left: 12px;
    border-left: 4px solid #2b78e4;
    margin-bottom: 18px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}
.portal-p {
    font-size: 15px;
    line-height: 1.95;
    color: var(--ink-soft);
    text-indent: 2em;
    margin-bottom: 12px;
}

/* 业务流程 4 卡片 */
.biz-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 10px;
}
.biz-step {
    position: relative;
    background: #fafaf8;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px 20px 22px;
    text-align: left;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.biz-step:hover {
    transform: translateY(-3px);
    border-color: #2b78e4;
    box-shadow: 0 12px 28px -16px rgba(43,120,228,.35);
}
.biz-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    color: #2b78e4;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.biz-step h4 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.biz-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
}

/* 平台界面截图（CSS 模拟图） */
.biz-shot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 10px;
}
.biz-shot-card {
    background: #fafaf8;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.biz-shot-mock {
    width: 100%;
    aspect-ratio: 16 / 11;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.biz-shot-cap {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}
/* mock-1 首页 */
.mock-hero {
    height: 22%;
    background: linear-gradient(135deg, #c8102e, #5b0a1f);
    border-radius: 3px;
}
.mock-row {
    height: 8px;
    background: #eee;
    border-radius: 2px;
}
.mock-row.short { width: 60%; }
.mock-row.bold { height: 11px; background: #ddd; }
.mock-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    margin-top: 4px;
}
.mock-grid > div {
    border-radius: 3px;
    background: linear-gradient(135deg, #1f3b5c, #0a1a30);
}
.mock-grid > div:nth-child(2) { background: linear-gradient(135deg, #c8102e, #5b0a1f); }
.mock-grid > div:nth-child(3) { background: linear-gradient(135deg, #b8975a, #3a2c15); }
.mock-grid > div:nth-child(4) { background: linear-gradient(135deg, #2d6a4f, #0a2e22); }
/* mock-2 选座 */
.biz-mock-2 { padding: 14px; }
.mock-stage {
    height: 35%;
    background: linear-gradient(180deg, #e8e6e0, #d6d2c8);
    border-radius: 3px 3px 50% 50% / 3px 3px 30% 30%;
    margin-bottom: 10px;
}
.mock-seats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
    padding: 4px 0;
}
.mock-seats > div {
    background: #2b78e4;
    border-radius: 2px;
    opacity: .85;
}
.mock-seats > div:nth-child(3n) { background: #c8102e; opacity: .95; }
.mock-seats > div:nth-child(5n) { background: #aaa; }
/* mock-3 订单 */
.biz-mock-3 { gap: 6px; }

/* 资质表 */
.biz-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    background: #fafaf8;
    font-size: 14px;
    margin-top: 6px;
}
.biz-table td {
    border: 1px solid var(--line);
    padding: 14px 18px;
    color: var(--ink-soft);
    line-height: 1.6;
}
.biz-table td:first-child {
    width: 200px;
    background: #f3f1ec;
    font-weight: 600;
    color: var(--ink);
    font-family: var(--serif);
}

/* 联系方式 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 6px;
}
.contact-grid > div {
    background: #fafaf8;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-lbl {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
}
.contact-val {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}
.contact-val a {
    color: #2b78e4;
    border-bottom: 1px solid currentColor;
}
.icp-bar {
    margin-top: 28px;
    padding: 16px 18px;
    background: #f3f1ec;
    border: 1px solid var(--line);
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}
.icp-sep { margin: 0 8px; color: #c8c4b8; }

/* ====== ICP 备案 + 网安备案 ====== */
.icp-record {
    margin-top: 24px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid #c8102e;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 26px;
    justify-content: center;
}
.icp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2b78e4;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s, color .2s;
}
.icp-link:hover {
    color: #c8102e;
    border-bottom-color: #c8102e;
}
.icp-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* footer 也要加备案条 */
.site-footer .icp-mini {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    font-size: 12px;
    color: var(--muted);
}
.site-footer .icp-mini a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.site-footer .icp-mini a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.site-footer .icp-mini .gov-icon {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 4px;
}

@media (max-width: 560px) {
    .agreement-doc { padding: 24px 22px; }
    .agree-section h3 { font-size: 17px; }
    .biz-flow { grid-template-columns: 1fr; }
    .biz-shot { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .biz-table td:first-child { width: 110px; padding: 10px 12px; font-size: 13px; }
    .biz-table td { padding: 10px 12px; font-size: 13px; }
    .portal-h3 { font-size: 19px; }
}
@media (max-width: 560px) {
    .show-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: 1px solid var(--line); }
    .feature-item:last-child { border-bottom: none; }
    .hero-title { font-size: 38px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .shop-card { grid-template-columns: 100px 1fr; }
    .shop-card .shop-cover { min-height: 140px; }
    .shop-card .shop-cover .logo-big { font-size: 36px; }
}

/* ---------- 个人中心（大麦风） ---------- */
.my-page { padding: 12px 0 40px; }
.my-top-card {
    background: linear-gradient(135deg, #FFCF36 0%, #FF6B35 100%);
    border-radius: 14px;
    padding: 18px 16px 14px;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}
.my-top-card::before {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.my-top-card::after {
    content: '';
    position: absolute;
    right: 30px; bottom: -60px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.my-top-row { display: flex; align-items: center; position: relative; z-index: 1; }
.my-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
    flex-shrink: 0;
}
.my-avatar-img { background-size: cover; background-position: center; }
.my-user-info { margin-left: 14px; flex: 1; min-width: 0; }
.my-nick { font-size: 18px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.my-realname-tag {
    display: inline-block;
    background: rgba(255,255,255,.25);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 11px;
    font-weight: 400;
}
.my-phone { font-size: 13px; opacity: .92; margin-top: 4px; }
.my-vip {
    margin-top: 10px;
    background: rgba(0,0,0,.15);
    border-radius: 18px;
    padding: 6px 12px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative; z-index: 1;
}
.my-side-icons { position: absolute; right: 14px; top: 16px; display: flex; gap: 16px; z-index: 1; }
.my-side-icon {
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
    position: relative;
}
.my-side-icon .badge {
    position: absolute; top: -2px; right: -4px;
    background: #ff2e2e;
    color: #fff;
    font-size: 10px;
    min-width: 14px; height: 14px;
    border-radius: 7px;
    padding: 0 3px;
    line-height: 14px;
    text-align: center;
}

/* 订单状态栏 */
.my-order-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 4px 10px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.my-order-title {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 12px 12px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 15px; font-weight: 600;
    color: #1c2023;
}
.my-order-title .more { font-size: 12px; color: #999; font-weight: 400; }
.my-order-title .more::after { content: ' ›'; }
.my-order-status {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 14px 0 4px;
}
.my-status-item {
    text-align: center;
    cursor: pointer;
    position: relative;
}
.my-status-icon {
    width: 30px; height: 30px;
    margin: 0 auto 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #1c2023;
}
.my-status-label { font-size: 12px; color: #333; }
.my-status-item .count {
    position: absolute;
    top: -2px; right: 25%;
    background: #ff2e2e;
    color: #fff;
    font-size: 10px;
    min-width: 16px; height: 16px;
    border-radius: 8px;
    padding: 0 4px;
    line-height: 16px;
    text-align: center;
}

/* 资产栏 */
.my-asset-card {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.my-asset-item {
    text-align: center;
    padding: 14px 0;
    cursor: pointer;
    border-right: 1px solid #f2f2f2;
}
.my-asset-item:last-child { border-right: none; }
.my-asset-icon { font-size: 22px; margin-bottom: 4px; }
.my-asset-num { font-size: 17px; font-weight: 600; color: #1c2023; }
.my-asset-label { font-size: 12px; color: #999; margin-top: 2px; }

/* 工具列表 */
.my-list-group {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    overflow: hidden;
}
.my-list-title {
    font-size: 13px;
    color: #1c2023;
    font-weight: 600;
    padding: 12px 14px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my-list-title .meta { font-size: 11px; color: #999; font-weight: 400; }
.my-list-row {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-top: 1px solid #f5f5f5;
    cursor: pointer;
    font-size: 14px;
    color: #1c2023;
}
.my-list-row:hover { background: #fafafa; }
.my-list-row .left-icon {
    width: 26px; height: 26px;
    border-radius: 6px;
    background: #f5f5f5;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: #ff6b35;
    margin-right: 10px;
    flex-shrink: 0;
}
.my-list-row .row-text { flex: 1; }
.my-list-row .row-meta { font-size: 12px; color: #999; }
.my-list-row .row-arrow { color: #ccc; font-size: 14px; margin-left: 6px; }

/* 我的订单折叠面板 */
.my-panel {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    overflow: hidden;
}
.my-panel-title {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #1c2023;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.my-panel-title .arrow { font-size: 12px; color: #999; transition: transform .2s; }
.my-panel-title .arrow.open { transform: rotate(90deg); }
.my-panel-body { display: none; padding: 0 14px 14px; }
.my-panel-body.open { display: block; }

/* 退出登录 */
.my-logout-btn {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    color: #ff2e2e;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .my-order-status { padding: 12px 0 2px; }
    .my-status-icon { font-size: 20px; }
}

/* ---------- 演出详情页：3 张展示图 ---------- */
.show-pic {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    cursor: pointer;
    transition: transform .2s;
    border: 1px solid #eee;
}
.show-pic:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.show-pic img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}
.show-pic-cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    color: #fff;
    padding: 24px 10px 8px;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}
@media (max-width: 768px) {
    .show-pic img { height: 130px; }
}
