.p2{
	background: url('../img/p1/bg.png');
	background-size: 100% 100%;
}
.p2 .billboard{
	box-sizing: border-box;
	position: absolute;
	top: 40vh;
	left: 30vw;
	width: 50vw;
	height: 17vh;

}
.p2 .billboard .txt{
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	font-size: 6vw;
	font-weight: 600;
	color: white;
	padding: 4vw;
}
.p2 .billboard img{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 38vh;
}
.p2 .zhis{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 40vh;
	animation: p2_zhis 1.5s forwards;
	/* border: 2px solid red; */
}

.p2 .zhis .zhi{
	width: 22vw;
	margin-left: 10vw;
}
.p2 .zhis .dialog_box{
	color: white;
	margin: auto;
	border: 2vw solid orange;
	width: 80vw;
	height: 20vh;
	font-size: 5vw;
	padding: 3vw;
	background: #303030;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
}

/* 入场动画 */
@keyframes p2_zhis {
	0%{
		top: -60vh;
	}
	100%{
		top: 0vh;
	}
}

.tiaoguan{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 10vh;
	right: 10vw;
	width: 10vw;
	height: 10vw;
	background: yellow;
	color: red;
	border: 2px solid red;
}