@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.pc {
	font-size: 16px;
	--w: 1300px;
}

.mobile {
	font-size: 14px;
	--w: 100%;
}

body.pc,
body.mobile {
	opacity: 1;
}
body {
	opacity: 0;
}
/* 头部 */
.pc .layout-header {
	width: 100%;
	height: 70px;
	position: sticky;
	top: 0;
	z-index: 10;
	transition: all 0.2s;
	background-color: #202231;
}

.mobile .layout-header {
	width: 100%;
	height: 44px;
	position: sticky;
	top: 0;
	z-index: 10;
	transition: all 0.2s;
	background-color: #202231;
}

.pc .header-wrap {
	width: 1300px;
	height: 70px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.pc .header-wrap .logo {
	height: 50px;
}

.pc .header-wrap .tabs-wrap {
	width: 700px;
	height: 70px;
	margin-right: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.pc .header-wrap .tabs-wrap .tabs-item {
	color: #fff;
	cursor: pointer;
	text-align: center;
}

.pc .header-wrap .tabs-wrap .tabs-item.active {
	color: var(--color);
	border-bottom: 2px solid var(--color);
}

.pc .header-wrap .tel-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.pc .header-wrap .tel-wrap .tel {
	color: #fff;
	margin-right: 10px;
}

.pc .header-wrap .tel-wrap .lang-wrap {
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	cursor: pointer;
}

.pc .header-wrap .tel-wrap .lang {
	width: 30px;
	height: 30px;
}

.pc .header-wrap .tel-wrap .tips {
	height: 20px;
	padding: 0 10px;
	line-height: 20px;
	position: absolute;
	border: 1px solid #202231;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 10px;
	color: #202231;
	font-size: 10px;
	font-weight: bold;
	bottom: -10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pc .header-wrap .tel-wrap .btn {
	color: var(--color);
	width: 100px;
	height: 36px;
	background: #ffffff;
	border-radius: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}


.mobile .header-wrap {
	width: 100%;
	height: 44px;
	margin: 0 auto;
}

.mobile .header-wrap .nav-wrap {
	width: 100%;
	height: 44px;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.mobile .header-wrap .logo {
	height: 35px;
}

.mobile .header-wrap .tabs-wrap {
	padding: 0 15px;
	background-color: #202231;
}

.mobile .header-wrap .tabs-shadow {
	position: fixed;
	left: 0;
	right: 0;
	top: 44px;
	bottom: 0;
	background-color: #00000099;
}

.mobile .header-wrap .tabs-wrap .tabs-item {
	color: #fff;
	padding: 15px 0;
	font-size: 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile .header-wrap .tabs-wrap .tabs-item:last-child {
	border-bottom: none;
}

.mobile .header-wrap .tabs-wrap .tabs-item .img {
	width: 20px;
	height: 20px;
}

.mobile .header-wrap .tabs-wrap .tabs-item.active {
	color: var(--color);
}

.mobile .header-wrap .tel-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.mobile .header-wrap .tel-wrap .img {
	width: 26px;
	height: 26px;
}

.mobile .header-wrap .tel-wrap .btn {
	padding: 4px 10px;
	width: 90px;
	color: #4c54e6;
	height: 30px;
	background-color: #fff;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobile .header-wrap .tel-wrap .lang-wrap {
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	cursor: pointer;
}

.mobile .header-wrap .tel-wrap .lang {
	width: 24px;
	height: 24px;
}

.mobile .header-wrap .tel-wrap .tips {
	height: 14px;
	padding: 0 10px;
	position: absolute;
	border: 1px solid #202231;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 10px;
	color: #202231;
	font-size: 8px;
	font-weight: bold;
	bottom: -4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.select-wrap {
	width: 220rpx;
	background-color: #ffffff;
	padding: 10rpx 0;
	position: fixed;
	z-index: 1;
	right: 30rpx;
	border-radius: 4rpx;

}

.select-wrap::before {
	content: '';
	border: 10rpx solid transparent;
	border-bottom-color: #ffffff;
	position: absolute;
	bottom: 100%;
	left: calc(50% - 10rpx);
}

.select-item {
	height: 90rpx;
	color: #999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.select-item.active {
	background-color: #EEEEEE;
	color: #000;
}

.modal-wrap {
	border-radius: 20px;
}

.modal-wrap .el-dialog__body {
	padding: 20px 20px 0;
}

.modal-wrap .dialog-footer .el-button {
	width: 45%;
	height: 50px;
	background: #eeeeee;
	border-radius: 6px;
	border: none;
}

.modal-wrap .dialog-footer .el-button--primary {
	background: var(--color);
}

.modal-wrap .dialog-footer .el-button--default:focus,
.modal-wrap .dialog-footer .el-button--default:hover {
	color: var(--color);
}

.modal-wrap .info-wrap {
	line-height: 30px;
	text-align: center;
	font-weight: bold;
}

.modal-wrap .info-wrap .href {
	text-decoration: underline;
	color: var(--color);
}

.modal-wrap .form-wrap .form-item {
	margin-bottom: 10px;
}

.modal-wrap .form-wrap .form-item .el-select {
	width: 100%;
}

.modal-wrap .form-wrap .form-item .label {
	height: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}


/* 尾部 */
.pc .footer-wrap {
	width: 1300px;
	margin: 0 auto;
}

.pc .footer-wrap .nav-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 60px 0 46px;
}

.pc .footer-wrap .nav-wrap .tel-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.pc .footer-wrap .nav-wrap .tel-wrap::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	right: -20px;
	top: 0;
	background: rgba(255, 255, 255, 0.20);
}

.pc .footer-wrap .nav-wrap .tel-wrap .tel-content {
	width: 150px;
}

.pc .footer-wrap .nav-wrap .tel-wrap .tel-content .tel {
	margin-top: 10px;
	margin-bottom: 6px;
	font-weight: bold;
}

.pc .footer-wrap .nav-wrap .tel-wrap .tel-content .week {
	font-size: 14px;
}

.pc .footer-wrap .nav-wrap .tel-wrap .tel-content .btn {
	font-size: 14px;
	margin-top: 20px;
	width: 120px;
	height: 40px;
	background: #20212e;
	border: 1px solid #cccccc;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pc .footer-wrap .nav-wrap .nav-menu {
	width: 700px;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.pc .footer-wrap .nav-wrap .nav-menu .menu-wrap .title {
	font-weight: bold;
	margin-bottom: 20px;
}

.pc .footer-wrap .nav-wrap .nav-menu .menu-wrap .item {
	display: block;
	color: #CCCCCC;
	font-size: 12px;
	margin-bottom: 4px;
	cursor: pointer;
}

.pc .footer-wrap .nav-wrap .nav-menu .menu-wrap .item:hover {
	color: #ffffff;
}

.pc .footer-wrap .nav-wrap .qr-wrap {
	text-align: center;
}

.pc .footer-wrap .nav-wrap .qr-wrap .title {
	font-weight: bold;
}

.pc .footer-wrap .nav-wrap .qr-wrap .img {
	text-align: center;
	margin: 20px 0 5px;
	width: 120px;
	height: 120px;
	background: #ffffff;
	padding: 4px;
}

.pc .footer-wrap .link-wrap {
	height: 44px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #cccccc;
	border-top: 1px solid rgba(255, 255, 255, 0.20);
	border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.pc .footer-wrap .link-wrap .link-list {
	width: calc(100% - 100px);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	gap: 10px;
}

.pc .footer-wrap .link-wrap .link-list a {
	color: #cccccc;
}

.pc .footer-wrap .copyright-wrap {
	color: #cccccc;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	padding: 20px 0;
}

.mobile .footer-wrap {
	margin: 0 auto;
}

.mobile .footer-wrap .nav-wrap {
	font-size: 16px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding-top: 10px;
}

.mobile .footer-wrap .nav-wrap .title {
	font-weight: bold;
}

.mobile .footer-wrap .nav-wrap .img {
	height: 60px;
}

.mobile .footer-wrap .link-wrap {
	padding: 15px 15px 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.mobile .footer-wrap .link-wrap .img {
	width: 45px;
	height: 45px;
}


/* 内容 */
.layout-body {
	min-height: calc(100vh - 504px);
}

.fadeIn {
	animation: fadeIn 0.5s;
	animation-fill-mode: forwards;
}

/* 浮动 */
.pc .layout-float {
	width: 100px;
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 10;
}

.pc .float-wrap {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	flex-direction: column;
}

.pc .float-wrap .btn {
	cursor: pointer;
}



.pc .float-wrap .btn .img {
	width: 80px;
	height: 80px;
}

.pc .float-wrap .btn.mini .img {
	width: 60px;
	height: 60px;
	margin: 4px 10px;
	border-radius: 50%;
	cursor: pointer;
}
.pc .float-wrap .btn .popup-wrap {
	width: 210px;
	background: #ffffff;
	border-radius: 10px;
	position: absolute;
	right: 100%;
	top: 0;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.pc .float-wrap .btn:hover .popup-wrap {
	display: flex;
}

.pc .float-wrap .btn:hover .popup-wrap .qrcode {
	width: calc(100% - 10px);
	margin: 5px;
}

.pc .float-wrap .btn .popup-wrap .title {
	width: 100%;
	height: 40px;
	background: #4c54e6;
	border-radius: 10px 10px 0px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #ffffff;
}

.pc .float-wrap .btn .popup-wrap .tips {
	font-size: 16px;
	color: #333333;
	margin-bottom: 6px;
}

.pc .float-wrap .btn .popup-wrap .qrcode {
	margin: 10px 0 6px;
}

.pc .float-wrap .btn .popup-wrap .content {
	font-size: 16px;
	color: #333333;
	height: 40px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobile .layout-float {
	width: 50px;
	position: fixed;
	right: 10px;
	bottom: 120px;
	z-index: 2;
}

.mobile .float-wrap {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

.mobile .float-wrap .btn {
	width: 50px;
	height: 50px;
}
.mobile .float-wrap .btn.mini .img {
	width: 40px;
	height: 40px;
	margin: 4px 4px;
	border-radius: 50%;
	cursor: pointer;
}
.mobile .float-wrap .btn .img {
	width: 50px;
	height: 50px;
}

.mobile .float-wrap .btn .popup-wrap {
	width: 210px;
	min-height: 80px;
	background: #ffffff;
	border-radius: 10px;
	position: absolute;
	right: 100%;
	top: 0;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 100;
}

.mobile .float-wrap .btn:hover .popup-wrap {
	display: flex;
}

.mobile .float-wrap .btn:hover .popup-wrap .qrcode {
	width: 100%;
	margin: 10px 0 6px;
}

.mobile .float-wrap .btn .popup-wrap .title {
	width: 100%;
	height: 40px;
	background: #4c54e6;
	border-radius: 10px 10px 0px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #ffffff;
}

.mobile .float-wrap .btn .popup-wrap .tips {
	font-size: 16px;
	color: #333333;
	margin-bottom: 6px;
}

.mobile .float-wrap .btn .popup-wrap .qrcode {
	margin: 10px 0 6px;
}

.mobile .float-wrap .btn .popup-wrap .content {
	font-size: 16px;
	color: #333333;
	height: 40px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 底部 */
.pc .layout-footer {
	width: 100%;
	height: 425px;
	background-color: #171825;
}

.mobile .layout-footer {
	width: 100%;
	height: 100px;
	background-color: #171825;
}




/* 其他样式 */
.pc .page-title {
	font-size: 50px;
	font-weight: bold;
	line-height: 70px;
	text-align: center;
}

.pc .page-subtitle {
	font-size: 24px;
	line-height: 40px;
	margin-top: 10px;
	text-align: center;
	color: #B6B7BD;
}

.pc .page-route {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 20px;
	gap: 5px;
	position: sticky;
	top: 70px;
	z-index: 1;
	background: #202231;
}

.pc .page-route .route {
	cursor: pointer;
}

.pc .page-route .route:hover {
	text-decoration: underline;
}

.pc .page-route .route:last-child:hover {
	text-decoration: none;
	cursor: default;
}

.pc .page-tabs {
	display: flex;
	flex-direction: row;
	gap: 1px;
	overflow: hidden;
	position: sticky;
	padding: 0 0 10px;
	top: 120px;
	z-index: 1;
	background: #202231;
}

.pc .page-tabs .tab-item {
	min-width: 120px;
	height: 50px;
	background: #313341;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #B6B7BD;
	padding: 0 20px;
	cursor: pointer;
}

.pc .page-tabs .tab-item:first-child {
	border-radius: 6px 0px 0px 6px;
}

.pc .page-tabs .tab-item:last-child {
	border-radius: 0px 6px 6px 0px;
}

.pc .page-tabs .tab-item.active {
	background: #4C54E6;
	color: #ffffff;
}

.pc .page-pagination {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.mobile .page-title {
	font-size: 17px;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
}

.mobile .page-subtitle {
	font-size: 13px;
	line-height: 20px;
	text-align: center;
	color: #B6B7BD;
}

.mobile .page-route {
	width: 100%;
	display: flex;
	height: 30px;
	justify-content: flex-start;
	align-items: center;
	margin-top: 10px;
	gap: 5px;
	position: sticky;
	top: 40px;
	z-index: 1;
	background: #202231;
}

.mobile .page-route .route:last-child:hover {
	text-decoration: none;
}

.mobile .page-tabs {
	display: flex;
	flex-direction: row;
	gap: 1px;
	margin-top: 10px;
	padding: 0 0 10px;
	position: sticky;
	top: 70px;
	z-index: 1;
	background: #202231;
}

.mobile .page-tabs .tab-item {
	height: 30px;
	padding: 0 10px;
	background: #313341;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #B6B7BD;
	cursor: pointer;
}

.mobile.en .page-tabs .tab-item {
	font-size: 12px;
	text-align: center;
	line-height: 14px;
}

.mobile .page-tabs .tab-item:first-child {
	border-radius: 6px 0px 0px 6px;
}

.mobile .page-tabs .tab-item:last-child {
	border-radius: 0px 6px 6px 0px;
}

.mobile .page-tabs .tab-item.active {
	background: #4C54E6;
	color: #ffffff;
}

.mobile .page-pagination {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}