:root {
	--bg: #070A12;
	--panel: rgba(255, 255, 255, .05);
	--panel2: rgba(255, 255, 255, .035);
	--border: rgba(255, 255, 255, .10);
	--text:#ECF2FF;
	--sub: #9CB0D3;
	--muted: #5D6F90;
	--gradient: linear-gradient(135deg,  rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));/*linear-gradient(135deg,  #6d5dfc, #4cc9f0);*/
	--p: #2EC9FF;
	--s: #2AE8D4;
	--g: linear-gradient(135deg,  rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	--shadow: 0 18px 60px rgba(0, 0, 0, .55);
	--r: 18px;

	--safeB: env(safe-area-inset-bottom);
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	color: var(--text);
	font-family: Inter, "HarmonyOS Sans", "PingFang SC", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: radial-gradient(900px 520px at 18% -10%, rgba(46, 201, 255, .16), transparent 60%),
		radial-gradient(820px 500px at 95% 10%, rgba(42, 232, 212, .13), transparent 55%),
		radial-gradient(800px 600px at 50% 110%, rgba(92, 140, 255, .10), transparent 55%),
		#070A12;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	
	background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  transition: background 0.8s ease-in-out;
	  /*设置内容不可选中*/
	  -webkit-user-select: none;
	    -moz-user-select: none;
	    -ms-user-select: none;
	    user-select: none;
}

a {
	color: inherit;
	text-decoration: none
}

button {
	font-family: inherit
}

#bgCanvas {
	position: fixed;
	inset: 0;
	z-index: -1;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	opacity: .85;
}

/* Layout */
.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(12px);
	background: rgba(7, 10, 18, .62);
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar-inner {
	max-width: 520px;
	margin: 0 auto;
	padding: 12px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	letter-spacing: .3px
}

.brand-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--g);
	box-shadow: 0 0 0 8px rgba(46, 201, 255, .10);
}

.container {
	max-width: 520px;
	margin: 0 auto;
	padding: 14px 14px calc(92px + var(--safeB));
}

/* Cards */
.card {
	border: 1px solid rgba(255, 255, 255, .10);
	background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
	border-radius: var(--r);
	box-shadow: var(--shadow);
}

.card.pad {
	padding: 14px
}

.section {
	margin-top: 25px;
	padding: 12px;
}

.row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 0px;

}

.grid {
	display: grid;
	gap: 10px
}

.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr))
}

.h1 {
	font-size: 22px;
	font-weight: 950;
	letter-spacing: .2px
}

.h2 {
	font-size: 15px;
	font-weight: 900
}

.title {
	font-size: 12px;
	color: var(--sub);
	font-weight: 800
}

.muted {
	font-size: 12px;
	color: var(--muted)
}

.k {
	font-size: 12px;
	;
	color: #9CB0D3;
}

.v {
	font-size: 12px;
	font-weight: 950;
	margin-top: 4px;
	color: #BCE0F3;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .04);
	color: var(--sub);
	font-size: 12px;
	font-weight: 900;
}

/* Buttons */
.btn {
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .05);
	color: var(--text);
	padding: 10px 12px;
	border-radius: 14px;
	font-weight: 900;
	cursor: pointer;
	transition: .18s;
}

.btn:hover {
	background: rgba(255, 255, 255, .08)
}

.btn:disabled {
	opacity: .55;
	cursor: not-allowed
}

.btn-primary {
	border: none;
	/*color: #06101C;*/
	background: var(--g);
}
.btn-active {
	border: none;
	
	background: var(--gradient);
}
.btn-primary:hover {
	filter: brightness(1.06)
}

.btn-link {
	border: none;
	background: transparent;
	/*color: var(--sub);*/
	padding: 8px 10px;
}

.btn-link:hover {
	color: var(--text)
}

.btn-mini {
	padding: 8px 10px;
	border-radius: 12px
}

