/* Banner样式 */
.leadership-banner {
    height: 400px;
    background: url('/image/corporateculture/banner.png') no-repeat center;
    background-size: cover;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.leadership-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;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 24px;
    opacity: 0.9;
}

/* 企业精神部分 */
.culture-spirit {
    padding: 80px 0;
    background: #fff;
}

.spirit-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 199px;
}

.spirit-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
    background: #FFF6F6;
}

.spirit-item:first-child {
    margin-bottom: 40px;
}

.spirit-item:last-child {
    margin-bottom: 0;
}

.spirit-left,
.spirit-right {
    flex: 1;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    padding: 0;
}

/* 图片容器样式 */
.spirit-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.spirit-logo,
.spirit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 文字内容容器 */
.spirit-content-wrapper {
    padding: 40px 64px;
    max-width: 700px;
}

.spirit-right-image {
    width: 32px;
    height: 32px;

}
.spirit-image-left{
    margin:30px 0;
}
.spirit-image-right{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin:30px 0;
}
.spirit-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.spirit-text {
    color: #DA251C;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .spirit-content {
        padding: 0 80px;
    }
}

@media (max-width: 768px) {
    .leadership-banner {
        height: 300px;
        margin-top: 60px;
    }
    .spirit-image-right{
        justify-content: center !important;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 20px;
    }

    .culture-spirit {
        padding: 60px 0;
    }

    .spirit-item {
        flex-direction: column;
    }

    .spirit-left,
    .spirit-right {
        width: 100%;
        min-height: 300px;
    }

    .spirit-content-wrapper {
        padding: 40px;
        text-align: center;
    }

    .spirit-title {
        font-size: 28px;
    }

    .spirit-text {
        font-size: 32px;
    }

    .spirit-content {
        padding: 0 40px;
    }

    .spirit-item:first-child {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .leadership-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .culture-spirit {
        padding: 40px 0;
    }

    .spirit-left,
    .spirit-right {
        min-height: 200px;
    }

    .spirit-content-wrapper {
        padding: 30px;
    }

    .spirit-title {
        font-size: 24px;
    }

    .spirit-text {
        font-size: 28px;
    }

    .spirit-content {
        padding: 0 20px;
    }

    .spirit-item:first-child {
        margin-bottom: 20px;
    }
}

/* 添加悬停放大效果 */
.spirit-image-container:hover .spirit-image {
    transform: scale(1.05);
}