body,
html {
	overflow-x: hidden;
	overflow-y: auto;
	color: var(--text);
	font-size: var(--p);
	font-family: 'Poppins', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
}

body {
	background: var(--bgc) !important;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
	min-height: 54px;
	display: flex;
	align-items: center;
	transition: 0.4s;
	padding: 8px 0;
}
header.scroll {
	background-color: var(--bgc2);
	box-shadow: var(--shadow-1);
	backdrop-filter: blur(50px);
	-moz-backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}
nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
nav ul {
	display: flex;
	align-items: center;
}

.logo svg {
	height: 36px;
}
.logo-cls-1 {
	fill: #fa9300;
}

.logo-cls-2 {
	fill: #f2a81c;
}

.logo-cls-3 {
	fill: #a89176;
}

.logo-cls-4 {
	fill: #fff;
}
a {
	display: block;
	text-decoration: none;
	color: var(--text);
	transition: 0.25s;
	user-select: none;
}
nav a {
	padding: 8px 20px;
	margin-right: 8px;
	font-size: var(--h6);
	letter-spacing: 1px;
	text-indent: 1px;
}

h1 {
	font-size: var(--h1);
	text-align: center;
	padding: 0px 30px;
	line-height: 1.3;
	font-weight: 800;
	margin: 6vh 0 8px 0;
	text-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
	color: transparent;
	background: linear-gradient(90deg, var(--text) 20%, var(--text-linear));
	background-clip: text;
	-webkit-background-clip: text;
	transition: 0.3s;
	animation: textanim 4s ease-in-out infinite;
	background-position: 50% 50%;
	letter-spacing: 1px;
	text-indent: 1px;
}
@keyframes textanim {
	0% {
		color: transparent;
	}
	50% {
		color: var(--text);
	}
	100% {
		color: transparent;
	}
}