/* Inputs */
input,textarea,
select {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .05);
	color: var(--text);
	border-radius: 14px;
	padding: 12px 12px;
	outline: none;
	font-weight: 800;
	font-size: 16px;
}

input::placeholder {
	color: rgba(156, 176, 211, .65)
}

.field {
	display: grid;
	gap: 8px;
	margin-top: 8px
}

.hr {
	height: 1px;
	background: rgba(255, 255, 255, .10);
	margin: 12px 0
}

/* Seg Tabs */
.seg {
	display: inline-flex;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .04);
	padding: 4px;
	border-radius: 16px;
	gap: 4px;
}

.seg button {
	border: none;
	background: transparent;
	color: var(--text);
	padding: 8px 10px;
	border-radius: 14px;
	cursor: pointer;
	font-weight: 950;
	font-size: 12px;

}

.seg button.active {
	background: var(--g);
	color: #2EC9FF;
}

/* Bottom Nav */
.bottom {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	background: rgba(7, 10, 18, .72);
	backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255, 255, 255, .06);
	padding: 10px 12px calc(10px + var(--safeB));
}


.bottom-inner {
	max-width: 520px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.nav {
	text-align: center;
	padding: 10px 6px;
	border-radius: 16px;
	color: var(--sub);
	font-weight: 950;
	font-size: 12px;
	cursor: pointer;
	user-select: none;
}

.nav.active {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .06);
}

/* Banner / Logo */
.logoBox {
	display: grid;
	place-items: center;
	padding: 16px 0 6px;
}

.logoMark {
	width: 70vw;
	max-width: 360px;
	aspect-ratio: 1 / 1;

	/*border-radius:28%;
 border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120px 120px at 30% 30%, rgba(46,201,255,.35), transparent 60%),
    radial-gradient(140px 140px at 70% 65%, rgba(42,232,212,.28), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 28px 80px rgba(0,0,0,.6);*/
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
}

.logoText {
	position: relative;
	z-index: 1;
	font-weight: 1000;
	letter-spacing: .6px;
	font-size: 34px;
	background: var(--g);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.banner {
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, .10);
	background:
    radial-gradient(220px 130px at 20% 20%, rgba(255,255,255,.1), transparent 60%),
    radial-gradient(220px 140px at 80% 65%, rgba(255,255,255,.1), transparent 60%),
    rgba(255,255,255,.03);
	padding: 50px;
	box-shadow: var(--shadow);
}

.banner .big {
	font-size: 16px;
	font-weight: 950
}

.banner .small {
	font-size: 12px;
	color: var(--sub);
	margin-top: 6px
}

/* Lists */
.item {
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .04);
	border-radius: 16px;
	padding: 12px;
	margin: 3px 0px;
	
}
.item_1 {
	
	padding: 12px;
	margin: 12px 0px;
}
.itemTop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px
}

.addr {
	font-weight: 950
}

.badgeVip {
	margin-left: 8px;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(46, 201, 255, .12);
	border: 1px solid rgba(46, 201, 255, .28);
	color: var(--text);
	font-size: 11px;
	font-weight: 950;
}

.cols3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 10px
}

.cols3 .k {
	font-size: 11px;
}

.cols3 .v2 {
	font-size: 14px;
	font-weight: 950;
	margin-top: 4px
}

/* Node card */
.node {
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .04);
	border-radius: 16px;
	padding: 12px;
}
.node_active{
	color: #2EC9FF;
}
.nodeHead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px
}

.nodeName {
	font-weight: 1000;
	/*color: #2EC9FF;*/
}

.tag {
	padding: 5px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 950;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .04);
	color: var(--sub);
}

.tag.on {
	border-color: rgba(42, 232, 212, .35);
	background: rgba(42, 232, 212, .10);
	color: var(--text);
}

/* Modal */
.modalMask {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 14px;
}

.modalMask.show {
	display: flex
}

