@charset "UTF-8";

#box {
	padding: 0 5%;
	display: flex;
	flex-direction: column;
}

#box article {
	background: red;
}

#box article:nth-child(2) {
	background: blue;
}

#body_box{
	position:relative;
	height:100vh;
	background-image:url("../img/bg.jpg");
	background-position: center 0;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size:cover;
	-webkit-background-size: cover;/* 兼容Webkit内核浏览器如Chrome和Safari */ 
	zoom: 1
}

#body_box header{
	padding:15vh 0 5vh 0;
	font-size:8rem;
}

#body_box article{
	width:92%;
	margin:0 auto;
	text-align:center;
	font-size:5rem;
}
#body_box article ul li p{
	font-size:2.5rem;
	padding:3vh 0 3vh 0;
}
#body_box article ul li a{
	display:block;
	width:70%;
	padding:2.5vh 0;
	border-radius:15px;
	font-size:2.7rem;
	margin:0 auto;
	color:#666;
	margin-bottom:2vh;
	font-weight:bold;
}
#body_box article ul li a:nth-child(1){
	color:#666;
	background:linear-gradient(#ffffff, #e3e3e3);
}
#body_box article ul li a:nth-child(2){
	color:#fff;
	background:linear-gradient(#F64578, #F05F5B);
}
#body_box article ul li span{
	display:none;
}
#body_box article div{
	display:none;
}

#body_box footer {
	width:100%;
	position:fixed;
	z-index:1;
	bottom:-50px;
}
#body_box footer img{
	width:100%;
}
