html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
select,
button,
textarea,
menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: normal;
	outline: medium;
	border: 0;
	font-family: 'Microsoft Yahei';
}

body {
	background-color: #0e0f0a;
}

a {
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	color: #999;
}

.none {
	opacity: 0;
}

#wrap {
	margin: 0 auto;
	max-width: 750px;
	background-color: #f4f4f4;
	position: relative;
	overflow: hidden;
	/*margin-top:12%;*/
}

.swiper-slide img {
	width: 100%;
}

.swiper-pagination-bullet-active {
	background-color: #57a2ff;
}

.swiper-pagination-bullet {
	opacity: 1;
}

.pr {
	position: relative;
}

.pa {
	position: absolute;
}

.fp {
	display: block;
	width: 16%;
	padding: 4% 0;
	position: absolute;
	top: 49%;
}

.block {
	width: 100%;
	display: block;
}

.pf {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 750px;
	z-index: 3;
}

.down01 {
	display: block;
	width: 26%;
	padding: 4.5% 0;
	background-color: transparent;
	position: absolute;
	top: 28%;
	left: 37%;
}

.down02 {
	display: block;
	width: 26%;
	padding: 4.5% 0;
	background-color: transparent;
	position: absolute;
	top: 89%;
	left: 37%;
}

.picList li img {
	width: 100%;
	height: auto;
}

.screenshot {
	position: absolute;
	width: 90%;
	top: 45%;
	left: 5%;
}

.down1 {
	display: block;
	width: 50%;
	padding: 5% 0;
	background-color: transparent;
	position: absolute;
	left: 15%;
	top: 34%;
}

.down2 {
	display: block;
	width: 60%;
	padding: 5% 0;
	background-color: transparent;
	position: absolute;
	left: 20%;
	height: 3%;
	top: 91%;
}

.animated-button {
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.5s;
	animation: scaleAnimation 0.5s infinite alternate;
}

.animated-button:hover {}

@keyframes scaleAnimation {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
	}
}

.emptyrtwo {
	text-align: center;
	width: 100%;
	height: auto;
	display: block;
	position: absolute;
	top: 95%;
	color: #a63515;
	；
}

/* 模态框的基础样式 */
.modal {
	/* display: none; */
	/* 默认隐藏 */
	position: fixed;
	/* 固定定位 */
	z-index: 1;
	/* 置于顶层 */
	left: 0;
	top: 0;
	width: 100%;
	/* 全宽 */
	height: 100%;
	/* 全高 */
	overflow: auto;
	/* 启用滚动 */
	background-color: rgb(0, 0, 0);
	/* 背景颜色 */
	background-color: rgba(0, 0, 0, 0.4);
	/* 背景颜色，带透明度 */
}

/* 模态内容样式 */
.modal-content {
	
	margin: 25% auto;
	/* 15% 从顶部和自动水平居中 */
	width: 100%;
	/* 可调节宽度 */
}

.modal-content img {
	width: 100%;
	height: auto;
	display: block;
}

/* 关闭按钮样式 */
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}