/* Eui V3.0 开箱即用的后台UI框架 / GITHUB：https://github.com/suruibuas/eui */
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes rotate {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.rotate {
	-webkit-animation: rotate 1s linear infinite;
	animation: rotate 1s linear infinite
}

.rotate-0 {
	-webkit-transform: rotate(0);
	transform: rotate(0)
}

.rotate-90 {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.rotate-180 {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.rotate-0,
.rotate-180,
.rotate-90 {
	-webkit-transition: .25s linear;
	transition: .25s linear
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale(.1, .1);
		transform: scale(.1, .1)
	}

	to {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale(.1, .1);
		transform: scale(.1, .1)
	}

	to {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}
}

@-webkit-keyframes zoomOut {
	from {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}

	to {
		-webkit-transform: scale(.8, .8);
		transform: scale(.8, .8);
		opacity: 0
	}
}

@keyframes zoomOut {
	from {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 1
	}

	to {
		-webkit-transform: scale(.8, .8);
		transform: scale(.8, .8);
		opacity: 0
	}
}

.zoomIn {
	-webkit-animation: zoomIn .25s ease;
	animation: zoomIn .25s ease
}

.zoomOut {
	-webkit-animation: zoomOut .25s ease;
	animation: zoomOut .25s ease;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes fadeOutUp {
	from {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	to {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	to {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px)
	}
}

.fadeInUp {
	-webkit-animation: fadeInUp .25s ease;
	animation: fadeInUp .25s ease
}

.fadeOutUp {
	-webkit-animation: fadeOutUp .25s ease;
	animation: fadeOutUp .25s ease;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@-webkit-keyframes fadeOutRight {
	from {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes fadeOutRight {
	from {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.fadeInRight {
	-webkit-animation: fadeInRight .25s ease;
	animation: fadeInRight .25s ease
}

.fadeOutRight {
	-webkit-animation: fadeOutRight .25s ease;
	animation: fadeOutRight .25s ease;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.fadeIn {
	-webkit-animation: fadeIn .25s ease;
	animation: fadeIn .25s ease
}

.fadeOut {
	-webkit-animation: fadeOut .25s ease;
	animation: fadeOut .25s ease;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

@-webkit-keyframes tmask {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes tmask {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.tmask {
	-webkit-animation: tmask .8s ease;
	animation: tmask .8s ease;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.block-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -8px
}

.block-box .block {
	box-shadow: 0 0 10px 0 #090a0b;
	background: #1d1f25;
	padding: 16px;
	position: relative;
	border-radius: 8px
}

.block-box .text-group {
	cursor: default;
	line-height: 1.5
}

.block-box .text-group h6 {
	color: #8c95b0
}

.block-box .text-group p {
	margin-bottom: 8px
}

.block-box .text-group em {
	margin: 0 8px
}

.block-box .text-group:not(:last-child) {
	margin-bottom: 16px
}

.block-box .pic-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -4px -4px -4px
}

.block-box .pic-group .pic-box {
	max-width: 33.33333333%;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 33.33333333%;
	flex: 0 1 33.33333333%;
	padding: 4px
}

.block-box .pic-group img {
	width: 100%;
	height: 140px;
	-o-object-fit: cover;
	object-fit: cover
}

.block-box .card-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.block-box .card-group .card-info {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1
}

.block-box .card-group .card-info .num-or-price {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 8px 0 4px 0;
	font-size: 24px;
	font-weight: 700
}

.block-box .card-group .card-info .num-or-price .down,
.block-box .card-group .card-info .num-or-price .up {
	font-size: 14px;
	font-weight: 400;
	margin-left: 10px;
	padding: 2px 4px;
	border-radius: 8px
}

.block-box .card-data {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -8px -8px -8px
}

.block-box .card-data>div>div {
	padding: 10px;
	background: #282c38;
	border-radius: 8px
}

.block-box .card-data>div>div .tips {
	margin-top: 0
}

.block-box .card-data>div>div .num {
	display: inline-block;
	margin-top: 16px;
	font-size: 20px;
	font-weight: 700;
	border-left-width: 4px;
	border-left-style: solid;
	padding-left: 10px;
	color: #fff !important;
	border-radius: 4px
}

.block-box .card-data>div>div .color-blue {
	border-left-color: #3767f8
}

.block-box .card-data>div>div .color-red {
	border-left-color: #e33568
}

.block-box .card-data>div>div .color-green {
	border-left-color: #6ec34f
}

.block-box .card-data>div>div .color-yellow {
	border-left-color: #ffc126
}

.block-box .card-data>div>div .color-purple {
	border-left-color: #8548ff
}

.block-box .card-data>div>div .color-pink {
	border-left-color: #fc3ca9
}

.block-box .card-data>div>div .color-cyan {
	border-left-color: #00ccea
}

.block-box .card-data>div>div .color-orange {
	border-left-color: #ff6746
}

.block-box .card-list {
	margin-top: 22px
}

.block-box .card-list>div {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: 40px;
	margin-bottom: 20px
}

.block-box .card-list>div:last-child {
	margin-bottom: 0
}

.block-box .card-list>div .icon {
	margin-right: 10px
}

.block-box .card-list>div .icon img {
	border-radius: 50px;
	width: 40px;
	height: 40px
}

.block-box .card-list>div .info {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	height: 100%
}

.block-box .card-list>div .info .tips {
	margin-top: 0
}

.block-box .tmp-loading {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	color: #8c95b0;
	font-size: 16px
}

.block-box .tmp-loading i {
	font-size: 20px
}

.drop-popup {
	box-shadow: 0 0 10px 0 #090a0b;
	border-radius: 8px;
	position: absolute;
	border: 2px #373d4d solid;
	background: #282c38;
	z-index: 9997;
	display: none;
	outline: 0
}

.drop-popup ul {
	padding: 4px;
	max-height: 245px
}

.drop-popup ul li:not(.divided) {
	border-radius: 8px;
	padding: 0 8px;
	cursor: pointer;
	height: 30px;
	line-height: 30px;
	color: #fff;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.drop-popup ul li:not(.divided):not(:first-child) {
	margin-top: 4px
}

.drop-popup ul li:not(.divided):not(.disabled):hover {
	background: #3d4356
}

.drop-popup ul li:not(.divided):not(.disabled):hover .checkbox-checked i {
	color: #935af0
}

.drop-popup ul .active {
	background: #3d4356
}

.drop-popup .disabled {
	color: #7c86a1 !important;
	cursor: not-allowed !important
}

.drop-popup .note {
	text-align: right;
	color: #8c95b0;
	border-top: 1px dashed #373d4d;
	height: 30px;
	line-height: 30px;
	padding-right: 10px
}

.quote {
	box-shadow: 0 0 10px 0 #090a0b;
	border-radius: 8px;
	margin: 20px 0;
	padding: 10px;
	line-height: 25px;
	background: #1d1f25
}

.quote i {
	font-size: 22px
}

.quote-info {
	border-left: 4px solid #00ccea;
	color: #00ccea
}

.quote-info i {
	color: #00ccea
}

.quote-error {
	border-left: 4px solid #e33568;
	color: #e33568
}

.quote-error i {
	color: #e33568
}

.quote-success {
	border-left: 4px solid #6ec34f;
	color: #6ec34f
}

.quote-success i {
	color: #6ec34f
}

.eui-light .block-box .block {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background: #fff
}

.eui-light .block-box .card-data>div>div {
	background: #f2f4fa
}

.eui-light .block-box .card-data>div>div .tips {
	color: #6e799b
}

.eui-light .block-box .card-data>div>div .num {
	color: #061e26 !important
}

.eui-light .drop-popup {
	box-shadow: 0 0 8px 0 rgba(0, 64, 128, .2);
	border-color: #e2e6eb;
	background: #fff
}

.eui-light .drop-popup ul li:not(.divided) {
	color: #061e26
}

.eui-light .drop-popup ul li:not(.divided):not(.disabled):hover {
	background: #f2f4fa
}

.eui-light .drop-popup ul .active {
	background: #f2f4fa
}

.eui-light .drop-popup .disabled {
	color: #bbb !important
}

.eui-light .drop-popup .note {
	color: #898d99;
	border-top-color: #e2e6eb
}

.eui-light .quote {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background: #fff
}

.eui-light .quote-info {
	border-left-color: #00a0b7;
	color: #00a0b7
}

.eui-light .quote-info i {
	color: #00a0b7
}

.color-blue {
	color: #3767f8 !important
}

.color-red {
	color: #e33568 !important
}

.color-green {
	color: #6ec34f !important
}

.color-yellow {
	color: #ffc126 !important
}

.color-purple {
	color: #8548ff !important
}

.color-pink {
	color: #fc3ca9 !important
}

.color-cyan {
	color: #00ccea !important
}

.color-orange {
	color: #ff6746 !important
}

.color-grey {
	color: #8c95b0 !important
}

.color-black {
	color: #000 !important
}

.color-white {
	color: #fff !important
}

.color-bg-blue {
	background-color: #3767f8 !important
}

.color-bg-red {
	background-color: #e33568 !important
}

.color-bg-green {
	background-color: #6ec34f !important
}

.color-bg-yellow {
	background-color: #ffc126 !important
}

.color-bg-purple {
	background-color: #8548ff !important
}

.color-bg-pink {
	background-color: #fc3ca9 !important
}

.color-bg-cyan {
	background-color: #00ccea !important
}

.color-bg-orange {
	background-color: #ff6746 !important
}

.color-bg-grey {
	background-color: #8c95b0 !important
}

.color-tag-blue {
	color: #819ffb !important;
	background-color: rgba(36, 108, 249, .2) !important
}

.color-tag-red {
	color: #e96289 !important;
	background-color: rgba(250, 34, 86, .2) !important
}

.color-tag-green {
	color: #8dd075 !important;
	background-color: rgba(79, 232, 62, .2) !important
}

.color-tag-yellow {
	color: #ffd059 !important;
	background-color: rgba(255, 222, 10, .2) !important
}

.color-tag-purple {
	color: #a77bff !important;
	background-color: rgba(133, 72, 255, .2) !important
}

.color-tag-pink {
	color: #fd6ebf !important;
	background-color: rgba(252, 60, 169, .2) !important
}

.color-tag-cyan {
	color: #1ee2ff !important;
	background-color: rgba(0, 213, 243, .2) !important
}

.color-tag-orange {
	color: #ff9179 !important;
	background-color: rgba(253, 115, 30, .2) !important
}

.color-tag-grey {
	color: #aab1c5 !important;
	background-color: rgba(136, 145, 171, .2) !important
}

.color-linear-blue {
	background-image: -webkit-linear-gradient(left, #819ffb, #3767f8) !important;
	background-image: linear-gradient(to right, #819ffb, #3767f8) !important
}

.color-linear-red {
	background-image: -webkit-linear-gradient(left, #ec789a, #e33568) !important;
	background-image: linear-gradient(to right, #ec789a, #e33568) !important
}

.color-linear-green {
	background-image: -webkit-linear-gradient(left, #7ec962, #56a639) !important;
	background-image: linear-gradient(to right, #7ec962, #56a639) !important
}

.color-linear-yellow {
	background-image: -webkit-linear-gradient(left, #ffc840, #f2ad00) !important;
	background-image: linear-gradient(to right, #ffc840, #f2ad00) !important
}

.color-linear-purple {
	background-image: -webkit-linear-gradient(left, #b895ff, #8548ff) !important;
	background-image: linear-gradient(to right, #b895ff, #8548ff) !important
}

.color-linear-pink {
	background-image: -webkit-linear-gradient(left, #fd87ca, #fc3ca9) !important;
	background-image: linear-gradient(to right, #fd87ca, #fc3ca9) !important
}

.color-linear-cyan {
	background-image: -webkit-linear-gradient(left, #04dfff, #00a0b7) !important;
	background-image: linear-gradient(to right, #04dfff, #00a0b7) !important
}

.color-linear-orange {
	background-image: -webkit-linear-gradient(left, #ffa693, #ff6746) !important;
	background-image: linear-gradient(to right, #ffa693, #ff6746) !important
}

.color-linear-grey {
	background-image: -webkit-linear-gradient(left, #b9bfcf, #8c95b0) !important;
	background-image: linear-gradient(to right, #b9bfcf, #8c95b0) !important
}

.eui-light .color-tag-blue {
	color: #0943f3 !important
}

.eui-light .color-tag-red {
	color: #c91c4f !important
}

.eui-light .color-tag-green {
	color: #4c9332 !important
}

.eui-light .color-tag-yellow {
	color: #bf8800 !important
}

.eui-light .color-tag-purple {
	color: #6315ff !important
}

.eui-light .color-tag-pink {
	color: #fb0a93 !important
}

.eui-light .color-tag-cyan {
	color: #00a0b7 !important
}

.eui-light .color-tag-orange {
	color: #ff3d13 !important
}

.eui-light .color-tag-grey {
	color: #6e799b !important
}

.eui-light .color-linear-green {
	background-image: -webkit-linear-gradient(left, #9dd688, #6ec34f) !important;
	background-image: linear-gradient(to right, #9dd688, #6ec34f) !important
}

.eui-light .color-linear-yellow {
	background-image: -webkit-linear-gradient(left, #ffd772, #ffc126) !important;
	background-image: linear-gradient(to right, #ffd772, #ffc126) !important
}

.eui-light .color-linear-cyan {
	background-image: -webkit-linear-gradient(left, #37e5ff, #00ccea) !important;
	background-image: linear-gradient(to right, #37e5ff, #00ccea) !important
}

#resource {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 30px;
	line-height: 30px;
	width: 300px;
	text-align: center;
	margin: -15px 0 0 -150px;
	font-size: 16px
}

#resource i {
	font-size: 20px
}

#error-default-img {
	width: 0;
	height: 0
}

#mask {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
	text-align: center;
	display: none;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	cursor: pointer
}

.fuzzy {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}

#transition-mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	z-index: 99999
}

#loading-progress {
	background-image: -webkit-linear-gradient(left, #a371f2, #2196F3) !important;
	background-image: linear-gradient(to right, #a371f2, #2196F3) !important;
	height: 4px;
	background-color: #2196F3;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0
}

.eui-audit,
.eui-update {
	padding-left: 16px;
	position: relative;
	margin-left: 10px
}

.eui-audit:not(:last-child),
.eui-update:not(:last-child) {
	padding-bottom: 30px
}

.eui-audit h2,
.eui-audit h4,
.eui-update h2,
.eui-update h4 {
	margin-bottom: 10px
}

.eui-audit li,
.eui-update li {
	list-style: decimal-leading-zero inside;
	height: 26px;
	line-height: 26px
}

.eui-audit .line,
.eui-update .line {
	position: absolute;
	width: 2px;
	height: 100%;
	background: #373d4d;
	left: -5px;
	top: 8px;
	z-index: 0
}

.eui-audit .point,
.eui-update .point {
	position: absolute;
	border-radius: 50px;
	z-index: 1
}

.eui-audit .content,
.eui-update .content {
	margin: 10px 0;
	line-height: 1.5
}

.eui-update .point {
	top: 6px;
	left: -10px;
	width: 12px;
	height: 12px;
	background: #2196F3
}

.eui-audit {
	margin-left: 14px
}

.eui-audit:not(:last-child) {
	padding-bottom: 20px
}

.eui-audit .point {
	top: 3px;
	left: -14px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center
}

.eui-audit hr {
	margin-top: 20px;
	margin-bottom: 0
}

.page-error {
	height: 100%;
	margin: 0 !important
}

.page-error .block {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column
}

.page-error .block img {
	width: 400px;
	margin-bottom: 30px
}

.page-error .block h2 {
	color: #8c95b0
}

.center-btn {
	text-align: center
}

.center-btn i {
	cursor: pointer;
	font-size: 30px;
	margin: 0 4px
}

.not-allow-notice {
	height: 400px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column
}

.not-allow-notice h4 {
	display: block;
	color: #8c95b0;
	margin-bottom: 0
}

.not-allow-notice img {
	width: 280px;
	margin-bottom: 20px
}

.dn {
	display: none
}

.p0 {
	padding: 0 !important
}

.pt0 {
	padding-top: 0 !important
}

.pr0 {
	padding-right: 0 !important
}

.pb0 {
	padding-bottom: 0 !important
}

.pl0 {
	padding-left: 0 !important
}

.p10 {
	padding: 8px !important
}

.pt10 {
	padding-top: 8px !important
}

.pr10 {
	padding-right: 8px !important
}

.pb10 {
	padding-bottom: 8px !important
}

.pl10 {
	padding-left: 8px !important
}

.p20 {
	padding: 16px !important
}

.pt20 {
	padding-top: 16px !important
}

.pr20 {
	padding-right: 16px !important
}

.pb20 {
	padding-bottom: 16px !important
}

.pl20 {
	padding-left: 16px !important
}

.p30 {
	padding: 24px !important
}

.pt30 {
	padding-top: 24px !important
}

.pr30 {
	padding-right: 24px !important
}

.pb30 {
	padding-bottom: 24px !important
}

.pl30 {
	padding-left: 24px !important
}

.m0 {
	margin: 0 !important
}

.mt0 {
	margin-top: 0 !important
}

.mr0 {
	margin-right: 0 !important
}

.mb0 {
	margin-bottom: 0 !important
}

.ml0 {
	margin-left: 0 !important
}

.m10 {
	margin: 8px !important
}

.mt10 {
	margin-top: 8px !important
}

.mr10 {
	margin-right: 8px !important
}

.mb10 {
	margin-bottom: 8px !important
}

.ml10 {
	margin-left: 8px !important
}

.m20 {
	margin: 16px !important
}

.mt20 {
	margin-top: 16px !important
}

.mr20 {
	margin-right: 16px !important
}

.mb20 {
	margin-bottom: 16px !important
}

.ml20 {
	margin-left: 16px !important
}

.m30 {
	margin: 24px !important
}

.mt30 {
	margin-top: 24px !important
}

.mr30 {
	margin-right: 24px !important
}

.mb30 {
	margin-bottom: 24px !important
}

.ml30 {
	margin-left: 24px !important
}

.ma {
	margin: auto
}

.eui-light #mask {
	background: rgba(0, 0, 0, .3)
}

.eui {
	display: none;
	padding: 16px 0;
	height: 100%
}

.col-panel {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 !important;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: -8px;
	position: relative
}

.col-panel .remove-panel {
	font-size: 20px;
	position: absolute;
	right: 0;
	margin-right: 0;
	cursor: pointer
}

.col-panel .form-group {
	margin-bottom: 0 !important
}

.col-panel .col-1,
.col-panel .col-10,
.col-panel .col-11,
.col-panel .col-12,
.col-panel .col-2,
.col-panel .col-3,
.col-panel .col-4,
.col-panel .col-5,
.col-panel .col-6,
.col-panel .col-7,
.col-panel .col-8,
.col-panel .col-9 {
	padding-bottom: 0
}

.col-panel-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 8px !important
}

.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9 {
	position: relative;
	width: 100%;
	padding: 8px
}

.col-1 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 8.33333333%;
	flex: 0 0 8.33333333%;
	max-width: 8.33333333%
}

.col-2 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 16.66666667%;
	flex: 0 0 16.66666667%;
	max-width: 16.66666667%
}

.col-3 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%
}

.col-4 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 33.33333333%;
	flex: 0 0 33.33333333%;
	max-width: 33.33333333%
}

.col-5 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 41.66666667%;
	flex: 0 0 41.66666667%;
	max-width: 41.66666667%
}

.col-6 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%
}

.col-7 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 58.33333333%;
	flex: 0 0 58.33333333%;
	max-width: 58.33333333%
}

.col-8 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 66.66666667%;
	flex: 0 0 66.66666667%;
	max-width: 66.66666667%
}

.col-9 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%
}

.col-10 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 83.33333333%;
	flex: 0 0 83.33333333%;
	max-width: 83.33333333%
}

.col-11 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 91.66666667%;
	flex: 0 0 91.66666667%;
	max-width: 91.66666667%
}

.col-12 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%
}

@media screen and (max-width:1200px) {
	.col-1 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 16.66666667%;
		flex: 0 0 16.66666667%;
		max-width: 16.66666667%
	}

	.col-11 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 83.33333333%;
		flex: 0 0 83.33333333%;
		max-width: 83.33333333%
	}
}

@media screen and (max-width:992px) {
	.col-1 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}

	.col-2,
	.col-3,
	.col-4 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 33.33333333%;
		flex: 0 0 33.33333333%;
		max-width: 33.33333333%
	}

	.col-5,
	.col-6,
	.col-7 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}

	.col-10,
	.col-8,
	.col-9 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 66.66666667%;
		flex: 0 0 66.66666667%;
		max-width: 66.66666667%
	}

	.col-11 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
}

@media screen and (max-width:768px) {

	.col-1,
	.col-10,
	.col-11,
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6,
	.col-7,
	.col-8,
	.col-9 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}
}

@media screen and (max-width:576px) {

	.col-1,
	.col-10,
	.col-11,
	.col-12,
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6,
	.col-7,
	.col-8,
	.col-9 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
}

.eui-login {
	box-shadow: 0 0 10px 0 #090a0b;
	display: none;
	border-radius: 8px;
	width: 700px;
	min-height: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -200px 0 0 -350px;
	background: #1d1f25
}

.eui-login .ad {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 50%;
	flex: 0 1 50%;
	padding: 20px;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.eui-login .ad img {
	width: 100%
}

.eui-login .ad .title {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	font-size: 24px;
	margin-bottom: 20px
}

.eui-login .ad .title img {
	width: 40px;
	height: 40px;
	margin-right: 10px
}

.eui-login .ad .slogan {
	color: #8c95b0;
	margin-bottom: 20px
}

.eui-login .form {
	padding: 40px;
	background-color: #262930;
	border-radius: 0 8px 8px 0;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 50%;
	flex: 0 1 50%;
	box-shadow: 5px 0 20px 0 #090a0b;
	position: relative
}

.eui-login .form .login .other {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin-top: 16px;
	text-align: right
}

.eui-login .form .login .other i {
	font-size: 24px;
	margin-left: 12px;
	margin-right: 0;
	cursor: pointer
}

.eui-login .form .login .other a:last-child {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1
}

.eui-login .form .reg {
	display: none
}

.eui-login .form .reg .form-group button {
	position: absolute;
	top: 6px;
	right: 0
}

.eui-login .form .form-group {
	margin-bottom: 12px
}

.eui-login .form .form-group label {
	height: inherit
}

.eui-login .form .login-panel-switch,
.eui-login .form .login-refresh {
	cursor: pointer;
	border-radius: 0 8px 0 50px;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 0;
	top: 0;
	background: #2196F3
}

.eui-login .form .login-panel-switch i,
.eui-login .form .login-refresh i {
	font-size: 20px;
	position: absolute;
	margin-right: 0;
	top: 6px;
	right: 7px
}

.eui-light .eui-login {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background: #fff
}

.eui-light .eui-login .form {
	background: #fff;
	box-shadow: 0 0 20px 0 #e0e6f4
}

.eui-light .eui-login .form .login-panel-switch i,
.eui-light .eui-login .form .login-refresh i {
	color: #fff
}

#container {
	padding: 0 16px 0 16px;
	position: relative;
	margin-top: 16px
}

.main {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1
}

.main .top {
	box-shadow: 0 0 10px 0 #090a0b;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	height: 70px;
	background: #1d1f25;
	border-radius: 8px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding: 0 16px;
	margin: 0 16px
}

.main .top .skin i,
.main .top>i {
	color: #8c95b0;
	padding: 8px 10px;
	cursor: pointer;
	background: #282c38;
	border-radius: 8px;
	font-size: 20px;
	margin-right: 14px;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.main .top .skin i:hover,
.main .top>i:hover {
	color: #fff
}

.main .top img {
	-webkit-filter: drop-shadow(0 0 4px #2196F3);
	filter: drop-shadow(0 0 4px #2196F3);
	width: 44px;
	height: 44px;
	margin-left: 20px;
	border-radius: 50px;
	border: 4px #2196F3 solid
}

.main .top .crumbs {
	margin: 0 20px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	color: #8c95b0
}

.main .top .crumbs em {
	margin: 0 12px
}

.main .top .crumbs span {
	color: #fff
}

.main .top .skin {
	margin-right: 30px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex
}

.main .top .skin i {
	margin: 0
}

.main .top .skin i:first-child {
	border-radius: 8px 0 0 8px
}

.main .top .skin i:last-child {
	border-radius: 0 8px 8px 0
}

.main .top .skin .active {
	background: #2196F3;
	color: #fff
}

.main-open {
	padding-left: 80px
}

.eui-light .main .top {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background: #fff
}

.eui-light .main .top .skin i,
.eui-light .main .top>i {
	background: #eef2f9;
	color: #898d99
}

.eui-light .main .top .skin i:not(.active):hover,
.eui-light .main .top>i:not(.active):hover {
	color: #061e26
}

.eui-light .main .top img {
	-webkit-filter: drop-shadow(0 0 2px #2196F3);
	filter: drop-shadow(0 0 2px #2196F3)
}

.eui-light .main .top .crumbs span {
	color: #061e26
}

.eui-light .main .top .skin .active {
	background: #2196F3;
	color: #fff
}

.menu {
	box-shadow: 0 0 10px 0 #090a0b;
	background: #1d1f25;
	border-radius: 0 8px 8px 0;
	-webkit-transition: -webkit-flex-basis .25s ease, -webkit-flex-basis .25s ease;
	transition: -webkit-flex-basis .25s ease, -webkit-flex-basis .25s ease;
	transition: flex-basis .25s ease;
	transition: flex-basis .25s ease, -webkit-flex-basis .25s ease, -webkit-flex-basis .25s ease;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 200px;
	flex: 0 0 200px
}

.menu .logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: 70px;
	border-bottom: 2px #282c38 solid;
	font-size: 16px;
	font-weight: 700;
	padding: 0 20px;
	overflow: hidden;
	cursor: default
}

.menu .logo img {
	width: 32px;
	height: 32px;
	margin-right: 8px
}

.menu .logo span {
	-webkit-flex-shrink: 0;
	flex-shrink: 0
}

.menu .box {
	position: relative;
	overflow: hidden;
	margin-top: 16px
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y) {
	cursor: pointer;
	color: #8c95b0
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child) {
	padding: 14px 14px 14px 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-transition: color .25s ease;
	transition: color .25s ease
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child) span {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child) i {
	margin-right: 0
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child) i:first-child {
	margin-right: 10px
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child) i:last-child {
	margin-left: 4px
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child) .num {
	-webkit-filter: drop-shadow(0 0 4px #e33568);
	filter: drop-shadow(0 0 4px #e33568);
	background: #e33568;
	-webkit-align-self: center;
	align-self: center;
	color: #fff;
	max-width: 30px;
	border-radius: 50px;
	text-align: center;
	font-size: 12px;
	height: 18px;
	line-height: 16px
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child):hover {
	color: #fff
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child {
	background: #141518;
	padding: 0 !important
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child>div {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	padding: 14px 14px 14px 46px;
	-webkit-transition: color .25s ease;
	transition: color .25s ease
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child>div:hover {
	color: #fff
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child .parent,
.menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child i {
	display: none
}

.menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child .active {
	color: #fff;
	background: #282c38;
	padding-left: 41px;
	border-left: 4px #2196F3 solid
}

.menu .box .ps__rail-y {
	display: none
}

.menu .box .current>div:first-child {
	color: #fff !important
}

.menu-close {
	-webkit-flex-basis: 80px;
	flex-basis: 80px;
	z-index: 999
}

.menu-close .logo {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 0
}

.menu-close .logo img {
	margin-right: 0
}

.menu-close .logo span {
	display: none
}

.menu-close .box {
	overflow: initial
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) {
	padding: 0;
	position: relative
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child-fixed) {
	padding: 15px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child-fixed) i:first-child {
	margin-right: 0;
	font-size: 24px
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child-fixed) i:last-child,
.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child-fixed) span {
	display: none
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) .child-fixed {
	box-shadow: 0 0 10px 0 #090a0b;
	background: #000;
	border-radius: 8px;
	width: 150px;
	position: absolute;
	padding: 0 0 10px 0 !important;
	z-index: 9999;
	top: 0;
	left: 70px
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) .child-fixed>div {
	padding: 10px 10px 10px 40px
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) .child-fixed>div span {
	display: inline
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) .child-fixed .active {
	padding-left: 35px
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) .child-fixed .parent {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	color: #fff;
	height: 40px;
	padding-left: 16px;
	cursor: default;
	width: 100%;
	font-weight: 700
}

.menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) .child-fixed .parent i {
	display: inline-block;
	margin: 0 6px 0 0;
	font-size: 18px
}

.menu-close .ps {
	overflow: initial
}

.eui-light .menu {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background: #fff
}

.eui-light .menu .logo {
	border-bottom-color: #f1f2f7
}

.eui-light .menu .box>div:not(.ps__rail-x):not(.ps__rail-y) {
	color: #898d99
}

.eui-light .menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child) .num {
	-webkit-filter: drop-shadow(0 0 2px #e33568);
	filter: drop-shadow(0 0 2px #e33568)
}

.eui-light .menu .box>div:not(.ps__rail-x):not(.ps__rail-y)>div:not(.child):hover {
	color: #2196F3
}

.eui-light .menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child {
	background: #f6f8fc
}

.eui-light .menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child>div:hover {
	color: #2196F3
}

.eui-light .menu .box>div:not(.ps__rail-x):not(.ps__rail-y) .child .active {
	color: #2196F3;
	background: #f0ebf7
}

.eui-light .menu .box .current>div:first-child {
	color: #2196F3 !important
}

.eui-light .menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) .child-fixed {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background: #fff
}

.eui-light .menu-close .box>div:not(.ps__rail-x):not(.ps__rail-y) .child-fixed .parent {
	color: #061e26
}

* {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-moz-user-focus: none
}

*,
::after,
::before {
	box-sizing: border-box
}

html {
	line-height: 1.15
}

body {
	margin: 0;
	color: #fff;
	background: #141518;
	font-size: 14px;
	font-family: 'Microsoft YaHei';
	overflow: hidden
}

main {
	display: block
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

hr {
	border: 0;
	border-bottom: 2px dashed #282c38;
	margin: 30px 0
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent;
	text-decoration: none;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	color: #5288ff
}

a:hover {
	color: #85abff
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

img {
	border-style: none;
	border-radius: 8px
}

input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1;
	margin: 0
}

textarea {
	line-height: 1.5
}

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
	-webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
	border-style: none;
	padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
	outline: 1px dotted ButtonText
}

fieldset {
	padding: .35em .75em .625em
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

details {
	display: block
}

summary {
	display: list-item
}

template {
	display: none
}

[hidden] {
	display: none
}

li,
p,
ul {
	margin: 0;
	padding: 0
}

li {
	list-style: none
}

em {
	font-style: normal
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

table th {
	font-weight: 400;
	text-align: initial
}

table td {
	padding: 0
}

i {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	margin-right: 4px
}

.eui-light {
	background: #f6f8fc;
	color: #061e26
}

.eui-light a {
	color: #36f
}

.eui-light a:hover {
	color: #0040ff
}

.iscroll {
	position: relative
}

.ps {
	overflow: hidden;
	overflow-anchor: none;
	touch-action: auto
}

.ps__rail-x {
	display: none;
	opacity: 0;
	-webkit-transition: background-color .25s ease, opacity .25s ease;
	transition: background-color .25s ease, opacity .25s ease;
	height: 10px;
	bottom: 0;
	position: absolute
}

.ps__rail-y {
	display: none;
	opacity: 0;
	-webkit-transition: background-color .25s ease, opacity .25s ease;
	transition: background-color .25s ease, opacity .25s ease;
	width: 6px;
	right: 2px;
	position: absolute
}

.ps--active-x>.ps__rail-x,
.ps--active-y>.ps__rail-y {
	display: block;
	background-color: transparent
}

.ps--focus>.ps__rail-x,
.ps--focus>.ps__rail-y,
.ps--scrolling-x>.ps__rail-x,
.ps--scrolling-y>.ps__rail-y {
	opacity: .5
}

.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-x:focus,
.ps .ps__rail-x:hover,
.ps .ps__rail-y.ps--clicking,
.ps .ps__rail-y:focus,
.ps .ps__rail-y:hover {
	opacity: .5
}

.ps__thumb-x {
	box-shadow: 0 0 10px 0 #090a0b;
	background-color: #333742;
	border-radius: 50px;
	-webkit-transition: background-color .25s ease, height .25s ease-in-out;
	transition: background-color .25s ease, height .25s ease-in-out;
	height: 10px;
	bottom: 0;
	position: absolute
}

.ps__thumb-y {
	box-shadow: 0 0 10px 0 #090a0b;
	background-color: #333742;
	border-radius: 50px;
	-webkit-transition: background-color .25s ease, width .25s ease-in-out;
	transition: background-color .25s ease, width .25s ease-in-out;
	width: 6px;
	right: 0;
	position: absolute
}

.ps__rail-x.ps--clicking .ps__thumb-x,
.ps__rail-x:focus>.ps__thumb-x,
.ps__rail-x:hover>.ps__thumb-x {
	background-color: #333742
}

.ps__rail-y.ps--clicking .ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y:hover>.ps__thumb-y {
	background-color: #333742
}

@supports (-ms-overflow-style:none) {
	.ps {
		overflow: auto !important
	}
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.ps {
		overflow: auto !important
	}
}

.eui-light .ps__thumb-x {
	box-shadow: none;
	background-color: #e2e6eb
}

.eui-light .ps__thumb-y {
	box-shadow: none;
	background-color: #e2e6eb
}

.eui-light .ps__rail-x.ps--clicking .ps__thumb-x,
.eui-light .ps__rail-x:focus>.ps__thumb-x,
.eui-light .ps__rail-x:hover>.ps__thumb-x {
	background-color: #e2e6eb
}

.eui-light .ps__rail-y.ps--clicking .ps__thumb-y,
.eui-light .ps__rail-y:focus>.ps__thumb-y,
.eui-light .ps__rail-y:hover>.ps__thumb-y {
	background-color: #e2e6eb
}

.eui-light .ps--focus>.ps__rail-x,
.eui-light .ps--focus>.ps__rail-y,
.eui-light .ps--scrolling-x>.ps__rail-x,
.eui-light .ps--scrolling-y>.ps__rail-y {
	opacity: .7
}

.eui-light .ps .ps__rail-x.ps--clicking,
.eui-light .ps .ps__rail-x:focus,
.eui-light .ps .ps__rail-x:hover,
.eui-light .ps .ps__rail-y.ps--clicking,
.eui-light .ps .ps__rail-y:focus,
.eui-light .ps .ps__rail-y:hover {
	opacity: .7
}

h2,
h4,
h6 {
	margin: 0 0 16px 0;
	font-weight: 400
}

h2 {
	font-size: 20px
}

h2 i {
	font-size: 22px
}

h4 {
	font-size: 18px
}

h4 i {
	font-size: 20px
}

h6 {
	font-size: 16px;
	margin-bottom: 10px
}

h6 i {
	font-size: 18px
}

span.tips {
	margin-top: 4px;
	color: #8c95b0;
	display: inline-block;
	width: 100%
}

span.error {
	color: #e33568 !important
}

.eui-num {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.eui-num div {
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 50px;
	margin-right: 4px;
	text-shadow: 0 0 2px #000;
	font-weight: 700
}

.eui-light .eui-num div {
	color: #fff
}

button {
	border-radius: 50px;
	background: 0 0;
	border: 2px #373d4d solid;
	cursor: pointer;
	padding: 12px 18px;
	outline: 0;
	color: #fff;
	margin-right: 8px;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	line-height: 20px
}

button:hover:not(:disabled) {
	box-shadow: 0 0 10px 0 #090a0b;
	border-color: #2196F3
}

button:active:not(:disabled) {
	border-color: #5c13d1
}

button i {
	font-size: 18px;
	margin-right: 4px
}

button:disabled {
	color: #7c86a1;
	cursor: not-allowed;
	text-shadow: none
}

button.middle {
	font-size: 14px;
	line-height: 18px;
	padding: 8px 14px
}

button.middle i {
	font-size: 16px
}

button.small {
	font-size: 14px;
	line-height: 16px;
	padding: 4px 10px
}

button.small i {
	font-size: 14px;
	margin-right: 2px
}

.hl {
	background: #2196F3;
	border-color: #2196F3
}

.hl:hover:not(:disabled) {
	background: #8442ee;
	border-color: #8442ee
}

.hl:active:not(:disabled) {
	background: #2196F3;
	border-color: #2196F3
}

.hl:disabled {
	color: #aaa;
	cursor: not-allowed;
	background: #8442ee;
	border-color: #8442ee
}

.full {
	width: 100%
}

.eui-light button {
	border-color: #e2e6eb;
	color: #061e26
}

.eui-light button:hover:not(:disabled) {
	box-shadow: 0 0 10px 0 rgba(100, 100, 100, .2)
}

.eui-light button:disabled {
	color: #7c86a1
}

.eui-light .hl {
	border-color: #2196F3;
	color: #fff
}

.eui-light .hl:disabled {
	color: #aaa;
	background: #8442ee;
	border-color: #8442ee
}

.cascade {
	padding: 8px 0 4px 8px
}

.cascade .child {
	max-height: 240px;
	overflow: hidden;
	min-width: 100px;
	padding-right: 10px
}

.cascade .child span {
	width: 100%;
	text-align: left;
	padding: 0 4px 0 8px;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	cursor: pointer;
	border-radius: 8px;
	margin-bottom: 4px;
	height: 28px;
	line-height: 28px
}

.cascade .child span i {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	margin-right: 0;
	text-align: right
}

.cascade .child span:not(.current):hover {
	background: #3d4356
}

.cascade .child .current {
	background: #3d4356
}

.cascade .child .ps__rail-y {
	margin: 2px 0
}

.cascade .child .ps__rail-y .ps__thumb-y {
	background-color: #3d4356
}

.eui-light .cascade .child span:not(.current):hover {
	background: #f2f4fa
}

.eui-light .cascade .child .current {
	background: #f2f4fa
}

.eui-light .cascade .child .ps__rail-y .ps__thumb-y {
	background-color: #e2e6eb
}

.citypicker {
	padding: 8px 8px 4px 8px
}

.citypicker span:not(.tips) {
	text-align: center;
	cursor: pointer;
	border-radius: 8px
}

.citypicker .tips {
	height: 24px;
	line-height: 24px;
	color: #8c95b0;
	cursor: default;
	margin-top: 0;
	padding-left: 8px
}

.citypicker .body,
.citypicker .header {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex
}

.citypicker .header {
	margin: 8px 0;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	cursor: default
}

.citypicker .header span {
	padding: 8px 0;
	width: 10%
}

.citypicker .header .current {
	background: #3d4356
}

.citypicker .body {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -4px
}

.citypicker .body span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 70px;
	margin: 4px;
	-webkit-transition: background-color .25s ease;
	transition: background-color .25s ease;
	padding: 8px 4px
}

.citypicker .body span:not(.current):hover {
	background: #3d4356
}

.citypicker .body .current {
	box-shadow: 0 0 10px 0 #090a0b;
	background-image: -webkit-linear-gradient(top left, #a371f2, #2196F3) !important;
	background-image: linear-gradient(to bottom right, #a371f2, #2196F3) !important
}

.citypicker .child,
.citypicker .quick {
	max-height: 250px;
	overflow: hidden
}

.citypicker .child span,
.citypicker .quick span {
	width: 100%;
	text-align: left;
	padding: 8px;
	display: inline-block;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	margin-bottom: 2px
}

.citypicker .child span:not(.current):hover,
.citypicker .quick span:not(.current):hover {
	background: #3d4356
}

.citypicker .child .current,
.citypicker .quick .current {
	background: #3d4356
}

.citypicker .child .ps__rail-y,
.citypicker .quick .ps__rail-y {
	margin: 4px 0 2px 0
}

.citypicker .child .ps__rail-y .ps__thumb-y,
.citypicker .quick .ps__rail-y .ps__thumb-y {
	background-color: #3d4356
}

.citypicker .quick {
	display: none;
	margin-top: 4px;
	padding-right: 8px
}

.citypicker .child {
	height: 240px;
	min-width: 100px;
	padding-right: 10px
}

.citypicker .child span {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	padding: 0 0 0 8px;
	height: 28px;
	line-height: 28px
}

.citypicker .child span i {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	margin-right: 0;
	text-align: right
}

.eui-light .citypicker .tips {
	color: #898d99
}

.eui-light .citypicker .header .current {
	background: #f2f4fa
}

.eui-light .citypicker .body span:not(.current):hover {
	background: #f2f4fa
}

.eui-light .citypicker .body .current {
	box-shadow: 0 0 8px 0 #e0e6f4;
	color: #fff
}

.eui-light .citypicker .child span:not(.current):hover,
.eui-light .citypicker .quick span:not(.current):hover {
	background: #f2f4fa
}

.eui-light .citypicker .child .current,
.eui-light .citypicker .quick .current {
	background: #f2f4fa
}

.eui-light .citypicker .child .ps__rail-y .ps__thumb-y,
.eui-light .citypicker .quick .ps__rail-y .ps__thumb-y {
	background-color: #e2e6eb
}

.colorpicker-easy {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -4px
}

.colorpicker-easy>div {
	cursor: pointer
}

.colorpicker-easy>div .color {
	border-radius: 4px;
	width: 28px;
	height: 28px;
	margin: 4px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.colorpicker-easy>div i {
	display: none;
	color: #fff;
	margin: 1px 0 0 0;
	font-size: 20px;
	font-weight: 700
}

.colorpicker-easy .active i {
	display: block
}

.colorpicker {
	width: 236px;
	padding: 8px;
	display: none
}

.colorpicker .panel {
	position: relative;
	width: 216px;
	height: 180px;
	border-radius: 8px;
	overflow: hidden
}

.colorpicker .panel::after,
.colorpicker .panel::before {
	border-radius: 8px;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0
}

.colorpicker .panel::before {
	background: -webkit-linear-gradient(left, #fff, transparent);
	background: linear-gradient(90deg, #fff, transparent)
}

.colorpicker .panel::after {
	background: -webkit-linear-gradient(bottom, #000, transparent);
	background: linear-gradient(0deg, #000, transparent)
}

.colorpicker .panel .picker {
	left: 100px;
	top: 100px
}

.colorpicker .slider-box {
	margin-top: 12px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.colorpicker .slider-box .slider {
	width: 176px
}

.colorpicker .slider-box .slider .alpha,
.colorpicker .slider-box .slider .color {
	border-radius: 8px;
	height: 8px;
	position: relative
}

.colorpicker .slider-box .slider .alpha .picker,
.colorpicker .slider-box .slider .color .picker {
	top: -2px
}

.colorpicker .slider-box .slider .color {
	background: -webkit-linear-gradient(left, red, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red);
	background: linear-gradient(90deg, red, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red)
}

.colorpicker .slider-box .slider .alpha {
	margin-top: 12px;
	position: relative
}

.colorpicker .slider-box .slider .alpha>div {
	border-radius: 8px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.colorpicker .slider-box .preview {
	border-radius: 8px;
	width: 32px;
	height: 32px;
	margin-left: 8px;
	background-color: #fff
}

.colorpicker .slider-box .preview span {
	border-radius: 8px;
	display: block;
	width: 100%;
	height: 100%
}

.colorpicker .format {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	margin-top: 12px
}

.colorpicker .format input {
	padding: 6px;
	font-size: 12px
}

.colorpicker .format .form-group {
	margin-bottom: 0
}

.colorpicker .format .select,
.colorpicker .format .select-option {
	width: 64px !important;
	min-width: auto
}

.colorpicker .format .select {
	height: 32px;
	padding: 0 20px 0 6px
}

.colorpicker .default {
	margin-top: 10px
}

.colorpicker .default span {
	display: block;
	margin-bottom: 10px
}

.colorpicker .default .color {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -4px
}

.colorpicker .default .color>div {
	cursor: pointer
}

.colorpicker .default .color>div>div {
	width: 20px;
	height: 20px;
	border-radius: 4px;
	margin: 4px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.colorpicker .picker {
	box-shadow: 0 0 10px 0 #090a0b;
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	z-index: 1;
	background: #fff;
	border: 2px #fff solid;
	cursor: pointer
}

.colorpicker .button {
	margin-top: 10px;
	text-align: right;
	cursor: default
}

.colorpicker .button button {
	margin-right: 0;
	margin-left: 4px
}

.colorpicker-select {
	cursor: pointer;
	border-radius: 8px;
	border: 2px #373d4d solid;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: inline-flex;
	height: 44px;
	padding: 4px
}

.colorpicker-select .params {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.colorpicker-select .params>div:nth-of-type(1) {
	border-radius: 8px;
	width: 32px;
	height: 32px;
	position: relative
}

.colorpicker-select .params>div:nth-of-type(1) span {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	position: absolute
}

.colorpicker-select .params>div:nth-of-type(2):not(:empty) {
	margin: 0 4px;
	color: #fff
}

.bg-alpha {
	background-color: #fff;
	background-image: -webkit-linear-gradient(45deg, #c5c5c5 25%, transparent 0, transparent 75%, #c5c5c5 0, #c5c5c5), -webkit-linear-gradient(45deg, #c5c5c5 25%, transparent 0, transparent 75%, #c5c5c5 0, #c5c5c5);
	background-image: linear-gradient(45deg, #c5c5c5 25%, transparent 0, transparent 75%, #c5c5c5 0, #c5c5c5), linear-gradient(45deg, #c5c5c5 25%, transparent 0, transparent 75%, #c5c5c5 0, #c5c5c5);
	background-size: 6px 6px;
	background-position: 0 0, 3px 3px
}

.eui-light .colorpicker .picker {
	box-shadow: 0 0 6px 0 rgba(0, 64, 128, .4)
}

.eui-light .colorpicker-select {
	border-color: #e2e6eb
}

.eui-light .colorpicker-select .params>div:nth-of-type(2):not(:empty) {
	color: #061e26
}

.datepicker {
	padding: 8px
}

.datepicker .quick {
	cursor: default;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	height: 32px;
	padding-left: 10px;
	line-height: 24px
}

.datepicker .quick span {
	color: #8c95b0;
	margin-right: 30px
}

.datepicker .quick span:not(.title) {
	cursor: pointer;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.datepicker .quick span:not(.title):hover {
	color: #fff
}

.datepicker .quick span.current {
	color: #fff
}

.datepicker .panel-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex
}

.datepicker .panel-box .datepicker-panel[data-index="1"] {
	margin-left: 20px;
	display: none
}

.datepicker .panel-box .header {
	text-align: center;
	height: 30px;
	line-height: 30px;
	cursor: default
}

.datepicker .panel-box .header span {
	text-align: center;
	margin: 0 6px;
	cursor: pointer;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.datepicker .panel-box .header span:hover {
	color: #2196F3
}

.datepicker .panel-box .header i {
	font-size: 18px;
	margin: 0 6px;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.datepicker .panel-box .header i:hover {
	color: #2196F3
}

.datepicker .panel-box .body {
	width: 280px;
	text-align: center;
	cursor: default
}

.datepicker .panel-box .body span {
	width: 36px;
	height: 36px;
	line-height: 36px;
	margin: 2px
}

.datepicker .panel-box .body .next {
	color: #7c86a1
}

.datepicker .panel-box .day,
.datepicker .panel-box .month,
.datepicker .panel-box .picker-time,
.datepicker .panel-box .week,
.datepicker .panel-box .year {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap
}

.datepicker .panel-box .week {
	color: #7c86a1
}

.datepicker .panel-box .day span:not(.next) {
	border-radius: 8px;
	position: relative;
	cursor: pointer;
	-webkit-transition: background-color .25s ease;
	transition: background-color .25s ease
}

.datepicker .panel-box .day span:not(.next):hover:not(.current) {
	background: #3d4356
}

.datepicker .panel-box .day span:not(.next) div {
	background-image: -webkit-linear-gradient(top left, #a371f2, #2196F3) !important;
	background-image: linear-gradient(to bottom right, #a371f2, #2196F3) !important;
	border-radius: 50px;
	width: 7px;
	height: 7px;
	position: absolute;
	right: 4px;
	top: 4px
}

.datepicker .panel-box .day span.current {
	box-shadow: 0 0 10px 0 #090a0b;
	background-image: -webkit-linear-gradient(top left, #a371f2, #2196F3) !important;
	background-image: linear-gradient(to bottom right, #a371f2, #2196F3) !important;
	color: #fff
}

.datepicker .panel-box .day span.current div {
	background-image: none !important;
	background: #fff
}

.datepicker .panel-box .day span.choosed {
	background: #3d4356
}

.datepicker .panel-box .month,
.datepicker .panel-box .year {
	display: none;
	margin-top: 10px;
	height: 270px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.datepicker .panel-box .month div,
.datepicker .panel-box .year div {
	border-radius: 8px;
	text-align: center;
	width: 28%;
	height: 44px;
	line-height: 44px;
	margin: 0 4px;
	cursor: pointer;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.datepicker .panel-box .month div:hover,
.datepicker .panel-box .year div:hover {
	background: #3d4356
}

.datepicker .panel-box .month div.current,
.datepicker .panel-box .year div.current {
	background: #3d4356
}

.datepicker .panel-box .picker-time {
	display: none;
	padding: 8px 0 2px 0;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.datepicker .panel-box .picker-time ul {
	width: 30%;
	max-height: 300px !important;
	padding-right: 12px
}

.datepicker .panel-box .picker-time ul li {
	border-radius: 8px;
	height: 24px;
	line-height: 24px;
	margin-bottom: 4px;
	cursor: pointer;
	text-align: center;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.datepicker .panel-box .picker-time ul li:not(.current):hover {
	background: #3d4356
}

.datepicker .panel-box .picker-time ul .current {
	background: #3d4356
}

.datepicker .panel-box .picker-time ul .ps__rail-y {
	margin: 4px 0
}

.datepicker .panel-box .picker-time ul .ps__rail-y .ps__thumb-y {
	background-color: #3d4356
}

.datepicker .footer {
	margin-top: 4px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex
}

.datepicker .footer .time-choose {
	cursor: pointer;
	padding-left: 6px
}

.datepicker .footer .btnbar {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	text-align: right
}

.datepicker .footer .btnbar button {
	margin: 0 0 0 6px
}

.eui-light .datepicker .quick span {
	color: #898d99
}

.eui-light .datepicker .quick span:not(.title):hover {
	color: #2196F3
}

.eui-light .datepicker .quick span.current {
	color: #2196F3
}

.eui-light .datepicker .panel-box .body .next {
	color: #bbb
}

.eui-light .datepicker .panel-box .week {
	color: #bbb
}

.eui-light .datepicker .panel-box .day span:not(.next):hover:not(.current) {
	background: #f2f4fa
}

.eui-light .datepicker .panel-box .day span.current {
	box-shadow: 0 0 8px 0 #e0e6f4;
	color: #fff
}

.eui-light .datepicker .panel-box .day span.current div {
	background: #fff
}

.eui-light .datepicker .panel-box .day span.choosed {
	background: #f2f4fa
}

.eui-light .datepicker .panel-box .month div:hover,
.eui-light .datepicker .panel-box .year div:hover {
	background: #f2f4fa
}

.eui-light .datepicker .panel-box .month div.current,
.eui-light .datepicker .panel-box .year div.current {
	background: #f2f4fa
}

.eui-light .datepicker .panel-box .picker-time ul li:not(.current):hover {
	background: #f2f4fa
}

.eui-light .datepicker .panel-box .picker-time ul .current {
	background: #f2f4fa
}

.eui-light .datepicker .panel-box .picker-time ul .ps__rail-y .ps__thumb-y {
	background-color: #e2e6eb
}

.dropdown {
	padding: 4px 0
}

.dropdown ul {
	padding: 0 !important;
	overflow: hidden
}

.dropdown ul li:not(.divided) {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding: 0 4px;
	margin: 0 4px
}

.dropdown ul li:not(.divided) i {
	margin-top: 1px
}

.dropdown ul li:not(.divided):not(:first-child) {
	margin-top: 0 !important
}

.dropdown ul li:not(.divided) span {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto
}

.dropdown ul li:not(.divided) .checked {
	margin: 0 0 0 20px
}

.dropdown ul .red:hover {
	color: #e96289 !important;
	background-color: rgba(250, 34, 86, .2) !important
}

.dropdown ul .blue:hover {
	color: #819ffb !important;
	background-color: rgba(36, 108, 249, .2) !important
}

.dropdown ul .yellow:hover {
	color: #ffd059 !important;
	background-color: rgba(255, 222, 10, .2) !important
}

.dropdown ul .green:hover {
	color: #8dd075 !important;
	background-color: rgba(79, 232, 62, .2) !important
}

.dropdown ul .purple:hover {
	color: #a77bff !important;
	background-color: rgba(133, 72, 255, .2) !important
}

.dropdown ul .pink:hover {
	color: #fd6ebf !important;
	background-color: rgba(252, 60, 169, .2) !important
}

.dropdown ul .cyan:hover {
	color: #1ee2ff !important;
	background-color: rgba(0, 213, 243, .2) !important
}

.dropdown ul .orange:hover {
	color: #ff9179 !important;
	background-color: rgba(253, 115, 30, .2) !important
}

.dropdown ul .divided {
	margin: 4px 0;
	border-bottom: 2px #373d4d solid
}

.dropdown .title {
	text-align: center;
	height: 30px;
	line-height: 24px;
	border-bottom: 2px #373d4d solid;
	margin-bottom: 4px;
	padding: 0 10px
}

.eui-light .dropdown .title {
	border-bottom-color: #e2e6eb
}

.eui-light .dropdown ul .red:hover {
	color: #c91c4f !important
}

.eui-light .dropdown ul .blue:hover {
	color: #0943f3 !important
}

.eui-light .dropdown ul .yellow:hover {
	color: #bf8800 !important
}

.eui-light .dropdown ul .green:hover {
	color: #4c9332 !important
}

.eui-light .dropdown ul .purple:hover {
	color: #6315ff !important
}

.eui-light .dropdown ul .pink:hover {
	color: #fb0a93 !important
}

.eui-light .dropdown ul .cyan:hover {
	color: #00a0b7 !important
}

.eui-light .dropdown ul .orange:hover {
	color: #ff3d13 !important
}

.eui-light .dropdown ul .divided {
	border-bottom-color: #e2e6eb
}

.ql-container {
	font-size: 14px;
	height: 100%;
	margin: 0;
	position: relative
}

.ql-container.ql-disabled .ql-tooltip {
	visibility: hidden
}

.ql-container:not(.ql-disabled) li[data-list=checked]>.ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked]>.ql-ui {
	cursor: pointer
}

.ql-clipboard {
	left: -100000px;
	height: 1px;
	overflow-y: hidden;
	position: absolute;
	top: 50%
}

.ql-editor {
	font-size: 16px;
	counter-reset: list-0;
	outline: 0;
	overflow-y: hidden;
	padding: 4px 20px;
	text-align: left;
	white-space: pre-wrap;
	word-wrap: break-word;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	min-height: 400px
}

.ql-editor em {
	font-style: italic
}

.ql-editor>* {
	cursor: text
}

.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6,
.ql-editor ol,
.ql-editor p,
.ql-editor pre {
	margin: 0;
	padding: 0;
	font-weight: 400
}

.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6,
.ql-editor p {
	counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
}

.ql-editor h1,
.ql-editor h2 {
	font-weight: 700
}

.ql-editor p {
	line-height: 2;
	margin: 10px 0
}

.ql-editor table {
	border-collapse: collapse
}

.ql-editor td {
	border: 1px solid #fff;
	padding: 10px;
	color: #fff
}

.ql-editor ol {
	padding-left: 1.5em
}

.ql-editor li {
	list-style-type: none;
	padding-left: 1.5em;
	position: relative
}

.ql-editor li>.ql-ui:before {
	display: inline-block;
	margin-left: -1.5em;
	margin-right: .3em;
	text-align: right;
	white-space: nowrap;
	width: 1.2em
}

.ql-editor li[data-list=checked]>.ql-ui,
.ql-editor li[data-list=unchecked]>.ql-ui {
	color: #777
}

.ql-editor li[data-list=bullet]>.ql-ui:before {
	content: '\2022'
}

.ql-editor li[data-list=checked]>.ql-ui:before {
	content: '\2611'
}

.ql-editor li[data-list=unchecked]>.ql-ui:before {
	content: '\2610'
}

.ql-editor li[data-list=ordered] {
	counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
	counter-increment: list-0
}

.ql-editor li[data-list=ordered]>.ql-ui:before {
	content: counter(list-0, decimal) '. '
}

.ql-editor li[data-list=ordered].ql-indent-1 {
	counter-increment: list-1
}

.ql-editor li[data-list=ordered].ql-indent-1>.ql-ui:before {
	content: counter(list-1, lower-alpha) '. '
}

.ql-editor li[data-list=ordered].ql-indent-1 {
	counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
}

.ql-editor li[data-list=ordered].ql-indent-2 {
	counter-increment: list-2
}

.ql-editor li[data-list=ordered].ql-indent-2>.ql-ui:before {
	content: counter(list-2, lower-roman) '. '
}

.ql-editor li[data-list=ordered].ql-indent-2 {
	counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9
}

.ql-editor li[data-list=ordered].ql-indent-3 {
	counter-increment: list-3
}

.ql-editor li[data-list=ordered].ql-indent-3>.ql-ui:before {
	content: counter(list-3, decimal) '. '
}

.ql-editor li[data-list=ordered].ql-indent-3 {
	counter-reset: list-4 list-5 list-6 list-7 list-8 list-9
}

.ql-editor li[data-list=ordered].ql-indent-4 {
	counter-increment: list-4
}

.ql-editor li[data-list=ordered].ql-indent-4>.ql-ui:before {
	content: counter(list-4, lower-alpha) '. '
}

.ql-editor li[data-list=ordered].ql-indent-4 {
	counter-reset: list-5 list-6 list-7 list-8 list-9
}

.ql-editor li[data-list=ordered].ql-indent-5 {
	counter-increment: list-5
}

.ql-editor li[data-list=ordered].ql-indent-5>.ql-ui:before {
	content: counter(list-5, lower-roman) '. '
}

.ql-editor li[data-list=ordered].ql-indent-5 {
	counter-reset: list-6 list-7 list-8 list-9
}

.ql-editor li[data-list=ordered].ql-indent-6 {
	counter-increment: list-6
}

.ql-editor li[data-list=ordered].ql-indent-6>.ql-ui:before {
	content: counter(list-6, decimal) '. '
}

.ql-editor li[data-list=ordered].ql-indent-6 {
	counter-reset: list-7 list-8 list-9
}

.ql-editor li[data-list=ordered].ql-indent-7 {
	counter-increment: list-7
}

.ql-editor li[data-list=ordered].ql-indent-7>.ql-ui:before {
	content: counter(list-7, lower-alpha) '. '
}

.ql-editor li[data-list=ordered].ql-indent-7 {
	counter-reset: list-8 list-9
}

.ql-editor li[data-list=ordered].ql-indent-8 {
	counter-increment: list-8
}

.ql-editor li[data-list=ordered].ql-indent-8>.ql-ui:before {
	content: counter(list-8, lower-roman) '. '
}

.ql-editor li[data-list=ordered].ql-indent-8 {
	counter-reset: list-9
}

.ql-editor li[data-list=ordered].ql-indent-9 {
	counter-increment: list-9
}

.ql-editor li[data-list=ordered].ql-indent-9>.ql-ui:before {
	content: counter(list-9, decimal) '. '
}

.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
	padding-left: 3em
}

.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
	padding-left: 4.5em
}

.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
	padding-right: 3em
}

.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
	padding-right: 4.5em
}

.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
	padding-left: 6em
}

.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
	padding-left: 7.5em
}

.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
	padding-right: 6em
}

.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
	padding-right: 7.5em
}

.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
	padding-left: 9em
}

.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
	padding-left: 10.5em
}

.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
	padding-right: 9em
}

.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
	padding-right: 10.5em
}

.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
	padding-left: 12em
}

.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
	padding-left: 13.5em
}

.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
	padding-right: 12em
}

.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
	padding-right: 13.5em
}

.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
	padding-left: 15em
}

.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
	padding-left: 16.5em
}

.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
	padding-right: 15em
}

.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
	padding-right: 16.5em
}

.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
	padding-left: 18em
}

.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
	padding-left: 19.5em
}

.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
	padding-right: 18em
}

.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
	padding-right: 19.5em
}

.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
	padding-left: 21em
}

.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
	padding-left: 22.5em
}

.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
	padding-right: 21em
}

.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
	padding-right: 22.5em
}

.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
	padding-left: 24em
}

.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
	padding-left: 25.5em
}

.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
	padding-right: 24em
}

.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
	padding-right: 25.5em
}

.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
	padding-left: 27em
}

.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
	padding-left: 28.5em
}

.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
	padding-right: 27em
}

.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
	padding-right: 28.5em
}

.ql-editor li.ql-direction-rtl {
	padding-right: 1.5em
}

.ql-editor li.ql-direction-rtl>.ql-ui:before {
	margin-left: .3em;
	margin-right: -1.5em;
	text-align: left
}

.ql-editor table {
	table-layout: fixed;
	width: 100%
}

.ql-editor table td {
	outline: 0
}

.ql-editor .ql-code-block-container {
	font-family: monospace
}

.ql-editor .ql-video {
	display: block;
	max-width: 100%
}

.ql-editor .ql-video.ql-align-center {
	margin: 0 auto
}

.ql-editor .ql-video.ql-align-right {
	margin: 0 0 0 auto
}

.ql-editor .ql-bg-black {
	background-color: #000
}

.ql-editor .ql-bg-red {
	background-color: #e33568
}

.ql-editor .ql-bg-orange {
	background-color: #ffc126
}

.ql-editor .ql-bg-yellow {
	background-color: #ffc126
}

.ql-editor .ql-bg-green {
	background-color: #6ec34f
}

.ql-editor .ql-bg-blue {
	background-color: #3767f8
}

.ql-editor .ql-bg-purple {
	background-color: #8548ff
}

.ql-editor .ql-color-white {
	color: #fff
}

.ql-editor .ql-color-red {
	color: #e33568
}

.ql-editor .ql-color-orange {
	color: #ffc126
}

.ql-editor .ql-color-yellow {
	color: #ffc126
}

.ql-editor .ql-color-green {
	color: #6ec34f
}

.ql-editor .ql-color-blue {
	color: #3767f8
}

.ql-editor .ql-color-purple {
	color: #8548ff
}

.ql-editor .ql-direction-rtl {
	direction: rtl;
	text-align: inherit
}

.ql-editor .ql-align-center {
	text-align: center
}

.ql-editor .ql-align-justify {
	text-align: justify
}

.ql-editor .ql-align-right {
	text-align: right
}

.ql-editor .ql-ui {
	position: absolute
}

.ql-editor.ql-blank::before {
	color: #6b7182;
	content: attr(data-placeholder);
	font-style: normal;
	left: 20px;
	pointer-events: none;
	position: absolute;
	right: 14px;
	font-size: 16px;
	line-height: 2;
	margin: 10px 0
}

.ql-snow .ql-toolbar:after,
.ql-snow.ql-toolbar:after {
	clear: both;
	content: '';
	display: table
}

.ql-snow .ql-toolbar button,
.ql-snow.ql-toolbar button {
	background: 0 0;
	border: none;
	cursor: pointer;
	display: inline-block;
	height: 24px;
	padding: 3px;
	width: 28px
}

.ql-snow .ql-toolbar button svg,
.ql-snow.ql-toolbar button svg {
	float: left;
	height: 100%
}

.ql-snow .ql-toolbar button:active:hover,
.ql-snow.ql-toolbar button:active:hover {
	outline: 0
}

.ql-snow .ql-toolbar input.ql-image[type=file],
.ql-snow.ql-toolbar input.ql-image[type=file] {
	display: none
}

.ql-snow .ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button:focus,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow.ql-toolbar button:focus,
.ql-snow.ql-toolbar button:hover {
	color: #fff;
	box-shadow: none
}

.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill {
	fill: #fff
}

.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter {
	stroke: #fff
}

@media (pointer:coarse) {

	.ql-snow .ql-toolbar button:hover:not(.ql-active),
	.ql-snow.ql-toolbar button:hover:not(.ql-active) {
		color: #fff
	}

	.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
	.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
	.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
	.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
		fill: #fff
	}

	.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
	.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
	.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
	.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
		stroke: #fff
	}
}

.ql-snow .ql-hidden {
	display: none
}

.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
	visibility: hidden
}

.ql-snow .ql-tooltip {
	position: absolute;
	-webkit-transform: translateY(10px);
	transform: translateY(10px)
}

.ql-snow .ql-tooltip a {
	cursor: pointer;
	text-decoration: none
}

.ql-snow .ql-tooltip.ql-flip {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px)
}

.ql-snow .ql-formats {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex
}

.ql-snow .ql-formats:after {
	clear: both;
	display: table
}

.ql-snow .ql-stroke {
	fill: none;
	stroke: #8c95b0;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2
}

.ql-snow .ql-stroke-miter {
	fill: none;
	stroke: #8c95b0;
	stroke-miterlimit: 10;
	stroke-width: 2
}

.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
	fill: #8c95b0
}

.ql-snow .ql-empty {
	fill: none
}

.ql-snow .ql-even {
	fill-rule: evenodd
}

.ql-snow .ql-stroke.ql-thin,
.ql-snow .ql-thin {
	stroke-width: 1
}

.ql-snow .ql-transparent {
	opacity: .4
}

.ql-snow .ql-direction svg:last-child {
	display: none
}

.ql-snow .ql-direction.ql-active svg:last-child {
	display: inline
}

.ql-snow .ql-direction.ql-active svg:first-child {
	display: none
}

.ql-snow .ql-editor h1 {
	font-size: 32px
}

.ql-snow .ql-editor h2 {
	font-size: 28px
}

.ql-snow .ql-editor h3 {
	font-size: 24px
}

.ql-snow .ql-editor h4 {
	font-size: 20px
}

.ql-snow .ql-editor h5 {
	font-size: 16px
}

.ql-snow .ql-editor h6 {
	font-size: 14px
}

.ql-snow .ql-editor a {
	text-decoration: underline
}

.ql-snow .ql-editor blockquote {
	border-left: 4px solid #fff;
	margin-bottom: 4px;
	margin-top: 4px;
	padding-left: 16px
}

.ql-snow .ql-editor .ql-code-block-container,
.ql-snow .ql-editor code {
	background-color: #f0f0f0;
	border-radius: 4px
}

.ql-snow .ql-editor .ql-code-block-container {
	margin: 4px 0;
	padding: 8px
}

.ql-snow .ql-editor code {
	font-size: 85%;
	padding: 2px 4px
}

.ql-snow .ql-editor .ql-code-block-container {
	background-color: #3d4356;
	color: #fff;
	overflow: visible
}

.ql-snow .ql-editor img {
	max-width: 100%
}

.ql-snow .ql-picker {
	color: #8c95b0;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	height: 24px;
	position: relative
}

.ql-snow .ql-picker-label {
	cursor: pointer;
	display: inline-block;
	height: 100%;
	padding-left: 8px;
	padding-right: 2px;
	position: relative;
	width: 100%
}

.ql-snow .ql-picker-label::before {
	display: inline-block;
	line-height: 22px
}

.ql-snow .ql-picker-options {
	background-color: #282c38;
	display: none;
	min-width: 100%;
	padding: 4px 10px;
	position: absolute;
	white-space: nowrap
}

.ql-snow .ql-picker-options .ql-picker-item {
	cursor: pointer;
	display: block;
	padding-bottom: 8px;
	padding-top: 8px
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label {
	z-index: 2
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
	fill: #ccc
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
	stroke: #ccc
}

.ql-snow .ql-picker.ql-expanded .ql-picker-options {
	display: block;
	margin-top: 4px;
	top: 100%;
	z-index: 1
}

.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
	width: 28px
}

.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
	padding: 2px 4px
}

.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
	right: 4px
}

