﻿@charset "utf-8";

:root {
	--primary: #1b4afe;
	--secondary: #6b8eff;
	--blendent0: #fe6b02;
	--blendent1: #fd9619;
	--blendent2: #ffc305;
	--blendent3: #fbdd45;
	--success: #199a44;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--red: #dc3545;
	--white: #fff;
	--dark: #343a40;
	--headlineColor: #1e2531;
	--textPartColor: #4b4d5e;
	--auxiliaryColor: #818393;
	--labelColor: #9697a0;
	--impression: #eee;
	--bgColor: #f8f9ff;
}

html,
body {
	width: 100%;
	min-height: 100%;
}

html {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	/*谷歌浏览器字体最小字体12px*/
	-webkit-text-size-adjust: none;
	/*100%/none 关闭字体大小自动调整功能*/
	/*a标签及拥有 :active伪类的元素有默认的高亮框*/
	-webkit-tap-hightlight-color: transparent;
	/*禁止文本被选中*/
	-webkit-user-select: none;
}

body {
	overflow-x: hidden;
	/*开启moblie网页快速滚动和回弹的效果*/
	-webkit-overflow-scrolling: touch;
	font-size: 12px;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	overflow-x: hidden;
	-webkit-text-size-adjust: none !important;
	/* IOS禁止微信调整字体大小 */
	/* -webkit-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
	-moz-text-size-adjust: 100% !important; */
}

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

input,
textarea,
keygen,
select,
button {
	outline: none;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
}

