/* 积分商城页样式 */

/* 积分头部 */
.points-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    padding: 20px;
    text-align: center;
    color: #fff;
}

.points-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.points-amount {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.points-unit {
    font-size: 14px;
    opacity: 0.9;
}

.filter-tabs {
    display: flex;
    gap: 20px;
    padding: 10px 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    flex-shrink: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-tab.active {
    color: #1890FF;
    border-bottom-color: #1890FF;
    font-weight: 600;
}

/* 商品网格 */
.mall-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px 15px;
}

.mall-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.mall-item:active {
    background-color: #f5f5f5;
}

.mall-item-img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 8px;
}

.mall-item-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 40px;
}

.mall-item-points {
    font-size: 18px;
    color: #FF4D4F;
    font-weight: 600;
    margin-bottom: 8px;
}

.mall-item-btn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    background-color: #1890FF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.mall-item-btn:active {
    background-color: #1565C0;
}

.mall-item-btn:disabled {
    background-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-text {
    font-size: 14px;
    color: #999;
}