.ql-snow .ql-icon-picker .ql-picker-options {
	padding: 4px 0
}

.ql-snow .ql-icon-picker .ql-picker-item {
	height: 24px;
	width: 24px;
	padding: 2px 4px
}

.ql-snow .ql-color-picker .ql-picker-options {
	padding: 4px;
	width: 154px
}

.ql-snow .ql-color-picker .ql-picker-item {
	border: 1px solid transparent;
	float: left;
	height: 16px;
	margin: 2px;
	padding: 0;
	width: 16px
}

.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
	position: absolute;
	margin-top: -9px;
	right: 0;
	top: 50%;
	width: 18px
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before {
	content: attr(data-label)
}

.ql-snow .ql-picker.ql-header {
	width: 60px
}

.ql-snow .ql-picker.ql-header .ql-picker-item::before,
.ql-snow .ql-picker.ql-header .ql-picker-label::before {
	content: '正文'
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before {
	content: 'H1'
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before {
	content: 'H2'
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before {
	content: 'H3'
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before {
	content: 'H4'
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before {
	content: 'H5'
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before {
	content: 'H6'
}

.ql-snow .ql-picker.ql-font {
	width: 100px
}

.ql-snow .ql-picker.ql-font .ql-picker-item::before,
.ql-snow .ql-picker.ql-font .ql-picker-label::before {
	content: '默认字体'
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimSun]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimSun]::before {
	content: '宋体';
	font-family: SimSun
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimHei]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimHei]::before {
	content: '黑体';
	font-family: SimHei
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=YaHei]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=YaHei]::before {
	content: '微软雅黑';
	font-family: "Microsoft YaHei"
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=KaiTi]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=KaiTi]::before {
	content: '楷体';
	font-family: KaiTi
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=FangSong]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=FangSong]::before {
	content: '仿宋';
	font-family: FangSong
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Arial]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Arial]::before {
	content: 'Arial';
	font-family: Arial
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=PmingLiu]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=PmingLiu]::before {
	content: 'PmingLiu';
	font-family: PmingLiu
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Georgia]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Georgia]::before {
	content: 'Georgia';
	font-family: Georgia
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Tahoma]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Tahoma]::before {
	content: 'Tahoma';
	font-family: Tahoma
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Book-Antiqua]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Book-Antiqua]::before {
	content: 'Book Antiqua';
	font-family: "Book Antiqua"
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Century-Gothic]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Century-Gothic]::before {
	content: 'Century Gothic';
	font-family: "Century Gothic"
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Courier-New]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Courier-New]::before {
	content: 'Courier New';
	font-family: "Courier New"
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Times-New-Roman]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Times-New-Roman]::before {
	content: 'Times New Roman';
	font-family: "Times New Roman"
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Verdana]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Verdana]::before {
	content: 'Verdana';
	font-family: Verdana
}

