@charset "utf-8";
/*防止选取 <div> 元素的文本*/
*{ -moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;}
input{ -moz-user-select: auto;-webkit-user-select: auto;-ms-user-select: auto;-khtml-user-select: auto;}
body{overflow: hidden}
html,body{
    width: 100%; background-color: #fff; color: var(--gray-color);  position:relative; font-weight: 400; font-style: normal; height: auto; overflow: auto;

    /*font-family: "source-han-serif-sc", serif;*/

    scrollbar-width:none!important; 
    overflow:-moz-scrollbars-none!important;
    -ms-overflow-style: none!important;
    scrollbar-color: transparent transparent;
    scrollbar-track-color: transparent;
    -ms-scrollbar-track-color: transparent;
}
body::-webkit-scrollbar { width: 0px!important;}

.not-found-flex{ height: 100vh; width: 100%; box-sizing: border-box; display: flex; align-items: center; text-align: center}
.not-found-flex>div{ flex: 1; height: 100%}
.not-found-logo{ background-color:#fff}
.not-found-logo .logo-max-line { width: 100%; height: 100%; background-size: 80% auto; background-position: center; background-image: url(logo.jpg); background-repeat: no-repeat;}
.not-found-content{ display: flex; align-items: center; justify-content: center}


