26 lines
		
	
	
		
			515 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			515 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
/* html {
 | 
						|
    background-image: url("@/assets/img/bg/bg_01.jpg");
 | 
						|
    background-attachment: fixed;
 | 
						|
    background-size: contain;
 | 
						|
} */
 | 
						|
 | 
						|
body {
 | 
						|
    width: 100vw;
 | 
						|
    height: 100vh;
 | 
						|
    padding: 0px;
 | 
						|
    margin: 0px;
 | 
						|
    overflow: hidden;
 | 
						|
 | 
						|
    -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;
 | 
						|
 | 
						|
    // @include no-select;
 | 
						|
} |