@charset "utf-8";
/* CSS Document */
/* 一些标签初始值 */
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Regular.ttf') format('truetype');
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Bold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
.mainbody {
	background-image: url('../imgs/index-pics/page-bg.jpg');
	background-size: 100% auto;
	background-position: center 50px;
	background-repeat: no-repeat;
}
/*  */
h1, h2, h3, h4, h5 {
	font-family: 'Roboto';
	color: #fff;
	line-height: 1.1;
}

.header {
	text-align: center;
	padding: 60px 0;
}
.header .page-title {
	font-weight: bold;
	margin-bottom: 30px;
	background-image: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.7));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header .info {
	margin-bottom: 20px;
}
.header .arrow {
	display: none;
}
.header .uk-button-primary {
	border: none;
	border-radius: 99em;
	background: linear-gradient(to right, #0133FA, rgba(1, 51, 250, 0));
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	min-height: 50px;
	line-height: 50px;
	text-transform: uppercase;
	transition: .3s;
	min-width: 200px;
}
.header .uk-button-primary:hover {
	background: linear-gradient(to right, #214dfc, rgba(1, 51, 250, 0));
	color: #fff;
}
.header .uk-button-primary:active {
	-webkit-filter: brightness(50%);
	filter: brightness(50%);
	animation: none;
	color: #fff;
}
.section {
	padding: 40px 0;
}
.section .big-title {
	text-align: center;
	font-weight: bold;
	background-image: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 1.4em;
}
.section .section-info {
	text-align: center;
	color: rgba(239, 237, 253, 0.7);
}
.section-support .section-info {
	margin-bottom: 40px;
}
.section-support .feature {
	text-align: left;
}
.section-support .feature .item .icon {
	width: 36px;
	margin-bottom: 10px;
}
.section-support .feature .item .title {
	margin-bottom: 10px;
}
.section-support .feature .item .info {
	color: rgba(239, 237, 253, 0.6);
}
.section-try {
	text-align: center;
	margin-bottom: 30px;
}
.section-try .section-info span {
	color: #19FB9B;
}
.section-try .btn-box .btn {
	min-width: 230px;
}
.section-try .uk-subnav {
	text-align: center;
	justify-content: center;
}
.section-try .uk-subnav-pill a {
	margin-top: 5px;
	margin-bottom: 5px;
	text-transform: none;
	color: #fff;
	padding: 10px 16px;
	background-color: #111111;
	border-radius: 8px;
	border: 1px solid transparent;
	transition: .3s;
}
.section-try .uk-subnav-pill>.uk-active>a {
	border: 1px solid #415AFF;
}
.section-try .uk-subnav-pill a:active {
	opacity: 0.5;
}
.section-try .uk-switcher {
	max-width: 1000px;
	margin: auto;
}
/* =========================
   Player
========================= */
.playerBox {
	max-width: 800px;
	margin: auto;
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	background: #081420;
	border: 1px solid rgba(255, 255, 255, 0.05);
}
/* 视频 */
.playerBox .bgVideo {
	width: 100%;
	display: block;
	object-fit: cover;
}
/* 中间播放按钮 */
.playerBox .playBtn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .4);
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(8px);
	cursor: pointer;
	transition: .3s;
}
.playerBox .playBtn:hover {
	transform: translate(-50%, -50%) scale(1.05);
}
.playerBox .playBtn:active {
	opacity: 0.5;
}
/* 播放图标 */
.playerBox .playBtn.play::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	border-left: 20px solid #fff;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	transform: translate(-40%, -50%);
}
/* 暂停图标 */
.playerBox .playBtn.pause::before,
.playerBox .playBtn.pause::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 20px;
	background: #fff;
	transform: translate(-50%, -50%);
}
.playerBox .playBtn.pause::before {
	margin-left: -6px;
}
.playerBox .playBtn.pause::after {
	margin-left: 6px;
}
/* =========================
   Progress
========================= */
.playerBox .progressWrap {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 12px;
}
.playerBox .progressBar {
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, .2);
	border-radius: 10px;
	cursor: pointer;
	position: relative;
}
.playerBox .progress {
	width: 0%;
	height: 100%;
	background: #55b7ff;
	border-radius: 10px;
	position: relative;
}
.playerBox .progress::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #55b7ff;
}
/* 时间 */
.playerBox .timeRow {
	margin-top: 5px;
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	font-weight: bold;
}

