/* 荣誉墙样式 */
.honor-wall-module {
    padding: 40px 0;
    background: #f8f9fa;
}

.honor-wall-module .container_header {
    text-align: center;
    margin-bottom: 40px;
}

.honor-wall-module .container_header .title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.honor-wall-module .container_header .subtitle {
    font-size: 16px;
    color: #666;
}

/* 荣誉墙滚动容器 */
.honor-scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 荣誉卡片样式 */
.honor-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

/* 荣誉图片 */
.honor-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 比例 */
    overflow: hidden;
    background: #f0f0f0;
}

.honor-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.honor-item:hover .honor-image img {
    transform: scale(1.05);
}

.honor-image .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.honor-item:hover .honor-image .card-overlay {
    opacity: 1;
}

/* 荣誉内容 */
.honor-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.honor-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.honor-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.honor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.honor-type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 500;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .honor-wall-module {
        padding: 30px 0;
    }
    
    .honor-wall-module .container_header .title {
        font-size: 24px;
    }
    
    .honor-wall-module .container_header .subtitle {
        font-size: 14px;
    }
    
    .honor-scroll-container {
        padding: 10px;
    }
    
    .honor-item {
        margin: 0 5px;
    }
    
    .honor-content {
        padding: 15px;
    }
    
    .honor-title {
        font-size: 16px;
    }
    
    .honor-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .honor-wall-module {
        padding: 20px 0;
    }
    
    .honor-wall-module .container_header {
        margin-bottom: 20px;
    }
    
    .honor-wall-module .container_header .title {
        font-size: 20px;
    }
    
    .honor-scroll-container {
        padding: 5px;
    }
    
    .honor-content {
        padding: 12px;
    }
    
    .honor-title {
        font-size: 15px;
    }
    
    .honor-description {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
}

/* 卡片滚动控制按钮样式优化 */
.honor-scroll-container .card-scroll-prev,
.honor-scroll-container .card-scroll-next {
    background: rgba(102, 126, 234, 0.9);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.honor-scroll-container .card-scroll-prev:hover,
.honor-scroll-container .card-scroll-next:hover {
    background: rgba(102, 126, 234, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 指示器样式优化 */
.honor-scroll-container .card-scroll-indicators {
    margin-top: 20px;
}

.honor-scroll-container .card-scroll-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.honor-scroll-container .card-scroll-indicator.active {
    background: #667eea;
    transform: scale(1.2);
}

