.baron-wrapper{
    overflow: hidden;
    height:calc(100vh - 70px);
    position: relative;
    margin: 0;
}

.baron-scroller{
    height: 100%;
    overflow-y: scroll;
}

.baron-scroller::-webkit-scrollbar {
    width: 0;
}

.container{
    overflow: hidden;
    padding: 0;
}

.container>p:first-child
{
	margin-top: 0;
}

.baron-scrollerTrack{
    width: 10px;
    top: 0;
    right: 0;
    height: 100%;
    position: absolute;
    background: #f6f6f6;
    display: none;
}

.baron-scroller__bar{
    width: 10px;
    background: #999;
    position: absolute;
    z-index: 1;
    display: none;
    min-height: 50px;
    -webkit-transition: width .2s linear;
    transition: width .2s linear;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
}

.baron-scroller__bar_state_on .baron-scroller__bar,
.baron-scroller__bar_state_on .baron-scrollerTrack{
    display: block;
}