h2 {
	font-size: var(--h2);
	text-align: center;
	padding: 0px 30px;
	margin: 0;
	line-height: 1.4;
	font-weight: 800;
	text-shadow: 0 0 12px rgba(252, 250, 239, 0.08);
	color: var(--text);
	/* background: linear-gradient(90deg, var(--text) 40%, var(--text-linear)); */
	background-clip: text;
	-webkit-background-clip: text;
	background-size: cover;
	letter-spacing: 1px;
	text-indent: 1px;
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

h2::before {
	content: '';
	position: absolute;
	left: 64%;
	top: 20%;
	width: 140px;
	height: 60px;
	transform: rotate(-40deg) translateX(50%);
	background: var(--title-liner);
	z-index: -1;
	border-radius: 100px;
	opacity: 0.5;
	pointer-events: none;
}
h2::after {
	content: '';
	position: absolute;
	left: 82%;
	top: 30%;
	width: 60px;
	height: 30px;
	transform: rotate(-40deg) translateX(200%) translateY(110%);
	background: var(--title-liner);
	z-index: -1;
	border-radius: 50px;
	opacity: 0.6;
	pointer-events: none;
}

h3 {
	font-size: var(--h3);
	text-align: center;
	padding: 0px 30px;
	margin: 0 0 16px 0;
	line-height: 1.4;
	letter-spacing: 0.5px;
	text-indent: 0.5px;
	font-weight: 600;
}
h4 {
	font-size: var(--h4);
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
	letter-spacing: 0.5px;
	text-indent: 0.5px;
}
h5 {
	font-size: var(--h5);
	font-weight: 500;
	margin: 0;
	line-height: 1.4;
}
h6 {
	font-size: var(--h6);
	font-weight: 400;
	margin: 0;
	line-height: 1.5;
	color: var(--text2);
}
p {
	font-size: var(--p);
	line-height: 1.5;
	color: var(--text2);
}
.title h6 {
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

.title h6::after {
	content: '';
	position: absolute;
	left: -4%;
	top: 30%;
	width: 60px;
	height: 30px;
	transform: rotate(-40deg);
	background: var(--title-liner);
	z-index: -1;
	border-radius: 50px;
	opacity: 0.6;
	pointer-events: none;
}

h2 span,
h3 span {
	color: var(--secondary-02);
}

img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	user-select: none;
	pointer-events: none;
}

button {
	background: transparent;
}
button a {
	color: var(--secondary-01);
	padding: 10px 20px;
	border-radius: 30px;
	background: var(--primary);
	background: linear-gradient(90deg, var(--primary-400) 30%, var(--primary));
	font-size: var(--p);
}
button.action-btn {
	margin: 30px 0 0 0;
}
button.action-btn a {
	padding: 14px 28px;
	font-size: var(--h5);
	min-width: 160px;
	box-shadow: var(--shadow-2);
	transition: 0.25s;
}
button.action-btn a:hover {
	filter: brightness(105%);
}
button.download-btn a {
	border-radius: 20px;
	padding: 16px 28px;
	display: flex;
	align-items: center;
}

button.download-btn a p,
button.download-btn a h5 {
	text-align: left;
	color: #000;
	margin: 0;
	line-height: 1.3;
}
button.download-btn a p {
	font-size: 13px;
}
button.download-btn a h5 {
	margin-top: 2px;
}

button.download-btn svg {
	width: 38px;
	height: 38px;
	fill: var(--secondary-01);
	margin-right: 18px;
}

section {
	padding: var(--section-padding-y) var(--section-padding-x);
	position: relative;
	scroll-behavior: smooth;
	scroll-snap-stop: always;
	height: auto;
	width: 100%;
	/* backdrop-filter: blur(50px);
	-moz-backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px); */
}

section.kv {
	padding: 0;
	width: 100%;
}

.kv-bgc,
.community .main-banner {
	background-color: var(--kv-bgc);
	backdrop-filter: blur(120px);
	-moz-backdrop-filter: blur(120px);
	-webkit-backdrop-filter: blur(120px);
}

img.kv-bg {
	position: absolute;
	top: -16vh;
	right: 0vw;
	width: 60vw;
	height: 50vh;
	min-height: 300px;
	z-index: -1;
	opacity: 0.4;
	object-position: top right;
}
img.kv-bg2 {
	position: absolute;
	top: 28vh;
	left: -6vw;
	width: 40vw;
	height: 34vh;
	min-height: 160px;
	z-index: -1;
	object-position: center left;
	opacity: 0.4;
}
.circle {
	content: '';
	position: absolute;
	border-radius: 200px;
}
.circle-left {
	width: 200px;
	height: 200px;
	background-color: var(--circle-bgc1);
	top: -60px;
	left: 10%;
}
.circle-center {
	width: 300px;
	height: 300px;
	background-color: var(--circle-bgc2);
	top: 40%;
	left: 50%;
}

.kv-title {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: var(--section-padding-y) 0 0px 0;
}
.kv-banner {
	padding: var(--section-padding-y2) 0 100px 0;
	margin: 0 auto;
}

.kv-banner .main {
	width: 100vw;
	height: auto;
	position: relative;
	display: flex;
	align-items: center;
}
.kv-banner .kv-ap {
	width: 80vw;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
	position: relative;
	left: -4%;
	transition: 0.25s;
}

.kv-banner .kv-mobile {
	object-fit: contain;
	position: absolute;
	width: 20vw;
	/* max-width: 240px; */
	height: auto;
	bottom: -14%;
	right: 6%;
}
.kv .kv-title {
	color: var(--text2);
}

.row-list > div {
	padding: 20px;
	/* display: flex; */
}

.kv .row-list > div {
	margin-bottom: var(--section-padding-y);
	margin-top: 20px;
}

.list-title {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.kv .list-title {
	flex-direction: column;
	margin-bottom: 8px;
}
.kv .row-list p {
	text-align: center;
	padding: 0 12px;
}

.icon-img,
.design-icon {
	width: 54px;
	height: 54px;
	/* outline: 1px solid var(--text); */
	margin: 0 8px;
}
.info-img {
	margin-top: 12px;
}

.list-card {
	border-radius: var(--card-border-radius);
	padding: 28px;
	box-shadow: var(--card-shadow);
	background: var(--card-bgc) linear-gradient(135deg, var(--card-bgc-liner), #50a1be00 50%);
	backdrop-filter: blur(50px);
	-moz-backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}

.kv .list-title .icon-img {
	width: 80px;
	height: 80px;
	margin-bottom: 8px;
}

/* college */
.college {
	background-color: var(--bgc2);
}
.title {
	text-align: center;
}

.main-banner {
	width: 100%;
}
.college .main-banner {
	position: relative;
	height: auto;
}
.college .main-banner .img-college-kv {
	object-position: top center;
	margin-top: 20px;
}
.college .main-banner .img-college {
	position: absolute;
	bottom: 8%;
	right: 20px;
	width: 40%;
	height: auto;
}
.college .main-banner .img-function {
	position: absolute;
	bottom: 6%;
	left: 20px;
	width: 30%;
	height: auto;
}

.college .list-title {
	flex-direction: column;
	align-items: start;
}

.college .row-list > div {
	padding: 12px;
}
.college .list-card {
	height: 100%;
}
.college .list-card p {
	margin-bottom: 0;
}

.college .icon-img {
	position: relative;
	left: -6px;
	margin-bottom: 8px;
}

/* community */
section.community {
	padding: 0px 0px 40px 0;
	overflow: hidden;
}
.community h2 {
	text-align: start;
	padding: 0;
	margin: 0 0 16px 0;
}

.community .main-banner {
	width: 100vw;
	height: 60vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: 360px;
}

.community .main-banner h2,
.community .main-banner h6 {
	position: relative;
	z-index: 2;
	background-attachment: fixed;
}
.community .main-banner > img {
	position: absolute;
	right: 10%;
	top: -20%;
	width: 45vw;
	height: 270%;
	transform: rotate(24deg);
	opacity: 0.7;
	animation: communityBgc 20s infinite ease-in-out;
	user-select: none;
	pointer-events: none;
	object-position: center center;
}

@keyframes communityBgc {
	0% {
		transform: rotate(24deg) translateY(-0%);
	}
	50% {
		transform: rotate(24deg) translateY(-10%);
	}
	100% {
		transform: rotate(24deg) translateY(-0%);
	}
}

.community .row-list,
.ap-charts .row-list {
	padding-top: 40px;
}
.community .row-list > div,
.ap-charts .row-list > div {
	display: flex;
}
.community .row-list .list-card,
.ap-charts .row-list .list-card {
	align-self: stretch;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.community .row-list .list-card .info-img,
.ap-charts .row-list .list-card .info-img {
	justify-self: flex-end;
}

.ap-charts .row-list .list-card {
	background-color: transparent;
	border: 1px solid var(--border);
	overflow: hidden;
}
.ap-charts .row-list .list-card .info-img {
	position: relative;
	right: -20%;
	max-height: 280px;
}

section.ap-others,
section.ap-auto-trading {
	background: var(--bgc2);
}

.ap-auto-trading .row-list {
	padding-top: 40px;
}
.ap-auto-trading h4 {
	color: var(--highlight2);
}

.community .list-card img {
	object-position: right bottom;
	height: 200px;
}

/* ap  */

.ap-main {
	background-color: var(--bgc2);
	overflow: hidden;
	padding: 0;
}

.ap-main .title {
	padding: var(--section-padding-y) 0 30px 0;
}
.ap-main .list-title {
	margin-bottom: 4px;
}
.ap-main .list-title h5 {
	font-size: var(--h6);
	font-weight: 600;
}

.ap-main .main-banner {
	padding: 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-4);
	background: linear-gradient(var(--bgc), var(--bgc)) padding-box,
		linear-gradient(
				60deg,
				rgba(52, 152, 206, 0.4) 12%,
				rgb(81, 186, 198) 18%,
				rgba(81, 186, 198, 0.7) 24%,
				rgba(30, 46, 58, 0)
			)
			border-box;
	border: 6px solid transparent;
}
.carousel-item img {
	object-fit: cover;
	height: 101%;
}
.carousel-item video {
	object-fit: contain;
	height: 100%;
	background-color: #0a0f17;
}
.ap-main .carousel-item {
	width: 100%;
	height: 480px;
	background-color: #000;
}

.ap-main .row-list {
	padding: 30px 0 var(--section-padding-y);
}
.ap-main .row-list > .col-12 {
	display: inline;
	display: flex;
	/* display: -webkit-box; */
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	padding: 12px 8vw 32px 8vw;
}

.ap-main .list-card {
	background: transparent;
	padding: 8px 0;
	margin-right: 32px;
	cursor: pointer;
	min-width: 20%;
	width: 20%;
	opacity: 0.4;
	border-radius: 0;
	padding-top: 16px;
	transition: 0.25s;
	position: relative;
	box-shadow: none;
	user-select: none;
}
.ap-main .list-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 4px;
	background: var(--secondary-03);
	border-radius: 2px 2px 2px 2px;
	transition: 0.2s;
	opacity: 0;
}
.ap-main .list-card:hover {
	opacity: 0.8;
}

.ap-main .list-card.active {
	opacity: 1;
	/* border-bottom: 3px solid var(--text); */
}
.ap-main .list-card.active::before {
	opacity: 1;
	width: 100%;
}

.ap-main .list-card p {
	margin-bottom: 0;
}

.ap-main .icon-img {
	margin-bottom: 4px;
}

.ap-main .icon-img img {
	position: relative;
	left: -12px;
}
.carousel-indicators {
	margin-bottom: 0.6rem;
}
.carousel-indicators button[data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 100%;
	margin: 0 6px;
	background-color: #9ad8ed;
}

.sub-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0 30px 0;
	position: sticky;
	top: 60px;
	right: 0;
}

.sub-tabs li a {
	padding: 8px 20px;
	text-align: center;
	font-size: var(--h6);
	margin: 0 8px;
	background-color: var(--bgc);
	border-radius: 40px;
}

.ap-code .col-lg-7 {
	display: flex;
}

.ap-code .col-lg-7 .info-img {
	align-self: stretch;
	display: flex;
	align-items: center;
}
.ap-code .col-lg-7 .info-img img {
	height: auto;
	/* height: fit-content; */
	object-fit: contain;
	border-radius: 12px;
	/* border: 1px solid var(--border); */
}

.ap-code .info-img img {
	object-fit: contain;
}
.ap-code .tag {
	color: var(--text-tag);
	margin-bottom: 4px;
}
.carousel-inner {
	background-color: var(--bgc);
}

.ap-code .carousel-inner {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-1);
}
.ap-code .carousel-item {
	width: 100%;
}
.ap-code .carousel-item img {
	object-fit: cover;
}

