*{
	padding: 0;
	margin: 0;
}
body{
	font-family:'Microsoft YaHei,微软雅黑';
}

#box{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: absolute;
	box-sizing: border-box;
	background-color: #333;
}

#top{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	width: 100%;
	box-sizing: border-box;
	background-color: rgba(30, 30, 30, 0.6);
}

#top li{
	box-sizing: border-box;
	height: 100%;
	width: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	list-style: none;
	cursor: pointer;
	color: #888;
	transition: all 0.3s;
}
#top li:hover{
	background-color: rgba(50, 50, 50, 0.8);
}


#liuzh{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-grow: 1;
	width: 100%;
	background-color: #444;
	margin-bottom: 15px;
}

#head{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-grow: 1;
}

#head-pic{
	width: 180px;
	height: 180px;
	border-radius: 100px;
	border: 4px solid rgba(220,220,220,0.1);
	box-sizing: border-box;
	cursor: pointer;
	transition: all 0.5s;
}

#name{
	font-size: 22px;
	font-weight: bold;
	margin: 10px 0;
	color: #9c9c9c;
}

#desc{
	color: #8f8f8f;
}

#tags{
	width: 100%;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.tag-line{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 12px 0;
}

#line{
	width: 60%;
	height: 0;
	border-top: 0.3px solid rgba(130,130,130,0.6);
	box-sizing: border-box;
}

.tag{
	margin: 10px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #7f7f7f;
}
.tag img{
	width: 26px;
	height: 26px;
	margin-right: 8px;
}


.links{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.recr{
	box-sizing: border-box;
	width: 160px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	font-size: 16px;
	color: #AAA;
	cursor: pointer;
	text-decoration: none;
	border: 1px solid rgba(100, 100, 100, 0.8);
	border-radius: 2px;
	margin: 15px 20px;
	background-color: rgba(60, 60, 60, 0.8);
	transition: all 0.5s;
}
.recr:hover{
	background-color: rgba(83, 83, 83, 0.88);
}

.recr img{
	height: 80%;
	margin-left: 5%;
}

.recr p{
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

#footer{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	height: 4%;
	width: 100%;
	color: #bbb;
	margin-top: 2px;
}

