 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f2f2f2;
            color: #333;
        }
        
        .header {
            background-color: #fff;
            border-bottom: 2px solid #c00;
            padding: 10px 0;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            float: left;
            width: 200px;
        }
        
        .logo img {
            height: 50px;
        }
        
        .nav {
            float: left;
            margin-left: 30px;
        }
        
        .nav ul {
            list-style: none;
        }
        
        .nav li {
            float: left;
            margin: 0 15px;
            line-height: 50px;
        }
        
        .nav a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
        }
        
        .nav a:hover {
            color: #c00;
        }
        
        .search {
            float: right;
            margin-top: 10px;
        }
        
        .search input {
            width: 200px;
            height: 30px;
            padding: 5px;
            border: 1px solid #ddd;
        }
        
        .search button {
            height: 30px;
            padding: 0 15px;
            background-color: #c00;
            color: white;
            border: none;
            cursor: pointer;
        }
        
        .clearfix::after {
            content: "";
            display: block;
            clear: both;
        }
        
        .breadcrumb {
            padding: 10px 0;
            color: #666;
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #c00;
        }
        
        .breadcrumb span {
            margin: 0 5px;
        }
        
        .list-main {
            background-color: #fff;
            padding: 20px;
            margin-top: 10px;
        }
        
        .list-title {
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .list-title h1 {
            font-size: 24px;
            color: #333;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .list-info {
            text-align: center;
            color: #999;
            font-size: 14px;
        }
        
        .list-info span {
            margin: 0 10px;
        }
        
        .list-content {
            margin-bottom: 30px;
        }
        
        .news-list {
            list-style: none;
        }
        
        .news-item {
            padding: 15px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item a {
            display: block;
            text-decoration: none;
            color: #333;
        }
        
        .news-item a:hover {
            color: #c00;
        }
        
        .news-item h3 {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: normal;
            line-height: 1.5;
        }
        
        .news-item .desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 8px;
        }
        
        .news-item .info {
            font-size: 12px;
            color: #999;
        }
        
        .news-item .info span {
            margin-right: 15px;
        }
        
        .pagination {
            text-align: center;
            margin-top: 30px;
        }
        
        .pagination a {
            display: inline-block;
            padding: 5px 10px;
            margin: 0 3px;
            border: 1px solid #ddd;
            text-decoration: none;
            color: #333;
        }
        
        .pagination a:hover {
            background-color: #f5f5f5;
        }
        
        .pagination .current {
            background-color: #c00;
            color: #fff;
            border-color: #c00;
        }
        
        .footer {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
            margin-top: 20px;
        }