
/*本文档用于存放基本css框架*/
body{/*网页 0 */
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
		background-image: url(img/bg-2.webp);/*背景图片*/
		background-size: cover;/*背景自动调整*/
		background-position: center;/*背景居中*/
		background-attachment: fixed;/*背景不滚动*/
		margin: 0;
	}
	
/* body,html{
	cursor: url('img/default.cur'), auto;
} */
	
	a{text-decoration: none;}
	
	.unselectable-text{/*无法选中的文本*/
	  -webkit-user-select: none; /* Safari浏览器 */
	  -moz-user-select: none; /* Firefox浏览器 */
	  -ms-user-select: none; /* IE/Edge浏览器 */
	  user-select: none; /* 标准语法 */
	}
	
	#bg{/*全屏毛玻璃效果 高度为1 */
		width: 1000vh;
		height: 1000vh;
		backdrop-filter: blur(12px);
		background: rgba(68, 68, 68, 0.5);
		position: fixed;
		z-index: 1;
		display: none;
		opacity: 0;
		transition: 0.5s;
	}
	
	#Header{/*头部 1 */
		width: 100%;
		height: 20px;
		top: 0;
		left: 0;
		position: fixed;
	}
	
	#big{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	
	
		
	#Foot{/*页脚 1 */
		height: 15px;
		position: fixed;
		margin-left: auto;
		bottom: 5px;
		display: flex;
		opacity: 0;
		transition: opacity 1s ease-in-out;
	}
		.Foot{/*页脚内容盒子 2 */
			color: #8a8a8a;
			align-items: center;
			font-size: 12px;
			font-weight: 400;
			margin: 0 auto;
			cursor: default;
			border-radius: 5px;
			backdrop-filter: blur(30px);
			background: rgba(61, 59, 72, 0);
			padding-bottom: 1px;
		}
			#cjj,#copyright,#foot_name,#foot_ICP,#foot_about,#foot_police{/*页脚内容文字 3 */
				color: #bfbfbf;
				transition:color 0.4s ease;
			}
			/* #police{
				width: 9.9px;
				height: 11px;
				background-color: ;
				background-image: url(img/police.png);
				background-size: cover;
			} */
			
			
/**************************************************鼠标悬浮效果****************************************/
	
	
	/* url(home.css) */
	#cjj:hover,#foot_name:hover,#foot_ICP:hover,#foot_about:hover,#foot_police:hover{/*页脚超链接*/
		transition: 0.1s;
		color: white;
		cursor: pointer;
	}
	
	
	