* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .header {
            background-color: #c00;
            height: 80px;
            padding: 0 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            height: 50px;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 20px;
        }
        
        .nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
        
        .breadcrumb {
            width: 80%;
            margin: 15px auto;
            padding: 10px 0;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #c00;
        }
        
        .container {
            width: 80%;
            margin: 0 auto 30px;
            display: flex;
        }
        
        .main-content {
            flex: 3;
            margin-right: 20px;
        }
        
        .sidebar {
            flex: 1;
        }
        
        .page-title {
            font-size: 24px;
            color: #c00;
            padding: 15px 0;
            border-bottom: 2px solid #c00;
            margin-bottom: 20px;
        }
        
        .news-list {
            background-color: white;
            padding: 15px;
        }
        
        .news-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-title {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .news-title a {
            color: #333;
            text-decoration: none;
        }
        
        .news-title a:hover {
            color: #c00;
            text-decoration: underline;
        }
        
        .news-meta {
            font-size: 12px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .news-summary {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }
        
        .pagination {
            margin-top: 30px;
            text-align: center;
        }
        
        .pagination a, .pagination span {
            display: inline-block;
            padding: 5px 12px;
            margin: 0 3px;
            border: 1px solid #ddd;
            text-decoration: none;
            color: #333;
            font-size: 14px;
        }
        
        .pagination a:hover {
            background-color: #f5f5f5;
        }
        
        .pagination .current {
            background-color: #c00;
            color: white;
            border-color: #c00;
        }
        
        .pagination .prev, .pagination .next {
            padding: 5px 15px;
        }
        
        .sidebar-card {
            background-color: white;
            margin-bottom: 20px;
            padding: 15px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .sidebar-card h3 {
            color: #c00;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            font-size: 18px;
        }
        
        .sidebar-list li {
            list-style: none;
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .sidebar-list li a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }
        
        .sidebar-list li a:hover {
            color: #c00;
        }
        
        .footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 30px;
        }
        
        .footer-links {
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            font-size: 12px;
            color: #999;
        }