* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: #f5f6f8;
    min-height: 100vh;
    padding-bottom: 60px;
    position: relative;
}

/* 加载动画已移至 common/common.css */

.container {
/* spinner和@keyframes spin已移至 common/common.css */

/* Header样式已移至 common/header.css 统一管理 */

.container {
    padding: 15px;
    position: relative;
    z-index: 1;
}

.order-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.order-item:active {
    transform: scale(0.98);
}

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

.order-num {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.order-status {
    font-size: 13px;
    color: #ec0000;
    font-weight: 600;
    background: #fdf2f2;
    padding: 4px 12px;
    border-radius: 12px;
}

.order-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-icon {
    width: 50px;
    height: 50px;
    background: #fdf2f2;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec0000;
    font-size: 20px;
    flex-shrink: 0;
}

.order-info {
    flex: 1;
}

.order-money {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.order-detail {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
}

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

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ddd;
}

.empty-state p {
    font-size: 14px;
    font-weight: 500;
}

.nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #bbb;
    font-size: 12px;
    flex: 1;
    transition: color 0.2s;
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
    transition: transform 0.2s;
}

.nav-item.active {
    color: #ec0000;
}

.nav-item.active i {
    transform: scale(1.1);
}

.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.toast.show {
    opacity: 1;
}

