2025-10-23 17:52:01 +08:00
|
|
|
|
2025-10-24 00:36:24 +08:00
|
|
|
body
|
|
|
|
|
{
|
2025-10-23 17:52:01 +08:00
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
2025-10-24 00:36:24 +08:00
|
|
|
// @include no-select
|
2025-10-23 17:52:01 +08:00
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
/*火狐*/
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
/*webkit浏览器*/
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
/*IE10*/
|
|
|
|
|
-khtml-user-select: none;
|
|
|
|
|
/*早期浏览器*/
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|