/* 首页特定样式 */
.search-section {
    padding: 15px;
    background: linear-gradient(to right, #1890ff, #36cfc9);
}

.welcome {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

/* 服务网格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 15px;
    background: #fff;
    gap: 10px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.service-icon i {
    font-size: 20px;
    color: #1890ff;
}

.service-item span {
    font-size: 12px;
    color: #333;
}

/* VIP卡片 */
.vip-card {
    margin: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    color: #ff4d4f;
    font-weight: bold;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.buy-btn {
    background: #ff4d4f;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
}

/* 商家列表 */
.shop-list {
    margin-top: 15px;
    background: #fff;
}

.shop-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.shop-logo {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    margin-right: 12px;
}

.shop-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.shop-stats, .shop-rating, .shop-delivery {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.shop-stats span, .shop-delivery span {
    margin-right: 10px;
}

.rating {
    color: #ff4d4f;
    font-weight: bold;
}

.delivery-fee {
    color: #999;
}

.shop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.shop-tags .tag {
    background: #f5f5f5;
    color: #666;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
}
