
	/* 原有样式保持不变 */
.popup-container {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #000000AD;
		display: flex;
		z-index: 10000;
		overflow: hidden;
		transition: opacity 0.1s ease;
}
.popup-container.center {
		align-items: center;
		justify-content: center;
}
.popup-container.top {
		align-items: flex-start;
		justify-content: center;
}
.popup-container.bottom {
		align-items: flex-end;
		justify-content: center;
}
.popup-container.left {
		align-items: center;
		justify-content: flex-start;
}
.popup-container.right {
		align-items: center;
		justify-content: flex-end;
}
.popup-content {
		display: flex;
		flex-direction: column;
		background-color: #212121;
		overflow: auto;
		position: relative;
}
.popup-container.center .popup-content {
		border-radius: var(--78325b4b);
}
.popup-container.top .popup-content {
		border-radius: 0 0 var(--78325b4b) var(--78325b4b);
}
.popup-container.bottom .popup-content {
		border-radius: var(--78325b4b) var(--78325b4b) 0 0;
}
.popup-container.left .popup-content,
	.popup-container.right .popup-content {
		border-radius: var(--78325b4b) var(--78325b4b) 0 0;
}
.popup-container.left .popup-content[v-bind(borderRadius)='0'],
	.popup-container.right .popup-content[v-bind(borderRadius)='0'] {
		border-radius: 0;
}
.popup-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 16px;
		border-bottom: .5px solid #1d1d1d;
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
}
.popup-header .title {
		margin: 0;
		color: #fff;
		font-weight: 600;
		font-size: 16px;
}
.popup-close {
		display: flex;
		align-items: center;
		justify-content: center;
	/* 	width: 36px;
		height: 36px; */
		cursor: pointer;
		font-size: 25px;
		border-radius: 10px;
		color: #FFFFFF;
		transition: all 0.2s;
}
.popup-body {
		flex: 1;
		display: flex;
		flex-direction: column;
		padding: 16px;
		font-size: 20px;
		color: rgba(255, 255, 255, 0.85);
		line-height: 1.6;
}
.popup-footer {
		padding: 18px 25px;
		border-top: 1px solid #1d1d1d;
		text-align: right;
		background: #151515;
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
}

	/* 内容动画 */
.fade-enter-active .popup-content,
	.fade-leave-active .popup-content {
		transition: opacity 0.1s;
}
.fade-enter-from .popup-content,
	.fade-leave-to .popup-content {
		opacity: 0;
}
.zoom-enter-active .popup-content,
	.zoom-leave-active .popup-content {
		transition: all 0.1s ease;
}
.zoom-enter-from .popup-content,
	.zoom-leave-to .popup-content {
		opacity: 0;
		transform: scale(0.7);
}
.slide-top-enter-active .popup-content,
	.slide-top-leave-active .popup-content {
		transition: all 0.4s ease;
}
.slide-top-enter-from .popup-content,
	.slide-top-leave-to .popup-content {
		opacity: 0;
		transform: translateY(-100px);
}
.slide-bottom-enter-active .popup-content,
	.slide-bottom-leave-active .popup-content {
		transition: all 0.4s ease;
}
.slide-bottom-enter-from .popup-content,
	.slide-bottom-leave-to .popup-content {
		opacity: 0;
		transform: translateY(100px);
}
.slide-left-enter-active .popup-content,
	.slide-left-leave-active .popup-content {
		transition: all 0.4s ease;
}
.slide-left-enter-from .popup-content,
	.slide-left-leave-to .popup-content {
		opacity: 0;
		transform: translateX(-100px);
}
.slide-right-enter-active .popup-content,
	.slide-right-leave-active .popup-content {
		transition: all 0.4s ease;
}
.slide-right-enter-from .popup-content,
	.slide-right-leave-to .popup-content {
		opacity: 0;
		transform: translateX(100px);
}
.slide-center-enter-active .popup-content,
	.slide-center-leave-active .popup-content {
		transition: all 0.1s ease;
}
.slide-center-enter-from .popup-content,
	.slide-center-leave-to .popup-content {
		opacity: 0;
		transform: scale(0.9);
}

