/* 客户案例页样式 */

.cases-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.cases-hero h1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cases-hero p {
    font-size: 1.25rem;
    color: #CCCCCC;
}

/* 数据统计 */
.stats-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #E60012;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
}

/* 客户案例 */
.cases-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.cases-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.case-card {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    /* border-left: 4px solid #E60012; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 案例图片 */
.case-image {
    position: relative;
    width: 100%;
    height: 280px;
    margin: -2rem -2rem 2rem -2rem;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.featured .case-image {
    height: 350px;
}

.case-content h3 {
    color: #E60012;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.case-desc {
    color: #333333;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.case-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.case-features li {
    color: #333333;
    font-size: 0.95rem;
}

/* 资讯中心 */
.news-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.news-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card h3 {
    color: #1A1A1A;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-date {
    color: #999999;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .stats-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-hero h1 {
        font-size: 2rem;
    }

    .stats-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .case-features {
        grid-template-columns: 1fr;
    }
}
