/* ==================== 公共样式 v49（包含股票卡片通用样式） ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --safe-top: 0px;
}

html, body {
    margin: 0;
    padding: 0;
    background: #1a1a2e;
}

html {
    overflow: auto;
    height: 100%;
}

body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    min-height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    touch-action: pan-y pinch-zoom;
    padding-bottom: 1px;
}


/* 弹窗打开时锁定所有可滚动区域 */
html.modal-open,
body.modal-open,
.modal-open .content-scroll {
    overflow: hidden !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: auto !important;
}

#app {
    min-height: 100%;
    padding-top: 0;
}

/* 骨架屏样式 */
.skeleton-card {
    background: #2d2d3f;
    border-radius: 24px;
    padding: 20px 16px;
    margin-bottom: 12px;
    animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-line {
    height: 20px;
    background: #3d3d55;
    border-radius: 10px;
    margin-bottom: 12px;
}

.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }

@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* 下拉刷新样式（PullToRefresh 库） */
.pull-to-refresh {
    text-align: center;
    padding: 0;
    color: #a9a9c0;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    height: 0;
    line-height: 0;
    overflow: hidden;
    transition: height 0.2s ease;
}

.pull-to-refresh.active {
    height: 40px;
    padding: 12px 0;
    line-height: 16px;
    background: #1a1a2e;
}

.pull-icon {
    display: inline-block;
    font-size: 14px;
    transition: transform 0.2s;
}

.pull-text {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
}

