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

:root {
    --primary-color: #2c4a7c;
    --primary-light: #3d5f99;
    --primary-dark: #1e3557;
    --gold-color: #c9a227;
    --gold-light: #d4b84b;
    --success-color: #52c41a;
    --warning-color: #c9a227;
    --danger-color: #d4574a;
    --silver-color: #a8a8a8;
    --bg-color: #f5f6f8;
    --card-bg: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #5a6a7a;
    --text-light: #8a9aaa;
    --border-color: #e0e4e8;
    --shadow: 0 2px 12px rgba(44, 74, 124, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: var(--bg-color);
    padding-bottom: 70px;
    position: relative;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left, .header-right {
    width: 40px;
    font-size: 18px;
    cursor: pointer;
}

.header-right {
    text-align: right;
    position: relative;
}

.header-right .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

.header-title {
    font-size: 18px;
    font-weight: 600;
}

/* User Card */
.user-card {
    display: flex;
    align-items: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    margin-bottom: -20px;
    padding-bottom: 40px;
}

.user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.user-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.user-info p {
    font-size: 12px;
    opacity: 0.9;
}

.user-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.user-status.online .status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: space-around;
    background: var(--card-bg);
    margin: 0 16px;
    padding: 20px 10px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.action-item:active {
    transform: scale(0.95);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.action-icon.blue { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); }
.action-icon.orange { background: linear-gradient(135deg, var(--gold-color), var(--gold-light)); }
.action-icon.green { background: linear-gradient(135deg, #5a8a5a, #7ab87a); }
.action-icon.purple { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }

.action-item span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 12px;
}

.section-header h3 {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h3 i {
    color: var(--primary-color);
}

.view-all {
    font-size: 12px;
    color: var(--text-light);
    cursor: pointer;
}

/* Current Task */
.current-task {
    padding: 0 16px;
    margin-top: 16px;
}

.task-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.task-card.active {
    border-left: 4px solid var(--primary-color);
}

.task-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.status-tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-tag.transporting {
    background: #e8eef5;
    color: var(--primary-color);
}

.status-tag.waiting {
    background: #faf5e6;
    color: var(--gold-color);
}

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

.task-time {
    font-size: 12px;
    color: var(--text-light);
}

/* Route Display */
.task-route {
    position: relative;
    padding: 0 10px;
}

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.route-point .point-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid;
    background: white;
    flex-shrink: 0;
    margin-top: 4px;
}

.route-point.start .point-icon {
    border-color: var(--success-color);
}

.route-point.end .point-icon {
    border-color: var(--danger-color);
}

.point-info .point-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.point-info .point-detail {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.route-line {
    height: 40px;
    margin-left: 5px;
    border-left: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.route-icon {
    color: var(--gold-color);
    font-size: 16px;
    animation: drive 1.5s ease-in-out infinite;
}

@keyframes drive {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Task Actions */
.task-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
    color: white;
}

.btn-outline {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-block {
    width: 100%;
}

/* Menu Grid */
.menu-grid {
    padding: 0 16px;
    margin-top: 8px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.menu-item:active {
    background: var(--bg-color);
}

.menu-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
}

.menu-item span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: space-around;
    background: var(--card-bg);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 16px;
    color: var(--text-light);
    transition: color 0.2s;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item i {
    font-size: 20px;
}

.nav-item span {
    font-size: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: flex-end;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--card-bg);
    width: 100%;
    max-width: 480px;
    border-radius: 16px 16px 0 0;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.modal-close {
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
}

.modal-body {
    padding: 16px;
}

.modal-footer {
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

/* Maintain Options */
.maintain-options {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.maintain-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-color);
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.maintain-item.active {
    border-color: var(--gold-color);
    background: #faf8f0;
}

.maintain-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

/* Photo Upload */
.photo-upload {
    margin-top: 16px;
}

.photo-upload p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-area:active {
    background: var(--bg-color);
    border-color: var(--primary-color);
}

.upload-area i {
    font-size: 32px;
    color: var(--text-light);
}

.upload-area span {
    font-size: 14px;
    color: var(--text-light);
}

/* Toast */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 2000;
    animation: toastIn 0.2s;
}

@keyframes toastIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Loading */
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.loading.show {
    display: flex;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== 洗消页面样式 ==================== */

/* 洗消状态卡片 */
.wash-status {
    margin: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.status-card {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.status-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.status-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.status-info h3 span {
    color: var(--primary-color);
}

.status-info p {
    font-size: 12px;
    color: var(--text-light);
}

.countdown-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #faf8f0;
    border-top: 1px solid var(--border-color);
}

.countdown-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.countdown-label i {
    color: var(--gold-color);
}

.countdown-time {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.countdown-time.urgent {
    color: var(--danger-color);
    animation: blink 1s infinite;
}

.countdown-time.scheduled {
    color: var(--gold-color);
    font-size: 24px;
}

/* 签到状态 */
.checkin-status {
    padding: 16px 16px 0;
}

.checkin-card {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    gap: 12px;
}

.checkin-card.success {
    border: 1px solid var(--success-color);
    background: #f6ffed;
}

.checkin-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.checkin-info {
    flex: 1;
}

.checkin-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--success-color);
    margin-bottom: 2px;
}

.checkin-info p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.checkin-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* 倒计时警告样式 */
.countdown-bar.warning {
    background: #fff3e0;
}

.countdown-bar.warning .countdown-label i {
    color: #f57c00;
}

.countdown-bar.danger {
    background: #ffebee;
}

.countdown-bar.danger .countdown-time {
    color: var(--danger-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* 洗消步骤 */
.wash-steps {
    margin: 0 16px 16px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: var(--shadow);
}

.step-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 31px;
    bottom: 0;
    width: 2px;
    height: 14px;
    background: var(--border-color);
}

.step-item.completed::after {
    background: var(--success-color);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    flex-shrink: 0;
}

.step-item.completed .step-number {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step-item.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.step-desc {
    font-size: 12px;
    color: var(--text-light);
}

.step-item.completed .step-desc {
    color: var(--success-color);
}

.step-check {
    color: var(--success-color);
    font-size: 18px;
}

.step-arrow {
    color: var(--text-light);
    font-size: 14px;
}

/* 照片上传区域 */
.photo-section {
    margin: 0 16px 16px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.photo-section .section-header {
    padding: 0 0 8px;
}

.photo-count {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.photo-tip {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    padding: 8px 12px;
    background: #faf8f0;
    border-radius: 6px;
    border-left: 3px solid var(--gold-color);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.photo-item {
    aspect-ratio: 1;
    border-radius: 8px;
    border: 2px dashed var(--border-color);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

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

.photo-item.has-photo {
    border-style: solid;
    border-color: var(--success-color);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--bg-color);
}

.photo-placeholder i {
    font-size: 20px;
    color: var(--text-light);
}

.photo-placeholder span {
    font-size: 10px;
    color: var(--text-light);
    text-align: center;
    padding: 0 4px;
}

.photo-input {
    display: none;
}

.photo-preview {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* 示例照片 */
.example-section {
    margin: 0 16px 100px;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.example-header i.fa-chevron-down {
    transition: transform 0.3s;
}

.example-header i.fa-chevron-down.rotate {
    transform: rotate(180deg);
}

.example-content {
    display: none;
    padding: 0 16px 16px;
}

.example-content.show {
    display: block;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.example-item {
    text-align: center;
}

.example-img {
    aspect-ratio: 1;
    background: var(--bg-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.example-item span {
    font-size: 10px;
    color: var(--text-light);
}

/* 底部固定按钮 */
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: var(--card-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.btn-large {
    padding: 14px 24px;
    font-size: 16px;
}

.btn-large:disabled {
    background: var(--silver-color);
    opacity: 0.6;
}

.btn-large.ready {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(44, 74, 124, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(44, 74, 124, 0); }
}

/* ==================== 停车排队页面样式 ==================== */

/* 排队状态卡片 */
.queue-status-card {
    margin: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    padding: 24px 20px;
    color: white;
    text-align: center;
}

.queue-number {
    margin-bottom: 16px;
}

.queue-number .label {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.queue-number .number {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
}

.queue-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 12px;
}

.queue-tip.success {
    background: rgba(82, 196, 26, 0.3);
}

.queue-tip.success i {
    color: #b7eb8f;
}

.queue-number .number.confirmed {
    color: var(--gold-light);
    animation: confirmPulse 0.5s ease;
}

@keyframes confirmPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.queue-info-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.queue-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.queue-info-item i {
    font-size: 14px;
    opacity: 0.9;
}

.queue-info-item strong {
    color: var(--gold-light);
}

/* 位置信息 */
.location-section {
    margin: 0 16px 16px;
}

.location-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.location-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
}

.location-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.location-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.location-icon.gold {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
}

.location-info {
    flex: 1;
}

.location-info h4 {
    font-size: 12px;
    color: var(--text-light);
    font-weight: normal;
    margin-bottom: 2px;
}

.location-info p {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.distance-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.distance-badge.in-range {
    background: #e8f5e9;
    color: #43a047;
}

.distance-badge.out-range {
    background: #ffebee;
    color: #e53935;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-color);
    color: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
}

/* 费用区域 */
.fee-section {
    margin: 0 16px 16px;
}

.fee-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

.fee-status.unpaid {
    background: #fff3e0;
    color: #f57c00;
}

.fee-status.paid {
    background: #e8f5e9;
    color: #43a047;
}

.fee-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.fee-details {
    padding: 16px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.fee-row.discount {
    color: #43a047;
}

.fee-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #faf8f0;
    border-top: 1px solid var(--border-color);
}

.fee-total span:first-child {
    font-size: 14px;
    color: var(--text-secondary);
}

.total-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--danger-color);
}

.fee-tip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--bg-color);
    font-size: 12px;
    color: var(--text-light);
}

.fee-tip i {
    color: var(--gold-color);
}

/* 支付方式 */
.payment-section {
    margin: 0 16px 16px;
}

.payment-methods {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.payment-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.payment-item:last-child {
    border-bottom: none;
}

.payment-item input[type="radio"] {
    display: none;
}

.payment-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.payment-icon.wechat {
    background: #07c160;
}

.payment-icon.alipay {
    background: #1677ff;
}

.payment-icon.balance {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
}

.payment-item span {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
}

.payment-item .check-icon {
    color: var(--border-color);
    font-size: 18px;
    transition: all 0.2s;
}

.payment-item.active .check-icon {
    color: var(--primary-color);
}

/* 排队提醒 */
.reminder-section {
    margin: 0 16px 100px;
}

.reminder-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.reminder-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #faf8f0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.reminder-header i {
    color: var(--gold-color);
}

.reminder-list {
    padding: 12px 16px 12px 32px;
    margin: 0;
}

.reminder-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    position: relative;
}

.reminder-list li::marker {
    color: var(--gold-color);
}

/* 底部双按钮 */
.bottom-buttons {
    display: flex;
    gap: 12px;
}

.btn-half {
    flex: 1;
}

.btn-danger {
    background: linear-gradient(135deg, #e53935, #ef5350);
    color: white;
}

.btn.disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* 居中模态框 */
.modal-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 64px);
    max-width: 320px;
    border-radius: 12px;
    animation: modalZoom 0.3s;
}

@keyframes modalZoom {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.modal-body.text-center {
    text-align: center;
    padding: 24px 20px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.modal-icon.warning {
    background: #fff3e0;
    color: #f57c00;
}

.modal-icon.success {
    background: #e8f5e9;
    color: #43a047;
}

.modal-body h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-body p {
    font-size: 14px;
    color: var(--text-light);
}

.success-info {
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.success-info strong {
    color: var(--primary-color);
    font-size: 16px;
}

.modal-footer-buttons {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
}

.modal-footer-buttons .btn {
    flex: 1;
}

/* ==================== 注册信息页面样式 ==================== */

/* 认证状态 */
.auth-status {
    display: flex;
    align-items: center;
    padding: 20px 16px;
    margin: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    gap: 12px;
}

.auth-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.auth-status.complete .auth-icon {
    background: linear-gradient(135deg, #52c41a, #73d13d);
}

.auth-info {
    flex: 1;
}

.auth-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.auth-info p {
    font-size: 12px;
    color: var(--text-light);
}

.auth-progress {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

/* 表单区域 */
.form-section {
    margin: 0 16px 16px;
}

.form-section .section-header {
    padding: 12px 0;
}

.section-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

.section-status.pending, .section-status:not(.done) {
    background: #fff3e0;
    color: #f57c00;
}

.section-status.done {
    background: #e8f5e9;
    color: #43a047;
}

.form-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group .required {
    color: var(--danger-color);
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-color);
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a9aaa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-hint {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* 身份证照片上传 */
.id-photo-upload {
    display: flex;
    gap: 12px;
}

.id-photo-item {
    flex: 1;
    aspect-ratio: 1.6;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

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

.id-photo-item.has-photo {
    border-style: solid;
    border-color: var(--success-color);
}

.id-photo-item .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-color);
}

.id-photo-item .photo-placeholder i {
    font-size: 24px;
    color: var(--text-light);
}

.id-photo-item .photo-placeholder span {
    font-size: 12px;
    color: var(--text-light);
}

.id-photo-item .photo-input {
    display: none;
}

.id-photo-item .photo-preview {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
}

.id-photo-item .photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.id-photo-item .photo-delete {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* 车辆照片上传 */
.vehicle-photo-upload {
    display: flex;
    gap: 10px;
}

.vehicle-photo-item {
    flex: 1;
    aspect-ratio: 1;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

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

.vehicle-photo-item.has-photo {
    border-style: solid;
    border-color: var(--success-color);
}

.vehicle-photo-item .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--bg-color);
}

.vehicle-photo-item .photo-placeholder i {
    font-size: 20px;
    color: var(--text-light);
}

.vehicle-photo-item .photo-placeholder span {
    font-size: 10px;
    color: var(--text-light);
    text-align: center;
}

.vehicle-photo-item .photo-input {
    display: none;
}

.vehicle-photo-item .photo-preview {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
}

.vehicle-photo-item .photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-photo-item .photo-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* 单张照片上传 */
.single-photo-upload {
    width: 100%;
}

.single-photo-item {
    width: 100%;
    aspect-ratio: 2;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

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

.single-photo-item.has-photo {
    border-style: solid;
    border-color: var(--success-color);
}

.single-photo-item .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-color);
}

.single-photo-item .photo-placeholder i {
    font-size: 32px;
    color: var(--text-light);
}

.single-photo-item .photo-placeholder span {
    font-size: 13px;
    color: var(--text-light);
}

.single-photo-item .photo-input {
    display: none;
}

.single-photo-item .photo-preview {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
}

.single-photo-item .photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-photo-item .photo-delete {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ==================== 接单中心页面样式 ==================== */

/* 订单标签 */
.order-tabs {
    display: flex;
    background: var(--card-bg);
    padding: 0 16px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 44px;
    z-index: 50;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

/* 订单卡片 */
.order-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}

.order-no {
    font-size: 13px;
    color: var(--text-secondary);
}

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

.order-status.pending {
    background: #fff3e0;
    color: #f57c00;
}

.order-status.accepted {
    background: #e8f5e9;
    color: #43a047;
}

.order-status.completed {
    background: #e3f2fd;
    color: #1976d2;
}

/* 订单路线 */
.order-route {
    padding: 16px;
    position: relative;
}

.route-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.route-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid;
    background: white;
    margin-top: 3px;
    flex-shrink: 0;
}

.route-item.start .route-dot {
    border-color: var(--success-color);
}

.route-item.end .route-dot {
    border-color: var(--danger-color);
}

.route-info {
    flex: 1;
}

.route-label {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.route-address {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.order-route .route-line {
    width: 2px;
    height: 24px;
    background: var(--border-color);
    margin-left: 5px;
    margin: 4px 0 4px 5px;
}

/* 到达时间 */
.order-deadline {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #faf8f0;
    font-size: 13px;
    color: var(--text-secondary);
}

.order-deadline i {
    color: var(--gold-color);
}

.order-deadline strong {
    color: var(--danger-color);
    font-weight: 600;
}

/* 订单详情 */
.order-details {
    display: flex;
    padding: 14px 16px;
    border-top: 1px solid var(--border-color);
    gap: 12px;
}

.detail-item {
    flex: 1;
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.detail-value.price {
    color: var(--danger-color);
}

/* 订单操作 */
.order-actions {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid var(--border-color);
}

/* 空状态 */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

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

/* 确认信息 */
.confirm-info {
    text-align: left;
    margin-top: 16px;
    background: var(--bg-color);
    border-radius: 8px;
    padding: 12px;
}

.confirm-row {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-row span {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.confirm-row p {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.confirm-row.highlight p {
    color: var(--danger-color);
    font-weight: 600;
}

.modal-icon.primary {
    background: #e8eef5;
    color: var(--primary-color);
}

/* 接单前置条件 */
.prerequisite-section {
    padding: 16px;
    padding-bottom: 0;
}

.prerequisite-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--gold-color);
}

.prerequisite-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #faf8f0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.prerequisite-header i {
    color: var(--gold-color);
}

.prerequisite-steps {
    padding: 8px 0;
}

.prereq-step {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.prereq-step:last-child {
    border-bottom: none;
}

.prereq-step.completed .prereq-number {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.prereq-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    flex-shrink: 0;
}

.prereq-content {
    flex: 1;
}

.prereq-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.prereq-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.prereq-action {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.prereq-action:active {
    transform: scale(0.95);
}

.prereq-action.disabled {
    background: var(--silver-color);
    pointer-events: none;
    opacity: 0.6;
}

.prereq-action.done {
    background: var(--success-color);
}

.prereq-status {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.prereq-status.pending {
    background: var(--bg-color);
    color: var(--text-light);
}

.prereq-status.done {
    background: #e8f5e9;
    color: var(--success-color);
}

/* 禁用的接单按钮 */
.btn-primary:disabled {
    background: var(--silver-color);
    cursor: not-allowed;
    opacity: 0.7;
}

/* ==================== 审核页面样式 ==================== */

/* 审核状态卡片 */
.review-status-section {
    padding: 24px 16px;
}

.review-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.review-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
}

.review-icon.pending {
    background: #fff3e0;
    color: #f57c00;
}

.review-icon.success {
    background: #e8f5e9;
    color: #43a047;
}

.review-icon.danger {
    background: #ffebee;
    color: #e53935;
}

.review-card h2 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.review-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.review-time {
    font-size: 12px;
    color: var(--text-light);
}

/* 审核进度 */
.review-progress {
    padding: 0 16px 16px;
}

.progress-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: var(--shadow);
}

.progress-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
    position: relative;
}

.progress-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    bottom: -7px;
    width: 2px;
    height: 14px;
    background: var(--border-color);
    z-index: 1;
}

.progress-item.completed:not(:last-child)::after {
    background: var(--success-color);
}

.progress-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.progress-item.completed .progress-dot {
    background: var(--success-color);
    border-color: var(--success-color);
}

.progress-item.active .progress-dot {
    background: var(--gold-color);
    border-color: var(--gold-color);
    animation: pulse 2s infinite;
}

.progress-dot.success {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
}

.progress-dot.danger {
    background: var(--danger-color) !important;
    border-color: var(--danger-color) !important;
}

.progress-content {
    flex: 1;
}

.progress-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.progress-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.progress-check {
    color: var(--success-color);
    font-size: 16px;
}

.progress-loading {
    color: var(--gold-color);
    font-size: 16px;
}

.progress-item.completed .progress-loading {
    color: var(--success-color);
}

.progress-item.rejected .progress-content p {
    color: var(--danger-color);
}

/* 已提交照片 */
.submitted-photos {
    padding: 0 16px 16px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow);
}

.photo-thumb {
    aspect-ratio: 1;
    background: var(--bg-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
}

/* 审核说明 */
.review-notice {
    padding: 0 16px 100px;
}

.notice-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #faf8f0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.notice-header i {
    color: var(--gold-color);
}

.notice-list {
    padding: 12px 16px 12px 32px;
    margin: 0;
}

.notice-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
}

.notice-list li::marker {
    color: var(--gold-color);
}

/* ==================== 车辆预洗上传步骤样式 ==================== */

/* 上传步骤容器 */
.upload-step {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border-color);
}

.upload-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 视频上传区域 */
.video-upload-area {
    width: 100%;
}

.video-item {
    width: 100%;
    aspect-ratio: 16/9;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

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

.video-item.has-video {
    border-style: solid;
    border-color: var(--success-color);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-color);
}

.video-placeholder i {
    font-size: 36px;
    color: var(--primary-color);
}

.video-placeholder span {
    font-size: 14px;
    color: var(--text-secondary);
}

.video-placeholder small {
    font-size: 12px;
    color: var(--text-light);
}

.video-input {
    display: none;
}

.video-preview {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
    background: #000;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-delete {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 10;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* ==================== 消毒站页面样式 ==================== */

.station-section {
    margin: 16px;
}

.station-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 16px;
}

.station-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.station-header.exit {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
}

.station-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.station-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.station-info p {
    font-size: 12px;
    opacity: 0.9;
}

.station-content {
    padding: 16px;
}

.door-photos {
    display: flex;
    gap: 12px;
}

.door-photo-item {
    flex: 1;
    aspect-ratio: 1;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

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

.door-photo-item.has-photo {
    border-style: solid;
    border-color: var(--success-color);
}

.door-photo-item .photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-color);
}

.door-photo-item .photo-placeholder i {
    font-size: 28px;
    color: var(--text-light);
}

.door-photo-item .photo-placeholder span {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

/* ==================== 装货/运输/卸货页面样式 ==================== */

.upload-section {
    margin: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.upload-section .section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.upload-section .section-title i {
    color: var(--primary-color);
}

.upload-hint {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #fff3e0;
    border-radius: 6px;
    border-left: 3px solid var(--gold-color);
}

.upload-hint.summer {
    background: #e3f2fd;
    border-left-color: #1976d2;
}

.optional-tag {
    font-size: 11px;
    padding: 2px 6px;
    background: var(--bg-color);
    color: var(--text-light);
    border-radius: 4px;
    margin-left: 8px;
}

/* 伤亡情况选择 */
.casualty-options {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.casualty-option {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.casualty-option.active {
    border-color: var(--primary-color);
    background: #e8eef5;
}

.casualty-option.danger.active {
    border-color: var(--danger-color);
    background: #ffebee;
}

.casualty-option i {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.casualty-option.active i {
    color: var(--primary-color);
}

.casualty-option.danger.active i {
    color: var(--danger-color);
}

.casualty-option span {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

/* 完成订单选项 */
.complete-options {
    display: flex;
    gap: 12px;
    padding: 16px;
}

.complete-option {
    flex: 1;
    padding: 20px 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.complete-option:active {
    transform: scale(0.98);
}

.complete-option.active {
    border-color: var(--primary-color);
}

.complete-option i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.complete-option span {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

/* 定时上传提醒 */
.timer-reminder {
    margin: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timer-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold-color);
}

.timer-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.timer-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ==================== 注册步骤指示器样式 ==================== */

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--card-bg);
    margin: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-indicator .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-indicator .step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.step-indicator .step-item.active .step-dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-indicator .step-item.completed .step-dot {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step-indicator .step-item span {
    font-size: 12px;
    color: var(--text-light);
}

.step-indicator .step-item.active span {
    color: var(--primary-color);
    font-weight: 500;
}

.step-indicator .step-item.completed span {
    color: var(--success-color);
}

.step-indicator .step-line {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin: 0 12px;
    margin-bottom: 20px;
}

.step-indicator .step-line.active {
    background: var(--success-color);
}

/* 输入行样式 */
.input-row {
    display: flex;
    gap: 10px;
}

/* 可选标签 */
.section-status.optional {
    background: var(--bg-color);
    color: var(--text-light);
}

/* 待支付提示样式 */
.unpaid-hint {
    color: var(--gold-color);
    font-size: 28px !important;
}

/* 状态徽章 */
.status-badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

.status-badge.pending {
    background: #fff3e0;
    color: #f57c00;
}

.status-badge.done {
    background: #e8f5e9;
    color: #43a047;
}

/* ==================== 订单信息卡片样式 ==================== */

.order-info-card {
    margin: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.order-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #faf8f0;
    border-bottom: 1px solid var(--border-color);
}

.order-info-content {
    padding: 16px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.info-row .label {
    font-size: 13px;
    color: var(--text-light);
}

.info-row .value {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
    flex: 1;
    margin-left: 16px;
}

/* ==================== 运输状态样式 ==================== */

.transport-status {
    margin: 16px;
}

.transport-status .status-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    padding: 20px;
}

.transport-status .status-icon {
    background: rgba(255, 255, 255, 0.2);
}

.transport-status .status-info h3 {
    color: white;
}

.transport-status .status-info p {
    color: rgba(255, 255, 255, 0.9);
}

.transport-status .status-info strong {
    color: var(--gold-light);
}

/* 上传历史记录 */
.upload-history {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--bg-color);
    border-radius: 8px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.history-time {
    font-size: 13px;
    color: var(--text-secondary);
}

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

.history-status.done {
    background: #e8f5e9;
    color: #43a047;
}

/* 目的地区域 */
.destination-section {
    margin: 0 16px 16px;
}

.destination-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    gap: 12px;
}

.destination-info {
    flex: 1;
}

.destination-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.destination-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* 上报区域 */
.report-section {
    margin: 0 16px 16px;
}

/* ==================== 到达打卡样式 ==================== */

.arrival-checkin {
    margin: 16px;
}

.arrival-checkin .checkin-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    gap: 12px;
}

.arrival-checkin .checkin-icon {
    width: 44px;
    height: 44px;
}

.arrival-checkin .checkin-icon.pending {
    background: var(--gold-color);
}

.arrival-checkin .checkin-icon.success {
    background: var(--success-color);
}

.arrival-checkin .checkin-info {
    flex: 1;
}

.arrival-checkin .checkin-info h3 {
    font-size: 15px;
    color: var(--text-primary);
}

.arrival-checkin .checkin-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* 联系区域 */
.contact-section {
    margin: 0 16px 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    gap: 12px;
}

.contact-info {
    flex: 1;
}

.contact-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* 小按钮 */
.btn-small {
    padding: 8px 14px;
    font-size: 12px;
}

/* 异常上报区域 */
.abnormal-report {
    padding: 16px;
    background: #ffebee;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* ==================== 页面标题区域样式 ==================== */

.page-title-section {
    text-align: center;
    padding: 24px 16px;
    margin: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.page-title-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title-icon i {
    font-size: 28px;
    color: white;
}

.page-title-icon.vehicle {
    background: linear-gradient(135deg, #26a69a, #4db6ac);
}

/* 快捷操作图标颜色 - teal */
.action-icon.teal {
    background: linear-gradient(135deg, #26a69a, #4db6ac);
}

.page-title-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.page-title-section p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== 排队列表弹窗样式 ==================== */

.queue-list-modal {
    max-height: 70vh;
    overflow-y: auto;
}

.queue-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.queue-list-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
}

.queue-list-item:last-child {
    border-bottom: none;
}

.queue-list-item.current {
    background: #e3f2fd;
    border-left: 3px solid var(--primary-color);
}

.queue-position {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.queue-list-item.current .queue-position {
    background: var(--primary-color);
    color: white;
}

.queue-list-item:first-child .queue-position {
    background: var(--gold-color);
    color: white;
}

.queue-vehicle-info {
    flex: 1;
}

.queue-vehicle-info .plate {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.queue-vehicle-info .status {
    font-size: 12px;
    color: var(--text-light);
}

.queue-wait-time {
    font-size: 12px;
    color: var(--text-light);
    text-align: right;
}

.queue-info-clickable {
    cursor: pointer;
    transition: all 0.2s;
}

.queue-info-clickable:active {
    opacity: 0.7;
}

/* 弹窗关闭按钮 */
.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
}

.modal-close:active {
    background: var(--border-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* ==================== 异常上报样式 ==================== */

.report-options {
    margin-bottom: 16px;
}

.report-option {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--bg-color);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    gap: 12px;
}

.report-option:active {
    background: var(--border-color);
}

.report-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.report-info {
    flex: 1;
}

.report-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.report-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* ==================== 订单状态样式 ==================== */

.order-status-section {
    margin: 16px;
}

.order-status-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    color: white;
    gap: 16px;
}

.order-status-card .status-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.order-status-card .status-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.order-status-card .status-text p {
    font-size: 13px;
    opacity: 0.9;
}

/* 订单状态徽章颜色 */
.order-status.accepted {
    background: #e3f2fd;
    color: #1976d2;
}

.order-status.loading {
    background: #fff3e0;
    color: #f57c00;
}

.order-status.transporting {
    background: #e8f5e9;
    color: #43a047;
}

.order-status.arrived {
    background: #fce4ec;
    color: #d81b60;
}

.order-status.unloaded {
    background: #f3e5f5;
    color: #8e24aa;
}

.order-status.completed {
    background: #e8f5e9;
    color: #2e7d32;
}

/* ==================== 上传组样式 ==================== */

.upload-group {
    margin-bottom: 16px;
}

.upload-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* 到达卸货地区域 */
.arrive-section {
    margin: 16px;
    text-align: center;
}

.arrive-hint {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

/* 操作区域 */
.action-section {
    margin: 16px;
}

.action-panel {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.panel-header i {
    color: var(--primary-color);
}

.panel-content {
    padding: 16px;
}

/* ==================== 订单详情弹窗样式 ==================== */

.detail-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-info-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.detail-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-info-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-info-label i {
    color: var(--primary-color);
}

.detail-info-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.detail-info-value.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.phone-link {
    color: var(--success-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.phone-link:active {
    opacity: 0.7;
}
