
			/*每个页面公共css */
			uni-page-body {
				background-color: #08162d;
				color: #fff;
				font-family: PingFang SC
			}

			.txtGreen {
				color: #53926d
			}

			.txtRed {
				color: #c05b5b
			}

			.pop {
				position: fixed;
				width: 100%;
				height: 100vh;
				z-index: 600;
				top: 0;
				left: 0;
				-webkit-transition: -webkit-transform .3s;
				transition: -webkit-transform .3s;
				transition: transform .3s;
				transition: transform .3s, -webkit-transform .3s;
				transition: transform .3s, -webkit-transform .3s;
				-webkit-overflow-scrolling: touch
			}

			.uni-picker-container .uni-picker-custom.uni-picker-toggle {
				background: #152138;
				border-radius: 36px 36px 0 0
			}

			.uni-picker-container .uni-picker-header {
				background: none
			}

			.uni-picker-container .uni-picker-content {
				background: #152138
			}

			.uni-picker-container .uni-picker-item {
				color: #677690
			}

			.uni-picker-view-mask {
				background: none
			}

			.uni-picker-container .uni-picker-header:after {
				border-bottom: 1px solid hsla(0, 0%, 100%, .1)
			}

			.uni-picker-view-indicator:before {
				border-top: 1px solid hsla(0, 0%, 100%, .5)
			}

			.uni-picker-view-indicator:after {
				border-bottom: 1px solid hsla(0, 0%, 100%, .5)
			}

			.uni-picker-container .uni-picker-action.uni-picker-action-cancel {
				padding-left: 40px;
				font-size: 14px
			}

			.uni-picker-container .uni-picker-action.uni-picker-action-confirm {
				padding-right: 40px;
				font-size: 14px;
				color: #60aa78
			}

			/*  showModal样式修改   */
			.uni-mask {
				background-color: rgba(9, 22, 46, .7) !important;
				-webkit-backdrop-filter: blur(18px);
				backdrop-filter: blur(18px)
			}

			uni-modal .uni-modal {
				background: rgba(28, 41, 64, .7);
				border-radius: 16px
			}

			uni-modal .uni-modal__bd {
				color: #fff;
				font-size: 12px
			}

			uni-modal .uni-modal__btn {
				font-size: 12px
			}

			uni-modal .uni-modal__ft:after {
				border: 0
			}

			uni-modal .uni-modal__btn:after {
				border: 0
			}

			uni-modal .uni-modal__btn_default {
				color: #677690
			}

			.flex {
				display: flex
			}

			.justify-between {
				justify-content: space-between
			}

			.justify-center {
				justify-content: center
			}

			.justify-around {
				justify-content: space-around
			}

			.align-center {
				align-items: center
			}

			.popLoading .bg {
				position: fixed;
				top: 0;
				left: 0;
				z-index: 1;
				background-color: rgba(0, 0, 0, .1);
				width: 100%;
				height: 100vh
			}

			@-webkit-keyframes showDown {
				from {
					height: 0;
					top: -100vh
				}

				to {
					height: 100vh;
					top: 0
				}
			}

			@keyframes showDown {
				from {
					height: 0;
					top: -100vh
				}

				to {
					height: 100vh;
					top: 0
				}
			}

			@-webkit-keyframes showUp {
				from {
					height: 0;
					top: 100vh
				}

				to {
					height: 100vh;
					top: 0
				}
			}

			@keyframes showUp {
				from {
					height: 0;
					top: 100vh
				}

				to {
					height: 100vh;
					top: 0
				}
			}

			@-webkit-keyframes showRight {
				from {
					width: 0;
					left: -100vw
				}

				to {
					width: 100vw;
					left: 0
				}
			}

			@keyframes showRight {
				from {
					width: 0;
					left: -100vw
				}

				to {
					width: 100vw;
					left: 0
				}
			}

			body {
				background-color: #08162d
			}
		
	
		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.top[data-v-69e01b47] {
				position: fixed;
				top: 0;
				left: 0;
				z-index: 1;
				width: 100%;
				padding-top: 25px;
				padding-bottom: 20px;
				display: flex;
				align-items: center;
				justify-content: center;
				height: 30px;
				font-size: 14px;
				color: #dcdde0
			}

			.top .icon[data-v-69e01b47] {
				position: absolute;
				top: 26px;
				left: 17px
			}

			.top .txt[data-v-69e01b47] {
				display: flex;
				align-items: center
			}

			.top.active[data-v-69e01b47] {
				background: hsla(0, 0%, 100%, .23)
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.drag[data-v-a85e0054] {
				display: flex;
				justify-content: center;
				align-items: center;
				background-color: rgba(0, 0, 0, .5);
				box-shadow: 0 0 3px rgba(0, 0, 0, .4);
				color: #fff;
				width: 42px;
				height: 42px;
				border-radius: 50%;
				font-size: 12px;
				position: fixed;
				z-index: 999999
			}

			.drag.transition[data-v-a85e0054] {
				transition: left .3s ease, top .3s ease
			}

			.drag uni-image[data-v-a85e0054] {
				-webkit-animation: scaleCS-data-v-a85e0054 .9s linear infinite;
				animation: scaleCS-data-v-a85e0054 .9s linear infinite
			}

			@-webkit-keyframes scaleCS-data-v-a85e0054 {
				0% {
					-webkit-transform: scale(1);
					transform: scale(1)
				}

				50% {
					-webkit-transform: scale(1.08);
					transform: scale(1.08)
				}
			}

			@keyframes scaleCS-data-v-a85e0054 {
				0% {
					-webkit-transform: scale(1);
					transform: scale(1)
				}

				50% {
					-webkit-transform: scale(1.08);
					transform: scale(1.08)
				}
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.list[data-v-2a6d5c93] {
				padding: 75px 15px 0 15px
			}

			.buyer[data-v-2a6d5c93] {
				min-height: 183px;
				padding: 21px 26px 0 42px;
				border-radius: 22px;
				background: url(/static/img/bg.68dc17a5.png) top no-repeat;
				background-size: cover;
				font-size: 13px;
				color: #dcdde0
			}

			.buyer .item[data-v-2a6d5c93] {
				display: flex;
				align-items: center;
				justify-content: space-between;
				margin-bottom: 16px
			}

			.buyer .item .name[data-v-2a6d5c93] {
				display: flex;
				align-items: center;
				font-size: 11px;
				color: #677690;
				font-weight: 500
			}

			.buyer .item uni-image[data-v-2a6d5c93] {
				width: 25px;
				margin-right: 10px
			}

			.buyer .item .txt[data-v-2a6d5c93] {
				font-size: 25px;
				color: #dcdde0;
				font-weight: 800;
				margin-top: 16px
			}

			.buyer .item .per[data-v-2a6d5c93] {
				font-size: 12px;
				color: #677690
			}

			.buyer .item .per .txt1[data-v-2a6d5c93] {
				margin-top: 15px
			}

			.buyer .item .per uni-image[data-v-2a6d5c93] {
				width: 12px
			}

			.amount[data-v-2a6d5c93] {
				min-height: 183px;
				margin-top: 13px;
				background: linear-gradient(-90deg, #17243a, #233744);
				border-radius: 21px
			}

			.amount .itemBox[data-v-2a6d5c93] {
				padding: 17px 19px 17px 29px;
				font-size: 12px;
				color: #677690
			}

			.amount .item[data-v-2a6d5c93] {
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding-bottom: 8px;
				padding-top: 8px
			}

			.amount .item uni-input[data-v-2a6d5c93] {
				font-size: 12px;
				color: #fff;
				flex: 1
			}

			.amount .item .txt1[data-v-2a6d5c93] {
				color: #2063fc
			}

			.amount .line[data-v-2a6d5c93] {
				border-bottom: 1px solid #677690;
				margin-bottom: 8px
			}

			.Btn[data-v-2a6d5c93] {
				display: flex;
				align-items: center;
				justify-content: space-between;
				margin-top: 65px
			}

			.Btn uni-view[data-v-2a6d5c93] {
				height: 47px;
				border-radius: 23px;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 14px;
				color: #dcdde0;
				font-weight: 700
			}

			.Btn .link1[data-v-2a6d5c93] {
				flex: 1;
				margin-right: 7px;
				background: #17243a
			}

			.Btn .link2[data-v-2a6d5c93] {
				flex: 1;
				margin-left: 7px;
				background: #2063fc;
				opacity: .5
			}

			.Btn .link2.sel[data-v-2a6d5c93] {
				opacity: 1
			}

			.popFund[data-v-2a6d5c93] {
				width: 100%;
				height: 100%;
				background: #09162e
			}

			.popFund .back[data-v-2a6d5c93] {
				margin: 20px 0 0 20px
			}

			.popFund .itemBox[data-v-2a6d5c93] {
				padding: 20px
			}

			.popFund .keyboard[data-v-2a6d5c93] {
				margin-top: 50px;
				font-size: 12px;
				color: #677690
			}

			.popFund .keyboard .InputCode[data-v-2a6d5c93] {
				margin-top: 10px;
				padding: 0 17px;
				margin-bottom: 50px
			}

			.popFund .keyboard .InputCode uni-view[data-v-2a6d5c93] {
				position: relative;
				flex: 1;
				height: 100%;
				font-size: 20px;
				line-height: 1.2;
				background: hsla(0, 0%, 100%, .06);
				max-width: 36px;
				height: 48px;
				border-radius: 26px;
				color: #fff
			}

			.popFund .keyboard .InputCode .sel[data-v-2a6d5c93] {
				background: #2063fc
			}

			.popFund .keyboard .item[data-v-2a6d5c93] {
				flex-wrap: wrap;
				text-align: center;
				margin-top: 20px
			}

			.popFund .keyboard .item uni-view[data-v-2a6d5c93] {
				flex: 1;
				position: relative;
				flex: 1;
				flex-basis: 33%;
				box-sizing: border-box;
				padding: 0 6px 6px 0;
				font-size: 28px;
				color: #fff;
				height: 60px;
				box-sizing: border-box
			}
		

		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.echarts[data-v-fb8c5f14] {
				width: 100%;
				height: 100%
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.menu[data-v-16a8954c] {
				position: fixed;
				bottom: 0;
				height: 70px;
				background-color: #08162d;
				width: 100%;
				box-shadow: 0 0 5px #212d42;
				z-index: 500
			}

			.menu .itemBox[data-v-16a8954c] {
				display: flex;
				align-items: center;
				height: 100%;
				justify-content: space-around
			}

			.menu .itemBox uni-image[data-v-16a8954c] {
				width: 36px;
				display: block
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.popTrading[data-v-7de2126a] {
				-webkit-animation: showRight .3s linear;
				animation: showRight .3s linear
			}

			.popTrading .bg[data-v-7de2126a] {
				position: fixed;
				width: 100%;
				height: 100vh;
				background-color: #08162d
			}

			.popTrading .close[data-v-7de2126a] {
				padding-top: 52px;
				text-align: right;
				width: 100%
			}

			.popTrading .close uni-image[data-v-7de2126a] {
				width: 40px;
				margin-right: 20px
			}

			.popTrading .itemBox[data-v-7de2126a] {
				display: flex;
				width: 100%;
				height: 100vh;
				position: relative;
				z-index: 10
			}

			.popTrading .itemLeft[data-v-7de2126a] {
				width: 27%;
				/* height: 100vh; */
				padding-top: 102px;
				background: #17243a
			}

			.popTrading .itemLeft .item[data-v-7de2126a] {
				height: 45px;
				padding-left: 17px;
				font-size: 12px;
				color: #677690;
				display: flex;
				align-items: center
			}

			.popTrading .itemLeft .item[data-v-7de2126a]:before {
				content: "";
				display: inline-block;
				width: 6px;
				height: 6px;
				background: #53926d;
				border-radius: 50%;
				margin-right: 13px;
				opacity: 0
			}

			.popTrading .itemLeft .item.sel[data-v-7de2126a] {
				background: #253146;
				color: #dcdde0
			}

			.popTrading .itemLeft .item.sel[data-v-7de2126a]:before {
				opacity: 1
			}

			.popTrading .itemRight[data-v-7de2126a] {
				flex: 1
			}

			.popTrading .itemRight .cont[data-v-7de2126a] {
				overflow: scroll;
				height: calc(100vh - 100px);
				padding: 0 20px 0 18px
			}

			.popTrading .itemRight .item[data-v-7de2126a] {
				display: flex;
				align-items: flex-start;
				justify-content: space-between;
				background: #17243a;
				font-size: 12px;
				border-radius: 10px;
				padding: 10px 10px;
				margin-top: 7px;
				position: relative
			}

			.popTrading .itemRight .item .logo[data-v-7de2126a] {
				width: 27px;
				height: 27px;
				margin-right: 5px
			}

			.popTrading .itemRight .item .ico[data-v-7de2126a] {
				color: #677690;
				padding-top: 5px
			}

			.popTrading .itemRight .item .ico uni-image[data-v-7de2126a] {
				width: 14px;
				margin-right: 5px
			}

			.popTrading .itemRight .item .info[data-v-7de2126a] {
				flex: 1;
				padding-top: 5px;
				color: #dcdde0
			}

			.popTrading .itemRight .item .info .note[data-v-7de2126a] {
				color: #677690;
				display: flex;
				align-items: center;
				margin: 5px 0
			}

			.popTrading .itemRight .item .info .note uni-text[data-v-7de2126a] {
				font-size: 16px;
				color: #dcdde0;
				margin-left: 5px
			}

			.popTrading .itemRight .item .info .per[data-v-7de2126a] {
				color: #2063fc;
				font-size: 16px
			}

			.popTrading .itemRight .item .link[data-v-7de2126a] {
				height: 26px;
				line-height: 26px;
				color: #dcdde0;
				font-size: 16px;
				background: #2063fc;
				border-radius: 13px;
				padding: 0 19px;
				position: absolute;
				bottom: 14px;
				right: 7px
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			/* 消息 */
			.popMsg[data-v-30eb3ca0] {
				top: -100vh;
				height: 0
			}

			.popMsg.active[data-v-30eb3ca0] {
				top: 0;
				height: 100vh;
				-webkit-animation: showDown .3s linear;
				animation: showDown .3s linear
			}

			.popMsg .bg[data-v-30eb3ca0] {
				position: fixed;
				width: 100%;
				height: 100vh;
				background-color: #09162e
			}

			.popMsg .close[data-v-30eb3ca0] {
				padding-top: 52px;
				text-align: right;
				padding-right: 23px
			}

			.popMsg .close uni-image[data-v-30eb3ca0] {
				width: 40px
			}

			.popMsg .noCont[data-v-30eb3ca0] {
				text-align: center;
				padding-top: 52px;
				position: relative;
				font-size: 13px;
				font-family: PingFang SC;
				font-weight: 700;
				color: #677690
			}

			.popMsg .noCont uni-image[data-v-30eb3ca0] {
				width: 150px
			}

			.popMsg .noCont .txt[data-v-30eb3ca0] {
				font-size: 19px;
				color: #dcdde0;
				padding-top: 30px;
				padding-bottom: 22px
			}

			.itemBox[data-v-30eb3ca0] {
				position: relative;
				z-index: 10;
				padding: 20px 30px
			}

			.itemBox .item[data-v-30eb3ca0] {
				padding: 15px 0;
				border-bottom: 1px solid #677690;
				font-size: 12px;
				opacity: .8
			}

			.popDetail .bg[data-v-30eb3ca0] {
				background: #09162e;
				position: fixed;
				width: 100%;
				height: 100vh;
				z-index: 1;
				opacity: .95
			}

			.popDetail .itemBox[data-v-30eb3ca0] {
				width: 100%;
				position: relative;
				z-index: 10;
				margin: 0 17px;
				padding: 23px 26px;
				font-size: 12px;
				border-radius: 44px;
				background: #152138;
				color: #677690
			}

			.popDetail .itemBox .item[data-v-30eb3ca0] {
				padding: 12px 0;
				border: 0
			}

			.popDetail .itemBox .title[data-v-30eb3ca0] {
				text-align: center;
				padding-bottom: 20px
			}

			.popDetail .itemBox .Btn[data-v-30eb3ca0] {
				border-top: 1px solid #1a2d4c;
				margin: 42px 0 10px 0;
				padding-top: 24px;
				text-align: center;
				color: #53926d
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			/* 左侧菜单 */
			.popLeftNav[data-v-32dda91f] {
				-webkit-animation: showRight .3s linear;
				animation: showRight .3s linear
			}

			.popLeftNav .bg[data-v-32dda91f] {
				position: fixed;
				width: 100%;
				height: 100vh;
				background-color: #09162e
			}

			.popLeftNav .close[data-v-32dda91f] {
				padding-top: 52px;
				text-align: right;
				padding-right: 23px
			}

			.popLeftNav .close uni-image[data-v-32dda91f] {
				width: 40px
			}

			.popLeftNav .itemBox[data-v-32dda91f] {
				margin: 0 23px;
				color: #677690;
				position: relative
			}

			.popLeftNav .itemBox .info[data-v-32dda91f] {
				font-size: 12px
			}

			.popLeftNav .itemBox .info .head[data-v-32dda91f] {
				width: 57px;
				height: 57px;
				border-radius: 50%;
				margin-right: 20px
			}

			.popLeftNav .itemBox .info uni-image[data-v-32dda91f] {
				width: 11px;
				margin-left: 10px
			}

			.popLeftNav .itemBox .info .name[data-v-32dda91f] {
				font-size: 19px;
				color: #fff;
				margin-bottom: 8px;
				display: inline-block
			}

			.popLeftNav .itemBox .info .link[data-v-32dda91f] {
				color: #fefefe;
				background: #dcecfb;
				border-radius: 12px;
				display: inline-block;
				font-size: 12px;
				padding: 2px 5px;
				-webkit-transform: scale(.7);
				transform: scale(.7);
				-webkit-transform-origin: 0 0;
				transform-origin: 0 0;
				margin-top: 3px
			}

			.popLeftNav .itemBox .itemList[data-v-32dda91f] {
				margin-top: 30px
			}

			.popLeftNav .itemBox .item[data-v-32dda91f] {
				font-size: 12px;
				margin-bottom: 19px
			}

			.popLeftNav .itemBox .item uni-image[data-v-32dda91f] {
				width: 38px;
				margin-right: 10px
			}

			.popLeftNav .itemBox .item .arrow[data-v-32dda91f]:after {
				content: "";
				display: inline-block;
				width: 6px;
				height: 9px;
				background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAoCAMAAADT08pnAAAAAXNSR0IArs4c6QAAAMlQTFRFAAAAAAAAAAD/AH9/VVVVQH9/ZmZmVX9/ZXaQZ3SOZ3SRZ3eRZnaPZXSOaHSRZ3aPZXWQZ3aPZ3SQZnaOZnaRZXWPaHWPaHiPZ3aOZ3aRZXWPZ3aOZ3aQZnaRZnSRZnaRZ3WQZnSPZnaRZnaPZ3eQZ3WQZnWQZnWPZneQZnaPZ3aQZ3WPZ3ePZnaQZ3WPZ3eRZnaPZnWRZ3WQZnaPZ3aRZ3WQZ3eQZnaQZ3aQZnaQZ3aQZ3WQZ3aPZ3aQZ3WQZ3aQZnWQZ3aQZ3aQCmtQ6gAAAEJ0Uk5TAAEBAgMEBQZOT09PUFFRUlNUXF9fYGBgYWFiY2N7fX1+f3+AgYOFiY6Pj5CQkZSUmZ2hoqmurrH4+fn6+/v8/f7+jHezvQAAAN9JREFUKM+lk0cOAjEMRU3vMPTee++dAOP7H4oFNlI8yQov34udb0UBAIDgJgmmCm7xGTVw3x4RlcHsEBFRxSUv4beujjRL92suGWlW1HNJSTMjoxJC+Ods5D6+n3Fs025padacIOvpodTXpG3aPSYTTG0JAhPu8aRekHl4EvA+D88rjHmaFE0Sb8FbxN28zgfMazpv85yizvvEX+J8h/izIvibeFnnIz5fN9/7qprvRZGny/ltOQs6H9KjKpG/RzlVQ+c5y74QOhvzAED4iIiYM3ypyAndkvETRg5V+L8+E2ZMA9WbAb0AAAAASUVORK5CYII=) 50% no-repeat;
				background-size: cover;
				margin-left: 8px
			}

			.popModal[data-v-32dda91f] {
				width: 100%;
				height: 100vh;
				position: fixed;
				top: 0;
				left: 0
			}

			.popModal .bg[data-v-32dda91f] {
				background-color: rgba(9, 22, 46, .7) !important;
				-webkit-backdrop-filter: blur(18px);
				backdrop-filter: blur(18px);
				position: fixed;
				top: 0;
				left: 0;
				z-index: 1;
				width: 100%;
				height: 100%
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.popNotice[data-v-11bc1c19] {
				width: 100%;
				height: 100vh
			}

			.popNotice .bg[data-v-11bc1c19] {
				position: fixed;
				width: 100%;
				height: 100vh;
				background-color: rgba(0, 0, 0, .9)
			}

			.popNotice .itemBox[data-v-11bc1c19] {
				background: #09162e;
				padding: 18px;
				margin: 0 50px;
				color: #dcdde0;
				font-size: 12px;
				border-radius: 10px;
				position: relative;
				flex: 1
			}

			.popNotice .item[data-v-11bc1c19] {
				line-height: 19px
			}

			.popNotice .item[data-v-11bc1c19] img {
				max-width: 100%
			}

			.popNotice .title[data-v-11bc1c19] {
				text-align: center;
				font-size: 14px
			}

			.popNotice .title uni-image[data-v-11bc1c19] {
				width: 28px
			}

			.popNotice .Btn[data-v-11bc1c19] {
				border-top: 1px solid #1a2d4c;
				margin: 42px 0 10px 0;
				padding-top: 24px;
				text-align: center;
				color: #53926d
			}
		
		
			.popNotice[data-v-11bc1c19] p img {
				max-width: 100%
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.green[data-v-6d896c78] {
				color: #267040
			}

			.red[data-v-6d896c78] {
				color: #7b4327
			}

			.content[data-v-6d896c78] {
				padding-bottom: 70px
			}

			.topBanner[data-v-6d896c78] {
				background: #296df1;
				border-radius: 0 0 36px 36px;
				padding-bottom: 89px
			}

			.topBanner .nav[data-v-6d896c78] {
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding: 23px 19px
			}

			.topBanner .nav .ico uni-image[data-v-6d896c78] {
				width: 21px
			}

			.topBanner .nav .logo uni-image[data-v-6d896c78] {
				width: 91px;
				height: 22px
			}

			.topBanner .nav .msg uni-image[data-v-6d896c78] {
				width: 36px
			}

			.topBanner .use_Money[data-v-6d896c78] {
				color: #fff;
				padding: 0 19px;
				font-size: 13px;
				font-family: PingFang SC;
				font-weight: 700
			}

			.topBanner .use_Money uni-text[data-v-6d896c78] {
				font-size: 25px;
				margin-right: 5px
			}

			.topBanner .use_Money uni-image[data-v-6d896c78] {
				width: 19px;
				margin-left: 8px
			}

			.banner[data-v-6d896c78] {
				padding: 14px 19px;
				margin-top: -80px
			}

			.banner .itemBox[data-v-6d896c78] {
				height: 170px
			}

			.banner .item[data-v-6d896c78] {
				height: 100%
			}

			.banner uni-image[data-v-6d896c78] {
				width: 100%;
				height: 100%
			}

			.notice[data-v-6d896c78] {
				color: #fff;
				padding: 0 19px;
				display: flex;
				align-items: center;
				font-size: 12px;
				font-family: PingFang SC;
				font-weight: 700
			}

			.notice uni-image[data-v-6d896c78] {
				width: 19px;
				margin-right: 9px
			}

			.notice uni-text[data-v-6d896c78] {
				color: #fff !important
			}

			.notice .itemBox[data-v-6d896c78] {
				height: 16px;
				flex: 1
			}

			.fastFun[data-v-6d896c78] {
				display: flex;
				align-items: center;
				justify-content: space-around;
				padding: 18px 19px;
				font-size: 12px;
				font-family: PingFang SC;
				font-weight: 700;
				color: #677690;
				text-align: center
			}

			.fastFun uni-image[data-v-6d896c78] {
				height: 21px;
				margin-bottom: 10px
			}

			.trading-bot[data-v-6d896c78] {
				padding: 0 19px;
				font-size: 14px;
				font-family: PingFang SC;
				font-weight: 700
			}

			.trading-bot .itemBox[data-v-6d896c78] {
				overflow-x: auto;
				margin-top: 19px;
				white-space: nowrap
			}

			.trading-bot .itemBox .item[data-v-6d896c78] {
				min-width: 73px;
				min-height: 80px;
				background: hsla(0, 0%, 100%, .06);
				border-radius: 14px;
				margin-right: 10px;
				padding: 10px;
				display: inline-flex;
				align-items: center
			}

			.trading-bot .itemBox .item .per[data-v-6d896c78] {
				font-size: 14px
			}

			.trading-bot .itemBox .item .per uni-image[data-v-6d896c78] {
				width: 15px;
				margin-left: 5px
			}

			.trading-bot .itemBox .item .txt[data-v-6d896c78] {
				font-size: 11px;
				color: #677690;
				margin: 10px 0
			}

			.trading-bot .itemBox .item .name[data-v-6d896c78] {
				display: flex;
				align-items: center;
				font-size: 12px
			}

			.trading-bot .itemBox .item .name uni-image[data-v-6d896c78] {
				width: 15px;
				margin-right: 5px
			}

			.market-trend[data-v-6d896c78] {
				padding: 19px;
				font-size: 14px;
				font-family: PingFang SC;
				font-weight: 700
			}

			.market-trend .itemBox[data-v-6d896c78] {
				padding-top: 10px
			}

			.market-trend .item[data-v-6d896c78] {
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding: 18px 0
			}

			.market-trend .item uni-view[data-v-6d896c78] {
				flex: 1
			}

			.market-trend .item .name[data-v-6d896c78] {
				display: flex;
				align-items: center;
				font-size: 12px
			}

			.market-trend .item .name uni-image[data-v-6d896c78] {
				width: 44px;
				margin-right: 5px
			}

			.market-trend .item .name uni-text[data-v-6d896c78] {
				color: #677690;
				display: block;
				font-size: 11px
			}

			.market-trend .item .price[data-v-6d896c78] {
				text-align: right;
				font-size: 12px;
				flex: none;
				width: 25%
			}

			.market-trend .item .chart[data-v-6d896c78] {
				width: 80px;
				height: 40px
			}

			.popSignIn[data-v-6d896c78] {
				-webkit-animation: showDown .5s linear;
				animation: showDown .5s linear;
				top: 0;
				height: 100vh
			}

			.popSignIn .bg[data-v-6d896c78] {
				position: fixed;
				width: 100%;
				height: 100vh;
				z-index: 1;
				background-color: rgba(9, 22, 46, .7);
				-webkit-backdrop-filter: blur(18px);
				backdrop-filter: blur(18px)
			}

			.popSignIn .itemBox[data-v-6d896c78] {
				background: url(/static/img/bg.1a7cacc1.png) bottom no-repeat;
				background-size: cover;
				position: relative;
				z-index: 10;
				padding: 30px 18px 18px 18px
			}

			.popSignIn .itemBox .title[data-v-6d896c78] {
				text-align: center;
				font-size: 13px;
				position: relative
			}

			.popSignIn .itemBox .title[data-v-6d896c78]:before {
				content: "";
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAABEBAMAAAAIDcoFAAAAAXNSR0IArs4c6QAAADBQTFRFAAAA293g3d3f3d3i3d3h293f3d3h293f3d3h3d3h3d3h293f293h3Nzg3N3g3N3gv9Y7dwAAAA90Uk5TAGJpaXB4eHl+f4aHh4z8Wh3JUQAAAJpJREFUOMu11TERhTAQBNA0EGQgAQk4QQISogQPSPgSvgUsUEKxFKEBdhluklx582Zz1ca5+0yOTYWZrUdsFIPxAGCnGPgx/OQRA//7GXF6ileO2y84WLApeUjH9TvuLltvSfYZz0jA5c5ozu3ivqxFiHpScW/jdVHu8/Iu6ZgqDx9tPBRN56WkKkwUnqpHUaaqekVRq1qPn8AB2d7TYlbllrQAAAAASUVORK5CYII=) top no-repeat;
				background-size: cover;
				width: 11px;
				height: 17px
			}

			.popSignIn .itemBox .dates[data-v-6d896c78] {
				color: #677690;
				font-size: 12px;
				padding: 23px 0;
				text-align: center;
				display: flex;
				align-items: center;
				justify-content: space-between
			}

			.popSignIn .itemBox .dates uni-view[data-v-6d896c78] {
				margin-bottom: 10px
			}

			.popSignIn .itemBox .note[data-v-6d896c78] {
				font-size: 14px;
				color: #dcdde0;
				margin-bottom: 10px
			}

			.popSignIn .itemBox .note uni-text[data-v-6d896c78] {
				margin: 0 5px;
				color: #2769f5
			}

			.popSignIn .itemBox .note.txt[data-v-6d896c78] {
				font-weight: 700;
				font-size: 16px;
				color: #fff;
				margin-bottom: 5px
			}

			.popSignIn .itemBox .link[data-v-6d896c78] {
				font-size: 16px;
				color: #fff;
				background: #2769f5;
				margin: 15px 0;
				border-radius: 23px;
				padding: 13px 0;
				text-align: center
			}

			.popSignIn .itemBox .close[data-v-6d896c78] {
				text-align: center;
				color: #677690;
				font-size: 12px
			}

			.popSignIn .itemBox .close uni-image[data-v-6d896c78] {
				width: 11px;
				margin-left: 5px
			}

			.popTrading[data-v-6d896c78] {
				-webkit-animation: showRight .3s linear;
				animation: showRight .3s linear
			}

			.popTrading .bg[data-v-6d896c78] {
				position: fixed;
				width: 100%;
				height: 100vh;
				background-color: #08162d
			}

			.popTrading .close[data-v-6d896c78] {
				padding-top: 52px;
				text-align: right;
				width: 100%
			}

			.popTrading .close uni-image[data-v-6d896c78] {
				width: 40px;
				margin-right: 20px
			}

			.popTrading .itemBox[data-v-6d896c78] {
				display: flex;
				width: 100%;
				height: 100vh;
				position: relative;
				z-index: 10
			}

			.popTrading .itemLeft[data-v-6d896c78] {
				width: 27%;
				/* height: 100vh; */
				padding-top: 102px;
				background: #17243a
			}

			.popTrading .itemLeft .item[data-v-6d896c78] {
				height: 45px;
				padding-left: 17px;
				font-size: 12px;
				color: #677690;
				display: flex;
				align-items: center
			}

			.popTrading .itemLeft .item[data-v-6d896c78]:before {
				content: "";
				display: inline-block;
				width: 6px;
				height: 6px;
				background: #53926d;
				border-radius: 50%;
				margin-right: 13px;
				opacity: 0
			}

			.popTrading .itemLeft .item.sel[data-v-6d896c78] {
				background: #253146;
				color: #dcdde0
			}

			.popTrading .itemLeft .item.sel[data-v-6d896c78]:before {
				opacity: 1
			}

			.popTrading .itemRight[data-v-6d896c78] {
				flex: 1
			}

			.popTrading .itemRight .cont[data-v-6d896c78] {
				overflow: scroll;
				height: calc(100vh - 100px);
				padding: 0 20px 0 18px
			}

			.popTrading .itemRight .item[data-v-6d896c78] {
				display: flex;
				align-items: flex-start;
				justify-content: space-between;
				background: #17243a;
				font-size: 12px;
				border-radius: 10px;
				padding: 10px 10px;
				margin-top: 7px;
				position: relative
			}

			.popTrading .itemRight .item .logo[data-v-6d896c78] {
				width: 27px;
				margin-right: 5px
			}

			.popTrading .itemRight .item .ico[data-v-6d896c78] {
				color: #677690;
				padding-top: 5px
			}

			.popTrading .itemRight .item .ico uni-image[data-v-6d896c78] {
				width: 14px;
				margin-right: 5px
			}

			.popTrading .itemRight .item .info[data-v-6d896c78] {
				flex: 1;
				padding-top: 5px;
				color: #dcdde0
			}

			.popTrading .itemRight .item .info .note[data-v-6d896c78] {
				color: #677690;
				display: flex;
				align-items: center;
				margin: 5px 0
			}

			.popTrading .itemRight .item .info .note uni-text[data-v-6d896c78] {
				font-size: 16px;
				color: #dcdde0;
				margin-left: 5px
			}

			.popTrading .itemRight .item .info .per[data-v-6d896c78] {
				color: #2063fc;
				font-size: 16px
			}

			.popTrading .itemRight .item .link[data-v-6d896c78] {
				height: 26px;
				line-height: 26px;
				color: #dcdde0;
				font-size: 16px;
				background: #2063fc;
				border-radius: 13px;
				padding: 0 19px;
				position: absolute;
				bottom: 14px;
				right: 7px
			}
		

		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.content[data-v-656aab37] {
				padding-bottom: 70px
			}

			.nav[data-v-656aab37] {
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding: 23px 19px
			}

			.nav .ico uni-image[data-v-656aab37] {
				width: 21px
			}

			.nav .logo uni-image[data-v-656aab37] {
				width: 91px
			}

			.nav .msg uni-image[data-v-656aab37] {
				width: 31px
			}

			.info[data-v-656aab37] {
				margin: 0 20px 20px;
				padding: 26px 26px 15px 26px;
				border: 1px solid #38414f;
				background: linear-gradient(148deg, #213242, #0e1b32 99%);
				border-radius: 15px
			}

			.info .progress[data-v-656aab37] {
				margin-bottom: 10px
			}

			.info .progress .silver[data-v-656aab37] {
				font-size: 14px;
				color: #dcdde0
			}

			.info .progress .silver uni-image[data-v-656aab37] {
				width: 12px;
				margin-left: 10px;
				margin-right: 15px
			}

			.info .progress .level[data-v-656aab37] {
				font-size: 12px;
				color: #677690
			}

			.info .progress .level uni-image[data-v-656aab37] {
				width: 6px;
				margin-left: 10px
			}

			.info .people[data-v-656aab37] {
				font-size: 12px;
				color: #dcdde0
			}

			.info .people uni-text[data-v-656aab37] {
				margin-left: 5px
			}

			.info .gold[data-v-656aab37] {
				font-size: 12px;
				color: #677690
			}

			.info .gold uni-image[data-v-656aab37] {
				width: 11px;
				margin: 0 10px
			}

			.info .line[data-v-656aab37] {
				border-bottom: 1px solid #2e3e59;
				margin: 15px 0
			}

			.info .details[data-v-656aab37] {
				font-size: 12px;
				color: #677690
			}

			.info .details uni-text[data-v-656aab37] {
				font-size: 19px;
				color: #dcdde0;
				margin: 4px 0;
				display: block
			}

			.info .details uni-image[data-v-656aab37] {
				width: 6px;
				margin-left: 8px
			}

			.info .details .eye uni-image[data-v-656aab37] {
				width: 15px;
				margin: 0
			}

			.invite_num[data-v-656aab37] {
				margin: 20px
			}

			.invite_num .item[data-v-656aab37] {
				background: #17253a;
				flex: 1;
				margin-right: 10px;
				text-align: center;
				border-radius: 10px;
				font-size: 11px;
				color: #677690;
				padding: 15px 0 10px 0
			}

			.invite_num .item uni-view[data-v-656aab37] {
				margin-top: 3px
			}

			.invite_num .item[data-v-656aab37]:last-child {
				margin-right: 0
			}

			.invite_num .blue[data-v-656aab37] {
				color: #2063fc
			}

			.invite_num .green[data-v-656aab37] {
				color: #53926d
			}

			.invite_num .red[data-v-656aab37] {
				color: #c16565
			}

			.list[data-v-656aab37] {
				margin: 20px 25px
			}

			.list .item[data-v-656aab37] {
				border-bottom: 1px solid #2e3e59;
				padding: 10px 0;
				margin-bottom: 10px;
				font-size: 12px;
				color: #dcdde0
			}

			.list .item .arrow[data-v-656aab37] {
				color: #677690
			}

			.list .item .arrow[data-v-656aab37]::after {
				content: "";
				display: inline-block;
				width: 6px;
				height: 9px;
				background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAoCAMAAADT08pnAAAAAXNSR0IArs4c6QAAAMlQTFRFAAAAAAAAAAD/AH9/VVVVQH9/ZmZmVX9/ZXaQZ3SOZ3SRZ3eRZnaPZXSOaHSRZ3aPZXWQZ3aPZ3SQZnaOZnaRZXWPaHWPaHiPZ3aOZ3aRZXWPZ3aOZ3aQZnaRZnSRZnaRZ3WQZnSPZnaRZnaPZ3eQZ3WQZnWQZnWPZneQZnaPZ3aQZ3WPZ3ePZnaQZ3WPZ3eRZnaPZnWRZ3WQZnaPZ3aRZ3WQZ3eQZnaQZ3aQZnaQZ3aQZ3WQZ3aPZ3aQZ3WQZ3aQZnWQZ3aQZ3aQCmtQ6gAAAEJ0Uk5TAAEBAgMEBQZOT09PUFFRUlNUXF9fYGBgYWFiY2N7fX1+f3+AgYOFiY6Pj5CQkZSUmZ2hoqmurrH4+fn6+/v8/f7+jHezvQAAAN9JREFUKM+lk0cOAjEMRU3vMPTee++dAOP7H4oFNlI8yQov34udb0UBAIDgJgmmCm7xGTVw3x4RlcHsEBFRxSUv4beujjRL92suGWlW1HNJSTMjoxJC+Ods5D6+n3Fs025padacIOvpodTXpG3aPSYTTG0JAhPu8aRekHl4EvA+D88rjHmaFE0Sb8FbxN28zgfMazpv85yizvvEX+J8h/izIvibeFnnIz5fN9/7qprvRZGny/ltOQs6H9KjKpG/RzlVQ+c5y74QOhvzAED4iIiYM3ypyAndkvETRg5V+L8+E2ZMA9WbAb0AAAAASUVORK5CYII=) 50% no-repeat;
				background-size: cover;
				margin-left: 8px
			}

			.list .item .num_bg[data-v-656aab37] {
				width: 26px;
				height: 26px;
				background: #d17f7f;
				border-radius: 7px;
				font-style: italic;
				color: #dcdde0
			}

			.list .item .num_bg[data-v-656aab37]:nth-child(2) {
				background: #87c89f
			}

			.list .item .num_bg[data-v-656aab37]:nth-child(3) {
				background: #7989a9
			}

			.Btn[data-v-656aab37] {
				margin: 20px;
				height: 47px;
				background: #276af5;
				border-radius: 23px;
				font-size: 12px;
				color: #dcdde0
			}
		
	
		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.loading[data-v-4a1a1211] {
				text-align: center;
				background: url(/static/img/success.75fe795e.png) -5px 125px no-repeat;
				background-size: 100% auto
			}

			.loading .logo[data-v-4a1a1211] {
				margin-top: 78px;
				font-size: 30px
			}

			.loading .logo uni-image[data-v-4a1a1211] {
				width: 152px
			}

			.loading .member[data-v-4a1a1211] {
				margin-top: 31px;
				margin-bottom: 63px;
				font-size: 14px;
				color: #2063fc
			}

			.loading .note[data-v-4a1a1211] {
				color: #677690;
				font-size: 14px
			}

			.loading .note uni-text[data-v-4a1a1211] {
				font-size: 12px;
				color: #677690;
				display: inline-block;
				margin-top: 15px
			}

			.loading .Btn[data-v-4a1a1211] {
				margin-top: 30px;
				padding: 0 78px;
				font-size: 14px
			}

			.loading .Btn .link1[data-v-4a1a1211] {
				height: 42px;
				background: #2063fc;
				border-radius: 21px;
				margin-bottom: 20px
			}

			.loading .Btn .link2[data-v-4a1a1211] {
				color: #2063fc
			}
		
	
		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			/* page{overflow: hidden;} */
			.login[data-v-19d663f5] {
				position: relative
			}

			.login .bg[data-v-19d663f5] {
				width: 100%;
				position: absolute;
				top: 0;
				left: 0
			}

			.login .topTitle[data-v-19d663f5] {
				font-size: 12px;
				color: #677690;
				position: relative;
				text-align: center;
				padding: 24px 24px 0 14px
			}

			.login .topTitle uni-text[data-v-19d663f5] {
				font-size: 31px;
				color: #fff;
				display: block
			}

			.login .topTitle uni-image[data-v-19d663f5] {
				width: 33px
			}

			.login .logo[data-v-19d663f5] {
				text-align: center;
				font-size: 31px;
				color: #fff;
				position: relative;
				line-height: 20px
			}

			.login .logo uni-image[data-v-19d663f5] {
				width: 115px
			}

			.login .itemBox[data-v-19d663f5] {
				margin: 10px 23px;
				color: #2769f5;
				font-size: 12px;
				position: relative
			}

			.login .itemBox .item[data-v-19d663f5] {
				margin-bottom: 15px
			}

			.login .itemBox .Input[data-v-19d663f5] {
				height: 42px;
				background: linear-gradient(90deg, #203241, #17243a);
				border-radius: 21px;
				padding: 0 15px
			}

			.login .itemBox .Input uni-image[data-v-19d663f5] {
				width: 26px;
				margin-right: 5px
			}

			.login .itemBox .Input uni-text[data-v-19d663f5] {
				color: #677690
			}

			.login .itemBox .Input uni-text[data-v-19d663f5]:after {
				content: "";
				display: inline-block;
				background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAcCAMAAAAtIK2eAAAAAXNSR0IArs4c6QAAAWVQTFRFAAAAVX9/an+VYnaJW22SZneIYHCPWmmHaXiHaXiWY3GOXmuGXnmGZnOMYW2SYXmSaHSLZG+QYHWKZnCPYnaJZHaSZHSLZ3OSZXeOZHOMZHORZHiRY3aOZ3SPZXKNZXeRZneQZ3eQZXWOaHiPZnaRZ3aRZXSOZnWOZnWSZXOPZ3WRZXWQZ3eOZXaQZ3aSZXWQZnWQZXSOZ3WPZXaPaHaPZ3SQZXWPZ3aOaHeQZ3aOZnaQZ3WRZ3ePZnaQZnWQZnaQZnWPZnWPZ3aQZnaQZ3aQZ3WPZ3aQZnaQaHaQZ3aQZnWQZ3aPZnWQZ3aPZ3aQZ3aQZ3aQZ3aPZnWQZ3aPZ3WQZ3aQZnaQZ3aPZ3aQZnaPZnaQZ3aQZ3aPZ3WQZnaQZ3aQZnWQZ3aPZ3aQZ3WQZnaPZ3aQZ3aQZnaQZ3aQZ3aQZ3aQZ3aRZ3WQZ3aQZ3aQZ3WQZ3aQZ3aQZ3WQZ3aQZ3aPZnWQZ3aQmc7VXgAAAHZ0Uk5TAAYMDQ4PEBERERITExQVFRYXGBkaHCEqKzMzMzY5Ojo8Pj9AQUNERkZJSkxNTlJTVVZZW1tcYmNlaGxvcnOYtrvAwcPDxMTFxcbIycrLy83O0NHS09TW2NjZ29zd4uXs7/Dw8fLy8/T19vf3+Pj5+vr7/Pz9/m9aDqUAAAEzSURBVBgZlcEHN0IBGAbgF0UhWdmZWdl7y56XZG8ibsOIeH+/q6/TqdyG58H/1B66rMjCtrRfB03NLekuQka2S/KmCsAZNW4LMrBdUbOSBzDKbUFatmtGLQIUHivSqL6g2AKeKA5M0FV+TnHfADR7KRQTdFQcU9w1QeNQKTYK8UfFEYXPjqg2H4VSghSVJxQPLYjp8lMoZiQpO6XwdyLO4afYK0YCi4fC244EzhDFWj7ijArFYyuSOAMUa0bEFO9S3NuRYuiVYtmIKPM2herAHwMhik0zNKUKhdoBHSPvFFsFgGGHItgHXUMfFKsGwzrFcw/SGP+kcLkoAr1IayLCJGo3Mpj6ZIJgPzKajDDuxYkspr8ZEx5GVjMUb4PIwSx/hceQkzmSX6PI0Ty5gJw11kPXD2IwpvvC9E+WAAAAAElFTkSuQmCC) 50% no-repeat;
				background-size: 11px 7px;
				width: 11px;
				height: 7px;
				margin-left: 5px;
				margin-right: 10px
			}

			.login .itemBox .Input uni-input[data-v-19d663f5] {
				font-size: 14px;
				color: #fff
			}

			.login .itemBox .Input .icon[data-v-19d663f5] {
				margin-right: 10px;
				margin-left: 5px
			}

			.login .itemBox .Btn[data-v-19d663f5] {
				text-align: center;
				font-size: 14px;
				color: #fff
			}

			.login .itemBox .Btn .link1[data-v-19d663f5] {
				height: 42px;
				opacity: .5;
				background: #2063fc;
				border-radius: 21px;
				margin-bottom: 24px
			}

			.login .itemBox .Btn .link1.sel[data-v-19d663f5] {
				opacity: 1
			}
		
		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		
		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		
		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		

		
			.uni-app--showtabbar uni-page-wrapper {
				display: block;
				height: calc(100% - 50px);
				height: calc(100% - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 50px - env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-wrapper::after {
				content: "";
				display: block;
				width: 100%;
				height: 50px;
				height: calc(50px + constant(safe-area-inset-bottom));
				height: calc(50px + env(safe-area-inset-bottom));
			}

			.uni-app--showtabbar uni-page-head[uni-page-head-type="default"]~uni-page-wrapper {
				height: calc(100% - 44px - 50px);
				height: calc(100% - 44px - constant(safe-area-inset-top) - 50px - constant(safe-area-inset-bottom));
				height: calc(100% - 44px - env(safe-area-inset-top) - 50px - env(safe-area-inset-bottom));
			}
		
		
			@charset "UTF-8";

			/**
 * 这里是uni-app内置的常用样式变量
 *
 * uni-app 官方扩展插件及插件市场（https://ext.dcloud.net.cn）上很多三方插件均使用了这些样式变量
 * 如果你是插件开发者，建议你使用scss预处理，并在插件代码中直接使用这些变量（无需 import 这个文件），方便用户通过搭积木的方式开发整体风格一致的App
 *
 */
			/**
 * 如果你是App开发者（插件使用者），你可以通过修改这些变量来定制自己的插件主题，实现自定义主题功能
 *
 * 如果你的项目同样使用了scss预处理，你也可以直接在你的 scss 代码中使用如下变量，同时无需 import 这个文件
 */
			/* 颜色变量 */
			/* 行为相关颜色 */
			/* 文字基本颜色 */
			/* 背景颜色 */
			/* 边框颜色 */
			/* 尺寸变量 */
			/* 文字尺寸 */
			/* 图片尺寸 */
			/* Border Radius */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.nav[data-v-3fc31996] {
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding: 23px 19px
			}

			.nav .ico uni-image[data-v-3fc31996] {
				width: 21px
			}

			.nav .logo uni-image[data-v-3fc31996] {
				width: 91px
			}

			.nav .robot uni-image[data-v-3fc31996] {
				width: 15px
			}

			.topTitle[data-v-3fc31996] {
				margin: 90px 28px 0;
				font-size: 19px;
				color: #dcdde0
			}

			.topTitle uni-text[data-v-3fc31996] {
				font-size: 12px;
				color: #677690;
				margin-top: 10px
			}

			.itemBox[data-v-3fc31996] {
				padding: 21px 26px
			}

			.itemBox .addRobot[data-v-3fc31996] {
				padding: 23px 15px;
				background: #18253b;
				border-radius: 10px;
				display: flex;
				align-items: center;
				justify-content: space-between
			}

			.itemBox .addRobot .name[data-v-3fc31996] {
				display: flex;
				align-items: center;
				font-size: 14px;
				color: #dcdde0
			}

			.itemBox .addRobot .name uni-image[data-v-3fc31996] {
				width: 47px;
				margin-right: 10px
			}

			.itemBox .addRobot .name uni-text[data-v-3fc31996] {
				display: block;
				font-size: 12px;
				color: #677690
			}

			.itemBox .addRobot .link[data-v-3fc31996] {
				font-size: 13px;
				color: #dcdde0;
				background: #2063fc;
				border-radius: 15px;
				padding: 5px 10px
			}
		
		