* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow: scroll;
	background: #F4F7FF;
	font-size: 16px;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	width: 100%;
	overflow-y: scroll;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-family: "pingfang SC", 'Roboto', "helvetica neue", arial, "hiragino sans gb", "microsoft yahei ui", "microsoft yahei", simsun, sans-serif;
}

body {
	width: 100%;
	background: #F4F7FF;
	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	overflow-x: hidden;
}

button,
a,
input,
textarea,
label,
select,
div {
	-webkit-tap-highlight-color: transparent;
}

a {
	cursor: pointer;
	text-decoration: none;
}

a:hover {
	color: #63b3ed;
}

section {
	display: block;
	padding: 0 10px;
}

img {
	width: 100%;
}

.container {
	margin: 0 auto;
	position: relative;
	padding: 40px 0;
}

.content {
	display: flex;
	flex-flow: row wrap;
}

.columns {
	display: flex;
	flex-flow: row wrap;
	margin: 0 -10px;
	align-items: stretch;
}

.title {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	line-height: 36px;
	margin-bottom: 20px
}

.subtitle {
	font-size: 16px;
	font-weight: 400;
	color: #666;
	line-height: 24px;
	margin-bottom: 20px
}

.center {
	text-align: center;
}

pre {
		  max-height: 600px;
		  overflow: auto;
		  background-color: #000;
		  color: #999;
		  padding: 10px;
		  border-radius: 5px;
		  font-family: monospace;
		  margin: 10px 0;
		}

.is-vertical {
	padding: 10px;
}

@media screen and (min-width: 1200px) {
	section {
		display: block;
		padding: 0;
	}

	.container {
		max-width: 1180px;
		width: 1180px;
	}
	
	a.sub-menux {
	  pointer-events: none;
	  cursor: default; 
	}
}

/* 导航栏样式 */
/* 开始 */
nav {
	background: #2c3e50;
	padding: 5px 5%;
	position: relative;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-link {
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	font-weight: bold;
}

/* PC端样式 */
.nav-menu {
	display: flex;
	gap: 30px;
	list-style: none;
}

.nav-menu {
	line-height: 52px;
}

.nav-menu a {
	color: #ecf0f1;
	text-decoration: none;
	padding: 12px 12px;
	transition: background 0.3s;
	border-radius: 4px;
}

/* 移动端样式 */
.hamburger {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	padding: 5px;
	margin-top: -5px;
}

@media (max-width: 768px) {
	.hamburger {
		display: block;
	}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #34495e;
		padding: 15px 5%;
		flex-direction: column;
		gap: 10px;
	}
	
	.nav-menu {
		line-height: 14px;
	}

	.nav-menu.active {
		display: flex;
		z-index: 2;
	}
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 40px;
	left: -30px;
	background: #34495e;
	padding: 20px;
	list-style: none;
	border-radius: 4px;
	z-index: 5;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a{
	line-height: 14px;
}

.multiple .dropdown-menu {
	left: -223px;
}

@media screen and (min-width: 769px) {
	.dropdown-menu {
		min-width: 152px;
	}

	.multiple .dropdown-menu {
		min-width: 728px;
	}

	.dropdown:hover .dropdown-menu {
		display: block;
	}

	.multiple:hover .dropdown-menu {
		display: flex;
		flex-flow: row wrap;
	}
}

.dropdown-menu p {
	color: #ecf0f1;
	font-weight: 600;
	margin: 10px 20px;
	padding-bottom: 5px;
	border-bottom: 1px solid #4a5568;
	display: block;
	text-decoration: none;
	transition: background 0.3s;
}

.dropdown-menu a {
	color: #ecf0f1;
	padding: 10px 20px;
	display: block;
	text-decoration: none;
	transition: background 0.3s;
}

.dropdown-menu a:hover {
	background: #2c3e50;
}

.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -14px;
	left: 69px;
	border: 7px solid transparent;
	border-bottom-color: #34495e;
	z-index: 10;
	transition: all 0.25s ease;
}

