        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        .container {
            max-width: 1310px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
            background: white;
            border-radius: 8px;
            padding: 12px 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .breadcrumb a {
            color: #2b6cb0;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* 主体内容布局 */
        .main-content {
            display: flex;
            gap: 30px;
        }
        
        .news-section {
            flex: 3;
        }
        
        .sidebar {
            flex: 1;
        }
        
        .section-title {
            position: relative;
            font-size: 1.5rem;
            color: #1a365d;
            padding-bottom: 15px;
            margin-bottom: 25px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #2b6cb0;
        }
        
        /* 新闻列表样式 */
        .news-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .news-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .news-img {
            flex: 0 0 35%;
            background-size: cover;
            background-position: center;
        }
        
        .news-content {
            padding: 20px;
            flex: 1;
        }
        
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1a365d;
        }
        
        .news-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .news-title a:hover {
            color: #2b6cb0;
            text-decoration: underline;
        }
        
        .news-excerpt {
            color: #4a5568;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #718096;
        }
        
        .news-category {
            background: #e2e8f0;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 500;
        }
        
        .category-biz {
            background: #bee3f8;
            color: #2b6cb0;
        }
        
        .category-enterprise {
            background: #fed7d7;
            color: #c53030;
        }
        
        /* 侧边栏样式 */
        .recommend-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .recommend-list {
            list-style: none;
        }
        
        .recommend-list li {
            padding: 12px 0;
            border-bottom: 1px solid #edf2f7;
        }
        
        .recommend-list li:last-child {
            border-bottom: none;
        }
        
        .recommend-list a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.2s;
            display: block;
            padding: 5px 0;
        }
        
        .recommend-list a:hover {
            color: #2b6cb0;
        }
        
        .recommend-list .date {
            font-size: 0.8rem;
            color: #a0aec0;
            display: block;
            margin-top: 3px;
        }
        
        .tags-box {
            /*display: flex;*/
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .tags-box li{
            margin-bottom: 10px;
        }
        .tag {
            background: #e2e8f0;
            color: #4a5568;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .tag:hover {
            background: #2b6cb0;
            color: white;
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0 20px;
        }
        
        .pagination button {
            padding: 10px 18px;
            margin: 0 5px;
            border: none;
            background: #edf2f7;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.2s;
        }
        
        .pagination button.active,
        .pagination button:hover {
            background: #2b6cb0;
            color: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .main-content {
                flex-direction: column;
            }
            
            .news-item {
                flex-direction: column;
            }
            
            .news-img {
                height: 200px;
                flex: none;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .pagination {
                flex-wrap: wrap;
            }
            
            .pagination button {
                margin: 5px;
                padding: 8px 12px;
            }
            
            .news-content {
                padding: 15px;
            }
            
            .recommend-box {
                padding: 20px;
            }
        }
        .pagination a, 
        .pagination span {
            display: inline-block;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.2s;
            min-width: 40px;
            text-align: center;
        }
        
        .pagination a {
            color: #0066cc;
            background: white;
            border: 1px solid #ddd;
        }
        
        .pagination a:hover {
            background: #f0f7ff;
            border-color: #a3d0ff;
        }
        
        .pagination .current {
            background: #0066cc;
            color: white;
            border: 1px solid #0066cc;
            font-weight: 600;
        }