﻿.set_meal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-radius: 12px 12px 0px 0px;
    transition: all 0.3s;
    z-index: 1001;
    transform: translateY(100%)
}

    .set_meal.active {
        transform: translateY(0)
    }

    .set_meal .set_meal_box {
        padding: 20px 22px 70px 22px;
    }

.set_meal_box .set_meal_top {
    display: flex;
    align-items: center;
}

.set_meal_top .set_meal_title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 20px;
}

.set_meal_top .set_meal_hidden {
    width: 16px;
    height: 16px;
}

.set_meal .set_meal_text {
    margin-top: 6px;
    font-size: 12px;
    color: #999999;
    line-height: 20px;
}

.set_meal_box .set_meal_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.set_meal_list .set_meal_list_box {
    width: 25%;
    box-sizing: border-box;
    padding: 6px;
}

.set_meal_list_box .set_meal_item {
    position: relative;
    height: 34px;
    background: #F6F6F6;
    border-radius: 2px;
    font-size: 13px;
    color: #888888;
    line-height: 34px;
    text-align: center;
}

.set_meal_list_box.active .set_meal_item {
    color: #745DFF;
    background: #F1EEFF;
}

.set_meal_item .set_meal_item_icon {
    display: none;
    width: 13px;
    height: 13px;
    position: absolute;
    bottom: 0;
    right: 0;
}

    .set_meal_item .set_meal_item_icon.active {
        display: block;
    }

.set_meal .set_meal_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
}

.set_meal_bottom .set_meal_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #745DFF;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.set_meal_bottom .set_meal_money {
    margin-right: 7px;
}
