body {
	font-family: 'STHeiti', 'Microsoft YaHei', Helvetica, Arial, sans-serif;
	margin: 0 auto;
	background-color: #e1e7f1;
}

#container {
	margin: 0 auto;
	max-width: 750px;
	min-height: 100vh;
	background: url("../img/bg01.png") no-repeat center 0;
	background-size: 100% 110%;
}

img {
	vertical-align: top;
	width: 100%;
}

.header {
	width: 100%;
	display: block;
	padding: 10px 0;
}

.header img {
	width: 30%;
	display: block;
	margin: auto;
}

.banner {
	width: 100%;
}

.imbox {
	display: block;
	margin: 15px auto 5px;
	width: 90%;
	position: relative;
}

.imbox .bg {
	width: 100%;
}

.imbox .list {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	box-sizing: border-box;
}

.imbox .list .item {
	width: calc(100% / 6);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-decoration: none;
}

.imbox .list .item img {
	width: calc(100% - 10px);
	margin-bottom: 5px;
	transform: rotate(0) translateX(0%);
	animation: move .5s;
}

/* @media screen and (max-width: 750px) {
	.imbox .list .item img {
		width: calc(100% - 5px);
		margin-bottom: 5px;
		transform: rotate(0) translateX(0%);
		animation: move .5s;
	}
} */

@keyframes move {
	from {
		transform: rotate(-30deg) translateX(-30%);
	}

	to {
		transform: rotate(0) translateX(0%);
	}
}

.imbox .list .item span {
	font-size: 1em;
	color: #000;
}

.listImg {
	margin: 0 auto 5px;
	width: 90%;
	position: relative;
}

.listImg img {
	width: 100%;
}

.btns {
	width: 30%;
	height: 50%;
	position: absolute;
	top: 25%;
	right: 13px;
}

.footer {
	width: 100%;
	text-align: center;
	color: #0058f0;
	font-size: 12px;
	padding-bottom: 10px;
}

.popus {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
	left: 0;
	top: 0;
	display: none;
}

.popus-con {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.popus-close {
	width: 30px;
	height: 30px;
}

.popus-list {
	width: 80%;
	max-width: 600px;
	background-color: #d8e7f5;
	padding: 10px 0;
	border-radius: 10px;
	margin-bottom: 20px;
}

.popus-list-item {
	width: 100%;
	padding: 5px 10px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.popus-list-item .left {
	width: 80px;
}

.popus-list-item .left img {
	width: 20px;
	vertical-align: middle;
}

.popus-list-item .left span {
	font-size: 1em;
	vertical-align: middle;
	color: #04be02;
}

.popus-list-item p {
	width: 50px;
	text-align: center;
	font-size: 1em;
	color: #000;
	margin: 0;
	line-height: 1;
}

.popus-list-item a {
	display: block;
	text-decoration: none;
	width: 80px;
	height: 30px;
	border-radius: 7px;
	color: #fff;
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	background-color: #0058f0;
}