.reward_content p {
	margin-bottom: 5px;
}

.history-marquee {
	height: 220px;
	background-color: #f7f8fd;
	border: 1px solid #eee;
	border-radius: 5px;
	font-size: 14px;
}

.reso-iframe {
	width: 100%;
	height: 300px;
}

.historyol li {
	list-style-type: auto;
}

.turntable {
	width: 500px;
	height: 500px;
	border-left: 10px solid #ff0000;
	border-right: 10px solid #0000ff;
	border-bottom: 10px solid #aa00ff;
	border-top: 10px solid #00ff7f;
	border-radius: 50%;
	background-color: #fff;
	margin: 10px auto;
	overflow: hidden;
	position: relative;
}

.turntable ul {
	height: 100%;
	width: 100%;
}

.turntable li {
	width: 50%;
	height: 50%;
	float: left;
	text-align: center;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 35px;
	padding-top: 20px;
}

.turntable li {
	display: flex;
	flex-direction: column;
}

.turntable li:nth-child(1) {
	padding-top: 80px;
	padding-left: 30px;
	background-color: #dc3545;
}

.turntable li:nth-child(2) {
	padding-top: 80px;
	background-color: #0052d9;
}

.turntable li:nth-child(3) {
	background-color: #ffc107;
}

.turntable li:nth-child(4) {
	background-color: #525252;
}

.turntable .rounde {
	width: 100px;
	height: 100px;
	border-radius: 0 50% 50% 50%;
	background-color: #5500ff;
	position: absolute;
	left: 40%;
	top: 40%;
	color: #fff;
	line-height: 100px;
	font-size: 30px;
	text-align: center;
}

.turntable .rounde1 {
	border-radius: 0 50% 50% 50%;
}

.turntable .rounde2 {
	border-radius: 50% 0 50% 50%;
}

.turntable .rounde3 {
	border-radius: 50% 50% 0 50%;
}

.turntable .rounde4 {
	border-radius: 50% 50% 50% 0;
}

.turntable-auto .rounde {
	left: 40%;
	animation: moveCircle 0.3s infinite linear;
}

@keyframes moveCircle {
	0% {
		left: 40%;
	}

	100% {
		transform: rotate(360deg);
	}
}

.turntable-auto li:nth-child(1) {
	animation: autoBg1 0.5s ease infinite;
}

@keyframes autoBg1 {
	0% {
		background: #0000ff;
	}
}
.turntable-auto li:nth-child(2) {
	animation: autoBg2 0.5s ease infinite;
}

@keyframes autoBg2 {
	25% {
		background: #ffaa00;
	}
}

.turntable-auto li:nth-child(3) {
	animation: autoBg3 0.5s ease infinite;
}

@keyframes autoBg3 {
	50% {
		background: #00007f;
	}
}

.turntable-auto li:nth-child(4) {
	animation: autoBg4 0.5s ease infinite;
}

@keyframes autoBg4 {
	100% {
		background: #00ff00;
	}
}



@media (max-width: 768px) {
	.turntable {
		width: 300px;
		height: 300px;
		margin-bottom: 20px;
	}

	.p-list .describe {
		text-align: left;
	}

	.turntable li {
		font-size: 18px;
		padding-top: 20px;
	}

	.turntable li:nth-child(1) {
		padding-top: 50px;
	}

	.turntable li:nth-child(2) {
		padding-top: 50px;
	}

	.turntable li:nth-child(3) {}

	.turntable li:nth-child(4) {}

	.turntable .rounde {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 16px;
	}
}