.pull-to-refresh.refreshing .pull-icon {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 滚动容器 - 全屏，顶部适配安全区域 */
.content-scroll {
    overflow-y: visible;
    height: auto;
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
    padding-bottom: 90px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

/* 卡片样式（基础，模块可覆盖） */
.card {
    background: #2d2d3f;
    border-radius: 24px;
    padding: 20px 16px;
    margin-bottom: 12px;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.card:active {
    transform: scale(0.99);
}

/* ===== 弹窗遮罩（全局，flex 居中，无内边距） ===== */
.modal-overlay {
    position: fixed;
    top: 0;                       /* ← 恢复全屏覆盖，消除刘海留白 */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    z-index: 1300 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    transform: none !important;
}
.ration-modal-overlay {
    position: fixed;
    top: 0;                       /* ← 恢复全屏覆盖 */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    z-index: 1300 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    transform: none !important;
}

.modal-overlay.show,
.ration-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 弹窗内容通用样式 */
.modal-content,
.ration-modal-content {
    position: relative;
    width: calc(100% - 32px);
    max-width: 400px;
    background: #2a2a3a;
    border-radius: 24px;
    border: 1px solid rgba(108,92,231,0.3);
    overflow: hidden;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
    margin: 0 !important;
    margin-top: -65px !important;      /* 保持原有视觉居中偏移 */
    box-sizing: border-box;
}

.ration-modal-content {
    max-width: 380px;
    background: linear-gradient(135deg,#2a2a3a,#1e1e2e);
    border: 1px solid rgba(108,92,231,0.4);
    border-radius: 24px;              /* ← 显式保留圆角，防止丢失 */
    transform: scale(0.8);
}

.modal-overlay.show .modal-content,
.ration-modal-overlay.show .ration-modal-content {
    transform: scale(1);
    opacity: 1;
}

/* 弹窗打开时锁定 body 滚动 */
body.modal-open {
    overflow: hidden !important;
}

/* ===== 诊断弹窗全局样式（从 kezhuanzhai.css 迁移） ===== */
/* 弹窗头部 - 简化，去掉背景色块 */
.modal-header {
    padding: 16px 20px;
    background: transparent;
    border-bottom: 1px solid rgba(108,92,231,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #2a2a3a;
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.stock-name-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    padding: 0;
    border: none;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.period-tag {
    background: transparent;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    color: #a9a9c0;
    white-space: nowrap;
    border-left: 1px solid rgba(108,92,231,0.3);
    padding-left: 10px;
}

.diagnosis-badge {
    background: transparent;
    color: #ffaa33;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    border: none;
    white-space: nowrap;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.close-btn {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #3d3d55;
    border: none;
    color: #e0e0ff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.close-btn:hover {
    background: #5a5a7a;
}

/* 弹窗主体 - 紧凑布局 */
.modal-body {
    padding: 16px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 诊断摘要区域 - 无下划线 */
.diagnosis-box {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    margin-bottom: 0;
}

.diagnosis-text {
    color: #e0e0ff;
    font-size: 14px;
    line-height: 1.5;
    text-indent: 2em;
}

/* 雷达图区域 - 紧凑 */
.radar-container {
    position: relative;
    margin: 0;
    margin-top: 2px;
    margin-bottom: 2px;
    height: 190px;
    width: 100%;
    overflow: visible;
}

.radar-box {
    background: transparent;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-box canvas {
    width: 100% !important;
    height: 100% !important;
    max-height: 180px;
    display: block;
}

/* 五项指标区域 - 统一分割线宽度 */
.metrics-box {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    border: none;
    margin-top: 8px;
}

.metric-card {
    background: transparent;
    padding: 10px 0;
    border-bottom: 1px solid rgba(108,92,231,0.12);
}

.metric-card:first-child {
    padding-top: 0;
}

.metric-card:last-child {
    border-bottom: none;
}

.metric-value-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}

.metric-name {
    color: #b8b8ff;
    font-size: 14px;
    font-weight: 500;
}

.metric-trend {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-score {
    font-size: 18px;
    font-weight: 700;
}

.arrow {
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    animation: arrowPulse 1.2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.trend-up { color: #ff7b7b; }
.trend-down { color: #7ee0b5; }
.trend-neutral { color: #b8b8ff; }

.arrow-up,
.arrow-down,
.arrow-neutral {
    animation: arrowPulse 1.2s ease-in-out infinite;
}

.metric-desc {
    color: #a9a9c0;
    font-size: 12px;
    line-height: 1.4;
}

/* ===== 配债弹窗全局样式 ===== */
.ration-modal-header {
    padding: 16px;
    background: linear-gradient(135deg,#353547,#2a2a3a);
    border-bottom: 1px solid rgba(108,92,231,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ration-modal-title {
    color: #ffaa33;
    font-size: 18px;
    font-weight: 700;
}

.ration-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #4a4a6a;
    border: 1px solid #6c5ce7;
    color: #e0e0ff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ration-close-btn:hover {
    background: #6c5ce7;
    color: #fff;
    transform: scale(1.05);
}

.ration-close-btn:active {
    transform: scale(0.95);
}

.ration-modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.ration-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: center;
    margin-bottom: 16px;
}

.ration-table th,
.ration-table td {
    text-align: center;
    padding: 10px 6px;
}

.ration-table th {
    background: rgba(108,92,231,0.2);
    color: #b8b8ff;
    font-weight: 600;
}

.ration-table td {
    border-bottom: 1px solid rgba(108,92,231,0.2);
    color: #e0e0ff;
}

.ration-highlight {
    color: #ffaa33;
    font-weight: 700;
}

.ration-note {
    margin-top: 12px;
    padding: 10px;
    background: rgba(108,92,231,0.1);
    border-radius: 12px;
    font-size: 11px;
    color: #a9a9c0;
    text-align: center;
}

/* 删除待申购/待卖出按钮前面的圆点（全局） */
.date-badge::before {
    content: none !important;
}

/* 闹钟提示 */
.alarm-toast {
    position: fixed;
    background: #2a2a3a;
    border-radius: 20px;
    padding: 6px 12px;
    z-index: 2000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid #6c5ce7;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    text-align: center;
    pointer-events: none;
    font-size: 12px;
    color: #ffaa33;
    max-width: 90%;
    white-space: normal;
    word-break: keep-all;
}

.alarm-toast.show {
    opacity: 1;
    visibility: visible;
}

/* 手机端额外优化 */
@media (max-width: 768px) {
    .skeleton-card {
        margin: 12px 8px;
    }
}

/* ==================== 全局年报图表与按钮样式（可被任何模块复用） ==================== */
.chart-container {
    position: relative;
    height: 80px;
    width: 100%;
}
.chart-canvas {
    width: 100%;
    height: 100%;
}
.profit-tooltip {
    position: absolute;
    background: rgba(37,37,51,0.98);
    border: 1px solid #4a3f8a;
    border-radius: 6px;
    padding: 4px 8px;
    color: #ffffff;
    font-size: 11px;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    width: auto;
    min-width: 100px;
    white-space: nowrap;
    transition: opacity 0.1s ease;
}
.profit-tooltip.hidden {
    opacity: 0;
    visibility: hidden;
}
.tooltip-year {
    color: #b8b8ff;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 4px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    white-space: nowrap;
}
.tooltip-row {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 2px;
    white-space: nowrap;
}
.tooltip-label {
    color: #8d8db0;
    font-size: 10px;
}
.tooltip-value {
    font-weight: 500;
    font-size: 10px;
}
.tooltip-value.green { color: #7ee0b5; }
.tooltip-value.orange { color: #ffaa33; }

.button-container-row1 {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin: 8px 0 4px;
}
.metric-btn {
    flex: 1;
    background: #2d2d3f;
    color: #8d8db0;
    border: 1px solid #3a3a4a;
    border-radius: 16px;
    padding: 6px 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}
.metric-btn.active {
    background: #252533;
    color: #ffffff;
    border-color: #4a3f8a;
}

.button-container-row2 {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin: 4px 0 0;
}
.diagnosis-btn-large {
    flex: 2;
    background: #2d2d3f;
    color: #b8b8ff;
    border: 1px solid #4a3f8a;
    border-radius: 16px;
    padding: 8px 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}
.diagnosis-btn-large:hover {
    background: #3d3d5a;
    color: white;
    border-color: #6c5ce7;
    transform: translateY(-1px);
}

/* ==================== 股票卡片通用样式（供股票模块及未来其他模块复用） ==================== */
.stock-card {
    margin: 0;
    margin-bottom: 12px;
    padding: 20px 16px;
    background: #2d2d3f;
    border-radius: 24px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}
.stock-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
    border-color: #6c5ce7;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.stock-name-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
}
.stock-serial {
    font-size: 16px;
    font-weight: bold;
    background: rgba(108,92,231,0.3);
    padding: 2px 8px;
    border-radius: 12px;
    color: #ffffff;
}
.stock-name-link {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.copy-code {
    font-size: 12px;
    color: #ffffff;
    background: rgba(108, 92, 231, 0.5);
    padding: 2px 6px;
    border-radius: 10px;
    cursor: pointer;
}

.stock-price-info {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}
.change-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}
.price {
    font-size: 18px;
    font-weight: bold;
    min-width: 55px;
    text-align: right;
}
.change, .change-amount {
    font-size: 16px;
    font-weight: 600;
}
.change.positive, .change-amount.positive { color: #ff7b7b; }
.change.negative, .change-amount.negative { color: #7ee0b5; }

/* 股票卡片指标行：四项等宽，间隙固定，不滚动 */
/* 股票卡片指标行：强制一行，右对齐，压缩名称与数值之间的空格 */
.stock-metrics {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 6px;
    margin: 8px 0;
    font-size: 13px;
    color: #a9a9c0;
}

.metric-item {
    white-space: nowrap;
    overflow: visible;
    word-spacing: -0.2em;      /* 压缩单词间空格（针对中文与数字之间的空格） */
    letter-spacing: -0.02em;   /* 辅助压缩字符间距，但不影响数字识别 */
}
.metric-value {
    color: #ffaa33;
    margin-left: 4px;
    font-weight: 500;
}

.kline-toolbar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
    flex-wrap: wrap;
}
.period-btn, .indicator-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #a9a9c0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.period-btn.active, .indicator-btn.active {
    background: #6c5ce7;
    color: white;
}
.period-btn:hover, .indicator-btn:hover {
    background: rgba(108, 92, 231, 0.6);
    color: white;
}

.kline-mini-container {
    height: 200px;
    background: rgba(0,0,0,0.2);
    margin: 8px 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}
.kline-loading {
    text-align: center;
    line-height: 320px;
    color: #a9a9c0;
    font-size: 12px;
}

.card-footer {
    font-size: 10px;
    color: #6c6c8a;
    text-align: center;
    margin-top: 6px;
}

/* 多空观点样式（通用） */
.duokong-badge {
    padding: 2px 5px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0px;
}
.duokong-badge.duo {
    background: #ff4d4d;
    color: #fff;
}
.duokong-badge.kong {
    background: #4caf50;
    color: #fff;
}
.duokong-badge.wait {
    background: transparent;
    color: transparent;
    min-width: 24px;
}

/* 复制成功提示（通用） */
.copy-success-toast {
    position: fixed;
    background: #4caf50;
    color: white;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    z-index: 10000;
    white-space: nowrap;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.copy-success-toast::before {
    content: "✓";
    font-weight: bold;
    font-size: 14px;
}

/* 确保K线容器不影响卡片溢出 */
.kline-mini-container,
.stock-card {
    overflow: visible !important;
}
/* 确保星星/爱心图标使用 Emoji 字体，显示圆润 */
.self-select-btn,
.daohang-tubiao {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", "EmojiOne Color", sans-serif;
    font-weight: normal;
}

/* 自选按钮：默认空心星为灰色 */
.self-select-btn {
    color: #a9a9c0;
    background: none;
    border: none;
    font-size: 17px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* 已收藏的实心星显示为黄色 */
.self-select-btn.selected {
    color: rgba(255, 224, 102, 0.8);   /* 淡黄色，80% 不透明度 */
}
.trade-btn-quick {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 30px;
    color: #a9a9c0;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
/* 交易按钮内的绿点：尺寸4x4，垂直居中 */
.trade-dot {
    position: static !important;
    display: inline-block !important;
    width: 5px !important;
    height: 5px !important;
    background-color: #4caf50 !important;
    border-radius: 50% !important;
    margin: 0 2px 0 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
}
.trade-dot[style*="display: none"] {
    display: none !important;
}
.period-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 30px;
    color: #a9a9c0;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    height: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.period-btn.active {
    background: #6c5ce7;
    color: white;
}

/* 底部导航栏基础样式 */
/* 底部导航栏基础样式（支持触摸放大动画） */
.daohang {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    height: 70px;
    background: rgba(60, 60, 80, 0.4);
    backdrop-filter: blur(5px) saturate(200%);
    -webkit-backdrop-filter: blur(5px) saturate(200%);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1200;
    /* 关键：开启硬件加速，同时允许后续 scale 变换 */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    outline: 1px solid transparent;
}

/* 触摸放大动画 */
.daohang.gel-active {
    transform: scale(1.02) !important;
    transition: transform 0.15s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
}
/* 确保动画不会干扰（保持原有关键帧定义，如果未定义则添加） */
@keyframes fixNavbar {
    to { transform: none; }
}
.daohang-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border-radius: 40px;
    color: #a9a9c0;
    transition: color 0.2s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    background: transparent;
}
.daohang-item.active {
    color: #ffffff;
    font-weight: 600;
}
.daohang-tubiao { font-size: 22px; }
.daohang-wenzi { font-size: 11px; font-weight: 500; }

/* 滑块样式（JS 会创建并添加类） */
.daohang-slider {
    position: absolute;
    height: calc(100% - 16px);
    top: 8px;
    background: rgba(108, 92, 231, 0.3);
    border-radius: 40px;
    pointer-events: none;
    z-index: 1;
    transition: height 0.15s, top 0.15s, background 0.15s, box-shadow 0.15s;
}
.daohang-slider.touch-active {
    height: calc(100% - 8px);
    top: 4px;
    background: radial-gradient(circle at 30% 30%, rgba(108, 92, 231, 0.6), rgba(108, 92, 231, 0.3));
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.6);
}

/* 强制所有模块的滚动容器不使用 transform，防止破坏固定定位 */
.gupiao-mokuai .content-scroll,
.zixuangu-mokuai .content-scroll,
.kezhuanzhai-mokuai .content-scroll,
.jiaoyi-mokuai .content-scroll {
    transform: none !important;
    will-change: auto !important;
}
