/* 资质证书轮播样式 */
.honor-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.honor-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.honor-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.honor-item {
    flex: 0 0 calc(25% - 22.5px);
    text-align: center;
}

.honor-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.honor-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.honor-item p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.honor-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 -20px;
    pointer-events: none;
}

.honor-arrow {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.honor-arrow:hover {
    background: #1890ff;
    color: white;
}

.honor-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.honor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.honor-dot.active {
    background: #1890ff;
    width: 30px;
    border-radius: 5px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .honor-item {
        flex: 0 0 calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .honor-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .honor-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