.section-comment {
	padding-top: 60px;
	background-image: url('../imgs/index-pics/heart.png');
	background-size: 90% auto;
	background-position: center top;
	background-repeat: no-repeat;
}
/* =========================
   滚动评论外层
========================= */
.section-comment .testimonial-section {
	position: relative;
	width: 100%;
	max-width: 1300px;
	margin: auto;
	overflow: hidden;
	padding-top: 20px;
}
/* 边缘渐隐 */
.section-comment .testimonial-section::before,
.section-comment .testimonial-section::after {
	content: "";
	position: absolute;
	top: 0;
	width: 60px;
	height: 100%;
	z-index: 10;
	pointer-events: none;
}
.section-comment .testimonial-section::before {
	left: 0;
	background: linear-gradient(to right, #000, transparent);
}
.section-comment .testimonial-section::after {
	right: 0;
	background: linear-gradient(to left, #000, transparent);
}
/* =========================
   每一行
========================= */
.section-comment .marquee {
	position: relative;
	overflow: hidden;
	margin: 24px 0;
}
/* 第二行错位 */
.marquee.row2 {
	/* transform:translateX(120px); */
	margin-bottom: 0;
}
/* =========================
   滚动轨道
========================= */
.section-comment .marquee-track {
	display: flex;
	gap: 24px;
	width: max-content;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}
/* =========================
   卡片
========================= */
.section-comment .card {
	flex-shrink: 0;
	width: 82vw;
	max-width: none;
	min-height: 200px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.06);
	/* border: 1px solid rgba(255, 255, 255, 0.08); */
	border-radius: 24px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition:
		transform .35s ease,
		background .35s ease,
		border-color .35s ease;
}
/* hover */
.section-comment .card:hover {
	/* transform: translateY(-6px); */
	background: rgba(255, 255, 255, 0.09);
	/* border-color: rgba(255, 255, 255, 0.15); */
}
/* 用户 */
.section-comment .user {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}
.section-comment .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin-right: 14px;
	flex-shrink: 0;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.section-comment .name {
	font-size: 16px;
	font-weight: 600;
}
/* 内容 */
.section-comment .text {
	/* font-size: 15px; */
	line-height: 1.3;
	opacity: .7;
	color: #EFEDFD;
}

/* 购买 */
.section-buy .buy-options {
	width: 100%;
	max-width: 900px;
	margin: auto;
}
.section-buy .buy-options .item {
	padding: 20px 10px 10px 10px;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(to bottom, #252525, #0F0F0F);
	position: relative;
}
.section-buy .buy-options .item.recommend {
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.5);
}
.section-buy .buy-options .item .label {
	position: absolute;
	top: -12px;
	left: 50%;
	background: linear-gradient(to right, #6A11CB, #2575FC);
	padding: 4px;
	border-radius: 99em;
	transform: translate(-50%, 0);
	min-width: 140px;
	text-align: center;
}
.section-buy .buy-options .item .name {
	font-weight: bold;
	margin: 5px 0 10px 0;
}
.section-buy .buy-options .item .price {
	font-weight: bold;
	color: rgba(255, 255, 255, 0.66);
	margin-bottom: 10px;
}
.section-buy .buy-options .item .price span {
	font-size: 1.6em;
	color: #fff;
}
.section-buy .buy-options .item .info {
	font-size: 0.8em;
	color: rgba(255, 255, 255, 0.66);
	min-height: 40px;
}
.section-buy .buy-options .item .crossed {
	text-decoration: line-through;
	opacity: 0.5;
}
.section-buy .buy-options .item .btn-buy {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
}
.section-buy .buy-options .item .btn-buy:active {
	color: #fff;
	-webkit-filter: brightness(50%);
	filter: brightness(50%);
}
.section-buy .buy-options .item.recommend .btn-buy {
	background-color: #fff;
	color: #000;
}


.section-faq .big-title {
	text-align: left;
	font-weight: bold;
	font-size: 1.4em;
	text-transform: uppercase;
	background-image: none;
	background-clip: unset;
	-webkit-text-fill-color: unset;
	color: #fff;
}
.section-faq .big-title span {
	color: #254FFA;
}
.section-faq .uk-accordion {
	/* list-style-type: decimal; */
	counter-reset: item;
}
.section-faq .uk-accordion>li {
	/* border: 2px solid #152329; */
	border-top: 1px solid #152329;
	padding: 5px 10px 0px 30px;
	position: relative;
	/* border-radius: 8px; */
	transition: .3s;
	margin-top: 5px;
}
.section-faq .uk-accordion>li::before {
	counter-increment: item;
	content: counter(item) ".";
	position: absolute;
	left: 10px;
	top: 17px;
	font-weight: bold;
}
.section-faq .uk-accordion>li:active {
	opacity: 0.5;
}
.section-faq .uk-accordion-title {
	color: #fff;
	font-size: 1.1em;
	padding: 10px 0;
}
.section-faq .uk-accordion-title:hover {
	color: #fff;
}
.section-faq .uk-accordion-content {
	color: rgba(255, 255, 255, 0.7);
	padding: 0 20px 10px 0;
	margin-top: 5px;
}
.section-faq .uk-accordion-content p {
	margin: 0 0 10px 0;
}

@media (min-width:375px) {}
@media (min-width:414px) {
	.header {
		padding: 60px 0;
	}
}
@media (min-width:768px) {
	.mainbody {
		background-position: center top;
	}
	.header {
		width: 80%;
		padding: 100px 0;
		margin: auto;
	}
	.header .page-title {
		font-size: 2.4em;
	}
	.header .uk-button-primary {
		font-size: 1.1em;
		min-height: 56px;
		line-height: 56px;
	}
	.header .info {
		font-size: 1.3em;
	}
	.section {
		padding: 60px 0;
	}
	.section .big-title {
		font-size: 1.8em;
	}
	.section-support .section-info {
		font-size: 1.2em;
		margin-bottom: 50px;
	}
	.section-comment {
		padding-top: 80px;
		background-size: 400px auto;
	}
	.section-comment .card {
		width: calc((100vw - 160px) / 2);
		max-width: 420px;
		min-height: 190px;
		padding: 28px;
	}
	.section-comment .testimonial-section::before,
	.section-comment .testimonial-section::after {
		width: 180px;
	}

	.section-buy .buy-options .item {
		padding: 20px;
	}
	.section-buy .buy-options .item .label {
		top: 20px;
		right: 20px;
		left: auto;
		transform: translate(0, 0);
	}
	.section-buy .buy-options .item .btn-buy {
		min-height: 50px;
		line-height: 50px;
		font-size: 1em;
	}

	.section-faq .big-title {
		margin-bottom: 40px;
	}
	.section-faq .uk-accordion>li {
		padding: 5px 15px 0px 40px;
	}
	.section-faq .uk-accordion>li::before {
		left: 10px;
		top: 23px;
	}
	.section-faq .uk-accordion-title {
		padding: 15px 0;
	}
	.section-faq .uk-accordion-content {
		color: rgba(255, 255, 255, 0.7);
		padding: 0 20px 10px 0;
		margin-top: 5px;
	}

}
@media (min-width:960px) {
	.header {
		padding: 150px 0;
		position: relative;
	}
	.header .page-title {
		font-size: 2.8em;
	}
	.header .arrow {
		position: absolute;
		display: block;
		width: 40px;
		padding: 20px 0 0 0;
		left: 50%;
		bottom: 0px;
		margin-left: -20px;
	}
	.header .arrow img {
		animation: bounce 2s infinite;
		animation-timing-function: ease-in-out;
	}
	.header .arrow:active {
		opacity: 0.6;
	}
	.section .big-title {
		font-size: 2.2em;
	}
	.section-comment .card {
		width: calc((100vw - 160px) / 3);
		max-width: 420px;
		min-height: 190px;
		padding: 28px;
	}

	.section-buy .buy-options {
		padding: 30px 0;
	}
	.section-buy .buy-options .item {
		padding: 30px;
		width: 95%;
		box-sizing: border-box;
		margin: auto;
	}
	.section-buy .buy-options .item .label {
		top: 30px;
		right: 30px;
		font-size: 1.1em;
		padding: 4px 20px;
	}
	.section-buy .buy-options .item .name {
		font-size: 1.3em;
		margin-bottom: 20px;
	}
	.section-buy .buy-options .item .price {
		font-size: 1.4em;
		margin-bottom: 15px;
	}
	.section-buy .buy-options .item .info {
		font-size: 1.1em;
		min-height: 60px;
	}

}
@media (min-width:1200px) {
	.uk-margin {
		margin-bottom: 30px;
	}
	.header {
		padding: 180px 0;
	}
	.header .page-title {
		font-size: 4.2em;
		line-height: 1.3;
	}
	.header .info {
		font-size: 1.5em;
		max-width: 850px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 80px;
	}
	.header .uk-button-primary {
		min-height: 62px;
		line-height: 62px;
		font-size: 1.2em;
		min-width: 260px;
	}

	.section .big-title {
		font-size: 3em;
	}
	.section .section-info {
		font-size: 1.3em;
	}
	.section-support .feature .item {
		padding: 20px;
		font-size: 1.1em;
	}
	.section-support .feature .item .icon {
		width: 40px;
	}
	.section-try {
		margin-bottom: 60px;
	}
	.section-try .uk-subnav-pill a {
		font-size: 1.1em;
		padding: 12px 18px;
	}
	.section-try .uk-subnav-pill a:hover {
		background-color: #3b3b3b;
	}
	.section-try .playerBox {
		margin-top: 60px;
	}
	.section-comment {
		padding-top: 130px;
		background-size: 600px auto;
	}
	.section-comment .testimonial-section::before,
	.section-comment .testimonial-section::after {
		width: 280px;
	}
	.section-buy .buy-options {
		max-width: 1000px;
		padding: 50px 0 30px 0;
	}
	.section-buy .buy-options .item {
		padding: 36px;
		border-radius: 25px;
		transition: .3s;
	}
	.section-buy .buy-options .item:hover {
		transform: scale(1.02);
	}
	.section-buy .buy-options .item .label {
		top: 36px;
		right: 36px;
		font-size: 1.5em;
	}
	.section-buy .buy-options .item .name {
		font-size: 1.5em;
		margin-bottom: 20px;
	}
	.section-buy .buy-options .item .price {
		font-size: 1.7em;
		margin-bottom: 15px;
	}
	.section-buy .buy-options .item .info {
		font-size: 1.3em;
		min-height: 60px;
	}
	.section-buy .buy-options .item .btn-buy {
		font-size: 1.2em;
	}
	.section-faq .uk-accordion>li {
		font-size: 1.2em;
		/* padding: 5px 25px 0px 60px; */
	}
	/* .section-faq .uk-accordion>li:hover {
		background-color: #0c1418;
		border: 2px solid #263c46;
	}
	.section-faq .uk-accordion>li::before{
		left: 25px;
	} */
}
@media (min-width:1600px) {
	.mainbody {
		background-position: center -100px;
	}
}
@media (min-width:1920px) {
	.mainbody {
		background-size: 1920px auto;
	}
}

/* 向左 */
@keyframes marquee-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
/* 向右 */
@keyframes marquee-right {
	from {
		transform: translateX(-50%);
	}
	to {
		transform: translateX(0);
	}
}
