* {
	padding: 0;
	margin: 0;
	border: none;
}
a {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #000;
	text-decoration: none;
}
.bg {
	/* width: 100vw; */
	background-color: #fff;
	background-repeat: no-repeat;
	background-image: url(bg.png);
	background-size: contain;
	overflow: auto;
}
.container {
	width: 76%;
	margin: 0 auto;
}
.logo, .main {
	padding: 0 76px;
}
.logo {
	margin-top: 32px;
}
.logo img {
	width: 60px;
	height: 60px;
}
.main {
	display: flex;
	gap: 65px;
	align-items: flex-start;
	margin-top: 40px;
}
.main .title {
	font-size: 40px;
	font-family: SourceHanSansCN;
	font-weight: bold;
	color: #FFFFFF;
	margin-bottom: 36px;
}
.main p {
	font-size: 18px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 30px;
}
.main .btns {
	margin-top: 52px;
	display: flex;
	gap: 26px;
}
.main .btns .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 192px;
	height: 56px;
	border-radius: 28px;
}
.main .btns .btn img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
.main .btns .btn span {
	font-size: 16px;
	font-family: SourceHanSansCN;
	font-weight: 400;
}
.main .btns .btn-android {
	background: #FFFFFF;
	color: #1296DB;
}
.main .btns .btn-ipone {
	border: 2px solid #FFFFFF;
	color: #fff;
}

.list {
	margin-top: 170px;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.list .item {
	width: calc(25% - (3 * 30px / 4));
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	box-sizing: border-box;
	background: #FFFFFF;
	box-shadow: 0px 2px 9px 0px rgba(50,116,236,0.39);
	border-radius: 8px;
}
.list .item .left img {
	width: 36px;
	height: 36px;
}
.list .item .right .title {
	font-size: 18px;
	font-family: SourceHanSansCN;
	font-weight: 500;
	color: #333333;
	margin-bottom: 13px;
}
.list .item .right p {
	font-size: 16px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #999999;
}

.copyright {
	width: 100%;
	margin: 20px 0; 
	text-align: center;
	font-size: 14px;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #999999;
	line-height: 30px;
}


@media screen and (max-width: 1240px) {
	.bg {
		background-size: cover;
	}
	.logo img {
		width: 120px;
		height: 120px;
	}
	.container {
		width: 96%;
	}
	.main {
		display: flex;
		flex-wrap: wrap;
	}
	.main p {
		font-size: 36px;
		line-height: 60px;
	}
	.main .title {
		font-size: 80px;
	}
	.main .btns .btn {
		width: 384px;
		height: 112px;
		border-radius: 56px;
	}
	.main .btns .btn img {
		width: 48px;
		height: 48px;
	}
	.main .btns .btn span {
		font-size: 36px;
	}
	.main .btns .btn-ipone {
		border: 4px solid #FFFFFF;
	}
	.main .right {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.main .right img {
		width: 100%;
	}
	.list .item {
		width: calc(50% - 30px);
	}
	
	.list .item .left img {
		width: 72px;
		height: 72px;
	}
	.list .item .right .title {
		font-size: 34px;
	}
	.list .item .right p {
		font-size: 28px;
	}
	
	.copyright {
		font-size: 28px;
		line-height: 60px;
	}
}