/* 服务人员订单列表页样式 */

.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: 0;
}

.order-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: none;
    border: 1px solid #eee;
}

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

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

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

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

.order-status.status-pending {
    color: #FAAD14;
}

.order-status.status-processing {
    color: #1890FF;
}

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

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

.order-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.order-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
    line-height: 1.5;
}

.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-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

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

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

.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;
}

.order-footer {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.btn-accept {
    flex: 1;
    padding: 10px;
    background-color: #1890FF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

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

.btn-transfer {
    flex: 1;
    padding: 10px;
    background-color: #fff;
    color: #1890FF;
    border: 1px solid #1890FF;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.btn-transfer:active {
    background-color: #E6F7FF;
}

.btn-transfer.disabled {
    background-color: #f5f5f5;
    color: #ccc;
    border-color: #ddd;
    cursor: not-allowed;
}

.btn-transfer.disabled:active {
    background-color: #f5f5f5;
}

.btn-start {
    flex: 1;
    padding: 10px;
    background-color: #1890FF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

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

.btn-complete {
    flex: 1;
    padding: 10px;
    background-color: #52C41A;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.btn-complete:active {
    background-color: #389E0D;
}

.btn-detail {
    flex: 1;
    padding: 10px;
    background-color: #fff;
    color: #1890FF;
    border: 1px solid #1890FF;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-detail:active {
    background-color: #E6F7FF;
}

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

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

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

.empty-desc {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    line-height: 1.5;
}

