/* 社会责任页面样式 */
.social-main {
    width: 100%;
    padding-top: 85px;
}

/* 顶部英雄区域 */
.social-hero {
    position: relative;
    width: 100%;
    text-align: center;
}

.hero-full-image {
    width: 100%;
    display: block;
}

/* 通用部分样式 */
.social-section {
    padding: 60px 0;
}

.section-content {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.text-content {
    flex: 1;
    padding: 0 30px;
}

.image-content {
    flex: 1;
    height: 330px;
}

.section-title {
    font-size: 45px;
    font-weight: bold;
    background: linear-gradient(268deg, #C9A37C 60%, #F6E6CF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 20px;
    line-height: 1.6;
    color: #A4A4A4;
}

/* 热心公益区域 */
.charity-section {
    background-color: #0D1E3E;
}


.heart-icon {
    width: 75px;
    height: auto;
    margin-top: 30px;
    display: block;
}

/* 绿色环保区域 */
.green-section {
    background-color: #0D1E3E;
    padding: 0;
}

.green-section .section-content {
    width: 1400px;
    padding: 0;
    display: block;
}

.green-full-image {
    width: 100%;
    display: block;
}

.green-section .section-desc {
    max-width: 800px;
    margin: 0 auto 40px;
}

.green-image {
    width: 100%;
    height: 300px;
    background-color: #f2f2f2;
    margin-top: 30px;
}

/* 员工关怀区域 */
.employee-section {
    background-color: #0D1E3E;
    text-align: right;
}

.button-group {
    margin-top: 48px;
    display: flex;
    gap: 20px;
    float: right;
}

.social-btn {
    background: linear-gradient(268deg, #C9A37C 60%, #F6E6CF 100%);
    color: #000000;
    border: none;
    padding: 10px 25px;
    font-size: 25px;
    cursor: pointer;
}

.social-btn:hover {
    opacity: 0.9;
} 

/* ========== 手机端专用样式 ========== */
@media (max-width: 576px) {
    .social-main {
        width: 100%;
        padding-top: 70px;
    }
    .hero-full-image {
        width: 100%;
        object-fit: cover;
    }
    .social-section {
        padding: 20px 10px;
    }
    
    .section-content {
        width: 100%;
        flex-direction: column;
        gap:20px;
    }
    .text-content {padding:0;}
    .section-title {
        font-size: 30px;
    }
    .section-desc {
    font-size: 14px;
    line-height: 1.5;}.section-desc br{display: none;}
    .heart-icon {
    width: 40px;}
    .image-content {width:100%;height:auto;}
    .image-content .hero-full-image{height:auto;}
    .green-section{ padding:0 10px;}
    .green-section .section-content {width:100%;}
    .green-full-image {
    width: 100%;
    object-fit: cover;}
    .employee-section .section-content{flex-direction: column-reverse;}
    .employee-section .section-title{
        padding: 0 40px;margin-bottom:0;
        text-align: center;
    }
    .employee-section .section-desc br{display: block;}
    .employee-section .section-desc{        text-align: center;}
    .employee-section .text-content{padding: 0;
        display: flex;
        flex-direction: column;        align-items: center;
        gap: 20px;}
        .button-group {
            margin-top: 0;
        }
        
    .social-btn {padding: 5px 20px;
    font-size: 16px;}
}