.app-box {
	margin: 40px 0 32px 0;
}
.app-box h4 {
	font-weight: 600;
}
.app-box h5 {
	color: var(--highlight);
}
.app-box p {
	margin-bottom: 0;
}

.app-box-top {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.app-box img {
	width: 48px;
	height: 48px;
	margin-right: 12px;
	padding: 2px;
}
.feature li {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
}
.feature li h6 {
	color: var(--text);
}

.feature li svg {
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	fill: var(--success);
	margin-right: 12px;
}
.ap-code-row {
	/* border: 1px solid var(--border); */
	padding: 30px 20px;
	border-radius: 24px;
	margin-bottom: 24px;
	align-items: stretch;
	background: var(--card-bgc) linear-gradient(90deg, var(--card-bgc-liner), #50a1be00 70%);
	box-shadow: var(--card-shadow);
}
.ap-code-row h4 {
	color: var(--highlight2);
}

.ap-charts .title h2,
.ap-charts .title h6 {
	text-align: left;
	padding: 0;
	margin: 0;
}

.chart-l {
	padding: 0 30px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.chart-r {
	position: relative;
	/* right: -80px; */
}

.ap-others .list-card img {
	/* max-height: 240px; */
	object-position: bottom right;
}
.ap-auto-trading .main-banner {
	position: relative;
	margin-bottom: 60px;
}
.ap-auto-trading .main-banner .auto-chart {
	min-height: 400px;
	max-height: 80vh;
}
.ap-auto-trading .main-banner .auto-card {
	position: absolute;
	right: -2vw;
	bottom: -80px;
	min-height: 200px;
	height: auto;
	max-height: 360px;
	width: 50vw;
}

.gird-card {
	display: grid;
	grid-gap: 20px;
	grid-template-rows: 360px 300px;
}
.list-card-1 {
	grid-area: 1 / 1 / 3 / 2;
}
.list-card-2 {
	grid-area: 1 / 2 / 2 / 3;
}
.list-card-3 {
	grid-area: 2 / 2 / 3 / 3;
}
.gird-card .list-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.gird-card .info-img {
	height: auto;
	max-height: 320px;
	margin-left: auto;
	align-self: flex-end;

	margin-top: 0;
}
.gird-card .info-img img {
	/* object-fit: contain; */
	object-position: right bottom;
}

.gird-card .list-card-2 .info-img,
.gird-card .list-card-3 .info-img {
	max-height: 150px;
	object-position: right bottom;
	/* position: absolute;
	bottom: 20px;
	right: 20px; */
}

.gird-card .list-card-4 .info-img,
.gird-card .list-card-5 .info-img {
	max-height: 200px;
}
.btn-bom {
	position: fixed;
	bottom: 0;
	width: 100vw;
	padding: 0px 30px 20px 30px;
	z-index: 10;
}
.btn-bom .action-btn {
	margin: 0;
	width: 100%;
	padding: 0;
}
.btn-bom .action-btn a {
	box-shadow: var(--shadow-4);
}

.only-m {
	display: none;
}
.only-pc {
	display: block;
}

footer {
	background-color: var(--footer);
	padding: 0px 0;
}
.logo-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.logo-group p {
	margin: 0px auto 0 0;
	position: relative;
	top: 4px;
	letter-spacing: 1px;
	text-indent: 1px;
}

footer .logo-group {
	padding: 8px 0;
}
footer .logo-group p {
	color: rgba(255, 255, 255, 0.8);
}

.logo-group .logo {
	margin: 4px 20px 4px 0;
}
footer .cooperation {
	opacity: 0.8;
	padding: 8px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	/* border-top: 1px solid var(--border); */
}
footer button.download-btn {
	margin-top: 0;
	padding: 0;
}
footer button.download-btn a {
	background: #000;
	margin: 0;
	width: fit-content;
	width: max-content;
	padding: 10px 20px;
	border-radius: 16px;
}
footer button.download-btn svg {
	fill: #fff;
	width: 30px;
	height: 30px;
	margin-right: 16px;
}
footer button.download-btn p,
footer button.download-btn h5 {
	color: #fff;
}
footer button.download-btn h5 {
	font-size: var(--h6);
}
.cooperation img {
	height: 32px;
	width: 160px;
	margin: 12px 20px 12px 0;
	object-fit: contain;
}
.sidebar {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 20;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: flex-end;
}
.sidebar button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	min-height: 50px;
	width: 50px;
	height: 50px;
	background-color: var(--sidebar-button);
	border-radius: 40px;
	backdrop-filter: blur(50px);
	-moz-backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	transition: 0.25s;
	fill: rgba(255, 255, 255, 0.8);
	margin-top: 12px;
	box-shadow: var(--shadow-3);
}
.sidebar button svg {
	width: 22px;
	height: 20px;
}
.sidebar button:hover {
	background-color: var(--sidebar-button-hover);
	box-shadow: var(--shadow-4);
}
.sidebar button.click {
	background-color: var(--sidebar-button-hover);
}

.anchor-wapper {
	position: relative;
}

.anchor-body {
	position: absolute;
	right: calc(100% + 8px);
	top: 0;
	padding: 28px 32px;
	border-radius: 24px;
	min-width: 220px;
	max-width: calc(90vw - 120px);
	width: 300px;
	max-height: calc(95vh - 80px);
	overflow-y: auto;
	background: var(--bgc3);
	backdrop-filter: blur(50px);
	-moz-backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	box-shadow: var(--shadow-4);
	user-select: none;
	pointer-events: none;
	opacity: 0;
	transition: 0.25s;
	/* height: 0; */
	transform: translateX(40px);
}
.anchor-body.show {
	pointer-events: all;
	opacity: 1;
	transform: translateX(0px);
}

.anchor-list {
	position: relative;
}

.anchor-list ul {
	position: relative;
}
.anchor-list ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background-color: rgba(135, 133, 133, 0.12);
	border-radius: 4px;
	backdrop-filter: blur(50px);
	-moz-backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}
.anchor-bar {
	position: absolute;
	width: 5px;
	border-radius: 4px;
	height: 40px;
	top: 0;
	left: -1px;
	background-color: var(--secondary-03-op6);
	transition: 0.25s;
	z-index: 30;
	backdrop-filter: blur(10px);
	-moz-backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.anchor-list a {
	display: block;
	padding: 0px 0px 0 24px;
	/* 一行字 */
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	white-space: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	/* 一行字 over */
	line-height: 2.5;
	font-size: 16px;
}

.anchor-list li.title a {
	font-weight: 600;
	text-align: start;
}
.anchor-list li:not(.title) a {
	margin-left: 16px;
}
.anchor-list li::before {
	content: '';
	position: absolute;
	left: -1px;
	width: 5px;
	height: 5px;
	background-color: var(--secondary-03);
	transform: translateY(18px);
	z-index: 10;
	border-radius: 10px;
}
.anchor-list a:hover {
	color: var(--secondary-03);
}
.anchor-list li.active a {
	color: var(--secondary-03-300);
}

.scroll-anchor {
	scroll-margin: var(--section-padding-y2);
	scroll-snap-stop: always;
}
.pop-up-bgc {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: #00000000;
	display: none;
}
.pop-up-bgc.show {
	display: block;
}
.sidebar .back-to-top {
	transform: scale(0) translateY(50px);
	min-height: 0;
	height: 0;
}
.sidebar .back-to-top.scroll {
	transform: scale(1) translateY(0px);
	height: 50px;
}

/* light-mode */
.light-mode h1 {
	color: var(--secondary-01);
	background: linear-gradient(135deg, var(--secondary-01), #364765 14%, var(--secondary-01));
	background-clip: text;
	-webkit-background-clip: text;
	animation: textanimLight 4s ease-in-out infinite;
}
@keyframes textanimLight {
	0% {
		color: transparent;
	}
	50% {
		color: var(--secondary-01);
	}
	100% {
		color: transparent;
	}
}

.light-mode .logo-cls-4 {
	fill: #1b2434;
}
.light-mode footer .logo-cls-4 {
	fill: #fff;
}

.light-mode h2 {
	color: var(--secondary-01);
	background: none;
}

.light-mode .sidebar button {
	fill: #395585;
}

.light-mode .ap-main .main-banner {
	background: linear-gradient(var(--bgc), var(--bgc)) padding-box,
		linear-gradient(
				90deg,
				rgba(201, 232, 248, 0.8) 12%,
				rgb(191, 232, 236) 18%,
				rgb(184, 238, 244) 24%,
				rgb(246, 251, 255)
			)
			border-box;
}

/* /light-mode */

@media (min-width: 1439.99px) {
	.community .main-banner > img {
		height: 220%;
	}
}
@media (min-width: 992px) {
	.sidebar .anchor-wapper {
		position: fixed;
		right: 0;
		top: 5vw;
	}
	.sidebar button.anchor-btn {
		border-radius: 12px 0 0 12px;
	}
}
@media (max-width: 991.98px) {
	.ap-code .col-lg-5 {
		order: 1;
	}
	.ap-code .col-lg-7 {
		order: 2;
	}
	.kv-banner .kv-ap {
		width: 120vw;
		left: -26%;
	}
	.kv-banner .kv-mobile {
		right: 8%;
		width: 30vw;
		bottom: -20%;
	}
	.kv-banner .kv-ap-bgc {
		width: 100vw;
		left: 0%;
	}
	.kv .row-list > div {
		margin-bottom: 0px;
	}
	.kv .row-list > div:last-of-type {
		margin-bottom: var(--section-padding-y);
	}
	.feature li {
		margin-bottom: 12px;
	}
	.anchor-body {
		bottom: 0;
		top: unset;
		padding: 20px 16px 20px 20px;
		border-radius: 20px;
	}
	.ap-main .list-card {
		min-width: 30%;
		width: 30%;
		margin-right: 24px;
	}
	.ap-main .row-list > .col-12 {
		padding: 12px 20px 20px 20px;
	}
	.ap-main .main-banner {
		border-radius: 16px;
		border-width: 4px;
	}
	h2::before {
		transform: rotate(-40deg) translateX(25%) translateY(-10%) scale(0.8);
	}
	h2::after {
		transform: rotate(-40deg) translateX(140%) translateY(120%) scale(0.8);
	}
	.title h6::after {
		transform: rotate(-40deg) translateX(-2%) scale(0.8);
	}
	.community .row-list,
	.ap-charts .row-list {
		padding-top: 30px;
	}
	.ap-main .carousel-item {
		height: 300px;
	}
}

@media (max-width: 767.98px) {
	header {
		padding: 8px;
	}
	header ul {
		display: none;
	}

	.only-pc {
		display: none;
	}
	.only-m {
		display: block;
	}
	.logo svg {
		height: 28px;
	}
	img.kv-bg {
		width: 90vw;
		right: -12vw;
		top: -8px;
	}

	.kv-title {
		padding: var(--section-padding-y) 20px 16px 20px;
	}
	.kv h5 {
		text-align: center;
	}

	.list-card {
		padding: 20px;
	}

	.kv .list-title .icon-img {
		width: 66px;
		height: 66px;
	}
	.icon-img,
	.design-icon {
		width: 48px;
		height: 48px;
	}

	.ap-main .icon-img {
		width: 52px;
		height: 52px;
	}

	.ap-code-row {
		padding: 24px 0px 28px 0px;
		border: none;
		border-bottom: 2px solid var(--border);
		border-radius: 0;
		margin-bottom: 0;
		background: transparent;
		box-shadow: none;
	}
	.app-box {
		margin-top: 20px;
	}
	.app-box img {
		width: 38px;
		height: 38px;
	}

	.row-list > div {
		padding: 16px;
	}
	.kv-bgc .row-list > div {
		padding: 12px 20px;
	}
	.kv .row-list > div {
		margin: 0px;
	}

	.college .row-list > div,
	.community .row-list > div,
	.ap-charts .row-list > div {
		padding: 8px 0px;
	}

	.community .row-list > div {
		padding: 8px 12px;
	}

	.college .list-title {
		flex-direction: row;
		align-items: center;
		margin-bottom: 0px;
	}

	.college .main-banner {
		transform: scale(1.1);
		margin: 12px 0;
	}

	.community .main-banner {
		min-height: 280px;
		height: 280px;
	}
	.community .main-banner > img {
		top: -40%;
		width: 60vw;
		right: -10%;
	}
	.community .list-card img {
		height: 160px;
	}

	.community h2,
	.community h6 {
		padding: 0 20px 0 12px;
	}

	.ap-main .title h6 {
		padding: 0 20px;
	}

	.ap-charts .info-img {
		margin: 20px -12px 0 -12px;
	}

	.ap-auto-trading .main-banner {
		max-height: auto;
	}
	.ap-auto-trading .row-list {
		padding-top: 20px;
	}

	.ap-auto-trading .main-banner .auto-chart {
		min-height: auto;
		height: auto;
	}

	.gird-card {
		grid-gap: 20px;
		grid-template-rows: auto;
	}

	.list-card-1 {
		grid-area: 1 / 1 / 2 / 2;
	}
	.list-card-2 {
		grid-area: 2 / 1 / 3 / 2;
		min-height: 300px;
	}
	.list-card-3 {
		grid-area: 3 / 1 / 4 / 2;
		min-height: 300px;
	}
	.gird-card .info-img {
		max-height: 160px;
	}
	.gird-card .list-card-1 .info-img {
		max-height: 160px;
		margin-top: 0;
	}
	.gird-card .list-card-2 .info-img,
	.gird-card .list-card-3 .info-img {
		max-height: 120px;
		/* position: relative; */
		/* bottom: unset;
		right: unset;
		margin-top: 0; */
	}
	.gird-card .info-img img {
		object-position: center right;
	}

	.ap-others .row-list > div {
		padding: 0px;
	}
	footer {
		padding: 12px 16px 70px 16px;
	}
	footer .cooperation {
		margin-left: 0;
	}
	.sidebar {
		right: 16px;
		bottom: 80px;
	}
	.sidebar button {
		min-width: 44px;
		width: 44px;
		min-height: 44px;
		height: 44px;
	}
	.sidebar .back-to-top.scroll {
		height: 44px;
	}
	.btn-bom {
		padding: 0px 16px 20px 16px;
	}
	.feature li svg {
		width: 18px;
		height: 18px;
		min-width: 18px;
		min-height: 18px;
	}
	.chart-l {
		padding: 0 16px;
	}
	.ap-code .col-lg-7 .info-img img {
		border-radius: 8px;
	}
}
@media (max-width: 575.98px) {
	.ap-main .list-card {
		min-width: 60%;
		width: 60%;
	}
	.ap-main .carousel-item {
		height: 170px;
	}
}
