* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: "PingFang SC", "Microsoft YaHei", sans-serif; background: #f4f7f9; color: #333; line-height: 1.6; }
        a:hover { color: #ff4400; }
        ul { list-style: none; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        /* 面包屑导航 */
        .breadcrumb { background: #fff; padding: 12px 0; border-bottom: 1px solid #e1e4e8; margin-bottom: 20px; font-size: 14px; color: #666; }
        .breadcrumb a { color: #666; }

        /* 布局结构 */
		.min-layout { display: flex; gap: 10px;padding-bottom: 10px; margin-bottom: 0px;}
        .left-main { flex: 1; min-width: 0; /* 防止Flex子元素溢出 */ }
        .right-side { width: 320px; flex-shrink: 0; }

        /* 左侧列表框 */
        .rank-list-box { background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
        .rank-list-title { font-size: 18px; font-weight: bold; padding: 18px 25px; border-bottom: 1px solid #eee; border-left: 4px solid #004094; background: #fff; }
        
        /* 表头对齐修正 */
        .rank-list-header { display: flex; padding: 12px 25px; background: #f8faff; border-bottom: 1px solid #eee; color: #666; font-size: 14px; }
        .col-date { width: 110px; flex-shrink: 0; }
        .col-title { flex: 1; }
        .col-type { width: 180px; text-align: right; flex-shrink: 0; }

        /* 列表内容 */
        .rank-list li { display: flex; align-items: center; padding: 14px 25px; border-bottom: 1px dashed #eee; transition: 0.2s; }
        .rank-list li:hover { background: #f9fbff; }
        .rank-list li:last-child { border-bottom: none; }
        
        .rank-list li .date { width: 110px; color: #999; font-size: 14px; flex-shrink: 0; }
        .rank-list li .title-link { flex: 1; color: #333; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 10px; }
        .rank-list li .title-link:hover { color: #004094; text-decoration: underline; }
        .rank-list li .type { width: 180px; text-align: right; color: #004094; font-size: 14px; flex-shrink: 0; }
		.rank-list li .type a { color: #888; }
		.rank-list li .type a:hover { color: #004094; text-decoration: underline; }

        /* 侧边栏通用样式 */
        .side-box { background: #fff; border: 1px solid #eee; border-radius: 8px; margin-bottom: 20px; overflow: hidden; }
        .side-title { font-size: 16px; font-weight: bold; padding: 15px 20px; border-bottom: 1px solid #eee; border-left: 4px solid #004094; }
        .side-title-top { font-size: 16px; font-weight: bold; padding: 15px 20px; border-bottom: 1px solid #eee; border-left: 4px solid #fc7b54; }
        
        /* 侧边列表样式 */
        .side-list { padding: 10px 20px; }
        .side-list li { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #f9f9f9; font-size: 14px; }
        .side-list li:last-child { border-bottom: none; }
        
        /* 排行序号样式 */
        .side-list li .num { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: #eee; color: #888; font-size: 12px; border-radius: 4px; margin-right: 12px; flex-shrink: 0; }
        .side-list li .num.top1 { background: #ff4400; color: #fff; }
        .side-list li .num.top2 { background: #ff8800; color: #fff; }
        .side-list li .num.top3 { background: #ffcc00; color: #333; }
        
        .side-list li a { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #555; }

        /* 提示列表专用样式 */
        .tips-list li { color: #5a738e; gap: 8px; border-bottom: none !important; padding: 8px 0 !important; }
        .tips-list li:before { content: "💡"; font-size: 14px; }

        /* ===================== 响应式适配 ===================== */
        @media (max-width: 992px) {
            .min-layout { flex-direction: column; }
            .right-side { width: 100%; }
            .container { padding: 0 10px; }
        }

        @media (max-width: 640px) {
            /* 手机端隐藏日期和所属栏目，确保驱动名称显示完整 */
            .col-date, .col-type, .rank-list li .date, .rank-list li .type { display: none; }
            .rank-list li { padding: 15px; }
            .rank-list-header { display: none; } /* 手机端不显示表头 */
        }