	
			/*每个页面公共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: 35px 35px 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 */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.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 */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.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: 40px;
				height: 40px;
				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 */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.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: 50px;
				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: 98px;
				background: #17243a
			}

			.popTrading .itemLeft .item[data-v-7de2126a] {
				height: 43px;
				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: 26px;
				height: 26px;
				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: 25px;
				line-height: 25px;
				color: #dcdde0;
				font-size: 16px;
				background: #2063fc;
				border-radius: 12px;
				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: 50px;
				text-align: right;
				padding-right: 22px
			}

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

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

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

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

			.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: 40px 0 10px 0;
				padding-top: 23px;
				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: 50px;
				text-align: right;
				padding-right: 22px
			}

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

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

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

			.popLeftNav .itemBox .info .head[data-v-32dda91f] {
				width: 55px;
				height: 55px;
				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: 37px;
				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: 27px
			}

			.popNotice .Btn[data-v-11bc1c19] {
				border-top: 1px solid #1a2d4c;
				margin: 40px 0 10px 0;
				padding-top: 23px;
				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 35px 35px;
				padding-bottom: 85px
			}

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

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

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

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

			.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: 24px;
				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: 20px;
				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: 18px;
				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: 17px 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: 42px;
				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: 29px 17px 17px 17px
			}

			.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: 22px 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: 22px;
				padding: 12px 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: 50px;
				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: 98px;
				background: #17243a
			}

			.popTrading .itemLeft .item[data-v-6d896c78] {
				height: 43px;
				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: 26px;
				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: 25px;
				line-height: 25px;
				color: #dcdde0;
				font-size: 16px;
				background: #2063fc;
				border-radius: 12px;
				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 */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.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: 25px;
				left: 16px
			}

			.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 */
			/* 水平间距 */
			/* 垂直间距 */
			/* 透明度 */
			/* 文章场景相关 */
			.itemBox[data-v-d9ed0528] {
				padding: 75px 26px 0 26px
			}

			.itemBox .item[data-v-d9ed0528] {
				height: 50px;
				border-bottom: 1px solid hsla(0, 0%, 100%, .1);
				font-size: 12px
			}

			.itemBox .item .name[data-v-d9ed0528]:before {
				content: "";
				display: inline-block;
				width: 6px;
				height: 6px;
				border-radius: 50%;
				margin-right: 12px
			}

			.itemBox .item:nth-child(odd) .name[data-v-d9ed0528]:before {
				background-color: #2769f5
			}

			.itemBox .item:nth-child(even) .name[data-v-d9ed0528]:before {
				background-color: #b95959
			}

			.itemBox .item:nth-child(3n) .name[data-v-d9ed0528]:before {
				background-color: #60aa78
			}

			.itemBox .item[data-v-d9ed0528]: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
			}
		