/* 让logo容器铺满整个屏幕宽度 */
.logo {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;}

/* 让logo图片自适应全屏宽度 */
.logo img {
    width: 100vw;      /* 宽度等于当前屏幕可视区域的100% */
    height: auto;      /* 高度按原始比例自动缩放，避免变形 */
    display: block;    /* 消除图片底部的默认空白间隙 */
    max-width: 1920px; /* 可选：限制最大宽度，避免在超大屏上模糊 */
    margin: 0 auto;}/* 让顶部整个横幅容器铺满屏幕宽度 */
.top-banner-container {
    width: 100vw;
    margin: 0 -50vw;
    position: relative;
    left: 50%;
    right: 50%;
    padding: 0;
    background-color: #005bac;}

/* 确保logo区域也铺满容器 */
.logo {
    width: 100%;
    margin: 0 auto;
    text-align: center;}

/* 让logo图片自适应容器宽度 */
.logo img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;}
.keywordfontcolor118167{
font-size:16px !important;
font-weight:normal !important;
color:#333 !important;
font-family:"微软雅黑" !important;}
.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);}
