.order-wrapper {
    background: #f4f6f8;
}

.order-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    box-shadow: 0 .3vw 1.8vw rgba(0,0,0,.04);
}

.order-search-panel {
    height: 12vw;
    display: flex;
    align-items: center;
    margin: 0 3vw;
    padding: 0 3vw;
    color: #9ca3aa;
    background: #f4f6f8;
    border-radius: 1.4vw;
    transform: translateY(2vw);
}

.order-search-panel i {
    margin-right: 2vw;
}

.order-search-panel input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 3.5vw;
}

.order-menu {
    position: relative;
    height: 12vw;
    display: flex;
    align-items: flex-end;
    padding-top: 3vw;
}

.menu-item {
    flex: 1;
    height: 10vw;
    line-height: 10vw;
    text-align: center;
    color: #333;
    font-size: 3.8vw;
    font-weight: 700;
}

.menu-item.active {
    color: #ff5a00;
}

#menu-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: .8vw;
    width: 8vw;
    border-radius: 1vw;
    background: #ff5a00;
    transition: left .25s ease, width .25s ease;
}

.order-content {
    padding: 3vw 2.6vw 18vw;
}

.order-card {
    display: block;
    margin-bottom: 2.6vw;
    padding: 3.2vw;
    border-radius: 2vw;
    background: #fff;
    color: #222;
    box-shadow: 0 .3vw 1.5vw rgba(0,0,0,.04);
}

.order-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
}

.order-card-title h3 {
    flex: 1;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 4vw;
}

.order-card-title span {
    flex: 0 0 auto;
    color: #666;
    font-size: 3.2vw;
}

.order-coupon {
    margin-top: 2vw;
    color: #ff5a00;
    font-size: 3.1vw;
}

.order-food {
    display: flex;
    align-items: center;
    gap: 2.4vw;
    margin-top: 3vw;
    padding: 2vw 0;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.order-food img {
    width: 14vw;
    height: 14vw;
    border-radius: 1.2vw;
    object-fit: cover;
    background: #f1f1f1;
}

.order-food-info {
    flex: 1;
    min-width: 0;
}

.food-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 3.5vw;
    font-weight: 700;
}

.food-desc {
    margin-top: 1vw;
    color: #888;
    font-size: 3vw;
}

.order-price {
    color: #222;
    font-size: 3.8vw;
    font-weight: 900;
}

.order-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2vw;
    margin-top: 3vw;
    color: #777;
    font-size: 3.2vw;
}

.order-actions span {
    margin-right: auto;
}

.order-actions button {
    height: 7.6vw;
    padding: 0 3.2vw;
    border: 1px solid #dedede;
    border-radius: 4vw;
    color: #333;
    background: #fff;
    font-size: 3.2vw;
}

.order-actions .orange-btn {
    border-color: #ff5a00;
    color: #ff5a00;
}
