@import './../../common/common.less';
.ev_picker {
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: height linear 0.2s;
    overflow: hidden;
    z-index: 10000;
}
.ev_picker_active {
    height: 100%;
}
.ev_picker_wrapper {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    height: 273px;
    .ev_picker_wrapper_header {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #d7d7d7;
        .ev_picker_wrapper_header_cancle, .ev_picker_wrapper_header_confim {
            display: inline-block;
            padding: 0 16px;
        }
        .ev_picker_wrapper_header_cancle {
            color: #999;
        }
        .ev_picker_wrapper_header_confim {
            color: @baseColor;
        }
        .ev_picker_wrapper_header_title {
            font-size: 18px;
            color: #333;
            font-weight: 400;
        }
    }
    .ev_picker_wrapper_box {
        width: 100%;
        height: 222px;
        display: flex;
        position: relative;
        .ev_picker_wrapper_content {
            width: 100%;
            display: flex;
            justify-content: center;
            .ev_picker_wrapper_content_hour, .ev_picker_wrapper_content_minute {
                display: inline-block;
                width: 33%;
                text-align: center;
                height: 222px;
                overflow-y: auto;
                -webkit-overflow-scrolling : touch;
                .ev_picker_wrapper_content_hour_item, .ev_picker_wrapper_content_minute_item {
                    height: 36px;
                    line-height: 36px;
                    width: 100%;
                    font-weight: 400;
                    font-size: 18px;
                }
            }
        }
        .ev_picker_wrapper_content::-webkit-scrollbar {
            display: none;
        }
        .ev_picker_wrapper_box_bottom, .ev_picker_wrapper_box_top {
            position: absolute;
            height: 92px;
            left: 0;
            width: 100%;
            pointer-events: none;
        }
        .ev_picker_wrapper_box_top {
            top: 0;
            background: linear-gradient(0deg,hsla(0,0%,100%,.4),hsla(0,0%,100%,.8));
            border-bottom: 1px solid #d7d7d7;
        }
        .ev_picker_wrapper_box_bottom {
            bottom: 0;
            background: linear-gradient(180deg,hsla(0,0%,100%,.4),hsla(0,0%,100%,.8));
            border-top: 1px solid #d7d7d7;
        }
    }
}