html,body{
	margin: 0;
	padding: 0;
	height: 100%;
}
#main-body {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.background-img {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	z-index: 0;
}
#main-body .my-content{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#main-body .my-content .my-information{
	position: relative;
	top: 2vw;
	text-align: center;
	color: white;
	animation: fadeIn 1.5s ease-in-out;
}
/* 最后添加，进入动效 */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(2vw); }
	to { opacity: 1; transform: translateY(0); }
}
#main-body .my-content .my-information h2{
	font-size: 3vw;
	line-height: 5vw;
	font-family: "宋体";
	padding-top: 2vw;
	padding-bottom: 2vw;
}
#main-body .my-content .my-information p{
	font-size: 1.5vw;
	line-height: 2.5vw;
	font-family: "宋体";
}
#main-body .my-content a img{
	transition: transform 0.3s ease, filter 0.3s;
}
#main-body .my-content a img:hover {
	transform: scale(1.1);
	filter: brightness(1.1);
 }
#main-body .my-content .music img{
	position: absolute;
	top: 52vw;
	left: 32vw;
	width: 13vw;
	height: 20vw;
}
#main-body .my-content .reading img{
	position: absolute;
	top: 42vw;
	left: 53vw;
	width: 10vw;
	height: 9vw;
}
#main-body .my-content .photo img{
	position: absolute;
	top: 51vw;
	left: 68vw;
	height: 18vw;
	width: 14vw;
}
#main-body .my-content .sport img{
	position: absolute;
	top: 52vw;
	left: 10vw;
	width: 16vw;
	height: 18vw;
}
