.ev_calendar_time {
    width: 100%;
    height: 100%;
    background: #fff;
}
.ev_calendar_weeks {
    width: calc(100% - 40upx);
    height: 56upx;
    line-height: 56upx;
    background: #F6F6F6;
    padding: 0 20upx;
    overflow: hidden;
    color: #999;
    font-size: 24upx;
    .ev_calendar_week {
        float: left;
        width: calc((100%)/7);
        text-align: center;
    }
}
.ev_calendar_days {
    width: 100%;
    height: calc(100% - 460upx);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 4upx;
    .ev_calendar_days_item_box {
        width: 100%;
        .ev_calendar_year_month {
            width: calc(100% - 40upx);
            height: 70upx;
            line-height: 70upx;
            padding-left: 40upx;
            color: #999;
            font-size: 24upx;
        }
        .ev_calendar_days_box {
            overflow: hidden;
            width: calc(100% - 40upx);
            padding: 0 20upx;
            .ev_calendar_days_item {
                width: calc(100% / 7);
                float: left;
                background: #fff;
                color: #333;
                text-align: center;
                font-size: 20upx;
                padding: 10upx 0;
                margin-bottom: 10upx;
                .ev_calendar_days_item_middle {
                    font-weight: bold;
                    font-size: 30upx;
                    padding: 4upx 0;
                }
                .ev_calendar_days_item_top {
                    height: 20upx;
                }
                .ev_calendar_days_item_top_color1 {
                    color: #B7B7B7;
                }
                .ev_calendar_days_item_top_color2 {
                    color: #fff;
                }
                .ev_calendar_days_item_bottom {
                    height: 20upx;
                }
            }
            .hidden_item {
                opacity: 0;
            }
            .border_radius_left {
                border-top-left-radius: 4px;
                border-bottom-left-radius: 4px;
            }
            .border_radius_right {
                border-top-right-radius: 4px;
                border-bottom-right-radius: 4px;
            }
            .border_radius_all {
                border-radius: 4px;
            }
            .select {
                background: #01a059;
                color: #fff;
            }
            .returnCarDisabled {
                background: #fff;
                color: #B7B7B7;
            }
            .middle {
                background: #a7dfc7;
                color: #fff;
            }
            .disabled {
                background: #eee;
                color: #B7B7B7;
            }
        }
    }
}
.ev_date_picker {
    height: 300upx;
    width: 100%;
    box-shadow: 0 -2px 2px 0 rgba(0,0,0,0.05);
    background: #fff;
    picker-view {
        height: 100%;
        .item {
            line-height: 30px;
            text-align: center
        }
    }
}
.confirm_btn {
    height: 100upx;
    width: 100%;
    button {
        width: 100%;
        height: 100%;
        background: #01a059;
        color: #fff;
        text-align: center;
        line-height: 100upx;
        border: 0;
        outline: 0;
        font-size: 32upx;
        border-radius:0;
    }
    button:active {
        background-color: #005931;
    }
}