/* ============================================================
   分析卡片
   ============================================================ */
.score-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.score-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 18px;
    position: relative;
    overflow: hidden;
}
.score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}
.score-card.bullish::before { background: linear-gradient(90deg, #ef4444, #f97316); }
.score-card.bearish::before { background: linear-gradient(90deg, #22c55e, #10b981); }
.score-card.neutral::before { background: linear-gradient(90deg, #64748b, #94a3b8); }
.score-card.warning::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.score-name {
    font-size: 15px;
    font-weight: 700;
    color: #f1f5f9;
}
.score-badge {
    font-size: 26px;
    font-weight: 800;
}
.score-badge.high { color: #f87171; }
.score-badge.mid { color: #fbbf24; }
.score-badge.low { color: #4ade80; }

.score-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}
.score-bar-inner {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}
.score-position {
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 4px;
}
.score-position.strong { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.score-position.watch { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.score-position.empty { background: rgba(34, 197, 94, 0.15); color: #4ade80; }

.add-watch-btn, .add-btn {
    margin-top: 8px;
    padding: 4px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.5);
    color: #94a3b8;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}
.add-watch-btn:hover, .add-btn:hover {
    border-color: #fbbf24;
    color: #fbbf24;
}
.add-watch-btn.in, .add-btn.in {
    border-color: #fbbf24;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
}

/* ============================================================
   分析面板
   ============================================================ */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.panel {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}
.panel-title {
    font-size: 14px;
    color: #fbbf24;
    margin-bottom: 10px;
    font-weight: 600;
}
.panel-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13px;
}
.panel-row:last-child { border-bottom: none; }
.panel-label { color: #94a3b8; }
.panel-value { font-weight: 600; }
.panel-value.bullish { color: #f87171; }
.panel-value.bearish { color: #4ade80; }
.panel-value.warning { color: #fbbf24; }

.reason-item {
    padding: 5px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    line-height: 1.5;
}
.reason-item.positive { color: #4ade80; }
.reason-item.negative { color: #f87171; }
.reason-item.warning { color: #fbbf24; }

/* ============================================================
   提示横幅
   ============================================================ */
.alert-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}
.alert-banner .icon { font-size: 20px; flex-shrink: 0; }
.alert-banner .content h4 { color: #fbbf24; font-size: 13px; margin-bottom: 4px; }
.alert-banner .content p { color: #94a3b8; font-size: 12px; line-height: 1.5; }

/* ============================================================
   口诀
   ============================================================ */
.mnemonic-box {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}
.mnemonic-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.mnemonic-item:last-child { border-bottom: none; }
.mnemonic-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   规则面板
   ============================================================ */
.rule-panel {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}
.rule-item {
    padding: 10px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 3px solid #f59e0b;
}
.rule-item h4 { color: #fbbf24; font-size: 13px; margin-bottom: 4px; }
.rule-item p { color: #94a3b8; font-size: 12px; line-height: 1.5; }

/* ============================================================
   按钮样式优化
   ============================================================ */
.btn-sm {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.4);
    color: #94a3b8;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#clearWatchBtn {
    border-color: rgba(239, 68, 68, 0.25);
    color: #f87171;
    background: rgba(239, 68, 68, 0.08);
}
#clearWatchBtn:hover {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.15);
    transform: translateY(-1px);
}
#clearWatchBtn:active { transform: scale(0.95); }

#monitorBackBtn {
    border-color: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.06);
}
#monitorBackBtn:hover {
    background: rgba(148, 163, 184, 0.15);
    border-color: rgba(148, 163, 184, 0.4);
    color: #e0e6ed;
    box-shadow: 0 4px 16px rgba(148, 163, 184, 0.08);
    transform: translateY(-1px);
}
#monitorBackBtn:active { transform: scale(0.95); }

.watchlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.watchlist-header .title {
    color: #fbbf24;
    font-weight: 600;
    font-size: 15px;
}
.watchlist-header .title .count {
    font-weight: 400;
    color: #94a3b8;
    font-size: 13px;
}

/* ============================================================
   自选股表格
   ============================================================ */
.watchlist-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    display: table;
}
.watchlist-table thead tr { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.watchlist-table thead th {
    text-align: left;
    padding: 10px 6px 8px 6px;
    color: #64748b;
    font-weight: 500;
    font-size: 12px;
}
.watchlist-table thead th:last-child { text-align: right; }
.watchlist-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background 0.15s;
}
.watchlist-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.watchlist-table tbody td { padding: 10px 6px; vertical-align: middle; }
.watchlist-table .col-name {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 14px;
    white-space: nowrap;
}
.watchlist-table .col-code {
    color: #64748b;
    font-size: 11px;
    margin-left: 8px;
    font-weight: 400;
}
.watchlist-table .col-price {
    font-weight: 600;
    font-size: 15px;
    text-align: right;
    min-width: 70px;
    white-space: nowrap;
}
.watchlist-table .col-change {
    text-align: right;
    font-weight: 600;
    font-size: 14px;
    min-width: 70px;
    padding-right: 4px;
    white-space: nowrap;
}
.watchlist-table .col-change.up { color: #f87171; }
.watchlist-table .col-change.down { color: #4ade80; }
.watchlist-table .col-change.flat { color: #94a3b8; }
.watchlist-table .col-del {
    text-align: right;
    padding-left: 10px;
    width: 30px;
    white-space: nowrap;
}
.watchlist-table .col-del .del-btn {
    background: none;
    border: none;
    color: #475569;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: 0.2s;
}
.watchlist-table .col-del .del-btn:hover {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}
.watchlist-limit-tip {
    color: #64748b;
    font-size: 12px;
    text-align: center;
    padding: 8px 0 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 8px;
}
.watchlist-empty {
    color: #64748b;
    font-size: 14px;
    padding: 8px 0;
    text-align: center;
}
.watchlist-items { min-height: 40px; }

/* 表格列宽 */
.watchlist-table thead th:nth-child(1) { width: 36%; text-align: left; }
.watchlist-table thead th:nth-child(2) { width: 18%; text-align: right; }
.watchlist-table thead th:nth-child(3) { width: 18%; text-align: right; }
.watchlist-table thead th:nth-child(4) { width: 18%; text-align: center; }
.watchlist-table thead th:nth-child(5) { width: 10%; text-align: right; }
.watchlist-table tbody td { padding: 6px 2px; vertical-align: middle; }
.watchlist-table .col-monitor { text-align: center; white-space: nowrap; }

/* ============================================================
   监控按钮
   ============================================================ */
.monitor-btn {
    padding: 4px 14px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
    color: #fbbf24;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.05);
    white-space: nowrap;
    display: inline-block;
    line-height: 1.4;
}
.monitor-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0a0e1a;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
    transform: scale(1.04);
}
.monitor-btn:active {
    transform: scale(0.95);
}

/* ============================================================
   登录/注册 - 美化版（匹配 index.html）
   ============================================================ */
.auth-card-v2 {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 20px 20px;
    margin-bottom: 16px;
}
.auth-header {
    text-align: center;
    margin-bottom: 20px;
}
.auth-header .auth-logo-img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 8px;
    border-radius: 12px;
}
.auth-header .auth-avatar {
    font-size: 48px;
    margin-bottom: 6px;
}
.auth-header h3 {
    color: #f1f5f9;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.auth-header p {
    color: #64748b;
    font-size: 13px;
}
.auth-tabs {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.auth-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}
.auth-tab.active {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
}
.auth-view { display: none; }
.auth-view.active { display: block; }
.auth-input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.6);
    color: #e0e6ed;
    font-size: 15px;
    outline: none;
}
.auth-input:focus { border-color: rgba(245, 158, 11, 0.4); }
.auth-code-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}
.auth-code-wrap .auth-input { flex: 1; margin-bottom: 0; }
.auth-code-display {
    background: #1e293b;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 4px;
    color: #fbbf24;
    user-select: none;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
    font-family: monospace;
}
.auth-btn-code {
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}
.auth-btn-code:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24;
}
.auth-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 4px;
}
.auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}
.auth-msg {
    margin-top: 8px;
    font-size: 13px;
    min-height: 20px;
    color: #94a3b8;
}
.auth-msg.success { color: #4ade80; }
.auth-msg.error { color: #f87171; }
.auth-tip {
    text-align: center;
    margin-top: 12px;
    color: #64748b;
    font-size: 14px;
}
.auth-tip span { color: #639bff; cursor: pointer; }
.auth-tip span:hover { text-decoration: underline; }

/* ============================================================
   个人中心 - 美化版（匹配 index.html）
   ============================================================ */
.profile-card-v2 {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 20px 20px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.profile-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.profile-avatar-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}
.profile-avatar {
    font-size: 56px;
    line-height: 1;
}
.profile-badge {
    font-size: 11px;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.15);
    font-weight: 500;
    display: inline-block;
    margin: 0 auto 8px;
}
.profile-badge.admin {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.2);
}
.profile-name {
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 2px;
}
.profile-id {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
}
.profile-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    padding: 12px 0;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.profile-stat-item {
    text-align: center;
    flex: 1;
}
.profile-stat-num {
    font-size: 22px;
    font-weight: 800;
    color: #fbbf24;
}
.profile-stat-label {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}
.profile-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.06);
}
.profile-edit-area {
    margin-bottom: 14px;
}
.profile-edit-row {
    display: flex;
    gap: 10px;
}
.profile-edit-row input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.6);
    color: #e0e6ed;
    font-size: 14px;
    outline: none;
}
.profile-edit-row input:focus {
    border-color: rgba(245, 158, 11, 0.4);
}
.profile-edit-row input::placeholder {
    color: #475569;
}
.profile-edit-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}
.profile-edit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}
.profile-msg {
    font-size: 12px;
    min-height: 20px;
    margin-top: 4px;
    color: #94a3b8;
}
.profile-msg.success { color: #4ade80; }
.profile-msg.error { color: #f87171; }
.profile-logout-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.06);
    color: #f87171;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.profile-logout-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

/* ============================================================
   关于卡片 - 美化版（匹配 index.html）
   ============================================================ */
.about-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 18px;
}
.about-header {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 8px;
}
.about-content {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.8;
}

/* ============================================================
   管理员面板
   ============================================================ */
.admin-panel { border-left: 4px solid #ef4444; }
.admin-panel .panel-title { color: #f87171; }
.admin-user-list { max-height: 300px; overflow-y: auto; }
.admin-user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.admin-user-item .user-info {
    color: #e0e6ed;
    font-size: 13px;
}
.admin-user-item .user-info .user-id {
    color: #64748b;
    font-size: 11px;
}
.admin-user-item .user-actions { display: flex; gap: 6px; }
.admin-btn-reset {
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fbbf24;
    font-size: 11px;
    cursor: pointer;
}
.admin-btn-reset:hover { background: rgba(251, 191, 36, 0.1); }
.admin-btn-delete {
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #f87171;
    font-size: 11px;
    cursor: pointer;
}
.admin-btn-delete:hover { background: rgba(248, 113, 113, 0.1); }

/* ============================================================
   管理员 - 独立页面
   ============================================================ */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.admin-title {
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
}
.admin-users-panel .admin-search-limit {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.admin-users-panel .admin-search-limit input {
    width: 60px;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15,23,42,0.6);
    color: #e0e6ed;
    font-size: 13px;
}
.admin-users-panel .admin-search-limit .auth-btn {
    width: auto;
    padding: 6px 16px;
    font-size: 13px;
}
.admin-announce-panel .announce-count {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 8px;
}
.admin-announce-panel .announce-input-area textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(15,23,42,0.6);
    color: #e0e6ed;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 8px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    min-height: 60px;
    max-height: 120px;
}
.admin-announce-panel .announce-input-area textarea::-webkit-scrollbar {
    height: 4px;
}
.admin-announce-panel .announce-input-area textarea::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}
.admin-announce-panel .announce-input-area textarea::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.3);
    border-radius: 2px;
}
.admin-announce-panel .announce-input-area .auth-btn {
    width: auto;
    padding: 8px 24px;
    font-size: 14px;
}
.admin-settings-panel .settings-group {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.admin-settings-panel .settings-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.admin-settings-panel .settings-label {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 6px;
}
.admin-settings-panel .settings-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.admin-settings-panel .settings-row input,
.admin-settings-panel .settings-row textarea {
    flex: 1;
    min-width: 150px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(15,23,42,0.6);
    color: #e0e6ed;
    font-size: 13px;
}
.admin-settings-panel .settings-row .auth-btn {
    width: auto;
    padding: 8px 20px;
    font-size: 13px;
}
.settings-msg {
    font-size: 12px;
    margin-top: 4px;
    color: #94a3b8;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 480px) {
    .auth-code-display {
        font-size: 18px;
        min-width: 60px;
        padding: 8px 12px;
    }
    .watchlist-table .col-name { font-size: 13px; }
    .watchlist-table .col-price { font-size: 13px; min-width: 50px; }
    .watchlist-table .col-change { font-size: 12px; min-width: 50px; }
    .watchlist-table .col-code { font-size: 10px; }
    .monitor-btn { padding: 3px 10px; font-size: 10px; }
    .watchlist-table thead th:nth-child(4) { width: 24%; }
    .watchlist-table tbody td { padding: 6px 2px; }
    .btn-sm { padding: 5px 12px; font-size: 12px; }
    .admin-settings-panel .settings-row { flex-direction: column; }
    .admin-settings-panel .settings-row .auth-btn { width: 100%; }
    .admin-users-panel .admin-search-limit { flex-wrap: wrap; }

    /* 我的页面手机端适配 */
    .auth-card-v2 { padding: 18px 16px 16px; }
    .profile-card-v2 { padding: 18px 16px 16px; }
    .profile-avatar { font-size: 44px; }
    .profile-name { font-size: 18px; }
    .profile-stat-num { font-size: 18px; }
    .profile-edit-row { flex-direction: column; }
    .profile-edit-btn { width: 100%; }
}