/* 全局样式 */
:root {
    --primary: #1E88E5;
    --primary-dark: #1565C0;
    --primary-light: #E3F2FD;
    --text-dark: #212121;
    --text-gray: #616161;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 头部样式 */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 75px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.logo-text p {
    font-size:1.2rem;
    color: var(--text-gray);
}

/* 导航样式 */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* 轮播图样式 */
.carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.carousel-caption p {
    font-size: 1.5rem;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.carousel-control {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background-color: white;
    width: 30px;
    border-radius: 6px;
}

/* 通用区块样式 */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.8rem;
    padding: 0 18px;
}

.view-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
padding: 0px 10px;
}

.view-more i {
    margin-left: 5px;
}

/* 栏目预览区域 */
.columns-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.column-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 赛事动态预览 */
.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.news-date i {
    margin-right: 5px;
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.news-card h3 a:hover {
    color: var(--primary);
}

.news-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.news-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 大赛风采预览 */
.gallery-content {
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    height: 510px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 136, 229, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 1.5rem;
}

/* 人物访谈预览 */
.interview-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.interview-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.interview-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.interview-excerpt {
    color: var(--text-gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

.interview-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.interview-link i {
    margin-left: 5px;
}

/* 底部信息区 */
.footer-info {
    background-color: var(--bg-white);
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.info-grid {
 
}

.info-column {
 
}

.info-column h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-links {
    list-style: none;
}

.info-links li {
    margin-bottom: 8px;
    margin-bottom: 8px;
    display: inline-block;
    margin-left: 10px;
}

.info-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.info-links a:hover {
    color: var(--primary);
}

/* 页脚样式 */
footer {
    background-color: #212121;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .columns-container {
        grid-template-columns: 1fr;
    }
    
    .carousel {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .carousel {
        height: 300px;
    }
    
    .carousel-caption {
        left: 20px;
        max-width: 300px;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .carousel {
        height: 250px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        height: 120px;
    }
}