.index {
    max-width: 640px;
    margin: auto;
    padding-bottom: 64px;
    min-height: 100vh;
    background: #f5f5f5;
}
.notice-bar-wrap {
    display: flex;
    align-items: center;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    padding: 8px 12px;
    font-size: 13px;
    color: #666;
}
.notice-icon {
    margin-right: 6px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.notice-scroll-wrap {
    flex: 1;
    overflow: hidden;
}
.notice-scroll-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
    color: #888;
    animation: notice-marquee 14s linear infinite;
}
@keyframes notice-marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.search-bar {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.search-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 14px;
    outline: none;
}
.search-btn {
    margin-left: 8px;
    padding: 7px 16px;
    background: #1989fa;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}
.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}
.order-item:active { background: #f9f9f9; }
.order-info { flex: 1; }
.order-name {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-bottom: 4px;
}
.order-no {
    font-size: 12px;
    color: #999;
}
.order-action {
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}
.order-action.ok {
    color: #1989fa;
    background: #e8f4ff;
}
.order-action.pending {
    color: #999;
    background: #f5f5f5;
}
.uv-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.uv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.uv-empty__text {
    color: #c0c4cc;
    font-size: 14px;
    margin-top: 11px;
}
.success { color: red; }
.info { color: blue; }
