@charset "UTF-8";
/*
作者：梓轾
网站：https://zz.cpolar.cn
邮箱：com.zz.2357@qq.com
*/

:root{
	/*cursor*/
	--normal:url("../img/cur-normal.png"),auto;
	--link:url("../img/cur-link.png"),auto;
	
	/*color*/
	--月白:#d6ecf0;
	--漆黑:#161823;
	--玄青:#3d3b4f;
	--魅蓝:#00b2ff;
}
*{
	padding:0px;
	margin:0px;
	cursor:var(--normal);
}
*::-webkit-scrollbar {
    display: none;
}
* {
	-ms-overflow-style: none;  /* IE 和 Edge */
	scrollbar-width: none;  /* Firefox */
}

body{
	background:var(--漆黑);
}
#header{
	z-index:7;
   	background:var(--魅蓝);
   	position: fixed;
   	width: 100%;
   	height:100px;
   	top:0px;
	display:flex;
	align-items:center;
}
#logo{
    width:80px;
    height:80px;
	float:left;
	margin:auto 10px;
}
#title{
	float:left;
	font-size:70px;
	font-family:华文新魏;
	color:var(--月白);
	
	margin-right:auto;
}
.nav{
	float:right;
	margin:30px;
	color:var(--月白);
	font-family:serif;
	font-size:30px;
	cursor:var(--link);
}
.tab{
	margin-top:100px;
	padding-bottom: 100px;
}
.ontab{
	width:100%;
	color:#ffffff;
}
.notab{
	display:none;
}
#page0{
	margin:0 auto;
	width:1260px;
}

.item{
	cursor:var(--link);
	color:#ffffff;
	margin:10px;
	width:400px;
	height:247.2px;
	float:left;
	position:relative;
	overflow:hidden;
	border-radius:5px;
	text-align:center;
	transition:all .2s;
	opacity:.8;
}
.item:hover{
	cursor:var(--link);
	opacity:1; 
	border-radius:10px;
	transform:translateY(-5px);
	box-shadow:0 3px 20px rgba(0,0,0,.28);
	-webkit-animation:index-link-active 1s cubic-bezier(.315,.605,.375,.925) forwards;
}
.item:hover .bg{
	cursor:var(--link);
	height:100%;
}
.bg{
	cursor:var(--link);
	position:absolute;
	bottom:0;
	width:100%;
	height:3%;
	z-index:0;
	transition:all .15s;
}
.inner{
	cursor:var(--link);
	padding:6px;
	position:relative;
	z-index:5;
	align-items:center;
	display:flex;
	height:100%;
	justify-content:center;
}
.inner_i{
	margin:5px;
	width:100px;
	height:100px;
}
.inner_t{
	margin:5px;
	font-size:35px;
	font-family:serif;
}