[v-cloak] {
	display: none !important;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul,
li,
ol {
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, 'Lantinghei SC', 'Hiragino Sans GB', 'Microsoft YaHei', 微软雅黑, STHeiti, 'WenQuanYi Micro Hei', SimSun, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: #b5b5b5;
}

a:visited {
	color: #b5b5b5;
}

a:hover {
	text-decoration: none;
	color: #fff;
}

ul,
ol {
	list-style: none;
}

input,
button {
	outline: none;
	border: 0;
}

.container {
	position: relative;
	min-width: 320px;
}

.section {
	max-width: 1200px;
	margin: 0 auto 20px;
	overflow: hidden;
	z-index: 2;
	position: relative;
}

/* 导航栏 */
.nav {
	position: fixed;
	left: 50%;
	top: 0;
	z-index: 3;
	width: 100%;
	transform: translateX(-50%);
}

.nav-aside {
	width: 1020px;
	height: 60px;
	margin: 0 auto;
	padding: 0 60px 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-l {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	color: #111215;
}

.nav-l img {
	width: 34px;
	height: 34px;
	margin-right: 8px;
}

.nav-r {
	display: flex;
}

.nav-r button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 30px;
	cursor: pointer;
	border-radius: 4px;
	font-weight: 600;
	font-size: 16px;
	color: #015FFF;
	background: #fff;
	border: 1px solid #015FFF;
}

.nav-r button:nth-child(2) {
	margin-left: 16px;
	background: #015FFF;
	color: #fff;
	border: 0;
}

/* 头部 */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 124px 12px 102px;

}

.header-l h1 {
	font-weight: 600;
	font-size: 30px;
	color: #000000;
}

.header-l p {
	margin-top: 20px;
	font-weight: 400;
	font-size: 18px;
	color: #2C3E50;
}

.header img {
	width: 412px;
	height: 412px;
	margin-left: 17%;
}

/* banner图 */
.bg {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	width: 100%;
	height: 475px;
	background: url('../image/index_5.png') top center no-repeat;
	background-size: cover;
}

/* 内容 */
.main h2 {
	font-weight: 600;
	font-size: 36px;
	color: #000000;
	text-align: center;
	margin: 80px 0;
}

.main .img-box {
	position: relative;
	display: flex;
	justify-content: end;
}

.main .box-sub {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 100%;
}

.main .img-box2 {
	position: relative;
}

.main .box-sub img {
	position: absolute;
}

.main .img6 {
	width: 100%;
}

.main .img7 {
	width: 680px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.main .img4 {
	width: 688px;
	margin-bottom: 72px;
}

.main .img2 {
	width: 636px;
}

.main .img1 {
	width: 732px;
	top: 15%;
	right: 130px !important;
}

.main .img8 {
	width: 350px;
	top: 3.5%;
	right: 36px;
}

.main .img9 {
	width: 640px;
	bottom: 4%;
	right: 0;
}

.main .download-btn {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.main .download-btn a {
	padding: 4px 18px;
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 8px;
	margin-right: 16px;
}

.main .download-btn a:last-child {
	margin-right: 0;
}

.main .download-btn a img {
	width: 32px;
	height: 32px;
}

.main .download-btn a .btn-tip {
	display: flex;
	flex-direction: column;
	text-align: left;
	margin-left: 10px;
	font-size: 14px;
	color: #000;
	font-weight: bold;
	line-height: 20px;
}

/* 定义弹框进入和退出的关键帧 */
@keyframes popup-enter {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@keyframes popup-exit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* 弹框样式 */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.popup-center {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}

.popup-center .popup-guide {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 64px;
}

.popup-center .popup-guide span {
	font-weight: 600;
	font-size: 28px;
	color: #FFFFFF;
}

.popup-center .popup-arrows {
	display: flex;
	justify-content: flex-end;
}

.popup-center img {
	width: 46px;
	height: 46px;
	margin: 40px 54px 0 0;
}
 
/* 弹框进入动画 */
.popup-enter {
  animation-name: popup-enter;
}
 
/* 弹框退出动画 */
.popup-exit {
  animation-name: popup-exit;
  display: none;
}

/* 底部 */
.footer {
	background: #fff;
	color: #b9b9b9;
	font-size: 14px;
	text-align: center;
	border-top: 1px solid #f1f1f1;
	padding: 15px 0px;
}

.footer span {
	margin: 0 20px;
}

.footer-btn {
	display: block;
	width: 568px;
	height: 116px;
	margin: 234px auto 120px;
	background: #4681FE;
	border-radius: 24px;
	font-weight: 400;
	font-size: 36px;
	color: #FFFFFF;
	cursor: pointer;
}

/* 手机端 */
@media screen and (max-width: 1220px) {
	.main .img2 {
		width: 52%;
	}

	.main .box-sub {
		width: 72%;
	}

	.box-sub .img1 {
		width: calc(100% - 130px);
		left: 0;
	}

	.box-sub .img9 {
		width: 75%;
	}
}

@media screen and (max-width: 1024px) {
	.bg {
		height: 238px;
	}

	.section {
		max-width: 100%;
		padding: 0 14px;
	}

	.nav {
		width: 100%;
	}

	.nav-aside {
		width: calc(100% - 20px);
		padding: 0 10px;
	}

	.header {
		justify-content: center;
		padding: 70px 0 12px;
	}

	.header-l {
		width: 46%;
	}

	.header-l p {
		margin-top: 10px;
	}

	.header img {
		width: 160px;
		height: 160px;
		margin-left: 4%;
	}

	.header-l h1 {
		font-size: 24px;
	}

	.header-l p {
		font-size: 14px;
	}

	.main h2 {
		font-size: 18px;
		margin: 40px 0;
	}

	.main .img7 {
		width: 60%;
	}

	.main .img4 {
		width: 52%;
		margin-bottom: 36px;
	}

	.box-sub .img8 {
		width: 40%;
	}

	.footer-btn {
		width: 80%;
		height: 58px;
		margin: 20px auto 20px;
		border-radius: 12px;
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	.main h2 {
		font-size: 18px;
		margin: 20px 0;
	}

	.box-sub .img1 {
		width: 84%;
	}

	.main .img8 {
		right: 18px;
	}
}

@media screen and (max-width: 768px) {
	.bg {
		height: 238px;
	}

	.header {
		height: 156px;
	}

	.header-l {
		width: auto;
	}

	.header-l p {
		font-size: 12px;
	}

	.header img {
		width: 80px;
		height: 80px;
		margin-left: 1%;
	}
}