.multiple .dropdown-menu::before {
	left: 260px;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.dropdown-menu {
		position: static;
		display: none;
		background: #2c3e50;
		padding-left: 20px;
		box-shadow: none;
		margin-top: 10px;
	}

	.dropdown.active .dropdown-menu {
		display: block;
	}

	.dropdown-menu a {
		padding: 8px 15px;
		font-size: 14px;
	}

	.nav-menu a {
		padding: 8px 0;
		display: block;
		width: 100%;
	}

	.dropdown-menu p {
		margin: 10px 0;
	}

	.dropdown-menu::before {
		display: none;
		/* 移动端隐藏箭头 */
	}
}

/* 导航栏样式 */
/* 结束 */

/* banner样式 */
/* 开始 */
.recharge-banner {
	background: #deedff;
	padding: 40px 0;
	color: #333333;
	min-height: 400px
}

.banner-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 50px;
	padding: 0 20px;
}

/* 文字内容样式 */
.banner-container .title {
	font-size: 2.8rem;
	line-height: 1.2;
	margin-bottom: 25px;
}

.benefit-list {
	font-size: 1.1rem;
	margin: 25px 0;
	line-height: 1.8;
	list-style-type: none;
}

/* 行动号召按钮 */
.cta-button {
	background: #FFFFFF;
	color: #597ef7;
	padding: 15px 40px;
	border-radius: 30px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.3s;
}

.cta-button:hover {
	transform: translateY(-2px);
}

/* 视觉元素样式 */
.banner-visual {
	position: relative;
	flex-shrink: 0;
}

.server-illustration {
	width: 400px;
	height: auto;
	animation: float 3s ease-in-out infinite;
}

/* 动画效果 */
@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

/* 移动端适配 */
@media (max-width: 768px) {
	.banner-container {
		flex-direction: column;
		text-align: center;
	}

	.title {
		font-size: 2rem;
	}

	.server-illustration {
		width: 280px;
	}
}

/* banner样式 */
/* 结束 */

/* footer样式 */
/* 开始 */
.site-footer {
	background: #2d3748;
	color: #cbd5e0;
	padding: 1rem;
	font-size: 0.9rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	padding-top: 1.5rem;
}

.footer-section {
	margin-bottom: 1rem;
}

.footer-heading {
	color: #ffffff;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.footer-subheading {
	color: #a0aec0;
	font-size: 1rem;
	margin-bottom: 0.8rem;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links a {
	color: #cbd5e0;
	text-decoration: none;
	display: block;
	padding: 0.3rem 0;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #63b3ed;
}

.footer-address p {
	margin: 0.5rem 0;
}

.footer-bottom {
	border-top: 1px solid #4a5568;
	padding-top: 1rem;
	text-align: center;
}

.copyright {
	margin: 0;
	color: #a0aec0;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.footer-container {
		grid-template-columns: 1fr;
	}

	.footer-section {
		text-align: center;
	}

	.footer-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}
}

/* footer样式 */
/* 结束 */

@media screen and (max-width: 575px) {
	.col-xs-12 {
		display: block;
		width: 100%;
	}

	.col-xs-11 {
		display: block;
		width: 91.66%;
	}

	.col-xs-10 {
		display: block;
		width: 83.33%;
	}

	.col-xs-9 {
		display: block;
		width: 75%;
	}

	.col-xs-8 {
		display: block;
		width: 66.66%;
	}

	.col-xs-7 {
		display: block;
		width: 58.33%;
	}

	.col-xs-6 {
		display: block;
		width: 50%;
	}

	.col-xs-5 {
		display: block;
		width: 41.66%;
	}

	.col-xs-4 {
		display: block;
		width: 33.33%;
	}

	.col-xs-3 {
		display: block;
		width: 25%;
	}

	.col-xs-2 {
		display: block;
		width: 16.66%;
	}

	.col-xs-1 {
		display: block;
		width: 8.33%;
	}
}