.header{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;margin-left:auto;margin-right:auto}.header .content{width:calc(100% - 16px);max-width:1200px;height:70px;display:flex;align-items:center;justify-content:center}.header .content .left{display:flex;align-items:center;justify-content:center;gap:42px}.header .content .left .logo{color:#fff;font-weight:bold;font-size:25px}@media(max-width: 765px){.header .content .left .logo{font-size:20px}}.header .content .right{flex:1;display:flex;flex-direction:row;align-items:center;justify-content:flex-end;gap:15px}.header .content .right .search{width:312px;height:40px;display:flex;align-items:center;justify-content:center;font-size:15px;border:1px solid #1d1d1d;background-color:#1d1d1d;border-radius:calc(.6rem - 2px);padding:8px 15px}@media(max-width: 765px){.header .content .right .search{display:none}}.header .content .right .search:hover{border:1px solid #242424;background-color:#242424}.header .content .right .docs{display:flex;flex-direction:row;align-items:center;justify-content:center;color:#f4f5f6;gap:.5rem;font-size:14px;cursor:pointer;font-weight:500}@media(max-width: 765px){.header .content .right .docs{display:none}}.header .content .right .docs span{display:inline-block}.header .content .right .btn{border-radius:8px;color:#fff;border:1px solid #1d1d1d;background-color:#0e0e0e}.header .content .right .menu{font-weight:bold;border-radius:10px;cursor:pointer;padding:6px;color:#fff;border:1px solid #1d1d1d;background-color:#1d1d1d}@media(max-width: 765px){.header .content .right .menu{display:none}}.header .content .right .menu:hover{color:#f4f5f6;border:1px solid #383838;background-color:#383838}.header .popup-title{color:#fff;font-size:18px;font-weight:500}.header .p-content{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;padding:10px 0}.header .p-content .btn{margin-top:20px;width:100%;text-align:center;height:50px;font-size:18px;cursor:pointer}.header .p-content .input-group{width:100%;display:flex;flex-direction:row;min-width:300px;gap:20px}@media(max-width: 765px){.header .p-content .input-group{flex-direction:column}}.header .p-content .input-group .input-item{flex:1}.header .p-content .input-group .input-item .title{margin-bottom:10px;display:flex;justify-content:space-between;font-size:15px;color:#e5e7eb}.header .p-content .input-group .input-item .title .custom-switch.ant-switch-checked{background-color:#e69200}.header .p-content .input-group .input-item .title .custom-switch:not(.ant-switch-checked){background-color:#1d1d1d}.header .p-content .input-group .input-item .input{display:flex;align-items:center;justify-content:center;background-color:#1d1d1d;border-radius:8px;overflow:hidden;padding:0px 10px 0px 15px;height:55px}.header .p-content .input-group .input-item .input input{color:#f5f5f5;width:100%;font-size:14px}.header .p-content .input-group .input-item .input input:focus{outline:none}.header .p-content .input-group .input-item .input .select{width:100%}

	/* 自定义未选中状态的颜色 */
.custom-bottom-nav .v-btn[data-v-6110e732]:not(.v-btn--active) {
		color: #909090 !important;
}

*{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif}@keyframes FadeIn{0%{opacity:0}100%{opacity:1}}html,body{background-color:#000}.main{width:100%}.main .header-nav{position:sticky;top:0;z-index:999;background-color:#000}.uni-background{background-color:#0b0e11 !important}.uni-pointer{cursor:pointer}.list-item-menu{padding:10px 0px}.text-active-color{color:#fff !important}.text-inactive-color{color:#b2b2bd !important}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.ant-input,.ant-input-affix-wrapper{background-color:rgba(0,0,0,0);color:#fff;font-size:16px;border:0px;padding:0px;font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif}.ant-input::-moz-placeholder, .ant-input-affix-wrapper::-moz-placeholder{font-size:15px;color:#5b5b5b !important}.ant-input::placeholder,.ant-input-affix-wrapper::placeholder{font-size:15px;color:#5b5b5b !important}.ant-modal-mask{background-color:rgba(0,0,0,.8) !important}.ant-modal-content{background-color:#1e2026 !important}.ant-modal-confirm-title,.ant-modal-confirm-content{color:#fff !important}.ant-btn-primary{background-color:#a8f954 !important}.ant-select-selector{border:none;box-shadow:none !important}.ant-select-selection-search-input{color:#f5f5f5}.ant-select-focused{border:none;box-shadow:none}input[type=number]{-moz-appearance:textfield;-webkit-appearance:textfield;appearance:textfield}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}@font-face{font-family:"Bearpaw";src:url(/fonts/h1.38d4cc6b.woff2);font-weight:700;font-display:swap}@font-face{font-family:"Bearpaw";src:url(/fonts/h2.79f1057a.woff2);font-weight:600;font-display:swap}@font-face{font-family:"Bearpaw";src:url(/fonts/h3.5e86e780.woff2);font-weight:500;font-display:swap}@font-face{font-family:"Bearpaw";src:url(/fonts/h4.51eea4cb.woff2);font-weight:400;font-display:swap}@font-face{font-family:"Open Sauce One";src:url(/fonts/open-sauce-one-latin-700-normal.60b729ab.60b729ab.woff2);font-weight:700;font-display:swap}@font-face{font-family:"Open Sauce One";src:url(/fonts/open-sauce-one-latin-600-normal.5337efa3.5337efa3.woff2);font-weight:600;font-display:swap}@font-face{font-family:"Open Sauce One";src:url(/fonts/open-sauce-one-latin-500-normal.0e687ea5.0e687ea5.woff2);font-weight:500;font-display:swap}@font-face{font-family:"Open Sauce One";src:url(/fonts/open-sauce-one-latin-400-normal.69e44276.69e44276.woff2);font-weight:400;font-display:swap}
.home{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;margin-left:auto;margin-right:auto}.home .content{width:calc(100% - 16px);max-width:1200px;display:flex;flex-direction:column;align-items:center;justify-content:center}.home .content .launch{width:100%;color:#fff;font-size:15px;text-align:center;padding:10px 0}@media(min-width: 765px){.home .content .launch{display:none}}.home .content .tabs{width:100%}.home .content .tabs .ant-tabs-tab{cursor:pointer;font-weight:500 !important;color:#fff !important}.home .content .tabs .ant-tabs-tab-btn{color:#909090 !important}.home .content .tabs .ant-tabs-ink-bar{background-color:#fff !important}.home .content .tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn{color:#fff !important}.home .content .tabs .ant-tabs-tab-btn:active{color:#fff !important}.home .content .tabs .header-right{display:flex;align-items:center;gap:2px;cursor:pointer;font-size:12px;color:#fff}@media(min-width: 765px){.home .content .tabs .header-right{display:none}}.home .content .tabs .header-right span{font-size:14px;font-weight:500;color:#fff}.home .content .table-content{width:100%;border:.5px solid #909090;color:#fff}.home .content .table-content .table{height:600px;overflow:auto;color:#fff;background-color:rgba(0,0,0,0)}@media(max-width: 765px){.home .content .table-content .table{height:500px}}.home .content .table-content .table .v-table__wrapper>table>thead>tr>th{background-color:#000 !important;border-bottom:.5px solid #909090 !important}.home .content .table-content .table th{text-align:center;border-left:.5px solid #909090;border-bottom:.5px solid #909090}.home .content .table-content .table th:first-child{text-align:left;border-left:none}.home .content .table-content .table td{min-width:120px;font-size:13px;text-align:center;border-left:.5px solid #909090;border-bottom:.5px solid #909090}.home .content .table-content .table td:first-child{width:230px;text-align:left}.home .content .table-content .table tr{cursor:pointer}.home .content .table-content .table .token{display:flex;flex-direction:row;align-items:center;color:#fff;gap:8px}.home .content .table-content .table .token .avatar{background-color:#fff;color:#000}@media(max-width: 765px){.home .content .table-content .table .token .avatar{display:none}}.home .content .table-content .table .token .ticket{display:flex;flex-direction:column}.home .content .table-content .table .token .ticket .symbol{font-size:14.5px;font-weight:600}.home .content .table-content .table .token .ticket .name{font-weight:normal;font-size:12px}.home .content .table-content .table .token .ticket .address{font-size:13px}.home .content .table-content .table .minting{color:#fff;font-size:14px;text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}@media(min-width: 765px){.home .content .table-content .tbody tr:hover{background-color:#212121}}.home .content .table-content .tbody tr:active{background-color:#212121}
