/* Banner样式 */
.hr-banner {
    height: 50vh;
    min-height: 400px;
    background-image: url('../images/hr/hr-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hr-banner h1 {
    color: #fff;
    font-size: 48px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 内容区域样式 */
.hr-content {
    padding: 80px 0;
    background: #1a1a1a;
}

.content-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.text-content {
    flex: 1;
    color: #fff;
}

.text-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #C6A57E;
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .content-section {
        flex-direction: column;
        gap: 40px;
    }

    .text-content,
    .image-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hr-banner {
        height: 30vh;
        min-height: 200px;
    }

    .hr-banner h1 {
        font-size: 36px;
    }

    .hr-content {
        padding: 40px 0;
    }

    .content-section {
        margin-bottom: 40px;
    }

    .text-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 15px;
    }
} 