  <!-- 新闻列表页news页面自定义样式 -->

        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('/fonts/Inter-Regular.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 700;
            font-display: swap;
            src: url('/fonts/Inter-Bold.woff2') format('woff2');
        }
        
        body {
            font-family: 'Inter', sans-serif;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #165DFF 0%, #3B82F6 100%);
        }
        
        .card-shadow {
            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
        }
        
        .news-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .news-excerpt {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.6;
        }
        
        .read-more {
            color: #3B82F6;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more:hover {
            color: #1D4ED8;
        }
        
        .news-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
            color: white;
            border-radius: 10px;
            text-align: center;
            flex-shrink: 0;
        }
        
        .news-year {
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1;
        }
        
        .news-month-day {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .news-source {
            color: #6B7280;
            font-size: 0.875rem;
        }
        
        .news-author {
            color: #6B7280;
            font-size: 0.875rem;
        }
        
        .news-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            border-bottom: 1px solid #E5E7EB;
            transition: all 0.3s ease;
        }
        
        /* 鼠标悬停效果 */
        .news-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .news-content {
            flex: 1;
        }
        
        .news-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .news-title a {
            color: inherit;
            text-decoration: none;
        }
        
        .news-title a:hover {
            color: #3B82F6;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }
        
        .news-summary {
            color: #4B5563;
            margin-bottom: 16px;
        }
        
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #6B7280;
        }
        
        .empty-state i {
            font-size: 64px;
            margin-bottom: 16px;
            color: #9CA3AF;
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .pagination a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 4px;
            border-radius: 8px;
            background-color: white;
            color: #4B5563;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #D1D5DB;
            transition: all 0.3s ease;
        }
        
        .pagination a:hover {
            background-color: #3B82F6;
            color: white;
            border-color: #3B82F6;
        }
        
        .pagination .active {
            background-color: #3B82F6;
            color: white;
            border-color: #3B82F6;
        }
        
        .pagination .disabled {
            background-color: #F3F4F6;
            color: #9CA3AF;
            cursor: not-allowed;
        }
        
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
                padding: 20px 16px;
            }
            
            .news-date {
                width: 70px;
                height: 70px;
                align-self: flex-start;
            }
            
            .news-year {
                font-size: 0.8rem;
            }
            
            .news-month-day {
                font-size: 1rem;
            }
        }
