
      
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        /* 主要内容区域 */
        .main-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
        }
        
        /* 左侧大版块 (65%) */
        .left-column {
            flex: 0 0 100%;
        }
        
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffb74d;
            color: #1a3a5f;
        }
        
        .section-title i {
            color: #ffb74d;
            font-size: 1.5rem;
        }
        
        .card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .product-card {
            border: 1px solid #eaeaea;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .product-card:hover {
            border-color: #ffb74d;
        }
        
        .product-img {
            height: 180px;
            /*background: linear-gradient(45deg, #a7c5eb, #c4d7f2);*/
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a3a5f;
            font-size: 4rem;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: #1a3a5f;
        }
        
        .product-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.9rem;
        }
        
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .news-item {
            display: flex;
            gap: 15px;
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        
        .news-item:hover {
            background: #f9f9f9;
        }
        
        .news-date {
            background: #e3f2fd;
            color: #1a3a5f;
            border-radius: 6px;
            padding: 10px;
            text-align: center;
            flex: 0 0 80px;
        }
        
        .news-date .day {
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .news-date .month {
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        
        .news-content h3 {
            margin-bottom: 8px;
            color: #1a3a5f;
        }
        
        .news-content p {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* 右侧小版块 (35%) */
        .right-column {
            flex: 0 0 35%;
        }
        
        .stats-card {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 25px;
        }
        
        .stat-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .stat-item i {
            font-size: 2.5rem;
            color: #ffb74d;
            margin-bottom: 10px;
        }
        
        .stat-item .value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a3a5f;
        }
        
        .stat-item .label {
            color: #666;
            font-size: 0.9rem;
        }
        
        .quick-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .quick-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 15px;
            background: white;
            border-radius: 8px;
            color: #1a3a5f;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .quick-link:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }
        
        .quick-link i {
            color: #ffb74d;
            font-size: 1.2rem;
        }
        
           /* 新增的分页样式 */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 8px;
}

.pagination li {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination li a {
    color: #1a3a5f;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li.active {
    background-color: #ffb74d;
}

.pagination li.active a {
    color: white;
}

.pagination li:not(.active):hover {
    background-color: #e3f2fd;
}

.pagination li.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 搜索高亮样式 */
.highlight {
    color: #ff5252;
    font-weight: bold;
}
/* 改进的分页样式 - 整行显示 */
.pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.pagination li {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f5f7fa;
    margin: 2px;
}

.pagination li a, .pagination li span {
    color: #1a3a5f;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.pagination li.active {
    background-color: #ffb74d;
    font-weight: bold;
}

.pagination li.active a {
    color: white;
}

.pagination li:not(.active):not(.disabled):hover {
    background-color: #e3f2fd;
    transform: translateY(-2px);
}

.pagination li.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination li.page-nav {
    width: 80px;
    background: #e3f2fd;
    font-weight: bold;
}

/* 搜索结果统计 */
.search-results-count {
    text-align: center;
    margin: 15px 0;
    color: #666;
    font-size: 0.95rem;
}

.search-results-count strong {
    color: #ff5252;
}

/* 搜索高亮样式 */
.highlight {
    color: #ff5252;
    font-weight: bold;
    background-color: #fff2f2;
    padding: 0 2px;
    border-radius: 3px;
}