/* 合作伙伴板块样式 */
.section-partners {
    width: 100%;
    padding: 60px 8vw;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.partners-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.partners-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partners-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .section-partners {
        padding: 40px 5vw;
    }

    .partners-title {
        margin-bottom: 30px;
    }
}

/* 平板设备优化 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .section-partners {
        padding: 50px 6vw;
    }

    .partners-title {
        margin-bottom: 40px;
    }
}
