/* 管理员订单管理页样式 */

.filter-section {
    padding: 10px 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.filter-tab {
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    background-color: #f5f5f5;
    border-radius: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.filter-tab.active {
    color: #fff;
    background-color: #1890FF;
}

.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-card:active {
    background-color: #f5f5f5;
}

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

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

.order-status {
    font-size: 14px;
    font-weight: 600;
    color: #1890FF;
}

.order-info {
    margin-bottom: 12px;
}

.order-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 14px;
    color: #666;
}

.order-info-label {
    width: 80px;
    flex-shrink: 0;
    color: #999;
}

.order-info-value {
    flex: 1;
    color: #333;
}

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

.amount-label {
    font-size: 14px;
    color: #666;
}

.amount-value {
    font-size: 18px;
    font-weight: 600;
    color: #FF4D4F;
}

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

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

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

