/* Banner样式 */
.banner {
    position: relative;
    height: 400px;
    margin-bottom: 30px;
    overflow: hidden;
    background: #f5f5f5;
}

.banner-list {
    position: relative;
    height: 100%;
    width: 100%;
    list-style: none;
}

.banner-list li {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s;
    left: 0;
    top: 0;
    z-index: 1;
}

.banner-list li.active {
    opacity: 1;
    z-index: 2;
}

.banner-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播点样式 */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.banner-dots span.active {
    background: #fff;
}

/* 商品区块样式 */
.section {
    margin-top: 30px;
}

.section-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
}

.product-item {
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item h3 {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.price {
    color: #f40;
    font-size: 18px;
    font-weight: bold;
}

.add-cart {
    width: 100%;
    height: 36px;
    margin-top: 10px;
    background: #1890ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 特色瓷器样式 */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.featured-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.featured-small {
    display: grid;
    gap: 20px;
}

.featured-small img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 4px;
} 