.header {
	max-width: 1920px;
	min-width: 1140px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 24px;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	background-color: #fff;
	z-index: 985;
	box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
}

@media screen and (max-width: 1139px) {
	.header {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		height: 6rem;
		padding: 1rem 2.4rem;
	}
}

.header .left {
	display: flex;
	align-items: center;
}

.header .left img {
	width: 40px;
	height: 40px;
	border-radius: 9px;
	margin-right: 12px;
}

@media screen and (max-width: 1139px) {
	.header .left img {
		width: 4rem;
		height: 4rem;
		border-radius: 0.9rem;
		margin-right: 1.2rem;
	}
}

.header .left text {
	font-size: 16px;
	font-weight: 600;
	line-height: 22.4px;
	text-align: left;
	color: #151515;
}

@media screen and (max-width: 1139px) {
	.header .left text {
		font-size: 1.6rem;
		line-height: 2.3rem;
	}
}

.header .right {
	display: flex;
	font-size: 18px;
	font-weight: 500;
	color: #9c9c9c;
	font-style: normal;
	line-height: normal;
}

.header .right .nav_more {
	display: none;
}

@media screen and (max-width: 1139px) {
	.header .right {
		font-size: 1.8rem;
	}

	.header .right .nav_more {
		display: block;
	}
}

.header .right .item {
	margin: 0 10px;
	cursor: pointer;
}

.header .right .item.active {
	color: #151515;
}

@media screen and (max-width: 1139px) {
	.header .right .item:nth-last-child(n + 3) {
		display: none;
	}
}

.header .mobile_nav_bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 6rem;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: rgba(0, 0, 0, 0.4);
	display: none;
}

.header .mobile_nav_bg .mobile_nav {
	display: none;
}

.header .mobile_nav_bg .mobile_nav .item {
	display: block;
	width: 100%;
	height: 6.2rem;
	padding-left: 2.4rem;
	line-height: 6.2rem;
	background: #fff;
	font-size: 1.6rem;
	color: #6a6a6a;
}

.header .right .lang_menu {
	min-width: 120px;
	position: fixed;
	background: #fff;
	border: 1px solid #e0e0e0;
	right: 10px;
	text-align: left;
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
	border-radius: 5px;
	top: 61px;
	animation-name: imgMove;
	animation-duration: .2s;
	padding: 10px 0;
	display: none;
}

.header .right .lang_menu::after {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
	position: absolute;
	content: " ";
	top: -5px;
	left: 48%
}

.header .right .lang_menu a {
	cursor: pointer;
	margin-bottom: 5px;
	padding: 3px 15px;
	display: block;
	font-size: 16px;
	color: #9c9c9c;
}

.lang_menu a.item_lang:visited,
.lang_menu a.item_lang:focus,
.lang_menu a.item_lang:active,
.lang_menu a.item_lang:hover {
	color: #9c9c9c;
}

.header .right .lang_menu .item_lang.active {
	color: #262626;
}

.download {
	max-width: 1920px;
	margin: 0 auto;
	height: 732px;
	background: url("../img/index/index_bg.png") no-repeat center center/cover;
}

