/* 焦点区域样式 */
.banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slider {
    height: 100%;
    display: flex;
    transition: transform 0.5s;
    width: 100%;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dots span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dots span.active {
    background: #fff;
}

/* 内容区域样式 */
main {
    max-width: 1200px;
    margin: 40px auto;
}

section {
    margin-bottom: 50px;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #c41230;
    font-size: 28px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-item {
    text-align: center;
}

.featured-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.featured-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 20px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.news-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.news-content h3 {
    margin-bottom: 10px;
}

.news-content a {
    display: inline-block;
    margin-top: 15px;
    color: #c41230;
}

.news-content a:hover {
    text-decoration: underline;
} 