/* 订单页样式 */

/* 订单状态筛选 */
.order-tabs {
    display: flex;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

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

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

/* 订单列表 */
.order-list {
    padding: 10px 15px;
}

.order-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.order-number {
    font-size: 12px;
    color: #999;
}

.order-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.status-pending {
    background-color: #fff5f5;
    color: #FF4D4F;
}

.status-processing {
    background-color: #fff7e6;
    color: #FAAD14;
}

.status-shipping {
    background-color: #e6f7ff;
    color: #1890FF;
}

.status-serving {
    background-color: #e6f7ff;
    color: #1890FF;
}

.status-completed {
    background-color: #f6ffed;
    color: #52C41A;
}

.order-content {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.order-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.order-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.order-desc {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.order-price {
    font-size: 16px;
    font-weight: 600;
}

.order-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-small {
    padding: 6px 16px;
    font-size: 14px;
}

