<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 下拉按钮样式 */
.dropbtn {
    color: #a7cde5;
    padding: 0;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: FZXH1K,"方正细黑",GBK10;
    background: #0769b4;
    margin-left: 10px;}

/* 容器 &lt;div&gt; - 需要定位下拉内容 */
.dropdown {
    float: left;
    display: inline-block;}

/* 下拉内容 (默认隐藏) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0769b4;
    width: 60px;}

/* 下拉菜单的链接 */
.dropdown-content a {
        text-decoration: none;
        display: block;
        width: 60px;
        height: 20px;
        margin-left: 10px;
        font-family: FZXH1K,"方正细黑",GBK10;
        font-size: 14px;
        letter-spacing: 1px;}

/* 鼠标移上去后修改下拉菜单链接颜色 */
.dropdown-content a:hover {background-color: #f1f1f1;}

/* 在鼠标移上去后显示下拉菜单 */
.dropdown:hover .dropdown-content {
    display: block;}

.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);}

</pre></body></html>