.ql-editor .ql-font-SimSun {
	font-family: SimSun
}

.ql-editor .ql-font-SimHei {
	font-family: SimHei
}

.ql-editor .ql-font-YaHei {
	font-family: "Microsoft YaHei"
}

.ql-editor .ql-font-KaiTi {
	font-family: KaiTi
}

.ql-editor .ql-font-FangSong {
	font-family: FangSong
}

.ql-editor .ql-font-Arial {
	font-family: Arial
}

.ql-editor .ql-font-PmingLiu {
	font-family: PmingLiu
}

.ql-editor .ql-font-Georgia {
	font-family: Georgia
}

.ql-editor .ql-font-Tahoma {
	font-family: Tahoma
}

.ql-editor .ql-font-Book-Antiqua {
	font-family: "Book Antiqua"
}

.ql-editor .ql-font-Century-Gothic {
	font-family: "Century Gothic"
}

.ql-editor .ql-font-Courier-New {
	font-family: "Courier New"
}

.ql-editor .ql-font-Times-New-Roman {
	font-family: "Times New Roman"
}

.ql-editor .ql-font-Verdana {
	font-family: Verdana
}

.ql-snow .ql-picker.ql-size {
	width: 60px
}

.ql-snow .ql-picker.ql-size .ql-picker-item::before,
.ql-snow .ql-picker.ql-size .ql-picker-label::before {
	content: '标准'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='10']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='10']::before {
	content: '10px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='12']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='12']::before {
	content: '12px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='14']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='14']::before {
	content: '14px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='16']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='16']::before {
	content: '16px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='18']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='18']::before {
	content: '18px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='20']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='20']::before {
	content: '20px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='22']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='22']::before {
	content: '22px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='24']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='24']::before {
	content: '24px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='26']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='26']::before {
	content: '26px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='28']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='28']::before {
	content: '28px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='36']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='36']::before {
	content: '36px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='42']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='42']::before {
	content: '42px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='48']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='48']::before {
	content: '48px'
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='72']::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='72']::before {
	content: '72px'
}

