/* 2025暑期训练计划专用样式 */

.training-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.training-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4a6baf;
}

.training-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.training-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    font-style: italic;
}

.training-content {
    margin-bottom: 30px;
}

.training-section {
    margin-bottom: 25px;
}

.training-image {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.training-image-caption {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 5px;
    margin-bottom: 20px;
}

.training-highlight {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #4a6baf;
    margin: 20px 0;
}

.training-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.partner-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .training-title {
        font-size: 26px;
    }
    
    .training-subtitle {
        font-size: 16px;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
    }
}

/* 奖项卡片样式 */
.award-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.award-card h3 {
    color: #0066cc;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.award-card p {
    margin: 8px 0;
}

.highlight {
    color: #d9534f;
    font-weight: bold;
    font-style: italic;
}