html,
body,
#app {
    font-family: 'Microsoft YaHei', 'Avenir', Helvetica, Arial, sans-serif,-apple-system, BlinkMacSystemFont, PingFang SC,Tahoma, Microsoft YaHei, 微软雅黑;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    width: 100%;
    height: 100%;
    margin: 0;
}

#app {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.25s ease;
}

#titleImg {
    height: 100%;
    background: #fff;
    text-align: center;
}
#titleImgDW {
    height: 100%;
    background: #fff;
    text-align: center;
}
#titleGS {
    background: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
}
#loadingText {
    background: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
}
#fullScreen {
    height: 100%;
    background: #283949;
    text-align: center;
}

#tImg {
    margin: 140px auto 30px auto;
    width: 100px;
}
#tImgDW {
    margin: 140px auto 30px auto;
    width: 100px;
}
#titleImg #mian_name {
    color: #606060;
    font-size: 20px;
}

#fullScreen #mian_name {
    color: #fff;
    font-size: 20px;
}

#main_tip {
    color: #939393;
    margin-top: 10px;
    font-size: 14px;
}

/*谷歌滚动条--start*/
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-color: #f5f5f5;
}

/* 滚动条的滑轨背景颜色 */

::-webkit-scrollbar-thumb {
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
}

/* 滑块颜色 */

::-webkit-scrollbar-thumb:hover {
    background-color: #d2d2d2;
}

::-webkit-scrollbar-button {
    background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-corner {
    background-color: black;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
/*谷歌滚动条--end*/
/*谷歌滚动条--end*/
.skeleton-screen {
    position: fixed; /* 或 absolute，根据需求 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2; /* 可以设置为你喜欢的灰色 */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000; /* 确保骨架屏在其他内容之上 */
}
.loading-animation {
    width: 100%; /* 可以根据需求调整大小 */
    height: 100px;
    background-image: linear-gradient(
            50deg,
            #e8e7e7,
            #e8e7e7 52%,
            #f1f1f1 55%,
            #e8e7e7 58%,
            #e8e7e7
    );
    background-size: 200% 100%;
    animation: loading 0.5s infinite alternate;
}
@keyframes loading {
    from {
        background-position: 200% 50%;
    }
    to {
        background-position: 0% 50%;
    }
}