.ql-editor .ql-size-10 {
	font-size: 10px
}

.ql-editor .ql-size-12 {
	font-size: 12px
}

.ql-editor .ql-size-14 {
	font-size: 14px
}

.ql-editor .ql-size-16 {
	font-size: 16px
}

.ql-editor .ql-size-18 {
	font-size: 18px
}

.ql-editor .ql-size-20 {
	font-size: 20px
}

.ql-editor .ql-size-22 {
	font-size: 22px
}

.ql-editor .ql-size-24 {
	font-size: 24px
}

.ql-editor .ql-size-26 {
	font-size: 26px
}

.ql-editor .ql-size-28 {
	font-size: 28px
}

.ql-editor .ql-size-36 {
	font-size: 36px
}

.ql-editor .ql-size-42 {
	font-size: 42px
}

.ql-editor .ql-size-48 {
	font-size: 48px
}

.ql-editor .ql-size-72 {
	font-size: 72px
}

.ql-snow .ql-color-picker.ql-background .ql-picker-item {
	background-color: #fff
}

.ql-snow .ql-color-picker.ql-color .ql-picker-item {
	background-color: #000
}

.ql-code-block-container {
	position: relative
}

.ql-code-block-container .ql-ui {
	right: 4px;
	top: 4px
}

.ql-toolbar.ql-snow {
	border: 2px solid #373d4d;
	padding: 8px;
	border-radius: 8px 8px 0 0;
	background: #121317;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.ql-toolbar.ql-snow i {
	margin-right: 10px
}

