.poster_agree {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px
}
.poster_agree .agree {
	text-align: center;
	font-size: 12px;
	color: #909399;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}
.poster_agree .agree .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	cursor: pointer;
	margin-bottom: 8px
}
.poster_agree .agree .icon svg {
	position: absolute;
	width: 28px;
	height: 28px;
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	transition: opacity 0.85s,-webkit-transform 0.85s;
	transition: transform 0.85s,opacity 0.85s;
	transition: transform 0.85s,opacity 0.85s,-webkit-transform 0.85s
}
.poster_agree .agree .icon svg.active {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1
}
.poster_overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}
.poster_modal {
	position: relative;
	top: 50%;
	left: 50%;
	max-height: 500px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	max-width: 300px;
	width: 100%;
	align-items: center;
	flex-direction: column;
	display: flex;
	box-sizing: border-box;
}
.poster_modal img {
	width: 100%;
	height: 500px;
}
.close-poster {
	position: absolute;
	float: right;
	cursor: pointer;
	bottom: -41px;
	background-color: #fff;
	padding: 4px 11px;
	border-radius: 50%;
}