.modal {
	width: min(520px, 94vw);
	max-height: 85vh;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, .35);
	/*background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,.02));*/
	background: #070A12;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .65);
	display: flex;
	flex-direction: column;
	margin-bottom: 10vh;
}

.modalHead {
	padding: 12px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, .10);
	font-weight: 1000;
	background: linear-gradient(135deg,  rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05));;
}

.modalClose {
	width: 24px;
	height: 24px;
	border-radius: 8px;
	/*display: grid;
	place-items: center;*/
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .06);
	cursor: pointer;
	
	line-height: 24px; /* 与高度相同 */
	text-align: center;
}

.modalBody {
	padding: 14px;
	overflow: auto;
	text-align: center;
	color: #2EC9FF;
}

.modalFoot {
	padding: 12px 14px;
	border-top: 1px solid rgba(255, 255, 255, .10);
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.fullscreen .modal {
	width: 100vw;
	height: 85vh;
	top:0px;
	
}

/* Infinite list */
.list {
	display: grid;
	gap: 10px;
	/*max-height: 80vh;
	overflow-y: auto;  垂直滚动条 */
}

.loading {
	text-align: center;
	color: var(--sub);
	font-size: 12px;
	padding: 10px 0 2px;
}

/* Chart */
.chartBox {
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .04);
	border-radius: 16px;
	padding: 12px;
}

.chartBox canvas {
	width: 100%;
	height: 160px;
	display: block
}

/* 底部选项卡 */
.tab-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(7, 10, 18, .72);
	backdrop-filter: blur(20px);
	display: flex;
	justify-content: space-around;
	padding: 12px 0;
	border-top: 1px solid rgba(124, 77, 255, 0.1);
	z-index: 1000;
	max-width: 480px;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.tab-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 8px 14px;
	border-radius: 12px;
}

.tab-item i {
	font-size: 20px;
	margin-bottom: 5px;
}

.tab-item span {
	font-size: 11px;
}

.tab-item.active {
	color: var(--primary);
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
	color: #4cc9f0;
}

.tab-item.active i {
	filter: drop-shadow(0 0 8px rgba(124, 77, 255, 0.5));
}

/* 按钮样式 */
.glass-btn {
	display: inline-block;
	background: linear-gradient(135deg, #6d5dfc, #4cc9f0);
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(124, 77, 255, 0.3);
	border-radius: 6px;
	padding: 14px 28px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.glass-btn.active {
	border-color: rgba(124, 77, 255, 0.5);
	background: rgba(124, 77, 255, 0.3);
}

.glass-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: 0.5s;
}

.glass-btn:hover {
	background: rgba(124, 77, 255, 0.3);
	border-color: rgba(124, 77, 255, 0.5);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.glass-btn:hover::before {
	left: 100%;
}

.glass-btn.primary {
	background: linear-gradient(135deg, #6d5dfc, #4cc9f0);
	border: none;
	box-shadow: 0 8px 25px rgba(124, 77, 255, 0.4);
}

.glass-btn.small {
	padding: 10px 20px;
	font-size: 13px;
}

/*< !--单选框样式 -->*/
#radio-container {
	background: #000;
	padding: 20px;
	border-radius: 15px;
	max-width: 500px;
	width: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	
}

#radio-title {
	color: white;
	text-align: center;
	margin-bottom: 5px;
	font-size: 24px;
	font-weight: 500;
}

#radio-subtitle {
	color: #ccc;
	text-align: center;
	margin-bottom: 20px;
	font-size: 16px;
}

.radio-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	margin-bottom: 10px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.radio-option:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.radio-option.selected {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.radio-content {
	display: flex;
	flex-direction: column;
}

.radio-label {
	color: white;
	margin: 0;
	font-size: 16px;
}

.radio-desc {
	color: #aaa;
	font-size: 12px;
	margin: 5px 0 0 0;
}

.radio-input {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.radio-hidden-input {
	display: none;
}