.ql-toolbar.ql-snow .ql-picker-label {
	border: 2px solid transparent;
	border-bottom: none
}

.ql-toolbar.ql-snow .ql-picker-options {
	border: 2px solid #373d4d
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
	outline: 0;
	border-radius: 4px;
	background: #373d4d
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
	box-shadow: 0 0 10px 0 #090a0b;
	border-color: #373d4d;
	outline: 0;
	border-radius: 8px
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
	border-color: #000
}

.ql-toolbar.ql-snow+.ql-container.ql-snow {
	border-top: 0
}

.ql-snow .ql-tooltip {
	box-shadow: 0 0 10px 0 #090a0b;
	border-radius: 8px;
	background-color: #121317;
	border: 2px solid #373d4d;
	color: #fff;
	padding: 8px;
	white-space: nowrap
}

.ql-snow .ql-tooltip::before {
	content: "URL地址:";
	line-height: 26px
}

.ql-snow .ql-tooltip input[type=text] {
	display: none;
	border: 2px solid #373d4d;
	font-size: 14px;
	height: 40px;
	margin: 0;
	padding: 4px;
	width: 260px
}

.ql-snow .ql-tooltip input[type=text]:focus {
	border-color: #2196F3;
	background: #362350
}

.ql-snow .ql-tooltip a.ql-preview {
	display: inline-block;
	max-width: 200px;
	overflow-x: hidden;
	text-overflow: ellipsis;
	vertical-align: top
}

.ql-snow .ql-tooltip a.ql-action::after {
	border-right: 1px solid #fff;
	content: '编辑';
	margin-left: 8px;
	padding-right: 8px
}

.ql-snow .ql-tooltip a.ql-remove::before {
	content: '删除';
	margin-left: 8px
}

.ql-snow .ql-tooltip a {
	line-height: 26px
}

.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
	display: none
}

.ql-snow .ql-tooltip.ql-editing input[type=text] {
	display: inline-block
}

.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
	border-right: 0;
	content: '保存';
	padding-right: 0
}

.ql-snow .ql-tooltip[data-mode=link]::before {
	content: "链接："
}

.ql-snow .ql-tooltip[data-mode=formula]::before {
	content: "样式："
}

.ql-snow .ql-tooltip[data-mode=video]::before {
	content: "视频："
}

.ql-snow a {
	color: #3767f8
}

.ql-container.ql-snow {
	border: 2px solid #373d4d;
	border-radius: 0 0 8px 8px;
	background: #282c38
}

.eui-light .ql-editor td {
	border: 1px solid #c4ccd6;
	color: #061e26
}

.eui-light .ql-editor .ql-bg-black {
	background-color: #000
}

.eui-light .ql-editor .ql-color-white {
	color: #fff
}

.eui-light .ql-editor.ql-blank::before {
	color: #6b7182
}

.eui-light .ql-snow .ql-toolbar .ql-picker-item.ql-selected,
.eui-light .ql-snow .ql-toolbar .ql-picker-item:hover,
.eui-light .ql-snow .ql-toolbar .ql-picker-label.ql-active,
.eui-light .ql-snow .ql-toolbar .ql-picker-label:hover,
.eui-light .ql-snow .ql-toolbar button.ql-active,
.eui-light .ql-snow .ql-toolbar button:focus,
.eui-light .ql-snow .ql-toolbar button:hover,
.eui-light .ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.eui-light .ql-snow.ql-toolbar .ql-picker-item:hover,
.eui-light .ql-snow.ql-toolbar .ql-picker-label.ql-active,
.eui-light .ql-snow.ql-toolbar .ql-picker-label:hover,
.eui-light .ql-snow.ql-toolbar button.ql-active,
.eui-light .ql-snow.ql-toolbar button:focus,
.eui-light .ql-snow.ql-toolbar button:hover {
	color: #061e26
}

.eui-light .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.eui-light .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.eui-light .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.eui-light .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.eui-light .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.eui-light .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.eui-light .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.eui-light .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.eui-light .ql-snow .ql-toolbar button.ql-active .ql-fill,
.eui-light .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.eui-light .ql-snow .ql-toolbar button:focus .ql-fill,
.eui-light .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.eui-light .ql-snow .ql-toolbar button:hover .ql-fill,
.eui-light .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.eui-light .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.eui-light .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.eui-light .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.eui-light .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.eui-light .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.eui-light .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.eui-light .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.eui-light .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.eui-light .ql-snow.ql-toolbar button.ql-active .ql-fill,
.eui-light .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.eui-light .ql-snow.ql-toolbar button:focus .ql-fill,
.eui-light .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.eui-light .ql-snow.ql-toolbar button:hover .ql-fill,
.eui-light .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill {
	fill: #061e26
}

