/* 参考Order_info.html - 红色主题版本 - 2025-12-19 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #ec0000 0%, #c10000 100%);
    min-height: 100vh;
    padding: 15px;
    padding-top: 59px;
    padding-bottom: 90px;
    position: relative;
}

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

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

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

/* Header样式已移至 common/header.css 统一管理 */
    font-weight: 700;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

/* 参考原始设计的卡片样式 */
.box_shadow {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

/* 状态卡片 */
.status {
    padding: 20px;
}

.status .head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.status .head img {
    width: 20px;
    height: 20px;
}

.status .head span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* 状态步骤 */
.sts {
    position: relative;
    margin-bottom: 20px;
}

.strip {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.sts_item {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.sts_item .item {
    flex: 1;
    text-align: center;
    position: relative;
}

.sts_item .item::before {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 3px solid #fff;
    display: block;
    margin: 0 auto 8px;
    position: relative;
    z-index: 3;
}

.sts_item .item.on::before {
    background: #ec0000;
}

.sts_item .item {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.sts_item .item.on {
    color: #333;
    font-weight: 600;
}

/* 温馨提示 */
.tip {
    background: rgba(236, 0, 0, 0.05);
    border: 1px solid rgba(236, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
}

.tip .tit {
    font-size: 14px;
    font-weight: 600;
    color: #ec0000;
    margin-bottom: 8px;
}

.tip .content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* 详情卡片 */
.detail {
    padding: 20px;
}

.detail .head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.detail .head img {
    width: 20px;
    height: 20px;
}

.detail .head span {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.detail .content .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.detail .content .item .tit {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.detail .content .item .text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

/* 灰色文字 */
.gray_color {
    color: #999;
}

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

/* 底部导航 */
.nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #999;
    font-size: 12px;
    flex: 1;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
}

.nav-item:hover {
    background: rgba(236, 0, 0, 0.05);
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

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

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