html,
body {
	margin: 0;
	padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
nav ul,
nav li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

thead {
	background-color: #436a6a;
}

td,
th {
	vertical-align: top;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #eceeef;
}

a {
	text-decoration: none;
	color: #2196F3;
}

img {
	border: none;
}

div,
a,
img {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

input {
	outline: none;
	border: none;
}

::-webkit-input-placeholder {
	color: #ccc;
	font-weight: 500;
}

:-moz-placeholder {
	color: #ccc;
	font-weight: 500;
}

::-moz-placeholder {
	color: #ccc;
	font-weight: 500;
}

:-ms-input-placeholder {
	color: #ccc;
	font-weight: 500;
}

p {
	line-height: 1.5;
}

/* 复选开关 */

.switchLR input {
	display: none;
}

.switchLR {
	width: 50px;
	height: 20px;
	position: relative;
}

.switchLR label {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: inline-block;
	position: absolute;
	z-index: 9;
}

.knobs,
.layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.knobs {
	z-index: 2;
}

.layer {
	width: 100%;
	background-color: #e6e6e6;
	z-index: 1;
}

.switchLR .knobs:before {
	content: '关';
	position: absolute;
	top: -3px;
	left: 0;
	width: 26px;
	height: 26px;
	line-height: 26px;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	background-color: #868686;
	border-radius: 50%;
}

.switchLR input[type="checkbox"]:checked+.knobs:before {
	content: '开';
	left: 24px;
	background-color: #03A9F4;
}

.switchLR input[type="checkbox"]:checked~.layer {
	background-color: #e0f6ff;
}

.switchLR.slide .knobs:before {
	transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

.switchLR.slide .knobs,
.switchLR.slide .knobs:before,
.switchLR.slide .layer {
	transition: 0.3s ease all;
}

/* 复选框 */

.checkBoxStyle input[type=checkbox] {
	display: none;
	visibility: hidden;
}

.checkBoxStyle .checkboxCont {
	padding: 0 0 0 22px;
	position: relative;
}

.checkBoxStyle label {
	line-height: 16px;
	font-size: 12px;
	color: #999;
	display: inline-block;
}

.checkBoxStyle label::before {
	width: 20px;
	height: 20px;
	line-height: 20px;
	top: 2px;
	display: inline-block;
	background-color: #fff;
	border: 2px solid #ccc;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	content: "";
	text-align: center;
	vertical-align: text-top;
	cursor: pointer;
	position: absolute;
	left: 0;
}

.checkBoxStyle label:after {
	width: 20px;
	height: 20px;
	line-height: 20px;
	top: 2px;
	left: 0;
	color: #fff;
	text-align: center;
	font-family: FontAwesome;
	position: absolute;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.checkBoxStyle input[type=checkbox]:checked+label:after {
	opacity: 1;
	background-color: #ff7939;
	background-image: url('../images/ICON/crook.svg');
	background-position: center center;
	background-size: 80%;
	background-repeat: no-repeat;
	content: " ";
}


button[disabled],
input[disabled] {
	color: #fff;
	background-color: #c9c9c9;
	background: -ms-linear-gradient(150deg, #c9c9c9 0%, #c9c9c9 100%);
	background: -moz-linear-gradient(150deg, #c9c9c9 0%, #c9c9c9 100%);
	background: -webkit-linear-gradient(-50deg, #c9c9c9 0%, #c9c9c9 100%);
	background: -o-linear-gradient(150deg, #c9c9c9 0%, #c9c9c9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c9c9c9", endColorstr="#c9c9c9", GradientType=1);
	border-width: 0;
	cursor: no-drop;
	-webkit-opacity: 1;
	opacity: 1;
}


/* 点击按钮 */
.clickBtn {
	height: 40px !important;
	line-height: 40px !important;
	padding: 0 20px !important;
	text-align: center;
	font-size: 14px !important;
	color: #fff;
	display: block;
	border: 0;
	background-color: #ccc;
	overflow: hidden;
	position: relative;
}

.clickBtn:active {
	transition: all 1s ease-out;
	transform: scale(0.9);
	opacity: 0.9;
}

.clickBtn:active:after {
	content: "  ";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.1);
	position: absolute;
	z-index: 2;
}

.clickBtn.btn_s {
	height: 30px !important;
	line-height: 30px !important;
}

.clickBtn.btn_l {
	color: #999;
	border-width: 1px;
	border-style: solid;
	border-color: #ccc;
	background-color: transparent;
}

/* 按钮控件组 */

.controlBtnGroup {
	padding: 10px;
}

.controlBtnGroup:empty {
	display: none;
}

.controlBtnGroup .clickBtn,
.controlBtnGroup .ne-btn {
	margin: 0 0 0 10px;
}

.controlBtnGroup .clickBtn:nth-child(1),
.controlBtnGroup .ne-btn:nth-child(1) {
	margin: 0;
}

/* 底部定位按钮区 */

div.fixedArea {
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	margin: 0 !important;
	padding: 10px 20px 20px;
	border-radius: 15px 15px 0 0;
	-webkit-border-radius: 15px 15px 0 0;
	-moz-border-radius: 15px 15px 0 0;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(35px);
	-webkit-backdrop-filter: blur(35px);
	-ms-backdrop-filter: blur(35px);
	position: fixed !important;
	z-index: 99;
	box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

.fixedArea .statusHint {
	width: 100%;
	padding: 0 10px 10px;
	text-align: center;
}

.fixedArea .statusHint p {
	font-size: 16px;
	color: var(--primary);
}

.fixedArea .statusHint span {
	font-size: 14px;
	color: var(--auxiliaryColor);
}


/*--圆角--*/

.radius50P {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}

.radius3PX {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}

.radius7PX {
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
}

.radius15PX {
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
}

.radius7700PX {
	border-radius: 7px 7px 0 0;
	-webkit-border-radius: 7px 7px 0 0;
	-moz-border-radius: 7px 7px 0 0;
}

.radius500PX {
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
}

.radius151500PX {
	border-radius: 15px 15px 0 0;
	-webkit-border-radius: 15px 15px 0 0;
	-moz-border-radius: 15px 15px 0 0;
}

.display {
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.alignCenter {
	/* 上下居中 */
	align-items: center;
}

.alignStart {
	/* 顶部对齐 */
	align-items: flex-start;
}

.alignEnd {
	/* 底部对齐 */
	align-items: flex-end;
}

.alignStretch {
	/* 高度平均 */
	align-items: stretch;
}

.justifyEnd {
	/* 右边对齐 */
	justify-content: flex-end
}

.justifyDetween {
	/* 两边对齐 */
	justify-content: space-between
}

.justifyCenter {
	/* 左右居中齐 */
	justify-content: center
}

.flex1 {
	-moz-box-flex: 1;
	-webkit-box-flex: 1;
	-o-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.flex2 {
	-moz-box-flex: 2;
	-webkit-box-flex: 2;
	-o-box-flex: 2;
	-ms-flex: 2;
	flex: 2;
}

.flex3 {
	-moz-box-flex: 3;
	-webkit-box-flex: 3;
	-o-box-flex: 3;
	-ms-flex: 3;
	flex: 3;
}

.flex4 {
	-moz-box-flex: 4;
	-webkit-box-flex: 4;
	-o-box-flex: 4;
	-ms-flex: 4;
	flex: 4;
}

.flex5 {
	-moz-box-flex: 5;
	-webkit-box-flex: 5;
	-o-box-flex: 5;
	-ms-flex: 5;
	flex: 5;
}

.length-limit-1 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.length-limit-2 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.clear:after {
	clear: both;
	display: table;
	content: '';
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.tc {
	text-align: center;
}

.tr {
	text-align: right;
}

.tl {
	text-align: left;
}

/* 标题 */

.heading {
	margin: 0 0 10px;
	color: var(--headlineColor);
}

.heading h1 {
	font-size: 26px;
	color: var(--headlineColor);
}

.heading h2 {
	font-size: 24px;
	color: var(--headlineColor);
}

.heading h3 {
	font-size: 22px;
	color: var(--textPartColor);
}

.title {
	margin: 0 0 5px;
	color: var(--textPartColor);
}

.title h2 {
	font-size: 22px;
	font-weight: 700;
}

.title h3 {
	font-size: 18px;
	font-weight: 500;
}

.title h4 {
	font-size: 16px;
	font-weight: 500;
}

/* 抵浅色过度遮罩 */

.shading {
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: url('../img/Back/01.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	position: absolute;
	z-index: 1;
}

.depth {
	background-color: rgba(255, 255, 255, 0);
	background: -ms-linear-gradient(90deg, rgba(244, 255, 255, 0.9), rgba(244, 255, 255, 0.6), rgba(255, 255, 255, 0.13) 50%);
	background: -moz-linear-gradient(90deg, rgba(244, 255, 255, 0.9), rgba(244, 255, 255, 0.6), rgba(255, 255, 255, 0.13) 50%);
	background: -webkit-gradient(linear, 100% 0%, 0% 0%, from(rgba(244, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
	background: -webkit-linear-gradient(90deg, rgba(244, 255, 255, 0.9), rgba(244, 255, 255, 0.6), rgba(255, 255, 255, 0.13) 50%);
	background: -o-linear-gradient(90deg, rgba(244, 255, 255, 0.9), rgba(244, 255, 255, 0.6), rgba(255, 255, 255, 0.13) 50%);
}

/* 上升对话框 */
.dialogBox_up {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
}

.dialogContent {
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	border-color: rgba(70, 70, 98, 0.3);
	border-width: 0;
	border-style: solid;
	-moz-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0 0 20px 3px rgb(0 0 0 / 10%);
	box-shadow: 0 0 20px 3px rgb(0 0 0 / 10%);
	position: fixed;
	overflow: hidden;
	background-color: #fff;
	z-index: 9;
	animation: aclstop .3s 1 forwards;
	-webkit-animation: aclstop .3s 1 forwards;
	-webkit-overflow-scrolling: touch;
}

.cover,
.mask {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(160, 160, 160, 0.3);
	backdrop-filter: blur(1px);
	-webkit-backdrop-filter: blur(1px);
	position: fixed;
	z-index: 1;
}

.dialogToolbar {
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-width: 0;
	border-style: solid;
	border-color: #eee;
}

.dialogToolbar .title {
	margin: 0;
}

.dialogToolbar .title h3 {
	font-weight: 700;
}

@-webkit-keyframes aclstop {
	from {
		opacity: 0;
		transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-webkit-transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}

@keyframes aclstop {
	from {
		opacity: 0;
		transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-webkit-transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}


/* 对话提示 */

.promptBox,
.toastBox {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
}

.promptBox .overallShade,
.toastBox .overallShade {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(160, 160, 160, 0.3);
	z-index: 1;
	backdrop-filter: blur(1px);
	-webkit-backdrop-filter: blur(1px);
	-ms-backdrop-filter: blur(1px);
}

.toastBox .overallShade {
	background-color: rgba(160, 160, 160, 0.2);
}

.promptCont,
.toastCont {
	width: 80%;
	max-width: 350px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	position: relative;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	-ms-backdrop-filter: blur(2px);
	-moz-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .3);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .3);
	z-index: 2;
}

.toastCont {
	max-width: 250px;
	padding: 20px 30px;
	background-color: rgba(35, 33, 54, 0.6);
}

.toastCont .icon {
	text-align: center;
	margin: 0 auto 10px;
}

.toastCont .icon i {
	font-size: 24px;
	color: #fff;
}

.toastCont .tipText {
	text-align: center;
}

.toastCont .tipText p {
	font-size: 14px;
	color: #fff;
}

.close-X {
	width: 30px;
	height: 30px;
	top: -10px;
	right: -10px;
	display: inline-block;
	background-color: var(--blendent0);
	background-image: url('../images/ICON/close_X.svg');
	background-position: center center;
	background-size: 60%;
	background-repeat: no-repeat;
	position: absolute;
}

.logOutTip {
	width: 100%;
}

.logOutTip .tipText {
	margin: 0 0 20px;
}

.logOutTip .tipText p {
	font-size: 16px;
	color: #fff;
}

.promptCont .btn.copigmentBG {
	color: #fff;
}

/* 信息条布局 */

.infoBar ul li {
	padding: 10px;
}

.infoBar ul li>div:nth-child(2) {
	padding: 0 0 0 20px;
}

.infoBar ul li:not(:first-child) {
	border-width: 1px 0 0;
	border-style: solid;
	border-color: #f5f5f5;
}

.infoBar ul li>label,
.infoBar ul li .label {
	font-size: 14px;
	color: var(--auxiliaryColor);
}

.infoBar ul li span {
	font-size: 14px;
	color: var(--labelColor);
}

.infoBar ul li p {
	font-size: 14px;
	color: var(--textPartColor);
}

.infoBar li h3 {
	font-size: 16px;
	color: var(--textPartColor);
}

.infoBar li .contInfo p,
.infoBar li .contInfo a {
	font-size: 14px;
	color: var(--headlineColor);
}

/* 条形按键 */

.barBtn ul li {
	padding: 10px 0;
}

.barBtn ul li:not(:first-child) {
	border-width: 1px 0 0;
	border-style: solid;
	border-color: #fdf7f5;
}

.barBtn ul li .labelIcon {
	width: 25px;
	height: 25px;
	overflow: hidden;
}

.barBtn ul li .labelIcon img {
	width: 100%;
}

.barBtn ul li div:not(:first-child) {
	padding: 0 0 0 15px;
}

.barBtn ul li .labelName label {
	display: block;
	font-size: 16px;
	color: var(--textPartColor);
}

.barBtn ul li .labelName span {
	font-size: 14px;
	color: var(--auxiliaryColor);
}

.barBtn ul li .labelName i {
	width: 15px;
	margin: 0 0 0 5px;
	display: inline-block;
	vertical-align: middle;
	opacity: 0.6;
}

.barBtn ul li .labelName i img {
	width: 100%;
}

.barBtn ul li .labelCont i {
	padding: 2px 5px;
	color: #fff;
	font-size: 14px;
}

.barBtn ul li .labelCont i {
	color: #fff;
}

.barBtn ul li .labelCont i.noPass {
	color: var(--labelColor);
}

.barBtn ul li .labelCont i.pass {
	color: #12cc4f;
}

.barBtn ul li .labelCont h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--textPartColor);
}

.barBtn ul li .labelCont p {
	line-height: 1.3;
	font-size: 16px;
	color: var(--textPartColor);
}

.barBtn ul li .labelCont span {
	line-height: 1.2;
	display: block;
	font-size: 16px;
	color: var(--labelColor);
}

.barBtn ul li .labelCont em {
	font-size: 14px;
	color: var(--auxiliaryColor);
}

.barBtn ul li .moreIcon {
	color: var(--textPartColor);
	opacity: 0.3;
}

/* 提示语 */

.reminder {
	padding: 20px;
}

.reminder p {
	line-height: 1.3;
	font-size: 14px;
	color: #999;
}

/* 隐式协议 */
.agreementDialog .agreeCheck {
	min-height: 10vh;
	padding: 20px 0;
	overflow-y: auto;
}

.agreeCheck {
	width: 100%;
	padding: 10px 0;
	display: inline-block;
	position: relative;
}

.agreeCheck label p {
	font-size: 16px;
	color: #333;
}

.agreeCheck a {
	font-size: 16px;
	color: #3598ff;
}

.rejectBtn {
	background-color: rgb(255, 255, 255);
}

.agreeBtn {
	font-weight: 700;
	background-color: rgb(25, 177, 25);
}