@media screen and (max-width: 1139px) {
	.download {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}

.download .download-container {
	position: relative;
	width: 1140px;
	margin: 0 auto;
	display: flex;
	top: 91px;
	justify-content: space-between;
}

@media screen and (max-width: 1139px) {
	.download .download-container {
		width: 100%;
		height: auto;
		top: 0rem;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 40rem;
	}
}

.download .download-container .item {
	position: relative;
	width: 260px;
	height: 324px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.download .download-container .item .btn {
	width: 220px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	border-radius: 10px;
	border: 1px solid var(--color-main, #0052ff);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	color: #ffffff;
	cursor: pointer;
}

.download .download-container .item .btn a,
.download .download-container .item .btn a:hover,
.download .download-container .item .btn a:active {
	color: #ffffff;
}

.download .download-container .item.active .btn a,
.download .download-container .item.active .btn a:hover,
.download .download-container .item.active .btn a:active {
	color: #ffffff;
}

@media screen and (max-width: 1139px) {
	.download .download-container .item {
		height: auto;
		margin-top: 2.4rem;
	}

	.download .download-container .item .btn {
		width: 28rem;
		height: 5.2rem;
		line-height: 5.2rem;
		text-align: center;
		border-radius: 1rem;
	}
}

.download .download-container .item.active .btn {
	background: #0052ff;
	color: #fff;
}

@media screen and (max-width: 1139px) {
	.download .download-container .item:nth-child(n + 2) img {
		display: none;
	}
}

.download-container .item .mac_bg {
	display: none;
}
.download-container .item .mac_bg.show {
	display: block;
}

.download-container .item .mac_list {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 16px;
	position: absolute;
	width: 100%;
	height: auto;
	right: 0;
	bottom: 82px;
	background: #FFFFFF;
	box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	box-sizing: border-box;
}

.download-container .item .mac_list>div {
	flex: 1;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 52px;
	width: 100%;
	background: #F9F9F9;
	border-radius: 8px;
	/* Inside auto layout */
	flex: none;
	order: 0;
	flex-grow: 0;
	margin-bottom: 10px;
}

.download-container .item .mac_list a {
	font-size: 14px;
	color: #151515;
}

@media screen and (max-width: 1139px) {
	.download-container .item .mac_bg {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: rgb(0 0 0 / 40%);
		z-index: 990;
	}

	.download-container .item .mac_list {
		position: fixed;
		bottom: 0;
		border-radius: 0;
	}

	.download-container .item .mac_list>div {
		background: none;
		height: 3.5rem;
	}
}

.service {
	width: 1140px;
	margin: 0 auto;
}

@media screen and (max-width: 1139px) {
	.service {
		width: 100%;
	}
}

.service .title {
	margin-top: 87px;
	color: #151515;
	text-align: center;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

@media screen and (max-width: 1139px) {
	.service .title {
		margin-top: 4.5rem;
		padding: 0 10px;
		font-size: 3rem;
	}
}

.service .content {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 70px;
}

@media screen and (max-width: 1139px) {
	.service .content {
		margin-top: 1.8rem;
		flex-direction: column;
		box-sizing: border-box;
		padding: 0 2rem;
	}
}

.service .content .item {
	width: 360px;
}

.service .content .item .img-container {
	width: 360px;
	height: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.service .content .item .sub-title {
	width: 360px;
	color: #151515;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 26px;
	/* 25.6px */
	margin: 12px 0;
	text-align: left;
}

.service .content .item .detail {
	color: #6a6a6a;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	/* 25.6px */
	text-align: left;
}

@media screen and (max-width: 1139px) {
	.service .content .item {
		width: 100%;
		margin-top: 3rem;
	}

	.service .content .item .img-container {
		width: 80%;
		height: auto;
		margin: 0 auto;
	}

	.service .content .item .img-container img {
		width: 100%;
	}

	.service .content .item .sub-title {
		width: 100%;
		font-size: 1.6rem;
		line-height: 2.5rem;
		margin: 1.2rem 0;
		font-weight: 600;
	}

	.service .content .item .detail {
		color: #6a6a6a;
		font-size: 1.6rem;
		font-weight: 400;
		line-height: 2.5rem;
		/* 25.6px */
	}
}

.flag {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	margin-top: 160px;
	width: 1140px;
	box-sizing: border-box;
}

@media screen and (max-width: 1139px) {
	.flag {
		width: 100%;
		margin-top: 5rem;
		padding: 0 2rem;
		flex-direction: column-reverse;
	}
}

.flag .left {
	width: 640px;
}

@media screen and (max-width: 1139px) {
	.flag .left {
		width: 100%;
	}
}

.flag .left .title {
	color: #151515;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-align: justify;
}

@media screen and (max-width: 1139px) {
	.flag .left .title {
		font-size: 3rem;
		text-align: left;
	}
}

.flag .left .detail {
	color: #6a6a6a;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	margin-top: 10px;
	margin-bottom: 40px;
	text-align: justify;
}

@media screen and (max-width: 1139px) {
	.flag .left .detail {
		font-size: 1.4rem;
		margin-bottom: 2rem;
	}
}

@media screen and (max-width: 1139px) {
	.flag .left img {
		width: 100%;
		height: auto;
	}
}

.flag .right {
	width: 455px;
	height: 455px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 1139px) {
	.flag .right {
		width: 100%;
		height: auto;
	}

	.flag .right img {
		width: 100%;
	}
}

.fast {
	width: 1140px;
	margin: 0 auto;
	display: flex;
	margin-top: 190px;
	justify-content: space-between;
	box-sizing: border-box;
}

@media screen and (max-width: 1139px) {
	.fast {
		width: 100%;
		height: auto;
		flex-direction: column;
		padding: 0 2rem;
		margin-top: 6.4rem;
	}
}

.fast .item {
	width: 360px;
	text-align: justify;
}

.fast .item .title {
	margin: 30px 0 10px;
	text-align: left;
	color: #151515;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.fast .item .detail {
	color: #6a6a6a;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
	/* 25.6px */
}

@media screen and (max-width: 1139px) {
	.fast .item {
		width: 100%;
		margin-bottom: 3rem;
	}

	.fast .item .title {
		margin: 3rem 0 1rem;
		font-size: 1.6rem;
	}

	.fast .item .detail {
		width: 100%;
		font-size: 1.6rem;
		line-height: 2.5rem;
		/* 25.6px */
	}
}

.plan {
	width: 1140px;
	margin: 0 auto;
	margin-top: 88px;
	box-sizing: border-box;
}

@media screen and (max-width: 1139px) {
	.plan {
		width: 100%;
		margin-top: 4.5rem;
		padding: 0 2rem;
	}
}

.plan .title {
	color: #151515;
	text-align: center;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

@media screen and (max-width: 1139px) {
	.plan .title {
		font-size: 3.6rem;
	}
}

.plan .subtitle {
	margin-top: 16px;
	color: #151515;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

@media screen and (max-width: 1139px) {
	.plan .subtitle {
		font-size: 1.6rem;
		margin-top: 1.6rem;
	}
}

.plan .select {
	width: 300px;
	height: 50px;
	margin: 0 auto;
	display: flex;
	margin-top: 40px;
	align-items: center;
	justify-content: space-around;
	border-radius: 25px;
	background: #f5f5f5;
}

.plan .select .item {
	width: 148px;
	height: 50px;
	color: #9c9c9c;
	border-radius: 26px;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 50px;
	cursor: pointer;
}

.plan .select .item.active {
	background: linear-gradient(270deg, #0078ff 0%, #1bb2fe 100%);
	color: #fff;
}

@media screen and (max-width: 1139px) {
	.plan .select {
		width: 30rem;
		height: 5rem;
		margin-top: 3rem;
		border-radius: 2.6rem;
	}
}

.plan .plan-item .plan_a,
.plan .plan-item .plan_b {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
	box-sizing: border-box;
}

@media screen and (max-width: 1139px) {

	.plan .plan-item .plan_a,
	.plan .plan-item .plan_b {
		width: 100%;
		flex-direction: column;
	}
}

.plan .plan-item .plan_b {
	display: none;
}

.plan .plan-item .item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 272px;
	height: 360px;
	border-radius: 10px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid var(--color-line, #e7e9eb);
	box-shadow: 0px 32px 26.4px -9px rgba(0, 0, 0, 0.12);
	cursor: pointer;
}

.plan .plan-item .item:before {
	/*  content: '';  */
	width: 28px;
	height: 28px;
	position: absolute;
	top: 10px;
	left: 10px;
	background: url("../img/index/dis_select.png");
}

.plan .plan-item .item .fir {
	color: #6a6a6a;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.plan .plan-item .item .sec {
	margin-top: 10px;
	color: #151515;
	text-align: center;
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	height: 33px;
}

.plan .plan-item .item .sec span {
	color: #f00;
	padding: 0 5px;
}

.plan .plan-item .item .price {
	margin-top: 3px;
	color: #151515;
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.plan .plan-item .item .price .old_price {
	display: inline-block;
	position: relative
}

.plan .plan-item .item .price .old_price::after {
	content: ' ';
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 3px;
	background: #f00;
	transform: translateY(-50%);
}

.plan .plan-item .item .price .cur_price {
	font-size: 30px;
	color: #e80000;
}

.plan .plan-item .item .thir {
	margin-top: 20px;
	color: #6a6a6a;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.plan .plan-item .item .off {
	visibility: hidden;
	margin-top: 10px;
	/* display: flex; */
	display: none;
	padding: 4px 6px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: var(--color-line, #e7e9eb);
	color: #6a6a6a;
}

.plan .plan-item .item .coupon {
	margin-top: 10px;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: #151515;
}

.plan .plan-item .item .fou {
	margin-top: 20px;
	color: #6a6a6a;
	text-align: left;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/*   .plan .plan-item .item.active {
      border: 4px solid #0052ff;
      background: rgba(25, 140, 255, 0.1); } */
.plan .plan-item .item.active .sec {
	color: #0052ff;
}

.plan .plan-item .item.active .price {
	color: #0052ff;
}

.plan .plan-item .item.active .off {
	background: linear-gradient(0deg, #198cff 0%, #198cff 100%, #0052ff);
	color: #fff;
}

.plan .plan-item .item.active:before {
	/*  content: ''; */
	width: 28px;
	height: 28px;
	position: absolute;
	top: 10px;
	left: 10px;
	background: url("../img/index/select.png");
}

.plan .plan-item.pc {
	display: block;
}

.plan .plan-item.mobile {
	display: none;
}

@media screen and (max-width: 1139px) {
	.plan .plan-item {
		flex-direction: column;
	}

	.plan .plan-item.pc {
		display: none;
	}

	.plan .plan-item.mobile {
		display: block;
	}

	.plan .plan-item .item {
		flex-direction: row;
		position: relative;
		align-items: center;
		width: 100%;
		height: 12rem;
		box-sizing: border-box;
		padding: 1.5rem 2.4rem 0;
		border-radius: 1rem;
		border: 0.1rem solid #e7e9eb;
		box-shadow: 0px 10px 21px -9px rgba(0, 0, 0, 0.12);
		margin-bottom: 1.2rem;
	}

	.plan .plan-item .item:before {
		/*content: ''; */
		width: 2rem;
		height: 2rem;
		position: absolute;
		top: 1rem;
		left: 1rem;
		background: url("../img/index/dis_select.png") no-repeat center center/contain;
	}

	.plan .plan-item .item .left {
		flex: 2;
	}

	.plan .plan-item .item .right {
		/* flex: 1; */
	}

	.plan .plan-item .item .fir {
		text-align: left;
		font-size: 1.2rem;
	}

	.plan .plan-item .item .sec {
		margin: 0.5rem 0;
		color: #6a6a6a;
		text-align: left;
		font-size: 1.5rem;
	}

	.plan .plan-item .item .fou {
		margin-top: 0;
		font-size: 1.6rem;
		text-align: left;
	}

	.plan .plan-item .item .old_price {
		font-size: 2.8rem;
		margin-top: 0;
		text-decoration: line-through;
		position: relative;
		color: #777;
	}

	.plan .plan-item .item .old_price::after {
		content: ' ';
		position: absolute;
		left: 0;
		top: 50%;
		width: 90%;
		height: 3px;
		background: #f00;
		transform: translateY(-50%);
	}

	.plan .plan-item .item .price {
		font-size: 2.8ren;
		margin-top: 0;
	}

	.plan .plan-item .item .thir {
		font-size: 1.2rem;
		margin-top: 0;
	}

	.plan .plan-item .item .off {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		margin-top: 0;
		border-top-right-radius: 1rem;
	}

	.plan .plan-item .item.active {
		border: 0.4rem solid #0052ff;
	}

	.plan .plan-item .item.active:before {
		/* content: ''; */
		width: 2rem;
		height: 2rem;
		position: absolute;
		top: 1rem;
		left: 1rem;
		background: url("../img/index/select.png") no-repeat center center/contain;
	}

	.plan .plan-item .item.active .sec {
		color: #0052ff;
	}

	.plan .plan-item .item.active .price {
		color: #0052ff;
	}

	.plan .plan-item .item.active .off {
		background: linear-gradient(0deg, #198cff 0%, #198cff 100%, #0052ff);
		color: #fff;
		top: -0.4rem;
		right: -0.4rem;
	}
}

.plan .next {
	display: flex;
	width: 326px;
	height: 52px;
	box-sizing: border-box;
	padding: 15px 0px;
	margin: 0 auto;
	margin-top: 80px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border-radius: 10px;
	background: linear-gradient(270deg, #0078ff 0%, #1bb2fe 100%);
	color: #f5f5f5;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 52px;
	cursor: pointer;
}

@media screen and (max-width: 1139px) {
	.plan .next {
		width: 100%;
		height: 5.2rem;
		margin-top: 1.3rem;
		line-height: 5.2rem;
		font-size: 1.6rem;
	}
}

.footer-container {
	width: 100%;
	margin-top: 90px;
	box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.06) inset;
	padding-top: 60px;
}

.footer-container .pc {
	display: block;
}

.footer-container .mobile {
	display: none;
}

@media screen and (max-width: 1139px) {
	.footer-container {
		margin-top: 2rem;
		padding-top: 2.5rem;
	}

	.footer-container .pc {
		display: none;
	}

	.footer-container .mobile {
		display: block;
	}
}

.footer-container .footer {
	display: flex;
	width: 1140px;
	margin: 0 auto;
}

.footer-container .footer a {
	color: #6a6a6a;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 10px 0;
}

.footer-container .footer .title {
	color: #151515;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.footer-container .footer .left {
	flex: 1;
	display: flex;
}

.footer-container .footer .left .item {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.footer-container .footer .right .top {
	display: flex;
}

.footer-container .footer .right .top .item {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.footer-container .footer .right .payment {
	margin-top: 10px;
}

@media screen and (max-width: 1139px) {
	.footer-container .footer {
		width: 100%;
		display: block;
		padding: 0 2rem;
		box-sizing: border-box;
	}

	.footer-container .footer a {
		font-size: 1.4rem;
		margin: 1rem 0;
	}

	.footer-container .footer .title {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}

	.footer-container .footer .right {
		margin-top: 1rem;
	}

	.footer-container .footer .payment.mobile {
		margin-top: 4rem;
	}

	.footer-container .footer .payment.mobile .title {
		margin-bottom: 1.5rem;
	}

	.footer-container .footer .payment.mobile img {
		width: 100%;
	}
}

.footer-container .line {
	width: 1140px;
	margin: 0 auto;
	height: 1px;
	margin-top: 70px;
	background: #e7e9eb;
}

@media screen and (max-width: 1139px) {
	.footer-container .line {
		width: 100%;
		margin-top: 4.5rem;
	}
}

.footer-container .copyright {
	display: block;
	width: 1140px;
	margin: 35px auto;
	color: #6a6a6a;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.service-bg {
	width: 100%;
	max-width: 100%;
	height: auto;
	padding: 0px 0 50px;
	background: url("../img/index/index_bg1.png") no-repeat center bottom/cover;
	background-size: contain;
}

.container {
	width: 100%;
	padding: 50px 12px 12px 12px;
	margin-right: auto;
	display: flex;
	margin-left: auto;
}

.container-left {
	width: 50%;
}
.cn .container-left {
	padding-top: 110px;;
}
.container-right {
	width: 50%;
	color: #fff;
}

.container-right img {
	width: 520px;
}

.landing-title {
	font-size: 65px;
	line-height: 1.2;
	margin: 0 0 23px;
	text-align: left;
	font-weight: 600;
}
.landing-title p{
	margin:0
}

.landing-desc {
	font-size: 24px;
	line-height: 1.5;
	margin: 0 0 36px;
	text-align: left;
}

.quick_download {
	position: relative;
}
.download_btn {
	display: inline-block;
	width: 173px;
	height: 68px;
	color: #fff;
	background-color: #0052ff;
	border-radius: 50px;
	content: "";
	left: 0;
	text-align: center;
	line-height: 68px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	transition: .3s ease;
}
.btn {
	display: inline-block;
	width: 173px;
	height: 68px;
	color: #fff;
	background-color: #0052ff;
	border-radius: 50px;
	content: "";
	left: 0;
	text-align: center;
	line-height: 68px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	transition: .3s ease;
}

.download_btn img {
	display: none;
	width: 24px;
	margin-right: 5px;
	margin-top: -5px;
}

.banner__community {
	display: flex;
	margin: 65px 0 0;
}

.banner__community ul {
	display: flex;
}

.banner__community li {
	margin-left: -20px;
}

.banner__community li img {
	box-shadow: 0 0 0 3px #0f051d;
	border-radius: 50%;
	width: 48px;
}

.banner__community-numbers {
	margin-left: 20px;
}

.banner__community-numbers h5 {
	font-size: 32px;
	line-height: 1;
	margin: 0;
	text-align: left;
}

.banner__community-numbers p {
	display: block;
	font-size: 14px;
	color: #b7b4bb;
	text-align: left;
}
/*弹窗下载*/
.download_popup{
	width: 90vw;
	max-width: 680px;
	background-color: #1e1e1e;
	box-sizing: border-box;
	text-align: center;
	padding: 40px 100px;
	color: #fff;
	border-radius: 4px;
}
.download_popup>div{
	margin-bottom: 20px;
}
.download_popup .platform_name{
	font-size: 20px;
	font-weight: 700;
}
.download_popup .download_tips{
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}
.download_popup .platform_icon img{
	height: 52px;
}
.download_popup p{
	font-size: 12px;
	margin-bottom: 5px;
}
.download_popup a{
	font-size: 12px;
	margin-bottom: 5px;
	color: #fff;
}
.download_popup .other_link{
	margin-bottom: 0
}
.download_popup .other_link a{
	color: #fff;
	font-size: 12px;
	text-decoration: underline;
}
.download_popup .download_link{
	margin-bottom: 10px;
}
.download_popup .download_link a{
	font-size: 16px;
	font-weight: 700;
	border-radius: 15px;
	background-color: #fff;
	color: #000;
	margin: 0 auto;
	width: 100%;
	max-width: 325px;
	height: 50px;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.imac_popup  .download_link{
	display: flex;

}
.imac_popup  .download_link .download_btn_item{
	flex: 1;
	margin: 0 8px;
}
.imac_popup  .download_link a{
	max-width: 280px;
}
@media screen and (max-width: 1139px) {
	.footer-container .copyright {
		width: 100%;
		margin: 3.5rem auto;
		font-size: 1.4rem;
	}
	.service-bg {
		background-image: url("../img/index/index_bg.png");
	}
	.header .left {
			flex: 1;
		}
	
		.container {
			text-align: center;
			flex-direction: column;
			width: 100%;
			box-sizing: border-box;
		}
	
		.landing-title {
			text-align: center !important;
			font-size: 30px !important;
		}
		.landing-title p {
			margin:0;
		}
		.landing-title p.phone_hide {
			display:none;
		}
		
		.container-left {
			padding-top: 0 !important;
		}
	
		.container-left,
		.container-right {
			width: 100% !important;
		}
	
		.landing-desc {
			text-align: center !important;
			font-size: 16px !important;
		}
	
		.service-bg {
			width: 100%;
			max-width: 100%;
			height: auto;
		}
	
		.banner__community {
			justify-content: center !important;
		}
	
		.container-right {
			padding: 30px !important;
			box-sizing: border-box;
			margin-top:40px;
		}
	
		.container-right img {
			width: 70% !important;
		}
		.download_popup{
			padding: 40px 40px;
		}
}


