html,
body {
	margin: 0;
	padding: 0;
}

.iosindex-page {
	widows: 100%;
	background-color: #FFFFFF;
}

.iosindex-page-header {
	width: 100%;
	height: 140px;
	background-color: #01AAEB;
	display: flex;
	flex-wrap: wrap;
	justify-content: center
}

.iosindex-page-header-button {
	width: 50%;
	height: 40px;
	text-align: center;
	line-height: 40px;
	margin-top: 40px;
}

.iosindex-page-header-button-img {
	width: 100%;
	animation: myfirst 2s infinite linear;
	-moz-animation: myfirst 2s infinite linear;
	/* Firefox */
	-webkit-animation: myfirst 2s infinite linear;
	/* Safari 和 Chrome */
	-o-animation: myfirst 2s infinite linear;
	/* Opera */
}

.iosindex-page-header-footer {
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #FFFFFF;
	font-size: 12px;
}

.iosindex-page-item {
	width: 90%;
	margin: auto;
}

.iosindex-page-item-header {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
}

.iosindex-page-item-header-num {
	width: 20px;
	height: 20px;
	border: 2px solid #01AAEB;
	border-radius: 50%;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	color: #01AAEB;
	margin-right: 10px;
}

.iosindex-page-item-header-title {
	font-size: 14px;
}

.iosindex-page-item-content {
	width: 100%;
}

.iosindex-page-item-content-img {
	width: 100%;
}

.iosindex-page-footer {
	width: 100%;
	margin: 30px 0;
	padding-bottom: 50px;
}

.iosindex-page-footer-p {
	width: 100%;
	height: 20px;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	font-weight: bold;
}

.iosindex-page-footer-arrows-div {
	width: 100%;
	/*text-align: center;*/
	height: 80px;
	position: relative;
	top: 0;
	left: 0;
}

.iosindex-page-footer-arrows {
	height: 90%;
	position: absolute;
	left: 48%;
	top: 0;
	animation: arrows 1s infinite linear;
	-moz-animation: arrows 1s infinite linear;
	/* Firefox */
	-webkit-animation: arrows 1s infinite linear;
	/* Safari 和 Chrome */
	-o-animation: arrows 1s infinite linear;
	/* Opera */
}

.iosindex-page-footer-button {
	width: 50%;
	height: 40px;
	margin: 20px auto;
	border-radius: 20px;
	text-align: center;
	line-height: 40px;
	color: #FFFFFF;
	background-color: #01AAEB;
	font-size: 16px;
}

@keyframes myfirst {
	0% {
		transform: scale(1);
		/*开始为原始大小*/
	}
	25% {
		transform: scale(1.1);
		/*放大1.1倍*/
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(1.1);
	}
}

@-moz-keyframes myfirst
/* Firefox */

{
	0% {
		transform: scale(1);
		/*开始为原始大小*/
	}
	25% {
		transform: scale(1.1);
		/*放大1.1倍*/
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(1.1);
	}
}

@-webkit-keyframes myfirst
/* Safari 和 Chrome */

{
	0% {
		transform: scale(1);
		/*开始为原始大小*/
	}
	25% {
		transform: scale(1.1);
		/*放大1.1倍*/
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(1.1);
	}
}

@-o-keyframes myfirst
/* Opera */

{
	0% {
		transform: scale(1);
		/*开始为原始大小*/
	}
	25% {
		transform: scale(1.1);
		/*放大1.1倍*/
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(1.1);
	}
}


/*箭头动画*/

@keyframes arrows {
	0% {
		top: 0;
	}
	25% {
		top: 10%;
	}
	50% {
		top: 0;
	}
	75% {
		top: 10%;
	}
}

@-moz-keyframes arrows
/* Firefox */

{
	0% {
		top: 0;
	}
	25% {
		top: 10%;
	}
	50% {
		top: 0;
	}
	75% {
		top: 10%;
	}
}

@-webkit-keyframes arrows
/* Safari 和 Chrome */

{
	0% {
		top: 0;
	}
	25% {
		top: 10%;
	}
	50% {
		top: 0;
	}
	75% {
		top: 10%;
	}
}

@-o-keyframes arrows
/* Opera */

{
	0% {
		top: 0;
	}
	25% {
		top: 10%;
	}
	50% {
		top: 0;
	}
	75% {
		top: 10%;
	}
}
.iosindex-page-shade{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	visibility: hidden;
}
.iosindex-page-shade-jiantou-div{
	width: 100%;
	height: 150px;
	margin-top: 30px;
	display: flex;
	justify-content: flex-end;
}
.iosindex-page-shade-jiantou-div-img{
	height: 100%;
	margin-right: 10px;
}
.iosindex-page-shade-jiantou-div-one{
	width: 100%;
	height: 150px;
	margin-top: 5px;
	display: flex;
	justify-content: center;
}
.iosindex-page-shade-jiantou-div-one-img{
	height: 100%;}