@media screen and (min-width: 576px) {
	.col-sm-12 {
		display: block;
		width: 100%;
	}

	.col-sm-11 {
		display: block;
		width: 91.66%;
	}

	.col-sm-10 {
		display: block;
		width: 83.33%;
	}

	.col-sm-9 {
		display: block;
		width: 75%;
	}

	.col-sm-8 {
		display: block;
		width: 66.66%;
	}

	.col-sm-7 {
		display: block;
		width: 58.33%;
	}

	.col-sm-6 {
		display: block;
		width: 50%;
	}

	.col-xs-5 {
		display: block;
		width: 41.66%;
	}

	.col-sm-4 {
		display: block;
		width: 33.33%;
	}

	.col-sm-3 {
		display: block;
		width: 25%;
	}

	.col-sm-2 {
		display: block;
		width: 16.66%;
	}

	.col-sm-1 {
		display: block;
		width: 8.33%;
	}
}

@media screen and (min-width: 769px) {
	.col-md-12 {
		display: block;
		width: 100%;
	}

	.col-md-11 {
		display: block;
		width: 91.66%;
	}

	.col-md-10 {
		display: block;
		width: 83.33%;
	}

	.col-md-9 {
		display: block;
		width: 75%;
	}

	.col-md-8 {
		display: block;
		width: 66.66%;
	}

	.col-md-7 {
		display: block;
		width: 58.33%;
	}

	.col-md-6 {
		display: block;
		width: 50%;
	}

	.col-md-5 {
		display: block;
		width: 41.66%;
	}

	.col-md-4 {
		display: block;
		width: 33.33%;
	}

	.col-md-3 {
		display: block;
		width: 25%;
	}

	.col-md-2 {
		display: block;
		width: 16.66%;
	}

	.col-md-1 {
		display: block;
		width: 8.33%;
	}
}

@media screen and (min-width: 1200px) {
	.col-xl-12 {
		display: block;
		width: 100%;
	}

	.col-xl-11 {
		display: block;
		width: 91.66%;
	}

	.col-xl-10 {
		display: block;
		width: 83.33%;
	}

	.col-xl-9 {
		display: block;
		width: 75%;
	}

	.col-xl-8 {
		display: block;
		width: 66.66%;
	}

	.col-xl-7 {
		display: block;
		width: 58.33%;
	}

	.col-xl-6 {
		display: block;
		width: 50%;
	}

	.col-xl-5 {
		display: block;
		width: 41.66%;
	}

	.col-xl-4 {
		display: block;
		width: 33.33%;
	}

	.col-xl-3 {
		display: block;
		width: 25%;
	}

	.col-xl-2 {
		display: block;
		width: 16.66%;
	}

	.col-xl-1 {
		display: block;
		width: 8.33%;
	}
}

.card {
	padding: 20px;
	background: #fff;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
}

.card-title {
	font-size: 16px;
	color: #333;
	font-weight: 600;
	margin-bottom: 10px
}

.description {
	line-height: 24px;
	font-size: 14px;
	color: #666;
	overflow: hidden;
}

.highlight {
	line-height: 24px;
	font-size: 18px;
	color: #ff8a00;
	overflow: hidden;
	font-weight: 600;
}

.banner-content .highlight {
	line-height: 42px;
	font-size: 42px;
	color: #333;
	overflow: hidden;
	font-weight: 600;
}

.black-banner .highlight {
	line-height: 42px;
	font-size: 42px;
	color: #fff;
	overflow: hidden;
	font-weight: 600;
}

.black-banner .banner-content {
	color: #ffffffc4;
}

.black-banner .subtitle {
	color: #ffffffc4;
}

.black-banner li {
	color: #ffffffc4;
}

.btn-group {
	min-height: 40px;
	margin-top: 20px
}

.btn-group a {
	background: #597ef7;
	display: block;
	width: 100%;
	height: 40px;
	font-size: 14px;
	color: #fff;
	line-height: 40px;
	letter-spacing: 0;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
}

