.disable-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-js {
    display: none !important;
}

.hidden {
    display: none !important;
}

a.no-href {
    cursor: not-allowed !important;
    /* 未使用：启用后鼠标光标和title将会失效 */
    /* pointer-events: none !important; */
}

body {
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #444;
    font-size: 95%;
}

#page a,
#page a:active,
#page a:hover,
#page a:link,
#page a:visited {
    margin: 3px;
    color: #0074a3;
    /* 去除所有超链接文字装饰:超链接下划线 */
    text-decoration: none;
    text-decoration-line: none;
    /* 文字不换行 */
    white-space: nowrap;
    cursor: pointer;
}

#page ul {
    margin: 0;
    padding: 0;
    /* 清除默认样式，防止不同浏览器渲染效果不同 */
    list-style-type: none;
}

#page {
    background-color: rgba(255, 255, 255, 1);
    margin: 0 auto;
    max-width: 1600px;
    min-width: 800px;
    width: 100%;
    box-shadow: -2px 0 5px 0 #ccc, 2px 0 5px 0 #ccc;
    overflow: hidden;
}

#page.narrow {
    min-width: 760px !important;
}

#page *:not(.content *) {
    overflow: hidden;
}

#loading-data {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    max-width: 1600px;
    min-width: 800px;
    width: 100%;
    height: 100%;
    color: #ccc;

}
