/* 技术服务/新闻页面样式 */
/* 页面标题区域 */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 180px 0 80px;
    color: #fff;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #e94560;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}
/* 新闻列表 */
.news-list-section {
    padding: 80px 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: grid;
    grid-template-columns: 100px 280px 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.news-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.news-date-box {
    text-align: center;
    padding: 20px;
    background: var(--accent-color);
    border-radius: 8px;
    color: var(--text-white);
}

.news-date-box .day {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.news-date-box .month {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    opacity: 0.9;
}

.news-thumbnail {
    border-radius: 8px;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-thumbnail img {
    transform: scale(1.1);
}

.news-body {
    padding-right: 20px;
}

.news-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.news-body .btn-link {
    font-size: 14px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--accent-color);
    color: var(--text-white);
    border-color: var(--accent-color);
}

.page-dots {
    color: var(--text-light);
}

/* 响应式 */
@media (max-width: 1024px) {
    .news-item {
        grid-template-columns: 80px 200px 1fr;
        gap: 20px;
        padding: 20px;
    }

    .news-date-box .day {
        font-size: 28px;
    }

    .news-thumbnail img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .news-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-date-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px;
    }

    .news-date-box .day {
        font-size: 24px;
    }

    .news-date-box .month {
        margin-top: 0;
    }

    .news-thumbnail img {
        height: 180px;
    }

    .news-body {
        padding-right: 0;
    }

    .news-body h3 {
        font-size: 16px;
    }
}