.list-item {
	display: flex;
	position: relative;
	border-bottom: 1px solid #EEEEEE;
}

.list-item-icon {
	width: 180px;
}

.list-item-icon img {
	width: 100%
}

.list-item-module {
	position: absolute;
	margin-left: 180px;
	padding: 36px 10px;
}

.list-item-title {
	font-size: 16px;
	color: #333;
}

.list-item-text {
	font-size: 14px;
	color: #999;
}

article {
	background: #fff;
	padding: 20px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

article section {
	padding: 0;
	margin-top: 20px;
}

article img {
	width: 100%;
	margin: 10px 0;
}

article .title {
	font-size: 28px;
}

article h2 {
	font-size: 16px;
	color: #333;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
}

article h3 {
	font-size: 14px;
	color: #333;
	font-weight: 600;
}

article ul {
	padding-left: 16px;
}

@media screen and (max-width: 1200px) {
	.main-container {
		padding: 0;
	}

	article {
		border-radius: 0;
	}
}

.article-footer {
	position: fixed;
	bottom: 0;
	width: 100%;
}

/* 翻页 */
.page {
	list-style: none;
}

.page>li {
	float: left;
	padding: 5px 10px;
	cursor: pointer;
}

.page .pageItem {
	border: solid thin #DDDDDD;
	margin: 5px;
	font-size: 12px;
}

.page .pageItemActive {
	border: solid thin #2c3134;
	margin: 5px;
	background-color: #2c3134;
	color: white;
}

.page .pageItem:hover {
	border: solid thin #2c3134;
	background-color: #2c3134;
	color: white;
}

.page .pageItemDisable {
	border: solid thin #DDDDDD;
	margin: 5px;
	background-color: #DDDDDD;
	font-size: 12px;
}
/* 翻页 */

/* 常见问题回答模块 */
.faq-section {
	background: #fff;
	padding: 40px 0;
}
.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.question button {
	font-size: 1.1rem;
	color: #2d3748;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	padding: 15px 0;
	cursor: pointer;
	border-bottom: 1px solid #e2e8f0;
	justify-content: left;
}
.answer {
	padding: 15px 0 25px;
	display: none;
}
#toggle:checked+.answer {
	display: block;
}
.answer p {
	font-size: 16px;
	line-height: 24px;
	color: #4a5568;
}

@media (max-width: 768px) {
	.question button {
		font-size: 1rem;
		padding: 12px 0;
	}
	.answer {
		font-size: 0.95rem;
	}
	.crypto-list {
		padding-left: 20px;
	}
}
[aria-expanded="true"]+.answer {
	display: block;
}
/* 常见问题回答模块结束 */

.banner-video {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    z-index: 1;
}
.module {
    margin: 0;
    padding: 85px 0 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    position: relative;
    background-image: var(--mode-bg);
}
.module .banner-content{
	position: relative;
	z-index: 1;
}

/* 按钮 */
button {
	font-size: 16px;
	line-height: 20px;
	padding: 10px 24px;
	background: #fff;
	border-radius: 4px;
	font-weight: 400;
	color: #3C7CF3;
	border: 1px solid #3C7CF3;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

button i {
	width: 20px;
	height: 20px;
}

.border-large {
	border-radius: 4px;
}

.border-middle {
	border-radius: 10px;
}

.border-small {
	border-radius: 24px;
}

button.mini {
	font-size: 10px;
	line-height: 14px;
	padding: 2px 9px;
}

button.large {
	font-size: 12px;
	line-height: 18px;
	padding: 6px 19px;
}

button.middle {
	font-size: 14px;
	line-height: 20px;
	padding: 9px 23px;
}

button.small {
	font-size: 16px;
	line-height: 20px;
	padding: 13px 29px;
}

button.mini.button-primary {
	padding: 3px 10px;
	background: #3C7CF3;
	color: #fff;
	border: none;
}

button.large.button-primary {
	padding: 7px 20px;
	background: #3C7CF3;
	color: #fff;
	border: none;
}

button.middle.button-primary {
	padding: 10px 24px;
	background: #3C7CF3;
	color: #fff;
	border: none;
}

button.small.button-primary {
	padding: 14px 30px;
	background: #3C7CF3;
	color: #fff;
	border: none;
}

/* 对话框 */
.dialog-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.dialog {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 320px;
	text-align: center;
}

.dialog-content {
	padding: 20px;
	border-bottom: 1px solid #EEEEEE;
}

.dialog-content .title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	line-height: 24px;
	margin-top: 0;
}

