/* 合作伙伴区域样式 */
.partners-section {
    width: 100%;
    background-color: #002654;
    padding: 60px 0;
    color: #fff;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-title {
    font-size: 32px;
    color: rgba(255, 255, 255, 1);
    position: relative;
    text-align: center;
}

.partners-sub-title {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.partners-sub-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.6);
}

/* 合作伙伴滚动区域 */
.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.partners-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.partner-item {
    flex: 0 0 auto;
    width: 220px;
    height: 100px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 滚动动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 响应式布局 */
@media (max-width: 768px) {
    .partners-title {
        font-size: 28px;
    }
    
    .partners-sub-title {
        font-size: 18px;
    }
    
    .partner-item {
        width: 180px;
        height: 80px;
        margin: 0 10px;
    }
}