[v-cloak] {
	display: none;
}

* {
	margin: 0px;
	padding: 0px;
	list-style: none;
	box-sizing: border-box;
}



.shade {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: rgba(0, 0, 0, 0.4);
	display: none;
}

.big_img {
	width: 1100px;
	height: 700px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999999999;
	display: none;
}

.big_img img {
	width: 100%;
	height: 100%;
}



#app {
	width: 100%;
	height: 100%;
	background: url('../img/bg.png') repeat-y center;
	background-size: 100% 100%;
	padding-bottom: 30px;
}

body, html {
	scroll-behavior: smooth;
}

p {
	margin: 0;
	padding: 0;
}

#app a {
	display: block;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}
/*正常的未被访问过的链接*/
a:link {
	color: #fff;
	text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
	color: #fff;
	text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
	color: #fff;
	text-decoration: none;
}
/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
	color: #fff;
	text-decoration: none;
}
/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
	color: #fff;
	text-decoration: none;
}

.nav_item img {
	cursor: zoom-in;
}