.body-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.category-wrapper {
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.title-wrapper {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.more-wrapper a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.more-wrapper a:hover {
    color: #2980b9;
}

.list-item-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* 新增：商品卡片容器 */
.goods-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.goods-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.item-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 133.33%; /* 3:4 比例 */
    overflow: hidden;
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.goods-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.item-info-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 15px 12px 10px;
}

.item-info-wrapper .title-wrapper {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.price-wrapper {
    font-size: 18px;
    font-weight: bold;
    color: #ff4757;
}

a {
    text-decoration: none;
    color: inherit;
}

.no-data-wrapper {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.no-data-wrapper .text {
    font-size: 18px;
    color: #7f8c8d;
}

/* 按钮容器 */
.button-wrapper {
    padding: 15px;
    text-align: center;
    background: white;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

/* 选座购票按钮 */
.buy-ticket-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #f9773a, #f4763b);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    width: 100%;
    text-align: center;
}

.buy-ticket-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff3742);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 71, 87, 0.4);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .list-item-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .list-item-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .list-item-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .list-item-wrapper {
        grid-template-columns: 1fr;
    }
}

