
        /* ========== 基础 & 移动优先 (保留原风格) ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background: #f4f7fc;
            color: #0b1c33;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }
 
        .hea {
            margin-bottom: 16px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 6px;
        }

        h1 {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            background: linear-gradient(145deg, #0f2b4b, #1d3c6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .badge {
            background: #1e3a5f;
            color: white;
            font-size: 0.7rem;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 40px;
            white-space: nowrap;
        }

        .stats-row {
            display: flex;
            gap: 10px;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            margin: 12px 0 16px;
            padding: 4px 0 12px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            white-space: nowrap;
            scroll-snap-type: x mandatory;
        }

        .stat-pill {
            background: white;
            border-radius: 40px;
            padding: 6px 16px;
            box-shadow: 0 4px 10px rgba(0,32,64,0.04);
            font-weight: 500;
            font-size: 0.8rem;
            border: 1px solid #ceddec;
            flex-shrink: 0;
            scroll-snap-align: start;
        }
        .stat-pill span {
            font-weight: 700;
            color: #0f3b6a;
            margin-right: 3px;
        }

        .action-bar {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
            margin: 16px 0 18px;
        }

        .download-btn {
            background: #0f3b6a;
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 6px 14px rgba(15,59,106,0.3);
            transition: 0.1s;
            border: 1px solid #2d5483;
            width: 100%;
        }
        .action-bar span {
            color: #1d3a5c;
            font-size: 0.85rem;
            text-align: center;
        }

        .filter-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 12px 0 16px;
        }

        .filter-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 4px 0 10px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scroll-snap-type: x mandatory;
        }

        .filter-btn {
            background: white;
            border: 1px solid #b9cee8;
            padding: 8px 18px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.8rem;
            cursor: pointer;
            color: #1d3a5c;
            white-space: nowrap;
            flex-shrink: 0;
            scroll-snap-align: start;
            transition: background 0.1s;
            touch-action: manipulation;
        }
        .filter-btn.active {
            background: #0b2a4a;
            border-color: #0b2a4a;
            color: white;
        }

        .search-box {
            width: 100%;
            background: white;
            border-radius: 60px;
            border: 1px solid #b9cee8;
            display: flex;
            align-items: center;
            padding: 0 16px;
        }
        .search-box input {
            border: none;
            background: none;
            width: 100%;
            padding: 14px 0;
            font-size: 1rem;
            outline: none;
        }

        /* ----- 表格容器 (核心) ----- */
        .table-wrapper {
            background: white;
            border-radius: 20px;
            box-shadow: 0 12px 30px -12px rgba(0,40,80,0.2);
            overflow-x: auto;
            overflow-y: auto;
            max-height: 70vh;
            border: 1px solid #d7e2ed;
            margin-bottom: 24px;
            -webkit-overflow-scrolling: touch;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.8rem;
            min-width: 920px;   /* 默认保持宽表，让横向滚动可见所有列 */
        }

        th {
            background: #eaf1fb;
            color: #10365c;
            font-weight: 700;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.2px;
            padding: 14px 8px;
            text-align: left;
            border-bottom: 1px solid #c9d9ef;
            position: sticky;
            top: 0;
            z-index: 10;
            white-space: nowrap;
        }

        td {
            padding: 14px 8px;
            border-bottom: 1px solid #dee9f3;
            color: #1c3b5e;
            vertical-align: middle;
        }

        tr:hover td {
            background-color: #f6faff;
        }

        .state-col {
            font-weight: 700;
            color: #0b3b6b;
            white-space: nowrap;
        }

        .practice-tag {
            background: #e2ecfe;
            padding: 4px 10px;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 600;
            display: inline-block;
            color: #144880;
            white-space: nowrap;
        }

        .rate-number {
            font-weight: 700;
            color: #0f3b6a;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        /* 脚注 */
        .footnote {
	background: #e8f0fa;
	border-radius: 24px;
	padding: 18px;
	margin-top: 20px;
	border: 1px solid #bdd2ec;
	font-size: 0.85rem;
	margin-bottom: 20px;
        }

        .footnote-flex {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footnote-right {
            background: #dce8f5;
            padding: 16px;
            border-radius: 20px;
        }

        .keyword-hint {
            background: #ffffffc7;
            border-radius: 40px;
            padding: 8px 16px;
            margin: 6px 6px 6px 0;
            display: inline-block;
            border: 1px dashed #3670b3;
            font-size: 0.8rem;
            white-space: nowrap;
        }
 .fam{
	max-width: 1300px;
	margin: 0 auto;
	 width: 100%;
        }

 /* ========== 核心修改：屏幕宽度 < 768px 时隐藏三列 ========== */
/* ========== 表格专用样式（移动端优化）- 精简版 ========== */

/* 移动端整体容器调整 */
@media (max-width: 767px) {
    /* 最外层容器限制宽度 */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        overflow-x: hidden;
    }
    
    /* 头部文字调整 */
    .hea h1 {
        font-size: 1.3rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .header p {
        font-size: 0.9rem;
        margin: 10px 0;
    }
    
    /* 统计胶囊 - 允许横向滚动但不要溢出 */
    .stats-row {
        margin: 10px -5px;
        padding: 5px 0;
        width: calc(100% + 10px);
    }
    
    .stat-pill {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    /* 下载按钮 - 缩小并居中 */
    .action-bar {
        margin: 10px 0;
    }
    
    .download-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
        height: auto;
        min-height: 50px;
    }
    
    .action-bar span {
        font-size: 0.8rem;
    }
    
    /* 搜索框 - 缩小 */
    .filter-section {
        margin: 10px 0;
    }
    
    .filter-tabs {
        padding: 5px 0;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .search-box {
        padding: 0 10px;
    }
    
    .search-box input {
        padding: 10px 0;
        font-size: 0.9rem;
    }
    
    /* 表格容器 - 确保可以横向滚动但不溢出整体布局 */
    .table-wrapper {
        width: 100%;
        margin: 10px 0;
        border-radius: 10px;
        max-height: 60vh;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* 表格基础设置 */
    #feeTable {
        min-width: 500px;  /* 保持最小宽度以显示所有列 */
        font-size: 0.7rem;
    }
    
    /* 隐藏表头第三、五、六列 */
    #feeTable th:nth-child(3),
    #feeTable th:nth-child(5),
    #feeTable th:nth-child(6) {
        display: none;
    }
    
    /* 隐藏表格主体对应的列 */
    #feeTable td:nth-child(3),
    #feeTable td:nth-child(5),
    #feeTable td:nth-child(6) {
        display: none;
    }
    
    /* 表格内边距调整 */
    #feeTable th,
    #feeTable td {
        padding: 8px 4px;
        white-space: nowrap;
    }
    
    /* State列样式 */
    #feeTable td:first-child {
        font-size: 0.75rem;
        font-weight: 700;
        color: #0b3b6b;
    }
    
    /* Practice标签 */
    #feeTable .practice-tag {
        padding: 2px 4px;
        font-size: 0.6rem;
    }
    
    /* 费率数字 */
    #feeTable .rate-number {
        font-size: 0.75rem;
        font-weight: 700;
    }
    
    /* 表头文字 */
    #feeTable th {
        font-size: 0.65rem;
        padding: 8px 4px;
    }
    
    /* 脚注调整 */
    .footnote {
        padding: 12px;
        margin: 15px 0;
        font-size: 0.8rem;
    }
    
    .footnote-right {
        padding: 12px;
    }
    
    .keyword-hint {
        padding: 5px 10px;
        font-size: 0.7rem;
        margin: 3px 3px 3px 0;
    }
}

/* 更小屏幕 (≤480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .hea h1 {
        font-size: 1.2rem;
    }
    
    .header p {
        font-size: 0.85rem;
    }
    
    .badge {
        font-size: 0.6rem;
        padding: 2px 8px;
    }
    
    .stat-pill {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    
    .download-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .filter-btn {
        padding: 5px 10px;
        font-size: 0.65rem;
    }
    
    .search-box input {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    #feeTable {
        min-width: 450px;
        font-size: 0.65rem;
    }
    
    #feeTable th,
    #feeTable td {
        padding: 6px 3px;
    }
    
    .footnote {
        padding: 10px;
    }
}

/* 超小屏幕 (≤360px) */
@media (max-width: 360px) {
    .stat-pill {
        padding: 3px 8px;
        font-size: 0.6rem;
    }
    
    .filter-btn {
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    #feeTable {
        min-width: 400px;
    }
}