﻿
/*右侧图片区域*/
.global-area {
    width: 300px;
    max-width: 300px;
    height: calc(100vh - 80px);
    /*float: right;*/
    background-color: #ffffff;
    position: relative;
    z-index: 0;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
}
#global-content{
    width:300px;
}
@media screen and (max-width: 1600px) {
    .global-area {
        width: 0px !important;
        display:none;
    }
    /*编辑器工具栏*/
    /*#edui2_toolbarboxouter {
        width: auto;
    }*/
}
/*滚动条样式*/
.globalBox::-webkit-scrollbar {
    width: 5px;
}

.globalBox::-webkit-scrollbar-thumb {
    border-radius: 20px;
    -webkit-box-shadow: inset 0 0 5px #fff;
    background: #D8D8D8;
}

.globalBox::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px #fff;
    border-radius: 0;
    background: #fff;
}