* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
        }
        
        /* 顶部导航 - 与首页一致 */
        .top-bar {
            background-color: #1479d7;
            height: 40px;
            line-height: 40px;
            color: white;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
        }
        
        .top-nav a {
            color: white;
            margin-left: 15px;
            transition: opacity 0.3s;
        }
        
        /* 主导航 - 与首页一致 */
        .main-nav {
            background-color: white;
            height: 80px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 100;
        }
        
        .main-nav .container {
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .logo {
            margin-right: 30px;
        }
        
        .logo img {
            height: 50px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-right: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            padding: 30px 0;
        }
        
        .nav-menu li:hover {
            color: #1479d7;
        }
        
        .nav-menu li.active {
            color: #1479d7;
        }
        
        .nav-menu li.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background-color: #1479d7;
        }
        
        .search-box {
            margin-left: auto;
            display: flex;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #1479d7;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #999;
        }
        
        /* 列表页主要内容 */
        .list-main {
            display: flex;
            margin-top: 20px;
        }
        
        .list-content {
            width: 820px;
            margin-right: 20px;
        }
        
        .list-sidebar {
            width: 360px;
        }
        
        /* 列表页标题 */
        .list-header {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .list-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
        
        .list-desc {
            font-size: 14px;
            color: #666;
        }
        
        /* 新闻列表 */
        .news-list-container {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .news-list-header {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            background-color: #f9f9f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .news-list-title {
            font-size: 18px;
            font-weight: bold;
            color: #1479d7;
            position: relative;
            padding-left: 12px;
        }
        
        .news-list-title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background-color: #1479d7;
            border-radius: 2px;
        }
        
        .news-sort {
            font-size: 14px;
            color: #666;
        }
        
        .news-sort a {
            color: #666;
            margin-left: 15px;
        }
        
        .news-sort a.active {
            color: #1479d7;
            font-weight: bold;
        }
        
        .news-list {
            padding: 0 20px;
        }
        
        .news-item {
            padding: 20px 0;
            border-bottom: 1px solid #f5f5f5;
            display: flex;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-image {
            width: 180px;
            height: 120px;
            border-radius: 4px;
            overflow: hidden;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-content {
            flex: 1;
        }
        
        .news-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.4;
            transition: color 0.3s;
        }
        
        .news-item:hover .news-title {
            color: #1479d7;
        }
        
        .news-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-meta {
            font-size: 12px;
            color: #999;
            display: flex;
            align-items: center;
        }
        
        .news-source {
            color: #1479d7;
            margin-right: 15px;
        }
        
        .news-time {
            margin-right: 15px;
        }
        
        .news-comment {
            display: flex;
            align-items: center;
        }
        
        .news-comment i {
            margin-right: 5px;
            font-size: 14px;
        }
        
        /* 无图新闻项 */
        .news-item.no-image {
            padding: 15px 0;
        }
        
        .news-item.no-image .news-title {
            font-size: 16px;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            padding: 30px 0;
        }
        
        .page-item {
            margin: 0 5px;
        }
        
        .page-link {
            display: block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            border-radius: 4px;
            color: #333;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .page-link:hover {
            background-color: #f0f0f0;
        }
        
        .page-item.active .page-link {
            background-color: #1479d7;
            color: white;
        }
        
        .page-item.disabled .page-link {
            color: #ccc;
            cursor: not-allowed;
        }
        
        /* 右侧边栏 - 与首页类似 */
        .sidebar-section {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
        }
        
        .sidebar-header {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            background-color: #f9f9f9;
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }
        
        .sidebar-content {
            padding: 15px 20px;
        }
        
        /* 热门推荐 */
        .hot-recommend-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .hot-recommend-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .hot-recommend-image {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .hot-recommend-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hot-recommend-title {
            font-size: 14px;
            line-height: 1.4;
            transition: color 0.3s;
        }
        
        .hot-recommend-title:hover {
            color: #1479d7;
        }
        
        /* 页脚 - 与首页一致 */
        .footer {
            background-color: #333;
            color: #999;
            padding: 40px 0 30px;
            font-size: 14px;
            line-height: 1.8;
            margin-top: 30px;
        }
        
        .footer-container {
            width: 1200px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #ccc;
            margin: 0 15px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #1479d7;
        }
        
        .copyright {
            text-align: center;
            color: #777;
        }
        
        .footer-logo {
            text-align: center;
            margin-bottom: 20px;
        }