.eui-light .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.eui-light .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.eui-light .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.eui-light .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.eui-light .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.eui-light .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.eui-light .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.eui-light .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.eui-light .ql-snow .ql-toolbar button.ql-active .ql-stroke,
.eui-light .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.eui-light .ql-snow .ql-toolbar button:focus .ql-stroke,
.eui-light .ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.eui-light .ql-snow .ql-toolbar button:hover .ql-stroke,
.eui-light .ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.eui-light .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.eui-light .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.eui-light .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.eui-light .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.eui-light .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.eui-light .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.eui-light .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.eui-light .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.eui-light .ql-snow.ql-toolbar button.ql-active .ql-stroke,
.eui-light .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.eui-light .ql-snow.ql-toolbar button:focus .ql-stroke,
.eui-light .ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.eui-light .ql-snow.ql-toolbar button:hover .ql-stroke,
.eui-light .ql-snow.ql-toolbar button:hover .ql-stroke-miter {
	stroke: #061e26
}

@media (pointer:coarse) {

	.eui-light .ql-snow .ql-toolbar button:hover:not(.ql-active),
	.eui-light .ql-snow.ql-toolbar button:hover:not(.ql-active) {
		color: #061e26
	}

	.eui-light .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
	.eui-light .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
	.eui-light .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
	.eui-light .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
		fill: #061e26
	}

	.eui-light .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
	.eui-light .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
	.eui-light .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
	.eui-light .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
		stroke: #061e26
	}
}

.eui-light .ql-snow .ql-stroke {
	stroke: #898d99
}

.eui-light .ql-snow .ql-stroke-miter {
	stroke: #898d99
}

.eui-light .ql-snow .ql-fill,
.eui-light .ql-snow .ql-stroke.ql-fill {
	fill: #898d99
}

.eui-light .ql-snow .ql-editor blockquote {
	border-left-color: #061e26
}

.eui-light .ql-snow .ql-editor .ql-code-block-container,
.eui-light .ql-snow .ql-editor code {
	background-color: #f0f0f0
}

.eui-light .ql-snow .ql-editor .ql-code-block-container {
	background-color: #3d4356;
	color: #fff
}

.eui-light .ql-snow .ql-picker {
	color: #8c95b0
}

.eui-light .ql-snow .ql-picker-options {
	background-color: #fff
}

.eui-light .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
	fill: #ccc
}

.eui-light .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
	stroke: #ccc
}

.eui-light .ql-snow .ql-color-picker.ql-background .ql-picker-item {
	background-color: #fff
}

.eui-light .ql-snow .ql-color-picker.ql-color .ql-picker-item {
	background-color: #000
}

.eui-light .ql-toolbar.ql-snow {
	border-color: #e2e6eb;
	background: #f7f8fc
}

.eui-light .ql-toolbar.ql-snow .ql-picker-options {
	border-color: #e2e6eb
}

.eui-light .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
	background: #e2e6eb
}

.eui-light .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
	box-shadow: 0 0 8px 0 #e0e6f4;
	border-color: #e2e6eb
}

.eui-light .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.eui-light .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
	border-color: #000
}

.eui-light .ql-snow .ql-tooltip {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background-color: #fff;
	border-color: #e2e6eb;
	color: #061e26
}

.eui-light .ql-snow .ql-tooltip input[type=text] {
	border-color: #e2e6eb
}

.eui-light .ql-snow .ql-tooltip input[type=text]:focus {
	border-color: #2196F3;
	background: #f1ebfa
}

.eui-light .ql-container.ql-snow {
	border-color: #e2e6eb;
	background: #fff
}

label {
	position: relative
}

.form-group {
	position: relative;
	cursor: default
}

.form-group h6 {
	color: #8c95b0
}

.form-group:not(:last-child) {
	margin-bottom: 16px
}

.form-group-error {
	color: #e33568
}

.form-group-error .select {
	border-color: #e33568 !important
}

.input-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex
}

.input-group input:nth-child(1) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.input-group input:nth-child(2) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.input-group>span {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
	padding: 0 10px;
	border: 2px #373d4d solid;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.input-group .brnone {
	border-radius: 0
}

.input-group .prepend {
	border-right: none;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px
}

.input-group .append,
.input-group .num-add-cut {
	border-left: none;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px
}

.input-group .num-add-cut {
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.input-group .num-add-cut i {
	padding: 0 4px;
	margin-right: 0;
	cursor: pointer;
	font-weight: 700
}

.input-group .num-add-cut .disabled {
	color: #7c86a1;
	cursor: not-allowed
}

.input-box {
	position: relative
}

.input-box .font-num {
	position: absolute;
	bottom: 14px;
	right: 14px
}

::-webkit-input-placeholder {
	color: #6b7182
}

::-moz-placeholder {
	color: #6b7182
}

::-ms-input-placeholder {
	color: #6b7182
}

input,
textarea {
	border-radius: 8px;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	padding: 10px 12px;
	border: 2px #373d4d solid;
	background: #282c38;
	width: 100%;
	color: #fff
}

input:focus,
textarea:focus {
	box-shadow: 0 0 10px 0 #090a0b;
	outline: 0;
	border-color: #2196F3;
	background: #362350
}

input:disabled,
textarea:disabled {
	cursor: not-allowed;
	color: #7c86a1;
	background: #42495c
}

input:disabled::-webkit-input-placeholder,
textarea:disabled::-webkit-input-placeholder {
	color: #7c86a1
}

input:disabled::-moz-placeholder,
textarea:disabled::-webkit-input-placeholder {
	color: #7c86a1
}

input:disabled::-ms-input-placeholder,
textarea:disabled::-webkit-input-placeholder {
	color: #7c86a1
}

input.error,
textarea.error {
	color: #e7507c;
	border-color: #e33568;
	background: #4f2328
}

.icon-input,
.icon-input-right {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.icon-input i:not(.add):not(.cut),
.icon-input-right i:not(.add):not(.cut) {
	position: absolute;
	font-weight: 700
}

.icon-input input {
	padding-left: 30px
}

.icon-input i {
	left: 10px
}

.icon-input-right input {
	padding-right: 30px
}

.icon-input-right i {
	margin-right: 0;
	right: 10px
}

textarea {
	cursor: text;
	white-space: pre-wrap;
	word-wrap: break-word;
	resize: none
}

input[type=checkbox],
input[type=radio],
select {
	display: none
}

.checkbox,
.checkbox-checked,
.checkbox-checked-disabled,
.checkbox-disabled,
.radio,
.radio-checked,
.radio-checked-disabled,
.radio-disabled {
	height: 40px;
	margin-right: 10px;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.checkbox i,
.checkbox-checked i,
.checkbox-checked-disabled i,
.checkbox-disabled i,
.radio i,
.radio-checked i,
.radio-checked-disabled i,
.radio-disabled i {
	-webkit-transition: .25s ease;
	transition: .25s ease;
	font-size: 20px;
	font-weight: 700;
	margin-top: 2px
}

.checkbox,
.checkbox-checked,
.radio {
	cursor: pointer
}

.checkbox-checked-disabled,
.checkbox-disabled,
.radio-checked-disabled,
.radio-disabled {
	color: #7c86a1;
	cursor: not-allowed
}

.checkbox-checked i,
.radio-checked i {
	color: #2196F3
}

.checkbox-tag,
.checkbox-tag-checked,
.checkbox-tag-checked-disabled,
.checkbox-tag-disabled,
.radio-tag,
.radio-tag-checked,
.radio-tag-checked-disabled,
.radio-tag-disabled {
	padding: 10px 14px;
	cursor: pointer;
	display: inline-block;
	margin-bottom: 4px;
	border-radius: 8px;
	border: 2px dashed #373d4d
}

.checkbox-tag-checked,
.radio-tag-checked {
	border-style: solid;
	border-color: #2196F3;
	background-color: #362350
}

.checkbox-tag-checked-disabled,
.checkbox-tag-disabled,
.radio-tag-checked-disabled,
.radio-tag-disabled {
	border-color: #373d4d;
	color: #7c86a1;
	cursor: not-allowed
}

.checkbox-tag-checked-disabled,
.radio-tag-checked-disabled {
	border-style: solid
}

.radio-switch {
	height: 40px;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.radio-switch div {
	border-radius: 50px;
	background: #373d4d;
	width: 54px;
	height: 32px;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.radio-switch div span {
	border-radius: 50px;
	background: #fff;
	width: 22px;
	height: 22px;
	display: inline-block;
	margin-left: 6px;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.radio-switch .disabled {
	cursor: not-allowed
}

.radio-switch .disabled span {
	background: #7c86a1
}

.radio-switch .open {
	background-image: -webkit-linear-gradient(top left, #a371f2, #2196F3) !important;
	background-image: linear-gradient(to bottom right, #a371f2, #2196F3) !important
}

.radio-switch .open span {
	margin-left: 28px
}

select {
	min-width: 120px
}

.select {
	border-radius: 8px;
	padding: 0 30px 0 10px;
	height: 44px;
	border: 2px #373d4d solid;
	background: #282c38;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: inline-flex;
	position: relative;
	cursor: pointer;
	margin-right: 4px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	min-width: 100px
}

.select i:not(.rotate) {
	position: absolute;
	right: 0
}

.select i.ri-arrow-down-s-line,
.select i.rotate {
	font-weight: 700
}

.select i.rotate {
	font-size: 14px
}

.select input {
	width: 100%;
	border: none;
	padding: 0 4px;
	cursor: pointer
}

.select input:focus {
	background-color: unset;
	box-shadow: none
}

.select span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	display: inline-block;
	width: 100%
}

.select .clear {
	display: none
}

.select-disabled {
	cursor: not-allowed;
	border-color: #373d4d
}

.select-disabled i,
.select-disabled span {
	color: #7c86a1
}

.select-option {
	margin-top: 4px;
	cursor: pointer;
	min-width: 100px
}

.select-option ul .multiple {
	padding: 0 10px 0 4px
}

.select-option ul .multiple label {
	width: 100%;
	height: 100%
}

.select-option ul .multiple label i {
	margin-top: 0
}

.select-option ul .ps__rail-y {
	margin: 4px 0 2px 0
}

.select-option ul .ps__rail-y .ps__thumb-y {
	background-color: #3d4356
}

.auto-complete .loading {
	padding: 10px
}

.eui-light .input-group>span {
	border-color: #e2e6eb
}

.eui-light .input-group .num-add-cut .disabled {
	color: #bbb
}

.eui-light input:disabled::-webkit-input-placeholder,
.eui-light textarea:disabled::-webkit-input-placeholder {
	color: #bbb
}

.eui-light input:disabled::-moz-placeholder,
.eui-light textarea:disabled::-webkit-input-placeholder {
	color: #bbb
}

.eui-light input:disabled::-ms-input-placeholder,
.eui-light textarea:disabled::-webkit-input-placeholder {
	color: #bbb
}

.eui-light input,
.eui-light textarea {
	border-color: #e2e6eb;
	background: #f7f8fc;
	color: #061e26
}

.eui-light input:focus,
.eui-light textarea:focus {
	box-shadow: 0 0 10px 0 rgba(100, 100, 100, .2);
	border-color: #2196F3;
	background: #f1ebfa
}

.eui-light input:disabled,
.eui-light textarea:disabled {
	color: #bbb;
	background: #e8ebef
}

.eui-light input.error,
.eui-light textarea.error {
	border-color: #e33568;
	background: #ffe6e8
}

.eui-light .checkbox-checked-disabled,
.eui-light .checkbox-disabled,
.eui-light .radio-checked-disabled,
.eui-light .radio-disabled {
	color: #bbb
}

.eui-light .checkbox-tag,
.eui-light .radio-tag {
	border-color: #e2e6eb
}

.eui-light .checkbox-tag-checked,
.eui-light .radio-tag-checked {
	border-color: #2196F3;
	background-color: #f1ebfa
}

.eui-light .checkbox-tag-checked-disabled,
.eui-light .checkbox-tag-disabled,
.eui-light .radio-tag-checked-disabled,
.eui-light .radio-tag-disabled {
	border-color: #e2e6eb;
	color: #bbb
}

.eui-light .radio-switch div {
	background: #b5bfcc
}

.eui-light .radio-switch div span {
	background: #fff
}

.eui-light .radio-switch .disabled {
	background: #e2e6eb
}

.eui-light .select {
	border-color: #e2e6eb;
	background: #f7f8fc
}

.eui-light .select input:focus {
	background-color: unset;
	box-shadow: none
}

.eui-light .select-disabled {
	border-color: #e2e6eb
}

.eui-light .select-disabled i,
.eui-light .select-disabled span {
	color: #bbb
}

.eui-light .select-option ul .ps__rail-y .ps__thumb-y {
	background-color: #e2e6eb
}

.imageview {
	cursor: pointer
}

#imageview {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	overflow: hidden;
	background: rgba(0, 0, 0, .5);
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	cursor: pointer
}

#imageview ul {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

#imageview ul li {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px
}

#imageview ul img {
	cursor: move
}

#imageview .imgW {
	width: 100%;
	height: auto
}

#imageview .imgH {
	width: auto;
	height: 100%
}

#imageview .imageview-tips {
	border-radius: 50px;
	color: #fff;
	background: rgba(0, 0, 0, .5);
	padding: 10px 14px;
	z-index: 9999;
	text-align: center;
	display: none
}

#imageview .imageview-thumb {
	width: 200px;
	height: 100%;
	display: none;
	position: absolute;
	right: 0;
	top: 0;
	background: #1d1f25;
	z-index: -1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	padding: 10px 10px 0 10px
}

#imageview .imageview-thumb img {
	width: 100%;
	min-height: 150px;
	height: 150px;
	margin-bottom: 10px;
	-o-object-fit: cover;
	object-fit: cover;
	border-width: 4px
}

#imageview .imageview-thumb .active {
	border-style: solid;
	border-color: #2196F3
}

#imageview .imageview-thumb .ps__rail-y {
	right: 0 !important
}

.eui-light #imageview .imageview-thumb {
	background: #fff
}

.markdown {
	font-size: 16px;
	color: #aeb8ca;
	line-height: 28px
}

.markdown h1,
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
	color: #fff;
	margin: 24px 0
}

.markdown h1 {
	font-size: 32px
}

.markdown h2 {
	font-size: 24px
}

.markdown h3 {
	font-size: 20px
}

.markdown h4 {
	font-size: 18px
}

.markdown h5 {
	font-size: 16px
}

.markdown h6 {
	font-size: 14px
}

.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
	font-weight: 400
}

.markdown hr {
	border: 0;
	margin: 24px 0;
	border-bottom: 1px dashed #373d4d
}

.markdown em {
	font-style: italic;
	color: #fff
}

.markdown ul {
	padding-left: 16px
}

.markdown ul li {
	display: list-item;
	line-height: 30px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	list-style: disc
}

.markdown p {
	margin-bottom: 20px;
	line-height: 1.8
}

.markdown p strong {
	color: #fff;
	margin: 0 4px
}

.markdown img {
	margin: 8px 0;
	border-radius: 8px
}

.markdown pre {
	border-radius: 4px;
	background: #282c38;
	padding: 14px
}

.markdown pre code {
	background: 0 0;
	padding: 0;
	border-radius: 0
}

.markdown blockquote {
	padding: 14px;
	border-left: 6px solid #373d4d;
	margin: 0 0 20px 0;
	background: #282c38
}

.markdown blockquote p {
	margin-bottom: 0;
	line-height: 2
}

.markdown code {
	background: #373d4d;
	padding: 4px 8px;
	border-radius: 8px;
	color: #fff;
	margin: 0 4px
}

.markdown input[type=checkbox] {
	margin-right: 4px
}

.markdown table {
	border: 2px solid #373d4d;
	width: 100%
}

.markdown table thead th {
	color: #fff
}

.markdown table td,
.markdown table th {
	line-height: 24px;
	padding: 10px;
	border-left: 2px solid #373d4d;
	border-top: 2px solid #373d4d
}

.markdown table td:first-of-type,
.markdown table th:first-of-type {
	width: 240px
}

.markdown table tr:nth-child(odd) td {
	background: #000
}

.eui-light .markdown hr {
	border-bottom-color: #e2e6eb
}

.eui-light .markdown p strong {
	color: #898d99
}

.eui-light .markdown pre {
	background: #f7f8fc
}

