/*模态框*/
.modal {
    display: none; /* 默认隐藏 */
    position: fixed; /* 根据浏览器定位 */
    z-index: 99999; /* 放在顶部 */
    left: 0;
    top: 0;
    width: 100%; /* 全宽 */
    height: 100%; /* 全高 */
    overflow: auto; /* 允许滚动 */
    background-color: rgba(0,0,0,0.4);}
.modal-header{
       margin-bottom: 20px;}
/*模态框内容*/
.modal-content {
 
        flex-direction: column;
    position: relative;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 10px 20px 20px 20px;
    border: 1px solid #888;
    width: 500px;
    animation: topDown 0.4s;}
@keyframes topDown {
    from {top: -300px; opacity: 0;}
    to {top: 0; opacity: 1;}
}

/*关闭X 样式*/
.close {
color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 28px;
    margin-right: -10px;}
.close:hover {
    color: black;
    text-decoration: none;
    cursor: pointer;}
.topBar .b:hover, .modal-body span:hover{cursor: pointer;}
.modal-body a, .modal-body span{    width: 238px;
    text-align: center;
    background: #004893;
    color: #fff !important;
    font-size: 16px;
    height: 45px;
    line-height: 45px;
    font-weight: bold;
    margin-bottom:20px;}
.font142940{ font-size: 9pt ;}
.fontstyle142940{ font-size: 12px; color: #555555; font-family: 宋体;}

.vsbcontent-table-container-outer { position: relative;}
.vsbcontent-table-container
{
    width: 98%;
    overflow-y: auto;
    _overflow: auto;
    margin: 2px;}
.vsbcontent-table-container::-webkit-scrollbar
{
    -webkit-appearance: none;
    width: 14px;
    height: 14px;}
.vsbcontent-table-container::-webkit-scrollbar-thumb
{
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, .3);}
.vsbcontent-table-container-fade
{
    position: absolute;
    right: 0;
    width: 5px;
    height: 100%;
    background-image: -webkit-linear-gradient(0deg, rgba(255,255,255,.5), #fff);
    background-image: -moz-linear-gradient(0deg, rgba(255,255,255,.5), #fff);
    background-image: -ms-linear-gradient(0deg, rgba(255,255,255,.5), #fff);
    background-image: -o-linear-gradient(0deg, rgba(255,255,255,.5), #fff);
    background-image: linear-gradient(0deg, rgba(255,255,255,.5), #fff);}
