.welfare-page {
    width: 100%;
    min-width: 1200px;
    background: #fff;
    color: #333;
}

/* ===== 主副标题样式 - 参考 equitiesGood.html ===== */
.welfare-title {
    margin: 0;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

.welfare-sub {
    margin: 22px 0 0;
    text-align: center;
    color: #666;
    font-size: 18px;
}

/* ===== Banner Section - 参考 marketing.html ===== */
.welfare-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.welfare-hero-bg {
    position: absolute;
    inset: 0;
    background: url(../../assets/image/pc/marketing/marketing-banner.png) no-repeat center center;
    background-size: 100% 100%;
}

.welfare-hero-bg::before,
.welfare-hero-bg::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 4px;
    opacity: 0.35;
}

.welfare-hero-bg::before {
    width: 38%;
    height: 55%;
    left: 6%;
    bottom: -8%;
    transform: rotate(-12deg) skewX(-6deg);
    background: linear-gradient(160deg, rgba(80, 50, 140, 0.5), rgba(20, 10, 40, 0.3));
    box-shadow: 0 0 60px rgba(255, 170, 50, 0.08);
}

.welfare-hero-bg::after {
    width: 32%;
    height: 48%;
    right: 4%;
    top: -6%;
    transform: rotate(14deg) skewX(8deg);
    background: linear-gradient(200deg, rgba(60, 35, 110, 0.45), rgba(15, 8, 35, 0.25));
}

.welfare-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 72px 24px 64px;
}

.welfare-hero-title {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0.5px;
}

.welfare-hero-sub {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.welfare-hero-btn {
    background: url(../../assets/image/pc/pointMall/btn-consult.png) no-repeat center center;
    background-size: 100% 100%;
    width: 160px;
    height: 48px;
    margin: 30px auto 0;
    border: none;
    cursor: pointer;
}

/* ===== 解决方案 Section ===== */
.welfare-section {
    padding: 60px 0;
}

.welfare-solution {
    background: url(../../assets/image/pc/welfare/jjfa-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}

.welfare-solution-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.welfare-solution-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welfare-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.welfare-solution-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px;
}

.welfare-solution-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ===== 发放说明 Section ===== */
.welfare-distribution {
    background: url(../../assets/image/pc/welfare/ffsm-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}

/* 流程线 */
.welfare-process-line {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 0 20px;
}

.welfare-process-line::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, #0148A4 0%, #4a9eff 50%, #0148A4 100%);
}

.welfare-process-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.welfare-process-dot {
    display: block;
    width: 14px;
    height: 14px;
    background: #0148A4;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(1, 72, 164, 0.2);
}

.welfare-process-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* 福利图片网格 */
.welfare-festival-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.welfare-festival-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welfare-festival-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.welfare-festival-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 14px;
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .welfare-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .welfare-festival-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .welfare-process-line {
        flex-direction: column;
        gap: 30px;
    }
    
    .welfare-process-line::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .welfare-page {
        min-width: auto;
    }
    
    .welfare-hero-title {
        font-size: 28px;
    }
    
    .welfare-hero-sub {
        font-size: 14px;
    }
    
    .welfare-title {
        font-size: 24px;
    }
    
    .welfare-sub {
        font-size: 14px;
    }
    
    .welfare-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .welfare-festival-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