.eui-light .markdown blockquote {
	border-left-color: #e2e6eb;
	background: #f7f8fc
}

.eui-light .markdown table {
	border-color: #d6dce3
}

.eui-light .markdown table td,
.eui-light .markdown table th {
	border-left-color: #d6dce3;
	border-top-color: #d6dce3
}

.eui-light .markdown table tr:nth-child(odd) td {
	background: #fff
}

.hljs {
	color: #c9d1d9;
	background: #0d1117
}

.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-variable.language_ {
	color: #ff7b72
}

.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_ {
	color: #d2a8ff
}

.hljs-attr,
.hljs-attribute,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-operator,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id,
.hljs-variable {
	color: #79c0ff
}

.hljs-meta .hljs-string,
.hljs-regexp,
.hljs-string {
	color: #a5d6ff
}

.hljs-built_in,
.hljs-symbol {
	color: #ffa657
}

.hljs-code,
.hljs-comment,
.hljs-formula {
	color: #8b949e
}

.hljs-name,
.hljs-quote,
.hljs-selector-pseudo,
.hljs-selector-tag {
	color: #7ee787
}

.hljs-subst {
	color: #c9d1d9
}

.hljs-section {
	color: #1f6feb;
	font-weight: 700
}

.hljs-bullet {
	color: #f2cc60
}

.hljs-emphasis {
	color: #c9d1d9;
	font-style: italic
}

.hljs-strong {
	color: #c9d1d9;
	font-weight: 700
}

.hljs-addition {
	color: #aff5b4;
	background-color: #033a16
}

.hljs-deletion {
	color: #ffdcd7;
	background-color: #67060c
}

.eui-message {
	box-shadow: 0 0 10px 0 #090a0b;
	border-radius: 8px;
	color: #fff;
	position: fixed;
	background: #000;
	z-index: 99999;
	padding: 0 14px;
	left: 50%;
	display: none;
	height: 40px;
	line-height: 40px
}

.eui-message i {
	font-size: 20px
}

.eui-message .info {
	color: #ffc126
}

.eui-message .error {
	color: #e33568
}

.eui-message .success {
	color: #6ec34f
}

.eui-light .eui-message {
	box-shadow: 0 0 8px 0 rgba(0, 64, 128, .2);
	color: #061e26;
	background: #fff
}

#notice {
	position: fixed;
	right: 10px;
	width: 320px;
	z-index: 9999
}

.notice {
	box-shadow: 0 0 10px 0 #090a0b;
	border-radius: 8px;
	background: #000;
	padding: 10px;
	width: 100%;
	margin-bottom: 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.notice i {
	margin-right: 0
}

.notice .box {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	margin: 0 4px
}

.notice .box .notice-title {
	font-size: 16px
}

.notice .box .desc {
	line-height: 1.4;
	color: #8c95b0;
	margin-top: 4px
}

.notice .close {
	cursor: pointer;
	font-weight: 700
}

.notice .title-icon {
	font-size: 26px
}

.notice .href {
	margin: 8px 0 4px 0
}

.notice .href a {
	font-weight: 700
}

.notice .info {
	color: #ffc126
}

.notice .error {
	color: #e33568
}

.notice .success {
	color: #6ec34f
}

.eui-light .notice {
	box-shadow: 0 0 8px 0 rgba(0, 64, 128, .2);
	background: #fff
}

.eui-light .notice .box .desc {
	color: #898d99
}

#popup {
	box-shadow: 0 0 10px 0 #090a0b;
	border-radius: 8px;
	position: fixed;
	background: #1d1f25;
	z-index: 9999;
	padding: 8px;
	top: 30%;
	left: 50%;
	text-align: center;
	min-width: 260px;
	max-width: 360px;
	margin: 0 0 0 -130px
}

#popup span {
	display: block
}

#popup i {
	font-size: 36px;
	margin-right: 0
}

#popup .title {
	font-size: 18px;
	margin: 10px 0
}

#popup .txt {
	margin: 10px;
	line-height: 22px;
	word-break: break-all
}

#popup .btn {
	margin: 14px 0 10px 0
}

#popup .btn button {
	margin: 0
}

#popup .alert {
	color: #ffc126
}

#popup .error {
	color: #e33568
}

#popup .success {
	color: #6ec34f
}

#popup .confirm {
	color: #ffc126
}

.eui-light #popup {
	box-shadow: none;
	background: #fff
}

.progress {
	height: 30px;
	position: relative
}

.progress .bg,
.progress .percent,
.progress .point {
	border-radius: 50px;
	position: absolute;
	top: 10px;
	left: 0;
	height: 13px
}

.progress .bg {
	width: 100%;
	background: #373d4d;
	font-size: 14px
}

.progress .percent {
	box-shadow: 0 0 10px 0 #090a0b;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	background-image: -webkit-linear-gradient(left, #a371f2, #2196F3);
	background-image: linear-gradient(to right, #a371f2, #2196F3)
}

.progress .point {
	width: 100%;
	line-height: 13px;
	color: #fff;
	text-align: center
}

.progress-round {
	position: relative
}

.progress-round svg {
	width: 100%;
	height: 100%;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg)
}

.progress-round svg circle {
	fill: none;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.progress-round svg circle:nth-child(1) {
	stroke-width: 8px;
	stroke: #373d4d;
	stroke-dashoffset: 0
}

.progress-round svg circle:nth-child(2) {
	stroke-width: 10px
}

.progress-round svg #linear .start {
	stop-color: #2196F3
}

.progress-round svg #linear .end {
	stop-color: #a371f2
}

.progress-round svg #linear-blue .start {
	stop-color: #3767f8
}

.progress-round svg #linear-blue .end {
	stop-color: #819ffb
}

.progress-round svg #linear-red .start {
	stop-color: #e33568
}

.progress-round svg #linear-red .end {
	stop-color: #ec789a
}

.progress-round svg #linear-green .start {
	stop-color: #6ec34f
}

.progress-round svg #linear-green .end {
	stop-color: #9dd688
}

.progress-round svg #linear-yellow .start {
	stop-color: #ffc126
}

.progress-round svg #linear-yellow .end {
	stop-color: #ffd772
}

.progress-round svg #linear-purple .start {
	stop-color: #8548ff
}

.progress-round svg #linear-purple .end {
	stop-color: #b895ff
}

.progress-round svg #linear-pink .start {
	stop-color: #fc3ca9
}

.progress-round svg #linear-pink .end {
	stop-color: #fd87ca
}

.progress-round svg #linear-cyan .start {
	stop-color: #00ccea
}

.progress-round svg #linear-cyan .end {
	stop-color: #37e5ff
}

.progress-round svg #linear-orange .start {
	stop-color: #ff6746
}

.progress-round svg #linear-orange .end {
	stop-color: #ffa693
}

.progress-round svg #linear-grey .start {
	stop-color: #8c95b0
}

.progress-round svg #linear-grey .end {
	stop-color: #b9bfcf
}

.progress-round div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.progress-panel {
	box-shadow: 0 0 10px 0 #090a0b;
	z-index: 9999;
	position: fixed;
	background: #1d1f25;
	border-radius: 8px;
	top: 35%;
	left: 50%;
	width: 270px;
	height: 180px;
	margin: 0 0 0 -135px;
	padding: 20px
}

.progress-panel>div:first-child h6 {
	margin-bottom: 20px
}

.progress-panel>div:first-child h6 i {
	font-size: 18px
}

.progress-panel>div:first-child>i {
	position: absolute;
	top: 15px;
	right: 10px;
	margin-right: 0;
	font-size: 18px;
	cursor: pointer
}

.progress-panel>div:first-child .percent {
	margin-bottom: 30px
}

.progress-panel>div:last-child {
	display: none
}

.progress-panel-mini {
	width: 50px;
	height: 50px;
	top: inherit;
	left: inherit;
	right: 50px;
	bottom: 50px;
	border-radius: 50%;
	padding: 0;
	cursor: pointer
}

.progress-panel-mini>div:first-child {
	display: none
}

.progress-panel-mini>div:last-child {
	display: block
}

.eui-light .progress .bg {
	background: #f2f4fa
}

.eui-light .progress .percent {
	box-shadow: none
}

.eui-light .progress .point {
	color: #fff;
	text-shadow: 0 0 2px #000
}

.eui-light .progress-round svg circle:nth-child(1) {
	stroke-width: 10px;
	stroke: #e2e6eb
}

.eui-light .progress-panel {
	box-shadow: none;
	background: #fff
}

.rate {
	cursor: default;
	margin-top: 20px
}

.rate .star {
	-webkit-transition: .25s ease;
	transition: .25s ease;
	display: inline-block;
	font-size: 20px;
	margin-right: 4px;
	cursor: pointer;
	font-weight: 700
}

.rate .star:active:not(.disabled) {
	-webkit-transform: scale(1.4, 1.4);
	transform: scale(1.4, 1.4);
	color: #f2ad00
}

.rate .full {
	width: initial;
	color: #ffc126
}

.rate .disabled {
	cursor: not-allowed;
	color: #7c86a1
}

.eui-light .rate .disabled {
	color: #bbb
}

#__reader {
	padding: 4px 0 0 0;
	height: 100%
}

