
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Microsoft Yahei", Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* 容器样式 */
        .container {
            max-width: 950px;
            margin: 0 auto;
            padding: 0;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 10px 0;
            font-weight: bold;
        }
        
        .breadcrumb .current {
            color: #333;
        }
        
        .breadcrumb .hui12 {
            color: #999;
            font-size: 12px;
            font-weight: normal;
            margin-left: 10px;
        }
        
        /* 分隔符 */
        .spacer {
            height: 10px;
            clear: both;
        }
        
        /* 主内容区布局 */
        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 10px;
        }
        
        /* 左侧分类侧边栏 */
        .sidebar {
            flex: 0 0 250px;
            width: 100%;
        }
        
        .sidebar-module {
            width: 98%;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }
        
        .module-title {
            background-color: #f0f0f0;
            border-bottom: 1px solid #ddd;
            padding: 8px;
            font-weight: bold;
            color: #333;
        }
        
        .module-content {
            background-color: #FFFFFF;
            padding: 8px;
        }
        
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .category-list li {
            padding: 4px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .category-list li:last-child {
            border-bottom: none;
        }
        
        .category-list a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .category-list a img {
            margin-right: 5px;
            vertical-align: middle;
        }
        
        .category-list a:hover {
            color: #0066cc;
            text-decoration: underline;
        }
        
        /* 右侧排行内容 */
        .ranking-section {
            flex: 1;
            min-width: 300px;
        }
        
        /* 排行表格样式 */
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .ranking-header {
            background-color: #f0f0f0;
            font-weight: bold;
        }
        
        .ranking-header div {
            padding: 8px;
            text-align: center;
            border-right: 1px solid #ddd;
        }
        
        .ranking-header div:last-child {
            border-right: none;
        }
        
        .ranking-row {
            display: flex;
            width: 100%;
            border-bottom: 1px solid #ddd;
        }
        
        .ranking-row:last-child {
            border-bottom: none;
        }
        
        /* 奇偶行样式 */
        .showlist1 {
            background-color: #f9f9f9;
        }
        
        .showlist2 {
            background-color: #ffffff;
        }
        
        .rank-cell {
            padding: 8px;
            border-right: 1px solid #ddd;
        }
        
        .rank-cell:last-child {
            border-right: none;
        }
        
        .rank-number {
            flex: 0 0 10%;
            text-align: center;
            font-weight: bold;
            font-family: Arial;
        }
        
        .rank-name {
            flex: 0 0 80%;
            font-size: 14px;
        }
        
        .rank-popularity {
            flex: 0 0 10%;
            text-align: center;
            font-size: 14px;
        }
        
        .link_title12 {
            cursor: pointer;
        }
        
        .link_title12:hover {
            color: #0066cc;
            text-decoration: underline;
        }
        
        /* 分页样式 */
        .pagination {
            padding: 15px 0;
            text-align: center;
            font-size: 14px;
        }
        
        .pagination a {
            color: #0066cc;
            text-decoration: none;
            margin: 0 5px;
        }
        
        .pagination a:hover {
            text-decoration: underline;
        }
        
        /* 响应式媒体查询 */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            
            .sidebar {
                flex: 0 0 auto;
                margin-bottom: 15px;
            }
            
            .sidebar-module {
                width: 100%;
            }
            
            /* 移动端排行布局调整 */
            .rank-number {
                flex: 0 0 15%;
            }
            
            .rank-name {
                flex: 0 0 65%;
            }
            
            .rank-popularity {
                flex: 0 0 20%;
            }
            
            .category-list a {
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            .module-title {
                padding: 6px 8px;
                font-size: 15px;
            }
            
            .module-content {
                padding: 6px;
            }
            
            .rank-cell {
                padding: 6px 4px;
                font-size: 13px;
            }
            
            .pagination {
                font-size: 12px;
            }
            
            .breadcrumb {
                font-size: 14px;
            }
            
            .breadcrumb .hui12 {
                font-size: 11px;
                display: block;
                margin-left: 0;
                margin-top: 5px;
            }
        }
