/* 轮播图样式 */
.banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider img.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dots span.active {
    background-color: #fff;
}

/* 精品展示区域样式 */
.featured {
    padding: 60px 0;
    background-color: #fff;
}

.featured h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.featured h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c41230;
}

.featured-items {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.featured .item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.featured .item:hover {
    transform: translateY(-5px);
}

.featured .item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.featured .item h3 {
    font-size: 18px;
    color: #333;
    margin: 15px;
}

.featured .item p {
    color: #666;
    margin: 0 15px 15px;
    font-size: 14px;
}

/* 新闻资讯区域样式 */
.news {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.news h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.news h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c41230;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
}

.news-info {
    flex: 1;
    padding: 20px;
    position: relative;
}

.news-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.news-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-info .date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #999;
    font-size: 12px;
} 