.status {
	margin-right: 10px;
	font-size: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.status i {
	margin-right: 4px !important;
	border-radius: 50px;
	width: 10px;
	height: 10px
}

.steps .steps-num {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	margin-bottom: 30px
}

.steps .steps-num>div {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	overflow: hidden
}

.steps .steps-num>div:not(:last-child) {
	margin-right: 8px
}

.steps .steps-num>div:not(:last-child) .info div:first-child {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

.steps .steps-num>div:not(:last-child) .info div:first-child::after {
	content: "";
	display: block;
	width: 9999px;
	border-left: 0;
	border-top: 0;
	border-bottom: 2px #373d4d solid;
	left: 100%;
	top: 50%;
	position: absolute;
	margin-left: 8px;
	-webkit-transition: .25s border-bottom-color ease;
	transition: .25s border-bottom-color ease
}

.steps .steps-num>div:last-child {
	-webkit-box-flex: 0;
	-webkit-flex: none;
	flex: none
}

.steps .steps-num>div .num {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	border: 2px #373d4d solid;
	border-radius: 50px;
	width: 24px;
	height: 24px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin-right: 8px;
	font-size: 16px;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	-webkit-transition: .25s ease;
	transition: .25s ease
}

.steps .steps-num>div .num i {
	margin-right: 0;
	font-weight: 700;
	font-size: 18px;
	margin-top: 2px;
	color: #fff
}

.steps .steps-num>div .info {
	margin-top: 2px
}

.steps .steps-num>div .info div:first-child {
	font-size: 16px;
	margin-bottom: 8px;
	-webkit-transition: .25s color ease;
	transition: .25s color ease
}

.steps .steps-num>div .info div:last-child {
	color: #8c95b0
}

.steps .steps-num .over .num {
	border-color: #6ec34f;
	background: #6ec34f
}

.steps .steps-num .over .info div:first-child {
	color: #6ec34f
}

.steps .steps-num .over:not(:last-child) .info div:first-child::after {
	box-shadow: 0 0 10px 0 #090a0b;
	border-bottom-color: #6ec34f
}

.steps .steps-num .active .num {
	border-color: #2196F3;
	background: #2196F3;
	color: #fff
}

.steps .step-btn {
	margin-top: 20px
}

.steps .step-btn .hl,
.steps .step-btn .reset {
	display: none
}

.steps [data-step] {
	display: none
}

.eui-light .steps .steps-num>div:not(:last-child) .info div:first-child::after {
	border-bottom-color: #e2e6eb
}

.eui-light .steps .steps-num>div .num {
	border-color: #e2e6eb
}

.eui-light .steps .steps-num .over .num {
	border-color: #6ec34f
}

.eui-light .steps .steps-num .over:not(:last-child) .info div:first-child::after {
	box-shadow: 0 0 8px 0 #e0e6f4;
	border-bottom-color: #6ec34f
}

.eui-light .steps .steps-num .active .num {
	border-color: #2196F3
}

.tab {
	border-bottom: 2px #373d4d solid;
	white-space: nowrap
}

.tab span {
	background: #282c38;
	display: inline-block;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	position: relative;
	padding: 0 14px;
	border: 2px #373d4d solid;
	border-bottom: none;
	margin-right: 4px;
	border-radius: 8px 8px 0 0
}

.tab span .mark {
	border-radius: 50px;
	position: absolute;
	background: #2196F3;
	color: #fff;
	right: 4px;
	top: -6px;
	font-size: 10px;
	line-height: 15px;
	padding: 0 4px
}

.tab .active {
	background: #1d1f25;
	height: 42px;
	border-bottom: 2px #1d1f25 solid;
	margin-bottom: -2px
}

.tab-panel {
	min-height: 400px;
	display: none;
	position: relative
}

.tab-panel .table-search .block-box {
	margin-top: 0 !important
}

.tab-panel .block-box {
	margin-top: 10px !important
}

.tab-panel .block-box>.col-12 {
	padding-top: 0
}

.tab-panel .block-box .block {
	padding: 0;
	box-shadow: none
}

.tab-panel .panel-loading {
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	color: #8c95b0;
	font-size: 16px
}

.tab-panel .panel-loading i {
	font-size: 20px
}

.eui-light .tab {
	border-bottom-color: #e2e6eb
}

.eui-light .tab span {
	background: #f7f8fc;
	border-color: #e2e6eb
}

.eui-light .tab span .mark {
	background: #2196F3;
	color: #fff
}

.eui-light .tab .active {
	background: #fff;
	border-bottom-color: #fff
}

.eui-light .tab-panel .panel-loading {
	color: #898d99
}

.table-search button,
.table-tools button {
	margin-right: 8px;
	padding: 10px 14px
}

.table-search .form-group,
.table-tools .form-group {
	min-height: inherit
}

.table-search {
	margin-bottom: 16px
}

.table-search .table-search-box>div {
	padding-top: 8px;
	padding-bottom: 0
}

.table-tools {
	margin-top: 10px
}

.table-tools .config-table-column {
	float: right;
	margin-right: 0
}

.table {
	position: relative;
	margin-top: 10px;
	min-height: 260px
}

.table .table-box {
	position: relative;
	display: none;
	border-top: 2px #000 solid;
	overflow: hidden;
	min-height: 260px
}

.table .table-box thead {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 3
}

.table .table-box thead>tr td {
	height: 40px;
	color: #8c95b0;
	background: #141518
}

.table .table-box thead>tr td::before {
	content: '';
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	border-top: 2px #000 solid
}

.table .table-box thead>tr .order {
	padding-right: 30px
}

.table .table-box thead>tr .order i {
	position: absolute;
	cursor: pointer;
	margin-right: 0;
	font-weight: 700;
	margin-left: 4px
}

.table .table-box thead>tr .order i:first-child {
	top: 6px
}

.table .table-box thead>tr .order i:last-child {
	top: 16px
}

.table .table-box thead>tr .order .active {
	color: #2196F3
}

.table .table-box tbody tr:not(.flod) td {
	background-color: #1d1f25
}

.table .table-box tbody tr:not(.flod) td .child {
	color: #ffc126
}

.table .table-box tbody tr:not(.flod) td .placeholder {
	display: inline-block;
	width: 24px
}

.table .table-box tbody tr:not(.flod) td::before {
	content: '';
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	border-bottom: 2px #2f3441 solid
}

.table .table-box tbody tr:not(.flod):hover td {
	background-color: #362350 !important
}

.table .table-box tbody tr:not(.flod):nth-child(even) td {
	background-color: #141518
}

.table .table-box tbody img {
	height: 40px;
	width: 40px;
	vertical-align: middle;
	margin-right: 4px
}

.table .table-box tbody button {
	border: none;
	margin-right: 0
}

.table .table-box tbody .table-img-head {
	border: 3px #2196F3 solid;
	width: 36px;
	height: 36px;
	border-radius: 50px
}

.table .table-box tbody .column-window {
	cursor: pointer
}

.table .table-box td:not(.td-checkbox) {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	min-width: 50px;
	max-width: 500px;
	padding: 0 10px
}

.table .table-box .td-checkbox {
	width: 40px
}

.table .table-box .td-checkbox div {
	width: 40px
}

.table .table-box .td-checkbox div label {
	height: 38px !important
}

.table .table-box .td-checkbox::after {
	box-shadow: none !important
}

.table .table-box .td-fixed-left,
.table .table-box .td-fixed-right {
	position: -webkit-sticky;
	position: sticky;
	overflow: inherit !important
}

.table .table-box .td-fixed-left::after,
.table .table-box .td-fixed-right::after {
	content: '';
	position: absolute;
	top: 0;
	width: 10px;
	height: 100%
}

.table .table-box .td-fixed-left {
	left: 0;
	z-index: 2
}

.table .table-box .td-fixed-left::after {
	right: 0;
	box-shadow: 5px 0 5px 0 #090a0b
}

.table .table-box .td-fixed-right {
	right: 0
}

.table .table-box .td-fixed-right::after {
	left: 0;
	box-shadow: -5px 0 5px 0 #090a0b
}

.table .table-box .td-button-fold {
	width: 50px;
	padding: 0;
	text-align: center;
	cursor: pointer
}

.table .table-box .td-button-fold>i {
	margin-right: 0
}

.table .table-box .ps__rail-y {
	right: 0;
	z-index: 999
}

.table .table-box .ps__rail-x {
	bottom: 0;
	z-index: 9
}

.table td {
	height: 60px;
	position: relative
}

.table td:first-child {
	padding-left: 10px
}

.table .empty {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	height: 200px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #8c95b0;
	font-size: 16px
}

.table-page {
	text-align: right;
	margin-top: 14px;
	margin-bottom: -4px;
	cursor: default;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end
}

.table-page>span {
	display: none
}

.table-page>span:not(.jump):not(.info) {
	border-radius: 8px;
	cursor: pointer;
	margin: 0 2px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	font-size: 16px
}

.table-page>span:not(.jump):not(.info):hover:not(.current) {
	background: #282c38
}

.table-page .next-page>i,
.table-page .prev-page>i {
	margin-right: 0;
	font-weight: 700
}

.table-page .current {
	box-shadow: 0 0 10px 0 #090a0b;
	background-image: -webkit-linear-gradient(top left, #a371f2, #2196F3) !important;
	background-image: linear-gradient(to bottom right, #a371f2, #2196F3) !important
}

.table-page .info {
	text-align: left;
	margin-right: 8px
}

.table-page .jump {
	margin-left: 8px
}

.table-page .jump input {
	width: 60px;
	margin: 0 2px
}

.table-page .jump button {
	margin-left: 6px
}

.table-page .select,
.table-page .select-option {
	margin-left: 4px
}

.table-page .select {
	min-width: auto
}

.table-shade {
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	font-size: 16px;
	display: none
}

.table-shade i {
	font-size: 20px
}

.table-shade-bg {
	background: rgba(0, 0, 0, .2)
}

.scroll-x-panel {
	display: none;
	width: 80px;
	height: 80px;
	position: fixed;
	right: 40px;
	bottom: 50%;
	background: rgba(0, 0, 0, .5);
	z-index: 10;
	border-radius: 8px;
	cursor: move
}

.eui-light .table .table-box {
	border-top-color: #e2e6eb
}

.eui-light .table .table-box thead>tr td {
	color: #898d99;
	background: #f6f8fc
}

.eui-light .table .table-box thead>tr td::before {
	border-top-color: #e2e6eb
}

.eui-light .table .table-box tbody tr:not(.flod) td {
	background-color: #fff
}

.eui-light .table .table-box tbody tr:not(.flod) td::before {
	border-bottom-color: #e2e6eb
}

.eui-light .table .table-box tbody tr:not(.flod):hover td {
	background-color: #f1ebfa !important
}

.eui-light .table .table-box tbody tr:not(.flod):nth-child(even) td {
	background-color: #f6f8fc
}

.eui-light .table .table-box tbody button {
	color: #fff
}

.eui-light .table .table-box tbody .table-img-head {
	box-shadow: none
}

.eui-light .table .table-box .fold tr {
	border-top-color: #e2e6eb
}

.eui-light .table .table-box .td-fixed-left::after {
	box-shadow: 5px 0 5px 0 rgba(0, 64, 128, .2)
}

.eui-light .table .table-box .td-fixed-right::after {
	box-shadow: -5px 0 5px 0 rgba(0, 64, 128, .2)
}

.eui-light .table .empty {
	color: #898d99
}

.eui-light .table-page>span:not(.jump):not(.info):hover:not(.current) {
	background: #f2f4fa
}

.eui-light .table-page .current {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background-image: -webkit-linear-gradient(top left, #a371f2, #2196F3) !important;
	background-image: linear-gradient(to bottom right, #a371f2, #2196F3) !important;
	color: #fff
}

.eui-light .table-shade-bg {
	background: rgba(50, 50, 50, .1);
	color: #000
}

.eui-light .scroll-x-panel {
	background: rgba(0, 0, 0, .2)
}

.eui-tag-box {
	font-size: 0
}

.tag {
	border-radius: 4px;
	display: inline-block;
	outline: 0;
	font-family: inherit;
	margin: 4px 4px 4px 0;
	cursor: default;
	font-size: 14px;
	padding: 6px 10px
}

div.tips {
	box-shadow: 0 0 10px 0 #090a0b;
	border-radius: 8px;
	position: absolute;
	left: -9999px;
	top: -9999px;
	background: #000;
	padding: 12px;
	cursor: default;
	max-width: 260px;
	min-width: 50px;
	line-height: 1.5;
	z-index: 9999
}

div.tips .tips-arrow {
	position: absolute;
	border-width: 6px;
	border-style: solid;
	border-color: transparent
}

div.tips .down {
	left: 50%;
	margin-left: -6px;
	bottom: -12px;
	border-top-color: #000
}

div.tips .top {
	left: 50%;
	margin-left: -6px;
	top: -12px;
	border-bottom-color: #000
}

div.tips .right {
	top: 50%;
	margin-top: -6px;
	right: -12px;
	border-left-color: #000
}

div.tips .left {
	top: 50%;
	margin-top: -6px;
	left: -12px;
	border-right-color: #000
}

.eui-light div.tips {
	box-shadow: 0 0 8px 0 #e0e6f4;
	background: #fff
}

.eui-light div.tips .down {
	border-top-color: #fff
}

.eui-light div.tips .top {
	border-bottom-color: #fff
}

.eui-light div.tips .right {
	border-left-color: #fff
}

.eui-light div.tips .left {
	border-right-color: #fff
}

.transfer-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap
}

.transfer-box .box-list {
	border-radius: 8px;
	width: 180px;
	height: 300px;
	border: 2px #373d4d solid
}

.transfer-box .box-list .header {
	background: #282c38;
	border-bottom: 2px #373d4d solid;
	padding: 0 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	border-radius: 8px 8px 0 0
}

.transfer-box .box-list .header>label {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	height: 34px
}

.transfer-box .search {
	margin: 5px 5px 0 5px
}

.transfer-box .search input {
	padding: 8px
}

.transfer-box .body {
	padding: 0 5px !important;
	margin-top: 5px
}

.transfer-box .body li {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	border-radius: 8px;
	cursor: pointer;
	padding: 0 10px 0 5px
}

.transfer-box .body li:hover {
	background: #282c38
}

.transfer-box .body li label {
	width: 100%;
	height: 30px
}

.transfer-box .body .disabled {
	cursor: not-allowed
}

.transfer-box .body .disabled:hover {
	background: 0 0
}

.transfer-box .body .ps__rail-y .ps__thumb-y {
	background-color: #3d4356
}

.transfer-box .button {
	margin: 0 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.transfer-box .button button {
	border-radius: 8px;
	margin: 5px 0;
	padding: 6px
}

.transfer-box .button button i {
	margin-right: 0;
	font-weight: 700;
	font-size: 24px
}

.eui-light .transfer-box .box-list {
	border-color: #e2e6eb
}

.eui-light .transfer-box .box-list .header {
	background: #f7f8fc;
	border-bottom-color: #e2e6eb
}

.eui-light .transfer-box .body li:hover {
	background: #f2f4fa
}

.eui-light .transfer-box .body .ps__rail-y .ps__thumb-y {
	background-color: #e2e6eb
}

.tree label {
	line-height: 24px;
	height: 24px
}

.tree div {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	cursor: pointer;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	line-height: 25px
}

.tree div i.rotate {
	color: #7c86a1
}

.tree div>i {
	font-size: 20px;
	margin-right: 2px;
	font-weight: 700
}

.tree .child,
.tree .child-no-checkbox {
	width: 100%;
	display: none
}

.tree .child {
	padding-left: 22px
}

.tree .child-no-checkbox {
	padding-left: 21px
}

.tree .node i {
	margin-right: 4px
}

.tree .node span {
	display: inline-block;
	max-width: 150px;
	overflow: hidden
}

.tree .node .active {
	background-image: -webkit-linear-gradient(top left, #a371f2, #2196F3) !important;
	background-image: linear-gradient(to bottom right, #a371f2, #2196F3) !important;
	padding: 0 4px;
	border-radius: 8px;
	margin-left: -4px
}

.eui-light .node .active {
	color: #fff
}

.dropzone {
	min-height: 160px;
	border: 2px dashed #373d4d;
	background: #282c38;
	padding: 8px;
	border-radius: 8px;
	position: relative;
	-webkit-transition: .25s ease;
	transition: .25s ease;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap
}

.dropzone-mini {
	min-height: inherit !important;
	width: 80px;
	height: 80px
}

.dropzone:hover {
	border-color: #2196F3;
	background: #362350
}

.dropzone .dz-message {
	font-size: 14px;
	min-height: 74px;
	text-align: center;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1
}

.dropzone .dz-mini {
	margin: inherit !important;
	min-height: inherit !important
}

.dropzone .dz-mini i {
	font-size: 28px !important;
	margin-bottom: 4px !important
}

.dropzone .dz-message i {
	font-size: 42px;
	margin: 0 auto;
	display: block;
	margin-bottom: 10px
}

.dropzone.dz-clickable {
	cursor: pointer
}

.dropzone.dz-clickable:not(.dz-remove) {
	cursor: default
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
	cursor: pointer
}

.dropzone.dz-started .dz-message {
	display: none
}

.dropzone .dz-preview {
	position: relative;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 33.33333333%;
	flex: 0 1 33.33333333%;
	padding: 4px;
	max-width: 33.33333333%
}

.dropzone .dz-preview-whole {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 100%;
	flex: 0 1 100%;
	max-width: 100%
}

.dropzone .dz-preview .dz-image {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	display: block;
	z-index: 10;
	background: #1d1f25
}

.dropzone .dz-preview .dz-details {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	padding: 1em;
	display: none
}

.dropzone .dz-preview .dz-details .dz-filename {
	font-size: 14px;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
	line-height: 1.2
}

.dropzone .dz-preview .dz-details .dz-size strong {
	background: inherit !important;
	margin: inherit !important
}

.dropzone .dz-preview .dz-image {
	height: 125px
}

.dropzone .dz-preview .dz-image img {
	display: block;
	border-radius: 8px;
	width: 100%;
	height: 125px;
	-o-object-fit: cover;
	object-fit: cover
}

.dropzone .dz-preview-mini {
	min-height: inherit !important;
	padding: 0;
	-webkit-flex-basis: 100%;
	flex-basis: 100%;
	max-width: 100%;
	position: relative;
	height: 100%
}

.dropzone .dz-preview-mini .dz-image {
	width: inherit !important;
	height: inherit !important;
	background: 0 0
}

.dropzone .dz-preview-mini .dz-image img {
	height: auto
}

.dropzone .dz-preview-mini .dz-details {
	padding: 0;
	overflow: hidden
}

.dropzone .dz-preview-mini .dz-error-i,
.dropzone .dz-preview-mini .dz-remove-i,
.dropzone .dz-preview-mini .dz-success-i {
	opacity: 0 !important;
	right: 2px !important;
	bottom: 2px !important
}

.dropzone .dz-file-preview .dz-image img {
	height: 0
}

.dropzone .dz-file-preview .dz-details {
	display: block
}

.dropzone .dz-button {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	display: none;
	padding: 0 10px 0 14px;
	width: 100%;
	overflow: hidden;
	height: 30px;
	line-height: 30px;
	margin-bottom: 8px
}

.dropzone .dz-button button {
	float: right;
	margin-right: 0
}

.dropzone .dz-button span {
	float: left
}

.dropzone .dz-preview.dz-processing .dz-progress {
	opacity: 1;
	-webkit-transition: all .25s ease;
	transition: all .25s ease
}

.dropzone .dz-preview.dz-complete .dz-progress {
	opacity: 0;
	-webkit-transition: opacity .4s ease-in;
	transition: opacity .4s ease-in
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
	-webkit-animation: pulse 6s ease infinite;
	animation: pulse 6s ease infinite
}

.dropzone .dz-preview .dz-progress {
	opacity: 0;
	z-index: 1000;
	pointer-events: none;
	position: absolute;
	height: 4px;
	top: 0;
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	overflow: hidden;
	background: #2196F3
}

.dropzone .dz-preview .dz-progress .dz-upload {
	background: #2196F3;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	-webkit-transition: width .3s ease-in-out;
	transition: width .3s ease-in-out
}

.dropzone .dz-preview .dz-error-i,
.dropzone .dz-preview .dz-remove-i,
.dropzone .dz-preview .dz-success-i {
	opacity: 0;
	z-index: 500;
	position: absolute;
	display: block;
	bottom: 8px;
	right: 8px;
	margin-right: 0;
	font-size: 20px
}

.dropzone .dz-preview .dz-success-i {
	color: #6ec34f
}

.dropzone .dz-preview .dz-error-i {
	color: #e33568
}

.dropzone .dz-preview .dz-remove-i {
	opacity: 1;
	color: #fff;
	cursor: pointer
}

.dropzone .dz-error .dz-error-i {
	opacity: 1 !important
}

.dropzone .dz-success .dz-success-i {
	opacity: 1 !important
}

.dropzone .dz-complete .dz-remove-i {
	opacity: 0
}

.eui-light .dropzone {
	border-color: #e2e6eb;
	background: #f7f8fc
}

.eui-light .dropzone:hover {
	border-color: #2196F3;
	background: #f1ebfa
}

.eui-light .dropzone .dz-preview .dz-image {
	background: #fff
}

.window {
	box-shadow: 0 0 10px 0 #090a0b;
	border-radius: 8px;
	position: fixed;
	background: #1d1f25;
	z-index: 9999;
	padding: 0 0 14px 14px;
	top: 50%;
	left: 50%
}

.window .title {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	height: 40px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding-right: 14px
}

.window .title span {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	margin-left: 4px;
	height: 40px;
	line-height: 40px
}

.window .title i {
	font-size: 20px;
	margin-right: 0
}

.window .title i:last-child {
	margin-left: 20px;
	cursor: pointer;
	margin-right: -2px;
	color: #e33568;
	-webkit-transition: color .25s ease;
	transition: color .25s ease
}

.window .title i:last-child:hover {
	color: #e96289
}

.window .loading {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	color: #8c95b0;
	font-size: 16px
}

.window .loading i {
	font-size: 20px
}

.window .body {
	position: relative;
	overflow: hidden;
	padding-right: 14px
}

.window .body .block-box {
	margin-top: 0
}

.window .body .block-box .block {
	padding: 0;
	box-shadow: none
}

.window .btnbar {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding-right: 14px;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end
}

.window .btnbar div {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center
}

.window .btnbar button {
	margin-right: 0;
	margin-left: 8px
}

.window .btnbar button:first-child {
	margin-left: 0
}

.window .quote {
	margin: 10px 0;
	box-shadow: none;
	background: #282c38
}

.eui-light .window {
	box-shadow: none;
	background: #fff
}

.eui-light .window .loading {
	color: #898d99
}

.eui-light .window .quote {
	background: #f1f2f7
}