/* Banner样式 */
.social-banner {
    height: 400px;
    background: url('/image/Social/banner.png') no-repeat center;
    background-size: cover;
    position: relative;
    margin-top: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.social-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 600;
    
}

.banner-content p {
    font-size: 40px;
    opacity: 0.9;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .social-banner {
        height: 300px;
        margin-top: 60px;
    }

    .banner-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .social-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

/* 照片列表部分 */
.social-photos {
    padding: 80px 0;
    background: #fff;
}

/* 使用公共样式 section-header，在 common/section-header.css 中已定义 */

/* 响应式适配补充 */
@media (max-width: 768px) {
    .social-photos {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .social-photos {
        padding: 40px 0;
    }
}

/* 岗位内容样式 */
.position-content {
    padding: 80px 200px;
    background: #F8F8F8;
}

.position-container {
    max-width: 1440px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 展开状态的岗位卡片 */
.position-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.card-aclick.span {
    color: #ffffff;
    cursor: pointer;
}
.card-header {
    background: #DA251C;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-header h3 {
    font-weight: 400;
font-size: 18px;
color: #FFFFFF;
}

/* 收起状态的岗位项目 */
.position-item {
    background: #F8F8F8;
    border-radius: 10px;
    overflow: hidden;
}
.position-header-no{
    background: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.apply-btn-no{
    display: flex;
    align-items: center;
    gap: 10px;
}
.apply-btn-no .apply-btn {
    color: #333;
    cursor: pointer;
}

.position-header-no h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 400;
}

.position-header-no .apply-btn {
    background: none;
    padding: 0;
    cursor: pointer;
}

.position-header-no .apply-btn:hover {
    background: none;
    opacity: 0.8;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.position-content-wrapper {
    display: none;
}

/* 添加过渡效果 */
.position-header-no,
.position-header-no h3,
.position-header-no .apply-btn,
.arrow-icon {
    transition: all 0.3s ease;
}

.apply-btn {
    display: inline-block;
    padding: 8px 24px;
    background: #fff;
    color: #E60012;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #f5f5f5;
}

.mobile-btn {
    display: none;
}

.position-details {
    padding: 40px;
}

.position-details h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.position-details ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 32px;
}

.position-details ol:last-child {
    margin-bottom: 0;
}

.position-details li {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.btn-container {
    padding: 0 40px 40px;
    text-align: left;
}

.apply-btn-red {
    display: inline-block;
    padding: 12px 40px;
    background: #DA251C;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-btn-red:hover {
    background: #c11c14;
}

/* 响应式适配补充 */
@media (max-width: 1440px) {
    .position-content {
        padding: 80px 100px;
    }
}

@media (max-width: 992px) {
    .position-content {
        padding: 60px 40px;
    }
    
    .card-header {
        padding: 16px 24px;
    }
    
    .position-details {
        padding: 24px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .position-details h4 {
        font-size: 18px;
    }
    
    .position-details li {
        font-size: 14px;
    }
    
    .btn-container {
        padding: 0 24px 24px;
    }
    
    .apply-btn-red {
        padding: 10px 32px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .position-content {
        padding: 40px 20px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .card-header .apply-btn {
        display: none;
    }
    
    .btn-container {
        padding: 0 20px 20px;
    }
    
    .apply-btn-red {
        width: 100%;
    }
} 