.dialog-content .text {
	font-size: 14px;
	font-weight: 400;
	color: #666;
	line-height: 20px;
	margin-top: 10px;
}

.dialog-button {
	display: flex;
	color: #3C7CF3;
}

.dialog-button div {
	padding: 15px;
	width: 100%;
	border-right: 1px solid #EEEEEE;
}

.dialog-button div:last-of-type {
	font-weight: 600;
	border: initial;
}

/* 列表 */

.item {
	width: 100%;
	padding: 5px;
	color: #333;
	position: relative;
	display: flex;
}

.item-card {
	width: 100%;
	background: #fff;
	border-radius: 10px;
}

.item-content {
	position: relative;
	display: flex;
	padding: 10px;
	width: 100%;
	border-bottom: 1px solid #EEEEEE;
}

.item-content:last-of-type {
	border: initial;
}

.item-amount {
	font-size: 18px;
	color: #3C7CF3;
	line-height: 22px;
	font-weight: 500;
}

.item-title {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: #333;
}

.item-small-itle {
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	color: #333;
}

.item-text {
	font-size: 12px;
	line-height: 28px;
	font-weight: 400;
	color: #999;
}

.item-right {
	text-align: right;
	display: block;
	position: absolute;
	right: 10px;
}

/* 列表 */
.item-head {
	position: relative;
	display: flex;
	padding: 16px 10px;
	border-bottom: 1px solid #EEEEEE;
}

.item-head-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.item-head-text {
	font-size: 14px;
	font-weight: 400;
	color: #999;
}

.list-item {
	display: flex;
	position: relative;
	color: #333;
}

.list-item-icon .large-icon {
	margin-top: 15px;
	width: 48px;
	height: 48px;
}

.list-item-icon .small-icon {
	margin-top: 13px;
	width: 28px;
	height: 28px;
}

.list-item-content {
	display: block;
	padding: 16px 10px;
	width: 100%;
	border-bottom: 1px solid #EEEEEE;
}

.list-item:last-of-type .list-item-content {
	border: initial;
}


.list-item-icon .list-item-content {
	padding: 16px 10px 16px 0;
	margin-left: 10px;
}

.list-item-title {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: #333;
}

.list-item-small-itle {
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	color: #333;
}

.list-item-text {
	font-size: 12px;
	line-height: 22px;
	font-weight: 400;
	color: #999;
}

.list-item-left {
	text-align: right;
	display: block;
	position: absolute;
	right: 10px;
	padding: 16px 0;
}

.outlined::after {
	border: 1px solid #bbb;
	border-radius: 0;
	border-right: 0;
	border-top: 0;
	content: " ";
	display: block;
	height: 10px;
	width: 10px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: rotate(-135deg);
	transform-origin: center;
}

.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #F4F7FF;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
}

.loader {
	background: url(icons-png/Loading.png);
	background-size: cover;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 10px auto;
}

.loading-text {
	color: #3C7CF3;
	font-weight: 500;
	text-align: center;
}

/* 自定义弹窗 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	display: none
}

.modal-content {
	background-color: #fff;
	padding: 20px;
	margin: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-width: 768px;
	min-width: 320px;
	position: relative;
}

.logo {
	display: flex;
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	white-space: nowrap;
}
.logo span{
	padding: 15px 10px;
}
