@charset "UTF-8";
/**
* @file:      Neat.css V1.1.0
* @author:    一丝
* @update:    2013-11-22 14:55:29;
* @copyright: 基于 normalize.css | MIT License
* @doc:
*/
/**
* Neat.css 解决的问题
* 基于业务需要兼容的浏览器做到以下几点：
* 1.解决BUG，特别是低级浏览器的常见BUG；
* 2.统一效果，但不盲目追求重置为0；
* 3.向后兼容；
* 4.考虑响应式；
* 5.考虑移动设备。
*/
/* ==========================================================================
 有即是无，无即是有
 ========================================================================== */
body, dl, dd, ul, ol, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, textarea, optgroup,
p, blockquote, figure, hr, menu, dir,
thead, tbody, tfoot, th, td {
  margin: 0;
  padding: 0;
  word-break: break-word; }

/**
* 非大面积文字排版网站通常不需要列表项，如果需要可单独设置
*/
ul, ol {
  list-style-type: none;
  list-style-image: none; }

/* ==========================================================================
 链接
 ========================================================================== */
/**
* 去除链接默认的下划线，提高文字可读性
*/
a {
  text-decoration: none; }

/**
* 去掉 IE 10+ 点击链接时的灰色背景
*/
a:active {
  background-color: transparent; }

/**
* 去掉点击时的焦点框，同时保证使用键盘可以显示焦点框
*/
a:active,
a:hover {
  outline: 0 none; }

/**
* 统一 Chrome 和 Safari 的焦点框样式
* Chrome 中 thin 关键字放大页面后焦点框不会放大 http://jsbin.com/ehakom/1
* Firefox 中 box-shadow 会导致焦点框位置偏移，需用「outline-offset」修正
*
*/
/* ==========================================================================
 字体和基础排版
 ========================================================================== */
/**
* 1.防止 iOS 横屏字号放大，同时保证在PC上 zoom 功能正常
*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 1 */
  font-size: 62.5%;
  /* 10/16=62.5% */ }

/**
* 所有 font-family 小写，存在空格的字体名加单引号
* @default-font: 'helvetica neue', tahoma, \5B8B\4F53, sans-serif;
* @heading-font: 'helvetica neue', tahoma, 'hiragino sans gb', stheiti,
  \5FAE\8F6F\96C5\9ED1, \5B8B\4F53, 'wenquanyi micro hei', sans-serif;
* @code-font: monaco, menlo, consolas, monospace;
*/
/**
* 中文优先使用冬青黑体简体(OS X)、微软雅黑(Windows)和文泉驿微米黑(Linux)
* 西文使用 tahoma
* 1. 防止元素中「font-family」不能继承
* 2. 西文字体和 OS X 字体写在前面
* 3. Opera 12.1 之前版本不支持中文字体的英文名称
* 4. 微软雅黑「\5FAE\8F6F\96C5\9ED1」,中易宋体「\5B8B\4F53」
*/
body,
button, input, select, textarea {
  font-family: 'microsoft yahei',arial,'hiragino sans gb',stheiti,'wenquanyi micro hei',\5FAE\8F6F\96C5\9ED1,\5B8B\4F53,sans-serif;
  -ms-text-autospace: ideograph-alpha ideograph-numeric ideograph-parenthesis;
  /* 5 */
  text-spacing: ideograph-alpha ideograph-numeric ideograph-parenthesis;
  /* 5 */ }

/**
* 中文小于 12px 可读性很差
* 1. 统一 IE 6-7 中字体大小
* 2. 统一 Firefox 4+，Safari 5 和 Chrome 中「section」和「article」内的字体大小
*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 22px; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 14px; }

h6 {
  font-size: 12px; }

/**
* 修正「abbr」元素在 Firefox 外其他浏览器没有下划线的问题
* 添加问号光标，明确语义
*/
abbr,
acronym {
  border-bottom: 1px dotted;
  /* 1 */
  cursor: help;
  /* 2 */ }

/**
* Firefox3+，Safari4/5 和 Chrome 中统一设置为粗体
*/
b,
strong {
  font-weight: bold; }

/**
* 修正 Safari5 和 Chrome 中没有样式的问题
*/
dfn {
  font-style: italic; }

/**
* 修正 Firefox 和其他浏览器之间的差异
*/
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
* 网页标记，荧光笔
* 修正 IE6-11 中没有样式的问题
*/
mark {
  background-color: #D2E5FF;
  color: #000; }

/**
* 统一代码的字体设置
* 字体要能明确区分数字 0 和字母 o
* Mac 优先使用 Monaco，Windows 优先使用 Consolas
* XP自带 Courier New
* Windows 7开始自带的 Consolas
* Mac上自带的Monaco，Osaka-Mono
*/
code,
kbd,
pre,
samp {
  font-family: monaco, menlo, consolas, 'courier new', courier, monospace; }

/**
* 增强所有浏览器中 pre 标签中文本的可读性
* 1. IE 6-7 不支持 pre-wrap
* 2. pre 标签应当包含滚溢出
*/
pre {
  white-space: pre;
  white-space: pre-wrap;
  /* 1 */
  word-wrap: break-word;
  overflow: auto; }

/**
* 行内引用
* IE 6-7 不支持 quotes 属性
* 现代浏览器去除 quotes 内容
*/
q {
  quotes: none; }

/**
* Safari 4 不支持<q>标签
*/
q:before,
q:after {
  content: '';
  content: none; }

/**
* 中文网页<small>元素字号小于 12px 不易阅读
*/
small {
  font-size: 85.7%;
  /* 12/14=0.8571428571 */ }

/**
* 防止所有浏览器中的<sub>和<sup>影响行高
* http://jsbin.com/usoyal/1/edit
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
 表格
 ========================================================================== */
/**
* 合并单元格边框
*/
table {
  border-collapse: collapse;
  border-spacing: 0; }

/**
* 修复 IE 中 th 不能继承 text-align 的问题并统一左对齐
* http://jsbin.com/evoxif/2/edit
*/
th {
  text-align: left; }

/**
* 单元格添加边框
*/
/**
* 表头底部边框
*/
/* ==========================================================================
 嵌入元素
 ========================================================================== */
/**
* 1. 去除 IE6-9 和 Firefox 3 中 a 内部 img 元素默认的边框
* 2. 修正 IE8 图片消失bug
* 3. 防止 img 指定「height」时图片高度不能按照宽度等比缩放，导致图片变形
    http://jsbin.com/aJoTUca/2
* 4. 让图片支持响应式
* 5. 去除现代浏览器图片底部的空隙
* 6. 修复 IE7 图片缩放失真
*/
img {
  border: 0 none;
  /* 1 */
  width: auto\9;
  /* 2 */
  height: auto;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: top;
  /* 5 */
  -ms-interpolation-mode: bicubic;
  /* 6 */ }

/**
* 修复 IE9 中的「overflow」的怪异表现
*/
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
 表单
 ========================================================================== */
/**
* 定义一致的边框、外边距和内边距
*/
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
* 1. 修正 IE 6-9 中颜色不能继承的问题
* 2. 修正 Firefox3 中文字不换行的问题
* 3. 修正 IE6-7 中怪异的对齐方式
*/
legend {
  border: 0 none;
  /* 1 */
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/**
* 1. 修正所有浏览器中字体不继承的问题
* 2. 修正所有浏览器中字号不继承的问题
* 3. 修正 Firefox 3+， Safari5 和 Chrome 中外边距不同的问题
* 4. 改善在所有浏览器下的垂直对齐方式
*/
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  vertical-align: baseline;
  /* 4 */
  *vertical-align: middle;
  /* 4 */ }

/**
* 修正 IE7 随着字数增加边距不断增加的问题
*/
input,
button {
  *overflow: visible; }

/**
* 统一各浏览器「text-transform」不会继承的问题
* http://jsbin.com/iqecic/1/edit
* http://tjvantoll.com/2012/07/10/default-browser-handling-of-the-css-text-transform-property/
*/
button,
select {
  text-transform: none; }

/**
* 1. 避免 Android 4.0.* 中的 WebKit bug ，该bug会破坏原生的
 「audio」 和「video」的控制器
* 2. 更正 iOS 中无法设置可点击的「input」的问题
* 3. 统一其他类型的「input」的光标样式
*/
button,
html input[type="button"], input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
* 重置按钮禁用时光标样式
*/
button[disabled],
input[disabled] {
  cursor: default;
  opacity: .6; }

/**
* 1. 修正 IE 8/9 box-sizing 被设置为「content-box」的问题
* 2. 移除 IE 8/9 中多余的内边距
* 3. 移除 IE7 中多余的内边距(IE6 中任然存在)
*/
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

/**
* 1. 修正 Safari 5 和 Chrome 中「appearance」被设置为「searchfield」的问题
* 2. 修正 Safari 5 和 Chrome 中「box-sizing」被设置为 「border-box」的问题
*/
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

/**
* 1.移除 OS X 中 Safari5 和 Chrome 搜索框内侧的左边距
* 2.如果需要隐藏清除按钮需要加上
 input[type="search"]::-webkit-search-cancel-button
*/
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
* 移除 Firefox 3+ 的内边距
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
* 修正 Chrome 中 input [type="number"] 在特定高度和 font-size 时,
* 下面一个箭头光标变成「cursor: text」
* @demo: http://jsfiddle.net/FFXEc/
* 动画演示：http://gtms04.alicdn.com/tps/i4/T18kd8FCtaXXc_FhcF-330-350.gif
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
* 1. 移除 IE6-11 中默认的垂直滚动条
* 2. 禁止水平拖动，防止破坏布局
*/
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */ }

/**
* 修正 Chrome 30- option 中文字无法显示的问题
* http://jsbin.com/avujas/1/edit
*/
select:disabled option:checked,
option:disabled:checked {
  color: #D2D2D2; }

/**
* 修正 Safari 3+, Chrome 1+ Placeholder 居中问题
*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input {
    line-height: normal !important; } }

/**
* 修正 Firefox 19+ Placeholder 设置了opacity 的问题
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  color: darkGray;
  opacity: 1; }

/**
* label 元素给予手型，暗示此处可点击
*/
label {
  cursor: pointer; }

/**
* 统一 select 样式, Firefox 中有 padding:1px 0
* http://jsbin.com/avujas/1/edit
*/
select[size],
select[multiple],
select[size][multiple] {
  border: 1px solid #AAA;
  padding: 0; }

/* ==========================================================================
 HTML5 元素
 ========================================================================== */
/**
* 修正未定义为「block」的元素
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
* 1. 修正未定义为「inline-block」的元素
* 2. 修正 Chrome、Firefox、Opera 中 「progress」元素 vertical-align 默认值不一致
*/
audio,
canvas,
video,
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
* 1.防止现代浏览器将没有「controls」属性的 「audio」元素显示出来
* 2.去掉 iOS 5 中多余的高度
*/
audio:not([controls]) {
  display: none;
  /* 1 */
  height: 0;
  /* 2 */ }

/**
* 修复 IE 7/8/9，Firefox 3 和 Safari 4 中 「hidden」属性不起作用的问题
* 在IE、Safari、Firefox 22- 中隐藏「template」元素
*/
[hidden], template {
  display: none; }

/**
* 为可拖动元素添加拖动的光标
* http://jsbin.com/apavod/1/edit
*/
[draggable] {
  cursor: move; }

/**
* 居中 HTML5 dialog 元素
* Chrome 31 支持，需开启 chrome://flags/#enable-experimental-web-platform-features
* Chrome 28 之前、Firefox 中不支持 height:fit-content;
 https://src.chromium.org/viewvc/blink?revision=148314&view=revision
* ::backdrop 定义遮罩样式
* @demo: http://jsbin.com/iPACab/1
*/
dialog {
  border: 1px solid;
  padding: 0;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content; }

dialog::-webkit-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3); }

dialog::backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3); }

/* h1 ~ h6 字体大小 */
/* 
	颜色 
	primary danger info warning dark gray
*/
@font-face {
  font-family: 'iconfont';
  /* project id 317253 */
  src: url("//at.alicdn.com/t/font_jsuh6tb7ofo2mx6r.eot");
  src: url("//at.alicdn.com/t/font_jsuh6tb7ofo2mx6r.eot?#iefix") format("embedded-opentype"), url("//at.alicdn.com/t/font_jsuh6tb7ofo2mx6r.woff") format("woff"), url("//at.alicdn.com/t/font_jsuh6tb7ofo2mx6r.ttf") format("truetype"), url("//at.alicdn.com/t/font_jsuh6tb7ofo2mx6r.svg#iconfont") format("svg"); }

.iconfont, .icon {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-che:before {
  content: "\E600"; }

.icon-guanji:before {
  content: "\E687"; }

.icon-henggangbujubei:before {
  content: "\E640"; }

.icon-iconfontspinner:before {
  content: "\E62F"; }

.icon-arrow:before {
  content: "\E613"; }

.icon-xia1:before {
  content: "\E61B"; }

.icon-arrow1:before {
  content: "\E645"; }

.icon-putong:before {
  content: "\E684"; }

.icon-zhuyi:before {
  content: "\E63A"; }

.icon-iconfontzhengque2:before {
  content: "\E638"; }

.icon-arrow-copy:before {
  content: "\E67F"; }

.icon-iconfontxiala1:before {
  content: "\E603"; }

.icon-gouwuche:before {
  content: "\E63F"; }

.icon-lajixiang:before {
  content: "\E646"; }

.icon-xiala:before {
  content: "\E65C"; }

.icon-pu:before {
  content: "\E61C"; }

.icon-close4:before {
  content: "\E602"; }

.icon-menu:before {
  content: "\E625"; }

.icon-arrow-left:before {
  content: "\E624"; }

.icon-qi-filling:before {
  content: "\E61A"; }

.icon-train:before {
  content: "\E60F"; }

.icon-info:before {
  content: "\E609"; }

.icon-waibuzhishi:before {
  content: "\E726"; }

.icon-neibuzhishi:before {
  content: "\E727"; }

.icon-fanhui1:before {
  content: "\E604"; }

.icon-chanpinsuyuan:before {
  content: "\E700"; }

.icon-yonghu-copy:before {
  content: "\E606"; }

.icon-arrow3:before {
  content: "\E601"; }

.icon-dairuzhu:before {
  content: "\E76B"; }

.icon-xieyoujian:before {
  content: "\E626"; }

.icon-ruzhu:before {
  content: "\E656"; }

.icon-fanhui:before {
  content: "\E618"; }

.icon-gengduo1:before {
  content: "\E616"; }

.icon-suo1:before {
  content: "\E63E"; }

.icon-sousuo:before {
  content: "\E8BA"; }

.icon-diannao:before {
  content: "\E6AC"; }

.icon-dianhua:before {
  content: "\E62E"; }

.icon-yinliang:before {
  content: "\E87A"; }

.icon-guanji1:before {
  content: "\E60A"; }

.icon-henggang:before {
  content: "\E647"; }

body {
  font: 14px/1.7 microsoft yahei;
  color: #444; }

/* tb tb-cell table table-cell*/
.tb, .row, .control-group, .row-auto, .rules-introduce, .control-group-auto, .step-title {
  display: table;
  table-layout: fixed;
  border-spacing: 0; }

.tb-cell, .col, .col-top, .col-auto-top, .col-auto {
  display: table-cell;
  vertical-align: middle;
  word-break: break-all; }

.tb, .row, .control-group, .row-auto, .rules-introduce, .control-group-auto, .step-title {
  box-sizing: border-box;
  width: 100%; }

/* pure-g ib */
.ib-w, .ib-w.ib {
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  text-rendering: optimizespeed;
  font-family: microsoft yahei;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;
  display: -ms-flexbox;
  -ms-flex-flow: row wrap;
  -ms-align-content: flex-start;
  -webkit-align-content: flex-start;
  align-content: flex-start; }

/*pure-u*/
.ib {
  display: inline-block;
  /*display: inline;  IE < 8: fake inline-block */
  zoom: 1;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
  box-sizing: border-box; }

/*pure-u*/
.col-top {
  vertical-align: top; }

.col-auto-top, .col-auto {
  width: 1px;
  white-space: nowrap; }

.col-auto-top {
  vertical-align: top; }

.row-auto, .rules-introduce, .control-group-auto, .step-title {
  table-layout: auto; }

/* h1 ~ h6 字体大小 */
.h1 {
  font-size: 30px; }

.h2 {
  font-size: 24px; }

.h3 {
  font-size: 18px; }

.h4 {
  font-size: 16px; }

.h5 {
  font-size: 14px; }

.h6 {
  font-size: 12px; }

/* 颜色  primary danger info warning dark gray */
.primary, .btn-plain-primary, .btn-plain-primary-xl, .btn-plain-primary-xxl {
  color: #2196F3;
  border-color: #2196F3; }

.primary-light, .btn-plain-primary-light, .btn-plain-primary:hover, .btn-plain-primary-xl:hover, .btn-plain-primary-xxl:hover {
  color: #42A5F5;
  border-color: #42A5F5; }

.primary-deep, .btn-plain-primary-deep, .btn-plain-primary:active, .btn-plain-primary-xl:active, .btn-plain-primary-xxl:active {
  color: #1E88E5;
  border-color: #1E88E5; }

.success, .btn-plain-success, .btn-plain-success-xl, .btn-plain-success-xxl {
  color: #4CAF50;
  border-color: #4CAF50; }

.success-light, .btn-plain-success-light, .btn-plain-success:hover, .btn-plain-success-xl:hover, .btn-plain-success-xxl:hover {
  color: #66BB6A;
  border-color: #66BB6A; }

.success-deep, .btn-plain-success-deep, .btn-plain-success:active, .btn-plain-success-xl:active, .btn-plain-success-xxl:active {
  color: #43A047;
  border-color: #43A047; }

.info, .btn-plain-info, .btn-plain-info-xl, .btn-plain-info-xxl {
  color: #00BCD4;
  border-color: #00BCD4; }

.info-light, .btn-plain-info-light, .btn-plain-info:hover, .btn-plain-info-xl:hover, .btn-plain-info-xxl:hover {
  color: #26C6DA;
  border-color: #26C6DA; }

.info-deep, .btn-plain-info-deep, .btn-plain-info:active, .btn-plain-info-xl:active, .btn-plain-info-xxl:active {
  color: #00ACC1;
  border-color: #00ACC1; }

.danger, .btn-plain-danger, .btn-plain-danger-xl, .btn-plain-danger-xxl {
  color: #F44336;
  border-color: #F44336; }

.danger-light, .btn-plain-danger-light, .btn-plain-danger:hover, .btn-plain-danger-xl:hover, .btn-plain-danger-xxl:hover {
  color: #EF5350;
  border-color: #EF5350; }

.danger-deep, .btn-plain-danger-deep, .btn-plain-danger:active, .btn-plain-danger-xl:active, .btn-plain-danger-xxl:active {
  color: #E53935;
  border-color: #E53935; }

.warning, .btn-plain-warning, .btn-plain-warning-xl, .btn-plain-warning-xxl {
  color: #FF5722;
  border-color: #FF5722; }

.warning-light, .btn-plain-warning-light, .btn-plain-warning:hover, .btn-plain-warning-xl:hover, .btn-plain-warning-xxl:hover {
  color: #FF7043;
  border-color: #FF7043; }

.warning-deep, .btn-plain-warning-deep, .btn-plain-warning:active, .btn-plain-warning-xl:active, .btn-plain-warning-xxl:active {
  color: #F4511E;
  border-color: #F4511E; }

.dark, .btn-plain-dark, .btn-plain-dark-xl, .btn-plain-dark-xxl {
  color: #777777;
  border-color: #777777; }

.dark-light, .btn-plain-dark-light, .btn-plain-dark:hover, .btn-plain-dark-xl:hover, .btn-plain-dark-xxl:hover {
  color: #999999;
  border-color: #999999; }

.dark-deep, .btn-plain-dark-deep, .btn-plain-dark:active, .btn-plain-dark-xl:active, .btn-plain-dark-xxl:active {
  color: #444444;
  border-color: #444444; }

.gray, .btn-plain-gray, .btn-plain-gray-xl, .btn-plain-gray-xxl {
  color: #F5F5F5;
  border-color: #F5F5F5; }

.gray-light, .btn-plain-gray-light, .btn-plain-gray:hover, .btn-plain-gray-xl:hover, .btn-plain-gray-xxl:hover {
  color: #FCFCFC;
  border-color: #FCFCFC; }

.gray-deep, .btn-plain-gray-deep, .btn-plain-gray:active, .btn-plain-gray-xl:active, .btn-plain-gray-xxl:active {
  color: #E9E9E9;
  border-color: #E9E9E9; }

.bg-primary, .btn-primary, .btn-primary-xl, .btn-primary-xxl {
  background: #2196F3;
  color: #fff; }

.bg-primary-light, .btn-primary-light, .btn-primary:hover, .btn-primary-xl:hover, .btn-primary-xxl:hover {
  background: #42A5F5;
  color: #fff; }

.bg-primary-deep, .btn-primary-deep, .btn-primary:active, .btn-primary-xl:active, .btn-primary-xxl:active {
  background: #1E88E5;
  color: #fff; }

.bg-success, .btn-success, .btn-success-xl, .btn-success-xxl {
  background: #4CAF50;
  color: #fff; }

.bg-success-light, .btn-success-light, .btn-success:hover, .btn-success-xl:hover, .btn-success-xxl:hover {
  background: #66BB6A;
  color: #fff; }

.bg-success-deep, .btn-success-deep, .btn-success:active, .btn-success-xl:active, .btn-success-xxl:active {
  background: #43A047;
  color: #fff; }

.bg-info, .btn-info, .btn-info-xl, .btn-info-xxl {
  background: #00BCD4;
  color: #fff; }

.bg-info-light, .btn-info-light, .btn-info:hover, .btn-info-xl:hover, .btn-info-xxl:hover {
  background: #26C6DA;
  color: #fff; }

.bg-info-deep, .btn-info-deep, .btn-info:active, .btn-info-xl:active, .btn-info-xxl:active {
  background: #00ACC1;
  color: #fff; }

.bg-danger, .btn-danger, .btn-danger-xl, .btn-danger-xxl {
  background: #F44336;
  color: #fff; }

.bg-danger-light, .btn-danger-light, .btn-danger:hover, .btn-danger-xl:hover, .btn-danger-xxl:hover {
  background: #EF5350;
  color: #fff; }

.bg-danger-deep, .btn-danger-deep, .btn-danger:active, .btn-danger-xl:active, .btn-danger-xxl:active {
  background: #E53935;
  color: #fff; }

.bg-warning, .btn-warning, .btn-warning-xl, .btn-warning-xxl {
  background: #FF5722;
  color: #fff; }

.bg-warning-light, .btn-warning-light, .btn-warning:hover, .btn-warning-xl:hover, .btn-warning-xxl:hover {
  background: #FF7043;
  color: #fff; }

.bg-warning-deep, .btn-warning-deep, .btn-warning:active, .btn-warning-xl:active, .btn-warning-xxl:active {
  background: #F4511E;
  color: #fff; }

.bg-dark, .btn-dark, .btn-dark-xl, .btn-dark-xxl {
  background: #777777;
  color: #fff; }

.bg-dark-light, .btn-dark-light, .btn-dark:hover, .btn-dark-xl:hover, .btn-dark-xxl:hover {
  background: #999999;
  color: #fff; }

.bg-dark-deep, .btn-dark-deep, .btn-dark:active, .btn-dark-xl:active, .btn-dark-xxl:active {
  background: #444444;
  color: #fff; }

.bg-gray, .btn-gray, .btn-gray-xl, .btn-gray-xxl {
  background: #F5F5F5;
  color: #fff; }

.bg-gray-light, .btn-gray-light, .btn-gray:hover, .btn-gray-xl:hover, .btn-gray-xxl:hover {
  background: #FCFCFC;
  color: #fff; }

.bg-gray-deep, .btn-gray-deep, .btn-gray:active, .btn-gray-xl:active, .btn-gray-xxl:active {
  background: #E9E9E9;
  color: #fff; }

.desc, .msg-desc {
  font-size: 14px; }

.icon-msg {
  color: #999999; }
  .icon-msg .icon {
    padding-right: 6px; }

.msg-desc {
  color: #999999; }

.btn, .btn-primary-light, .btn-primary-deep, .btn-primary, .btn-success-light, .btn-success-deep, .btn-success, .btn-info-light, .btn-info-deep, .btn-info, .btn-danger-light, .btn-danger-deep, .btn-danger, .btn-warning-light, .btn-warning-deep, .btn-warning, .btn-dark-light, .btn-dark-deep, .btn-dark, .btn-gray-light, .btn-gray-deep, .btn-gray, .btn-plain-primary-light, .btn-plain-primary-deep, .btn-plain-primary, .btn-plain-success-light, .btn-plain-success-deep, .btn-plain-success, .btn-plain-info-light, .btn-plain-info-deep, .btn-plain-info, .btn-plain-danger-light, .btn-plain-danger-deep, .btn-plain-danger, .btn-plain-warning-light, .btn-plain-warning-deep, .btn-plain-warning, .btn-plain-dark-light, .btn-plain-dark-deep, .btn-plain-dark, .btn-plain-gray-light, .btn-plain-gray-deep, .btn-plain-gray, .btn-primary-xl, .btn-success-xl, .btn-info-xl, .btn-danger-xl, .btn-warning-xl, .btn-dark-xl, .btn-gray-xl, .btn-plain-primary-xl, .btn-plain-success-xl, .btn-plain-info-xl, .btn-plain-danger-xl, .btn-plain-warning-xl, .btn-plain-dark-xl, .btn-plain-gray-xl, .btn-primary-xxl, .btn-success-xxl, .btn-info-xxl, .btn-danger-xxl, .btn-warning-xxl, .btn-dark-xxl, .btn-gray-xxl, .btn-plain-primary-xxl, .btn-plain-success-xxl, .btn-plain-info-xxl, .btn-plain-danger-xxl, .btn-plain-warning-xxl, .btn-plain-dark-xxl, .btn-plain-gray-xxl {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.btn, .btn-primary-light, .btn-primary-deep, .btn-primary, .btn-success-light, .btn-success-deep, .btn-success, .btn-info-light, .btn-info-deep, .btn-info, .btn-danger-light, .btn-danger-deep, .btn-danger, .btn-warning-light, .btn-warning-deep, .btn-warning, .btn-dark-light, .btn-dark-deep, .btn-dark, .btn-gray-light, .btn-gray-deep, .btn-gray, .btn-plain-primary-light, .btn-plain-primary-deep, .btn-plain-primary, .btn-plain-success-light, .btn-plain-success-deep, .btn-plain-success, .btn-plain-info-light, .btn-plain-info-deep, .btn-plain-info, .btn-plain-danger-light, .btn-plain-danger-deep, .btn-plain-danger, .btn-plain-warning-light, .btn-plain-warning-deep, .btn-plain-warning, .btn-plain-dark-light, .btn-plain-dark-deep, .btn-plain-dark, .btn-plain-gray-light, .btn-plain-gray-deep, .btn-plain-gray, .btn-primary-xl, .btn-success-xl, .btn-info-xl, .btn-danger-xl, .btn-warning-xl, .btn-dark-xl, .btn-gray-xl, .btn-plain-primary-xl, .btn-plain-success-xl, .btn-plain-info-xl, .btn-plain-danger-xl, .btn-plain-warning-xl, .btn-plain-dark-xl, .btn-plain-gray-xl, .btn-primary-xxl, .btn-success-xxl, .btn-info-xxl, .btn-danger-xxl, .btn-warning-xxl, .btn-dark-xxl, .btn-gray-xxl, .btn-plain-primary-xxl, .btn-plain-success-xxl, .btn-plain-info-xxl, .btn-plain-danger-xxl, .btn-plain-warning-xxl, .btn-plain-dark-xxl, .btn-plain-gray-xxl {
  -webkit-touch-action: manipulation;
  -moz-touch-action: manipulation;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

.btn, .btn-primary-light, .btn-primary-deep, .btn-primary, .btn-success-light, .btn-success-deep, .btn-success, .btn-info-light, .btn-info-deep, .btn-info, .btn-danger-light, .btn-danger-deep, .btn-danger, .btn-warning-light, .btn-warning-deep, .btn-warning, .btn-dark-light, .btn-dark-deep, .btn-dark, .btn-gray-light, .btn-gray-deep, .btn-gray, .btn-plain-primary-light, .btn-plain-primary-deep, .btn-plain-primary, .btn-plain-success-light, .btn-plain-success-deep, .btn-plain-success, .btn-plain-info-light, .btn-plain-info-deep, .btn-plain-info, .btn-plain-danger-light, .btn-plain-danger-deep, .btn-plain-danger, .btn-plain-warning-light, .btn-plain-warning-deep, .btn-plain-warning, .btn-plain-dark-light, .btn-plain-dark-deep, .btn-plain-dark, .btn-plain-gray-light, .btn-plain-gray-deep, .btn-plain-gray, .btn-primary-xl, .btn-success-xl, .btn-info-xl, .btn-danger-xl, .btn-warning-xl, .btn-dark-xl, .btn-gray-xl, .btn-plain-primary-xl, .btn-plain-success-xl, .btn-plain-info-xl, .btn-plain-danger-xl, .btn-plain-warning-xl, .btn-plain-dark-xl, .btn-plain-gray-xl, .btn-primary-xxl, .btn-success-xxl, .btn-info-xxl, .btn-danger-xxl, .btn-warning-xxl, .btn-dark-xxl, .btn-gray-xxl, .btn-plain-primary-xxl, .btn-plain-success-xxl, .btn-plain-info-xxl, .btn-plain-danger-xxl, .btn-plain-warning-xxl, .btn-plain-dark-xxl, .btn-plain-gray-xxl {
  display: inline-block;
  zoom: 1;
  line-height: normal;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  box-sizing: content-box;
  width: auto;
  border: 0;
  *border: 0 none;
  outline: none; }

.disabled.btn-primary-light, .disabled.btn-primary-deep, .disabled.btn-primary, .disabled.btn-success-light, .disabled.btn-success-deep, .disabled.btn-success, .disabled.btn-info-light, .disabled.btn-info-deep, .disabled.btn-info, .disabled.btn-danger-light, .disabled.btn-danger-deep, .disabled.btn-danger, .disabled.btn-warning-light, .disabled.btn-warning-deep, .disabled.btn-warning, .disabled.btn-dark-light, .disabled.btn-dark-deep, .disabled.btn-dark, .disabled.btn-gray-light, .disabled.btn-gray-deep, .disabled.btn-gray, .disabled.btn-plain-primary-light, .disabled.btn-plain-primary-deep, .disabled.btn-plain-primary, .disabled.btn-plain-success-light, .disabled.btn-plain-success-deep, .disabled.btn-plain-success, .disabled.btn-plain-info-light, .disabled.btn-plain-info-deep, .disabled.btn-plain-info, .disabled.btn-plain-danger-light, .disabled.btn-plain-danger-deep, .disabled.btn-plain-danger, .disabled.btn-plain-warning-light, .disabled.btn-plain-warning-deep, .disabled.btn-plain-warning, .disabled.btn-plain-dark-light, .disabled.btn-plain-dark-deep, .disabled.btn-plain-dark, .disabled.btn-plain-gray-light, .disabled.btn-plain-gray-deep, .disabled.btn-plain-gray, .disabled.btn-primary-xl, .disabled.btn-success-xl, .disabled.btn-info-xl, .disabled.btn-danger-xl, .disabled.btn-warning-xl, .disabled.btn-dark-xl, .disabled.btn-gray-xl, .disabled.btn-plain-primary-xl, .disabled.btn-plain-success-xl, .disabled.btn-plain-info-xl, .disabled.btn-plain-danger-xl, .disabled.btn-plain-warning-xl, .disabled.btn-plain-dark-xl, .disabled.btn-plain-gray-xl, .disabled.btn-primary-xxl, .disabled.btn-success-xxl, .disabled.btn-info-xxl, .disabled.btn-danger-xxl, .disabled.btn-warning-xxl, .disabled.btn-dark-xxl, .disabled.btn-gray-xxl, .disabled.btn-plain-primary-xxl, .disabled.btn-plain-success-xxl, .disabled.btn-plain-info-xxl, .disabled.btn-plain-danger-xxl, .disabled.btn-plain-warning-xxl, .disabled.btn-plain-dark-xxl, .disabled.btn-plain-gray-xxl, [disabled].btn-primary-light, [disabled].btn-primary-deep, [disabled].btn-primary, [disabled].btn-success-light, [disabled].btn-success-deep, [disabled].btn-success, [disabled].btn-info-light, [disabled].btn-info-deep, [disabled].btn-info, [disabled].btn-danger-light, [disabled].btn-danger-deep, [disabled].btn-danger, [disabled].btn-warning-light, [disabled].btn-warning-deep, [disabled].btn-warning, [disabled].btn-dark-light, [disabled].btn-dark-deep, [disabled].btn-dark, [disabled].btn-gray-light, [disabled].btn-gray-deep, [disabled].btn-gray, [disabled].btn-plain-primary-light, [disabled].btn-plain-primary-deep, [disabled].btn-plain-primary, [disabled].btn-plain-success-light, [disabled].btn-plain-success-deep, [disabled].btn-plain-success, [disabled].btn-plain-info-light, [disabled].btn-plain-info-deep, [disabled].btn-plain-info, [disabled].btn-plain-danger-light, [disabled].btn-plain-danger-deep, [disabled].btn-plain-danger, [disabled].btn-plain-warning-light, [disabled].btn-plain-warning-deep, [disabled].btn-plain-warning, [disabled].btn-plain-dark-light, [disabled].btn-plain-dark-deep, [disabled].btn-plain-dark, [disabled].btn-plain-gray-light, [disabled].btn-plain-gray-deep, [disabled].btn-plain-gray, [disabled].btn-primary-xl, [disabled].btn-success-xl, [disabled].btn-info-xl, [disabled].btn-danger-xl, [disabled].btn-warning-xl, [disabled].btn-dark-xl, [disabled].btn-gray-xl, [disabled].btn-plain-primary-xl, [disabled].btn-plain-success-xl, [disabled].btn-plain-info-xl, [disabled].btn-plain-danger-xl, [disabled].btn-plain-warning-xl, [disabled].btn-plain-dark-xl, [disabled].btn-plain-gray-xl, [disabled].btn-primary-xxl, [disabled].btn-success-xxl, [disabled].btn-info-xxl, [disabled].btn-danger-xxl, [disabled].btn-warning-xxl, [disabled].btn-dark-xxl, [disabled].btn-gray-xxl, [disabled].btn-plain-primary-xxl, [disabled].btn-plain-success-xxl, [disabled].btn-plain-info-xxl, [disabled].btn-plain-danger-xxl, [disabled].btn-plain-warning-xxl, [disabled].btn-plain-dark-xxl, [disabled].btn-plain-gray-xxl {
  opacity: .3;
  cursor: not-allowed; }

.btn-primary-light, .btn-primary-deep, .btn-primary, .btn-success-light, .btn-success-deep, .btn-success, .btn-info-light, .btn-info-deep, .btn-info, .btn-danger-light, .btn-danger-deep, .btn-danger, .btn-warning-light, .btn-warning-deep, .btn-warning, .btn-dark-light, .btn-dark-deep, .btn-dark, .btn-gray-light, .btn-gray-deep, .btn-gray, .btn-plain-primary-light, .btn-plain-primary-deep, .btn-plain-primary, .btn-plain-success-light, .btn-plain-success-deep, .btn-plain-success, .btn-plain-info-light, .btn-plain-info-deep, .btn-plain-info, .btn-plain-danger-light, .btn-plain-danger-deep, .btn-plain-danger, .btn-plain-warning-light, .btn-plain-warning-deep, .btn-plain-warning, .btn-plain-dark-light, .btn-plain-dark-deep, .btn-plain-dark, .btn-plain-gray-light, .btn-plain-gray-deep, .btn-plain-gray, .btn-primary-xl, .btn-success-xl, .btn-info-xl, .btn-danger-xl, .btn-warning-xl, .btn-dark-xl, .btn-gray-xl, .btn-plain-primary-xl, .btn-plain-success-xl, .btn-plain-info-xl, .btn-plain-danger-xl, .btn-plain-warning-xl, .btn-plain-dark-xl, .btn-plain-gray-xl, .btn-primary-xxl, .btn-success-xxl, .btn-info-xxl, .btn-danger-xxl, .btn-warning-xxl, .btn-dark-xxl, .btn-gray-xxl, .btn-plain-primary-xxl, .btn-plain-success-xxl, .btn-plain-info-xxl, .btn-plain-danger-xxl, .btn-plain-warning-xxl, .btn-plain-dark-xxl, .btn-plain-gray-xxl {
  padding: 11px 18px;
  margin-bottom: 0;
  border-radius: 3px; }

.btn-primary-xl, .btn-success-xl, .btn-info-xl, .btn-danger-xl, .btn-warning-xl, .btn-dark-xl, .btn-gray-xl, .btn-primary-xxl, .btn-success-xxl, .btn-info-xxl, .btn-danger-xxl, .btn-warning-xxl, .btn-dark-xxl, .btn-gray-xxl {
  border: 1px solid transparent; }

.btn-primary-light, .btn-primary-deep, .btn-primary, .btn-success-light, .btn-success-deep, .btn-success, .btn-info-light, .btn-info-deep, .btn-info, .btn-danger-light, .btn-danger-deep, .btn-danger, .btn-warning-light, .btn-warning-deep, .btn-warning, .btn-dark-light, .btn-dark-deep, .btn-dark, .btn-gray-light, .btn-gray-deep, .btn-gray, .btn-plain-primary-light, .btn-plain-primary-deep, .btn-plain-primary, .btn-plain-success-light, .btn-plain-success-deep, .btn-plain-success, .btn-plain-info-light, .btn-plain-info-deep, .btn-plain-info, .btn-plain-danger-light, .btn-plain-danger-deep, .btn-plain-danger, .btn-plain-warning-light, .btn-plain-warning-deep, .btn-plain-warning, .btn-plain-dark-light, .btn-plain-dark-deep, .btn-plain-dark, .btn-plain-gray-light, .btn-plain-gray-deep, .btn-plain-gray {
  font-size: 15px;
  line-height: 20px;
  height: 20px;
  padding: 8px 20px; }

.btn-primary-xl, .btn-success-xl, .btn-info-xl, .btn-danger-xl, .btn-warning-xl, .btn-dark-xl, .btn-gray-xl, .btn-plain-primary-xl, .btn-plain-success-xl, .btn-plain-info-xl, .btn-plain-danger-xl, .btn-plain-warning-xl, .btn-plain-dark-xl, .btn-plain-gray-xl {
  font-size: 17px;
  padding: 10px 27px; }

.btn-primary-xxl, .btn-success-xxl, .btn-info-xxl, .btn-danger-xxl, .btn-warning-xxl, .btn-dark-xxl, .btn-gray-xxl, .btn-plain-primary-xxl, .btn-plain-success-xxl, .btn-plain-info-xxl, .btn-plain-danger-xxl, .btn-plain-warning-xxl, .btn-plain-dark-xxl, .btn-plain-gray-xxl {
  font-size: 19px;
  padding: 14px 43px; }

.btn-plain-primary-light, .btn-plain-primary-deep, .btn-plain-primary, .btn-plain-success-light, .btn-plain-success-deep, .btn-plain-success, .btn-plain-info-light, .btn-plain-info-deep, .btn-plain-info, .btn-plain-danger-light, .btn-plain-danger-deep, .btn-plain-danger, .btn-plain-warning-light, .btn-plain-warning-deep, .btn-plain-warning, .btn-plain-dark-light, .btn-plain-dark-deep, .btn-plain-dark, .btn-plain-gray-light, .btn-plain-gray-deep, .btn-plain-gray, .btn-plain-primary-xl, .btn-plain-success-xl, .btn-plain-info-xl, .btn-plain-danger-xl, .btn-plain-warning-xl, .btn-plain-dark-xl, .btn-plain-gray-xl, .btn-plain-primary-xxl, .btn-plain-success-xxl, .btn-plain-info-xxl, .btn-plain-danger-xxl, .btn-plain-warning-xxl, .btn-plain-dark-xxl, .btn-plain-gray-xxl {
  background: transparent;
  border-width: 1px;
  border-style: solid; }

.btn-plain-primary:active {
  background: #f5f5f5; }

.btn-plain-primary-xl:active {
  background: #f5f5f5; }

.btn-plain-primary-xxl:active {
  background: #f5f5f5; }

.btn-plain-success:active {
  background: #f5f5f5; }

.btn-plain-success-xl:active {
  background: #f5f5f5; }

.btn-plain-success-xxl:active {
  background: #f5f5f5; }

.btn-plain-info:active {
  background: #f5f5f5; }

.btn-plain-info-xl:active {
  background: #f5f5f5; }

.btn-plain-info-xxl:active {
  background: #f5f5f5; }

.btn-plain-danger:active {
  background: #f5f5f5; }

.btn-plain-danger-xl:active {
  background: #f5f5f5; }

.btn-plain-danger-xxl:active {
  background: #f5f5f5; }

.btn-plain-warning:active {
  background: #f5f5f5; }

.btn-plain-warning-xl:active {
  background: #f5f5f5; }

.btn-plain-warning-xxl:active {
  background: #f5f5f5; }

.btn-plain-dark:active {
  background: #f5f5f5; }

.btn-plain-dark-xl:active {
  background: #f5f5f5; }

.btn-plain-dark-xxl:active {
  background: #f5f5f5; }

.btn-plain-gray:active {
  background: #f5f5f5; }

.btn-plain-gray-xl:active {
  background: #f5f5f5; }

.btn-plain-gray-xxl:active {
  background: #f5f5f5; }

.switchbtn div {
  position: relative;
  width: 48px;
  height: 24px;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .switchbtn div .circle {
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    background: #fff;
    z-index: 10;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 2; }
  .switchbtn div .switchcontent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    border: 1px solid #dfdfdf;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 15px;
    z-index: 1; }
  .switchbtn div span.end {
    opacity: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    color: #fff;
    height: 26px;
    line-height: 26px;
    width: 24px; }
  .switchbtn div span.begin {
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    color: #fff;
    height: 26px;
    line-height: 26px;
    width: 24px; }
  .switchbtn div .switchbtnchoose {
    display: none; }
    .switchbtn div .switchbtnchoose:checked + .circle {
      position: absolute;
      top: 1px;
      left: 25px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #2196f3;
      border: 1px solid #2196f3;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 1; }
    .switchbtn div .switchbtnchoose:checked + .circle + .switchcontent + span.begin + span.end {
      opacity: 1;
      left: 0; }
    .switchbtn div .switchbtnchoose:checked + .circle + .switchcontent + span.begin {
      opacity: 0;
      right: 0; }

.switchbtn .disabled {
  cursor: not-allowed;
  opacity: 0.2; }

.switchbtn.btngroup {
  display: inline-block;
  vertical-align: middle; }

.switchbtn-mini div {
  position: relative;
  width: 32px;
  height: 16px;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .switchbtn-mini div .circle {
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    background: #fff;
    z-index: 10;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 2; }
  .switchbtn-mini div .switchcontent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    border: 1px solid #dfdfdf;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 15px;
    z-index: 1; }
  .switchbtn-mini div span.end {
    opacity: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    color: #fff;
    height: 18px;
    line-height: 18px;
    width: 16px; }
  .switchbtn-mini div span.begin {
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    color: #fff;
    height: 18px;
    line-height: 18px;
    width: 16px; }
  .switchbtn-mini div .switchbtnchoose {
    display: none; }
    .switchbtn-mini div .switchbtnchoose:checked + .circle {
      position: absolute;
      top: 1px;
      left: 17px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-mini div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #2196f3;
      border: 1px solid #2196f3;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 1; }
    .switchbtn-mini div .switchbtnchoose:checked + .circle + .switchcontent + span.begin + span.end {
      opacity: 1;
      left: 0; }
    .switchbtn-mini div .switchbtnchoose:checked + .circle + .switchcontent + span.begin {
      opacity: 0;
      right: 0; }

.switchbtn-small div {
  position: relative;
  width: 40px;
  height: 20px;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .switchbtn-small div .circle {
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: #fff;
    z-index: 10;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 2; }
  .switchbtn-small div .switchcontent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    border: 1px solid #dfdfdf;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 15px;
    z-index: 1; }
  .switchbtn-small div span.end {
    opacity: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    color: #fff;
    height: 22px;
    line-height: 22px;
    width: 20px; }
  .switchbtn-small div span.begin {
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    color: #fff;
    height: 22px;
    line-height: 22px;
    width: 20px; }
  .switchbtn-small div .switchbtnchoose {
    display: none; }
    .switchbtn-small div .switchbtnchoose:checked + .circle {
      position: absolute;
      top: 1px;
      left: 21px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-small div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #2196f3;
      border: 1px solid #2196f3;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 1; }
    .switchbtn-small div .switchbtnchoose:checked + .circle + .switchcontent + span.begin + span.end {
      opacity: 1;
      left: 0; }
    .switchbtn-small div .switchbtnchoose:checked + .circle + .switchcontent + span.begin {
      opacity: 0;
      right: 0; }

.switchbtn-large div {
  position: relative;
  width: 56px;
  height: 28px;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .switchbtn-large div .circle {
    position: absolute;
    left: 0;
    top: 1px;
    width: 28px;
    height: 28px;
    background: #fff;
    z-index: 10;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 2; }
  .switchbtn-large div .switchcontent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    border: 1px solid #dfdfdf;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 15px;
    z-index: 1; }
  .switchbtn-large div span.end {
    opacity: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    color: #fff;
    height: 30px;
    line-height: 30px;
    width: 28px; }
  .switchbtn-large div span.begin {
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    color: #fff;
    height: 30px;
    line-height: 30px;
    width: 28px; }
  .switchbtn-large div .switchbtnchoose {
    display: none; }
    .switchbtn-large div .switchbtnchoose:checked + .circle {
      position: absolute;
      top: 1px;
      left: 29px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-large div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #2196f3;
      border: 1px solid #2196f3;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 1; }
    .switchbtn-large div .switchbtnchoose:checked + .circle + .switchcontent + span.begin + span.end {
      opacity: 1;
      left: 0; }
    .switchbtn-large div .switchbtnchoose:checked + .circle + .switchcontent + span.begin {
      opacity: 0;
      right: 0; }

.switchbtn-words-mini div {
  position: relative;
  width: 32px;
  height: 16px;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .switchbtn-words-mini div .circle {
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    background: #fff;
    z-index: 10;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 2; }
  .switchbtn-words-mini div .switchcontent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    border: 1px solid #dfdfdf;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 15px;
    z-index: 1; }
  .switchbtn-words-mini div span.end {
    opacity: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    color: #fff;
    height: 18px;
    line-height: 18px;
    width: 16px; }
  .switchbtn-words-mini div span.begin {
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    color: #fff;
    height: 18px;
    line-height: 18px;
    width: 16px; }
  .switchbtn-words-mini div .switchbtnchoose {
    display: none; }
    .switchbtn-words-mini div .switchbtnchoose:checked + .circle {
      position: absolute;
      top: 1px;
      left: 17px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-words-mini div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #2196f3;
      border: 1px solid #2196f3;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 1; }
    .switchbtn-words-mini div .switchbtnchoose:checked + .circle + .switchcontent + span.begin + span.end {
      opacity: 1;
      left: 0; }
    .switchbtn-words-mini div .switchbtnchoose:checked + .circle + .switchcontent + span.begin {
      opacity: 0;
      right: 0; }

.switchbtn-words-small div {
  position: relative;
  width: 40px;
  height: 20px;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .switchbtn-words-small div .circle {
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: #fff;
    z-index: 10;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 2; }
  .switchbtn-words-small div .switchcontent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    border: 1px solid #dfdfdf;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 15px;
    z-index: 1; }
  .switchbtn-words-small div span.end {
    opacity: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    color: #fff;
    height: 22px;
    line-height: 22px;
    width: 20px; }
  .switchbtn-words-small div span.begin {
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    color: #fff;
    height: 22px;
    line-height: 22px;
    width: 20px; }
  .switchbtn-words-small div .switchbtnchoose {
    display: none; }
    .switchbtn-words-small div .switchbtnchoose:checked + .circle {
      position: absolute;
      top: 1px;
      left: 21px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-words-small div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #2196f3;
      border: 1px solid #2196f3;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 1; }
    .switchbtn-words-small div .switchbtnchoose:checked + .circle + .switchcontent + span.begin + span.end {
      opacity: 1;
      left: 0; }
    .switchbtn-words-small div .switchbtnchoose:checked + .circle + .switchcontent + span.begin {
      opacity: 0;
      right: 0; }

.switchbtn-words-large div {
  position: relative;
  width: 56px;
  height: 28px;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  text-align: center; }
  .switchbtn-words-large div .circle {
    position: absolute;
    left: 0;
    top: 1px;
    width: 28px;
    height: 28px;
    background: #fff;
    z-index: 10;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 2; }
  .switchbtn-words-large div .switchcontent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    border: 1px solid #dfdfdf;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 15px;
    z-index: 1; }
  .switchbtn-words-large div span.end {
    opacity: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    color: #fff;
    height: 30px;
    line-height: 30px;
    width: 28px; }
  .switchbtn-words-large div span.begin {
    opacity: 1;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 2;
    color: #fff;
    height: 30px;
    line-height: 30px;
    width: 28px; }
  .switchbtn-words-large div .switchbtnchoose {
    display: none; }
    .switchbtn-words-large div .switchbtnchoose:checked + .circle {
      position: absolute;
      top: 1px;
      left: 29px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-words-large div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #2196f3;
      border: 1px solid #2196f3;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 1; }
    .switchbtn-words-large div .switchbtnchoose:checked + .circle + .switchcontent + span.begin + span.end {
      opacity: 1;
      left: 0; }
    .switchbtn-words-large div .switchbtnchoose:checked + .circle + .switchcontent + span.begin {
      opacity: 0;
      right: 0; }

.checkboxinput {
  display: none; }

.nocheck {
  color: #e8e8e8; }

.check {
  color: #2196F3; }

.disabledcheck {
  color: #e9e9e9; }

.disabledcheck + span {
  color: #777777; }

.radioinput {
  display: none; }

.radio {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #d0d0d5;
  /* IE7-IE8 ignore this */
  border-radius: 20px;
  background-color: #fff;
  box-sizing: border-box;
  vertical-align: -.5ex;
  *vertical-align: 0;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
  overflow: hidden; }

:not(:disabled) + .radio:hover {
  border-color: #ababaf; }

.radio::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  margin: 4px auto 0;
  border-radius: 10px;
  background-color: #00a5e0;
  visibility: hidden; }

:checked + .radio::before {
  visibility: visible;
  -webkit-animation: bounceIn .2s;
  animation: bounceIn .2s; }

:disabled + .radio,
.radio.disabled {
  border-color: #ababaf;
  opacity: .38; }

.dialog-mask {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.3; }

.dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 13;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 3px;
  overflow: hidden;
  min-width: 400px;
  width: 40%;
  background-color: #fff;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-height: 90%;
  overflow-y: auto; }

.dialog-hd {
  position: relative; }

.dialog-hd a {
  float: right;
  position: absolute;
  top: 20px;
  right: 0; }

.dialog-hd h2 {
  padding: 20px 0; }

.dialog-primary-title {
  margin: 0 20px; }
  .dialog-primary-title h2 {
    color: #444;
    font-size: 24px;
    line-height: 24px;
    border-bottom: 1px solid #e0e0e0; }
  .dialog-primary-title a {
    border-radius: 50%;
    line-height: 1em;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    color: #777; }
  .dialog-primary-title a:hover {
    background-color: #EF5350;
    color: #fff; }
  .dialog-primary-title a:active {
    background-color: #E53935;
    color: #fff; }
  .dialog-primary-title i {
    font-size: 10px; }

.dialog-bd {
  padding: 0 20px 20px; }

.input-xl, .input-l, .input, .input-min, .input-s, .input-xs {
  font-family: "microsoft yahei";
  display: inline-block;
  padding: 0 10px;
  height: 32px;
  font-size: 13px;
  color: #444444;
  background-color: #fff;
  background-image: none;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  box-sizing: border-box; }
  .input-xl:focus, .input-l:focus, .input:focus, .input-min:focus, .input-s:focus, .input-xs:focus {
    border-color: #00BCD4;
    outline: 0; }
  .input-xl::-ms-clear, .input-l::-ms-clear, .input::-ms-clear, .input-min::-ms-clear, .input-s::-ms-clear, .input-xs::-ms-clear {
    display: none; }

.input-xl {
  height: 36px;
  line-height: 36px;
  font-size: 14px; }

.input-l {
  height: 34px;
  line-height: 34px;
  font-size: 13px; }

.input, .input-min {
  height: 32px;
  line-height: 32px;
  font-size: 12px; }

.input-s {
  height: 31px;
  line-height: 31px;
  font-size: 11px; }

.input-xs {
  height: 30px;
  line-height: 30px;
  font-size: 10px; }

.input-min {
  width: 60px; }

.input-desc {
  position: relative; }
  .input-desc.input-short {
    display: inline-block; }
  .input-desc .desc {
    position: absolute;
    right: 10px;
    top: 7px; }

/* 添加左右滚动条 */
.table-striped table, .table-striped-noupline table {
  /* table基础样式 */
  width: 100%;
  white-space: nowrap;
  border-left: 1px solid #e1e6eb;
  border-right: 1px solid #e1e6eb; }
  .table-striped table th, .table-striped-noupline table th, .table-striped table td, .table-striped-noupline table td {
    padding-left: 5px;
    border: 0;
    height: 33px;
    line-height: 33px; }
  .table-striped table th, .table-striped-noupline table th {
    border-bottom: 1px solid #e1e6eb;
    border-top: 1px solid #e1e6eb;
    font-weight: normal;
    color: #999;
    background-color: #f6f7fb; }
  .table-striped table td, .table-striped-noupline table td {
    border-bottom: 1px solid #e9e9e9;
    vertical-align: top;
    height: 42px;
    line-height: 42px; }
    .table-striped table td a, .table-striped-noupline table td a {
      color: #155eaa;
      cursor: pointer; }
    .table-striped table td a:hover, .table-striped-noupline table td a:hover {
      text-decoration: underline; }
    .table-striped table td i, .table-striped-noupline table td i {
      padding-right: 10px; }
  .table-striped table td:not(:last-child), .table-striped-noupline table td:not(:last-child) {
    font-size: 12px;
    color: #333; }
  .table-striped table tr:hover, .table-striped-noupline table tr:hover {
    background-color: #f6f7fb; }

.table-striped {
  overflow-y: hidden; }
  .table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9fb; }
  .table-striped .table-input {
    height: 43px;
    border: none;
    border-radius: 0px; }
  .table-striped .table-derhide {
    border-left: none;
    border-right: none; }
    .table-striped .table-derhide td {
      border: 1px solid #e1e6eb; }
    .table-striped .table-derhide th {
      text-align: center;
      border: 1px solid #e1e6eb; }

.table-striped-noupline {
  overflow-y: hidden; }
  .table-striped-noupline table th {
    border-top: 0; }
  .table-striped-noupline tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc; }

.table-attached .title {
  font-size: 20px;
  letter-spacing: 15px; }

.table-attached table {
  width: 65%;
  margin: auto; }

.table-attached .tab-t {
  height: 50px; }
  .table-attached .tab-t .td-100 {
    width: 100px; }
  .table-attached .tab-t .td-50 {
    width: 50px; }

.table-attached .tab-l {
  text-align: left; }

.table-attached .bor-no td {
  border: none; }

.table-attached td {
  font-size: 15px;
  height: 30px;
  border: 1px solid black;
  padding: 5px; }

.rules-introduce {
  border-spacing: 0 20px;
  border-radius: 3px;
  border-bottom: 1px solid #e0e0e0; }
  .rules-introduce .border-l {
    border-left: 1px solid #E9E9E9;
    padding-left: 20px; }
  .rules-introduce .title {
    color: #777;
    vertical-align: top; }
  .rules-introduce .num-big {
    font-size: 20px; }
  .rules-introduce .num-small {
    font-size: 13px; }

.control-group, .control-group-auto {
  min-width: 430px; }

.form-border, .form-bottom {
  border-left: 1px solid #e1e6eb;
  border-top: 1px solid #e1e6eb;
  border-right: 1px solid #e1e6eb;
  padding: 5px 20px 5px 65px; }

.form-bottom {
  border-bottom: 1px solid #e1e6eb; }

.required {
  color: red;
  vertical-align: middle;
  padding-right: 8px; }

@media screen and (max-width: 1300px) {
  /*当屏幕尺寸小于600px时，应用下面的CSS样式*/
  .form-ver .deposit-right-auto {
    max-width: 550px;
    min-width: 440px; } }

.has-error {
  position: relative; }
  .has-error .form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
    color: #F44336; }
  .has-error .mandatory-msg {
    font-size: 12px;
    color: #F44336;
    position: relative;
    vertical-align: baseline; }
    .has-error .mandatory-msg .iconfont, .has-error .mandatory-msg .icon {
      color: #F44336; }
    .has-error .mandatory-msg i {
      margin-right: 10px;
      line-height: 20px;
      vertical-align: bottom; }
  .has-error input, .has-error .input, .has-error .input-min {
    border-color: #F44336;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-warning {
  position: relative; }
  .has-warning .form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
    color: #FF5722; }
  .has-warning .mandatory-msg {
    font-size: 12px;
    color: #FF5722;
    position: relative;
    vertical-align: baseline; }
    .has-warning .mandatory-msg .iconfont, .has-warning .mandatory-msg .icon {
      color: #FF5722; }
    .has-warning .mandatory-msg i {
      margin-right: 10px;
      line-height: 20px;
      vertical-align: bottom; }
  .has-warning input, .has-warning .input, .has-warning .input-min {
    border-color: #FF5722;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-success {
  position: relative; }
  .has-success .form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
    color: #4CAF50; }
  .has-success .mandatory-msg {
    font-size: 12px;
    color: #4CAF50;
    position: relative;
    vertical-align: baseline; }
    .has-success .mandatory-msg .iconfont, .has-success .mandatory-msg .icon {
      color: #4CAF50; }
    .has-success .mandatory-msg i {
      margin-right: 10px;
      line-height: 20px;
      vertical-align: bottom; }
  .has-success input, .has-success .input, .has-success .input-min {
    border-color: #4CAF50;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.tab-bor {
  border-bottom: 1px solid #E9E9E9;
  margin-left: -1px; }
  .tab-bor li {
    margin-bottom: -2px;
    display: inline-block; }
    .tab-bor li a {
      font-size: 1.38em;
      color: #444;
      padding: 12px 44px;
      display: block; }
  .tab-bor .active {
    border-top: 2px solid #2196F3;
    border-right: 1px solid #E9E9E9;
    border-left: 1px solid #E9E9E9;
    background-color: #fff;
    font-weight: bold; }

.step-title {
  background: #E6F0F4;
  line-height: 48px;
  border-radius: 4px;
  padding: 0 20px; }
  .step-title strong {
    background: #fff;
    line-height: 28px;
    height: 28px;
    width: 28px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    margin-right: 20px; }
  .step-title h2 {
    font-size: 16px;
    font-weight: bold; }

.no-data-desc {
  text-align: center;
  margin: 50px 0 100px; }

.tab-bg {
  border-radius: 4px; }
  .tab-bg div.ib {
    margin-left: -4px;
    background: #f5f5f5;
    color: #2196f3;
    padding: 10px 20px;
    outline: 0;
    position: relative; }
    .tab-bg div.ib:first-child {
      border-radius: 4px 0 0 4px; }
      .tab-bg div.ib:first-child:after {
        content: '';
        width: 0px; }
    .tab-bg div.ib:last-child {
      border-radius: 0px 4px 4px 0px; }
    .tab-bg div.ib:after {
      content: '';
      width: 1px;
      height: 20px;
      background: #c8c8c8;
      position: absolute;
      left: 0;
      top: 12px; }
    .tab-bg div.ib.active {
      background: #2196f3;
      color: #fff; }
      .tab-bg div.ib.active:after {
        content: '';
        width: 0px; }
      .tab-bg div.ib.active + div:after {
        content: '';
        width: 0px; }
  .tab-bg div:hover {
    background: #2196f3;
    color: #fff;
    cursor: pointer; }
    .tab-bg div:hover:after {
      content: '';
      width: 0px; }
    .tab-bg div:hover + div:after {
      content: '';
      width: 0px; }
  .tab-bg .showcontent:hover .toast-current-center {
    display: block;
    color: #444;
    background: #fff; }

.line-dotted {
  border-top: 1px dotted #bbb; }

.toast, .toast-primary, .toast-success, .toast-info, .toast-danger, .toast-warning, .toast-current, .toast-current-center {
  border-radius: 4px;
  color: #fff; }
  .toast h2, .toast-primary h2, .toast-success h2, .toast-info h2, .toast-danger h2, .toast-warning h2, .toast-current h2, .toast-current-center h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold; }
  .toast p, .toast-primary p, .toast-success p, .toast-info p, .toast-danger p, .toast-warning p, .toast-current p, .toast-current-center p {
    line-height: 22px;
    font-size: 12px;
    color: #444;
    word-wrap: break-word;
    word-break: normal;
    word-break: break-all;
    white-space: normal; }

.toast-primary {
  background: #2196F3; }

.toast-success {
  background: #4CAF50; }

.toast-info {
  background: #00BCD4; }

.toast-danger {
  background: #F44336; }

.toast-warning {
  background: #FF5722; }

.toast-current, .toast-current-center {
  max-width: 460px;
  color: #444;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(68, 68, 68, 0.15);
  -moz-box-shadow: 0 0 5px rgba(68, 68, 68, 0.15);
  box-shadow: 0 0 5px rgba(68, 68, 68, 0.15);
  filter: progid:DXImageTransform.Microsoft.Shadow(Color=#444444,Direction=120,strength=5);
  -ms-filter: progid:DXImageTransform.Microsoft.Shadow(Color=#444444,Direction=120,strength=5);
  position: absolute;
  bottom: 100%;
  left: 0;
  padding: 14px;
  margin: 0px;
  z-index: 8;
  border-collapse: separate; }

.toast-current-center {
  display: none;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateX(-50%);
  /* Opera */ }
  .toast-current-center p {
    white-space: nowrap; }

.toast-trangle {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateX(-50%);
  /* Opera */
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(68, 68, 68, 0.08); }

.toast-trangletop {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateX(-50%);
  /* Opera */
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff; }

/* 可操作提示框 */
.toast-close, .toast-close-primary, .toast-close-warning, .toast-close-danger, .toast-close-info, .toast-close-success, .toast-close-Violet {
  margin: 100px;
  border-radius: 4px;
  line-height: 50px;
  box-sizing: border-box;
  padding: 0 20px;
  width: auto; }
  .toast-close i, .toast-close-primary i, .toast-close-warning i, .toast-close-danger i, .toast-close-info i, .toast-close-success i, .toast-close-Violet i {
    padding-left: 20px;
    font-size: 12px; }

.toast-close-primary {
  background: #e2f2fe;
  border: 1px solid #b0daf9; }
  .toast-close-primary p {
    color: #094b94; }
  .toast-close-primary i {
    color: #638ebf; }

.toast-close-warning {
  background: #fff6b1;
  border: 1px solid #ffe378; }
  .toast-close-warning p {
    color: #444444; }
  .toast-close-warning i {
    color: #ce8161; }

.toast-close-danger {
  background: #fbe9e7;
  border: 1px solid #ffc9c3; }
  .toast-close-danger p {
    color: #9c3431; }
  .toast-close-danger i {
    color: #c4706d; }

.toast-close-info {
  background: #dff7fa;
  border: 1px solid #abe6ee; }
  .toast-close-info p {
    color: #045962; }
  .toast-close-info i {
    color: #58959c; }

.toast-close-success {
  background: #e8f5e9;
  border: 1px solid #aeeab3; }
  .toast-close-success p {
    color: #538356; }
  .toast-close-success i {
    color: #6eab73; }

.toast-close-Violet {
  background: #f3e5f5;
  border: 1px solid #e7afef; }
  .toast-close-Violet p {
    color: #6b0f9c; }
  .toast-close-Violet i {
    color: #a269c0; }

.ks-row {
  display: table;
  table-layout: fixed;
  border-spacing: 0; }

.ks-col, .ks-col-auto, .ks-col-auto-top, .ks-col-top, .KsPageGroup-statistical {
  display: table-cell;
  vertical-align: middle;
  word-break: break-all; }

.ks-col-auto-top, .ks-col-top {
  vertical-align: top; }

.ks-row-auto, .KsPageGroup {
  box-sizing: border-box;
  width: 100%;
  display: table;
  border-spacing: 0;
  table-layout: auto; }

.ks-col-auto, .ks-col-auto-top, .KsPageGroup-statistical {
  width: 1px;
  white-space: nowrap; }

.ks-row {
  box-sizing: border-box;
  width: 100%; }

.KsPageGroup li, .KsPage li {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.KsPageGroup li:hover, .KsPage li:hover {
  background: #f5f5f5;
  color: #000; }

.KsPage .active, .KsPageGroup .active, .KsPageGroup li.active:hover, .KsPage li.active:hover {
  background: #2196f3;
  color: #fff; }

.KsPage .disabled, .KsPageGroup .disabled {
  color: #999;
  cursor: not-allowed; }

.KsPage .disabled:hover, .KsPageGroup .disabled:hover {
  background: transparent;
  color: #999; }

.KsPageGroup {
  color: #999;
  line-height: 36px; }

.KsPageGroup-statistical {
  padding-right: 20px; }

.KsPageGroup-statistical span {
  color: #000;
  padding: 0 5px; }

.dialog-main .btn-group {
  background: #E9F5FF;
  padding: 20px; }
  .dialog-main .btn-group ul {
    overflow: hidden;
    display: inline-block; }
    .dialog-main .btn-group ul li {
      background: #E9E9E9;
      border-radius: 23px;
      height: 24px;
      line-height: 24px;
      margin-right: 10px;
      text-align: center;
      float: left;
      cursor: pointer;
      margin-top: 10px; }
      .dialog-main .btn-group ul li span {
        color: #999999;
        padding: 3px 11px; }
      .dialog-main .btn-group ul li.check {
        background: #2196F3; }
        .dialog-main .btn-group ul li.check span {
          color: #fff;
          padding: 3px 11px; }
      .dialog-main .btn-group ul li .btn-add {
        font-size: 24px;
        color: #4CAF50; }

.dialog-main .top {
  padding: 20px;
  background: #E8F5FF; }
  .dialog-main .top .btn-input {
    margin-bottom: 20px; }
    .dialog-main .top .btn-input input {
      border: none;
      background: #D3DFE8;
      border: 1px solid #D3DFE8;
      color: #444444; }
      .dialog-main .top .btn-input input.disabled {
        background: #FFFFFF;
        border: 1px solid #C8C8C8;
        border-radius: 2px;
        border-radius: 2px;
        font-size: 13px; }
      .dialog-main .top .btn-input input:focus {
        background: #FFFFFF;
        border: 1px solid #C8C8C8;
        border-radius: 2px;
        border-radius: 2px;
        font-size: 13px; }
    .dialog-main .top .btn-input span {
      margin-left: 10px;
      cursor: pointer;
      color: #C8C8C8; }
  .dialog-main .top .table-default {
    margin-bottom: 6px; }
    .dialog-main .top .table-default ul {
      overflow: hidden; }
      .dialog-main .top .table-default ul li {
        border: 1px solid #DAE4ED;
        border-radius: 2px;
        margin-right: 10px;
        margin-bottom: 20px;
        float: left;
        cursor: pointer; }
        .dialog-main .top .table-default ul li span {
          font-size: 14px;
          padding: 5px 10px;
          color: #444444;
          display: block; }
        .dialog-main .top .table-default ul li.alreadychoose {
          background: #FFFFFF;
          border-radius: 2px; }

.dialog-main .middle {
  padding: 20px; }
  .dialog-main .middle .mb-20 {
    margin-bottom: 20px; }
  .dialog-main .middle .title {
    font-size: 13px;
    color: #999999;
    width: 53px;
    height: 30px;
    line-height: 30px;
    text-align: right; }
  .dialog-main .middle ul {
    display: inline-block; }
    .dialog-main .middle ul li {
      background: #999999;
      border-radius: 2px;
      float: left;
      margin-right: 10px; }
      .dialog-main .middle ul li span {
        padding: 5px 10px;
        color: #fff;
        display: block;
        cursor: pointer;
        font-size: 14px; }
      .dialog-main .middle ul li.disabled {
        background: #000;
        opacity: 0.2; }
        .dialog-main .middle ul li.disabled span {
          cursor: not-allowed; }

.dialog-main .bottom {
  position: relative;
  margin: 20px; }
  .dialog-main .bottom .tip {
    height: 18px;
    font-size: 13px;
    color: #C8C8C8;
    position: absolute;
    bottom: 0;
    left: 0; }
  .dialog-main .bottom .txtr {
    text-align: right; }
  .dialog-main .bottom .btngroup .mr-10 {
    margin-right: 10px; }
  .dialog-main .bottom .btngroup .mt-20 {
    margin-top: 20px; }
  .dialog-main .bottom .btngroup .checkall {
    margin-right: 20px;
    font-size: 13px;
    color: #2196F3;
    line-height: 13px;
    cursor: pointer; }
  .dialog-main .bottom .btngroup .reset {
    margin-right: 20px;
    font-family: PingFangSC-Regular;
    font-size: 13px;
    color: #2196F3;
    line-height: 13px;
    cursor: pointer; }

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }

.dropzone.dz-clickable {
  cursor: pointer; }

.dropzone.dz-clickable * {
  cursor: default; }

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer; }

.dropzone.dz-started .dz-message {
  display: none; }

.dropzone.dz-drag-hover {
  border-style: solid; }

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5; }

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0; }

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  min-height: 100px; }

.dropzone .dz-preview:hover {
  z-index: 1000; }

.dropzone .dz-preview:hover .dz-details {
  opacity: 1; }

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd); }

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1; }

.dropzone .dz-preview.dz-image-preview {
  background: white; }

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none; }

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline; }

.dropzone .dz-preview:hover .dz-details {
  opacity: 1; }

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%; }

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px; }

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap; }

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8); }

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis; }

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent; }

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px; }

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px); }

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10; }

.dropzone .dz-preview .dz-image img {
  display: block; }

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px; }

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px; }

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in; }

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite; }

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden; }

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out; }

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block; }

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto; }

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white; }

.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626; }

.mandatory-msg {
  display: none; }

.file-message {
  display: none; }

.has-error .mandatory-msg {
  display: inline-block; }

.has-error .file-message {
  font-size: 12px;
  display: inherit;
  color: red; }

a {
  cursor: pointer;
  text-decoration: none; }

a:active {
  color: #444; }

table {
  border-collapse: collapse; }

.oh {
  overflow: hidden; }

.pl-5 {
  padding-left: 5px; }

.pl-10 {
  padding-left: 10px; }

.pl-20 {
  padding-left: 20px; }

.pl-40 {
  padding-left: 40px; }

.pr-5 {
  padding-right: 5px; }

.pr-8 {
  padding-right: 8px; }

.pr-10 {
  padding-right: 10px; }

.pr-15 {
  padding-right: 15px; }

.pr-20 {
  padding-right: 20px; }

.pr-40 {
  padding-right: 40px; }

.pr-100 {
  padding-right: 100px; }

.pt-10 {
  padding-top: 10px; }

.pt-20 {
  padding-top: 20px; }

.pt-30 {
  padding-top: 30px; }

.pt-130 {
  padding-top: 130px; }

.pb-10 {
  padding-bottom: 10px; }

.plr-5 {
  padding: 0 5px; }

.plr-10 {
  padding: 0 10px; }

.plr-20 {
  padding: 0 20px; }

.plr-50 {
  padding: 0 50px; }

.plr-100 {
  padding: 0 100px; }

.pb-30 {
  padding-bottom: 30px; }

.ptb-10 {
  padding: 10px 0; }

.m-20 {
  margin: 20px; }

.p-10 {
  padding: 10px; }

.p-20 {
  padding: 20px; }

.b-f22 {
  bottom: -22px; }

.mrbl-20 {
  margin: 0px 20px 20px 20px; }

.m-10 {
  margin: 10px; }

.ml-10 {
  margin-left: 10px; }

.mt-30 {
  margin-top: 30px; }

.mt-15 {
  margin-top: 15px; }

.mt-20 {
  margin-top: 20px; }

.mt-50 {
  margin-top: 50px; }

.mt-62 {
  margin: 62px 0px 20px 20px; }

.mt-10 {
  margin-top: 10px; }

.mr-10 {
  margin-right: 10px; }

.mr-15 {
  margin-right: 15px; }

.mr-20 {
  margin-right: 20px; }

.mr-40 {
  margin-right: 40px; }

.mr-5 {
  margin-right: 5px; }

.mlr-10 {
  margin: 0 10px; }

.mlr-5 {
  margin: 0 5px; }

.mlr-13 {
  margin: 0 13px; }

.mlr-20 {
  margin: 0 20px; }

.mtb-10 {
  margin: 10px 0; }

.mtb-20 {
  margin: 20px 0; }

.full {
  width: 100%; }

.mb-10 {
  margin-bottom: 10px; }

.mb-15 {
  margin-bottom: 15px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-32 {
  margin-bottom: 32px; }

.mb-37 {
  margin-bottom: 37px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-100 {
  margin-bottom: 100px; }

.plr-10-20 {
  padding: 10px 20px; }

.plr-10-15 {
  padding: 10px 15px; }

.mr-f10 {
  margin-right: -10px; }

.mr-f60 {
  margin-right: -60px; }

.mlr-f10 {
  margin: 0 -10px; }

.mlr-f20 {
  margin: 0 -20px; }

.mlr-f33 {
  margin: 0 -33px; }

.m-auto {
  margin: 0 auto; }

.spacing-10 {
  border-spacing: 10px; }

.spacing-20 {
  border-spacing: 20px; }

.spacing-20-10 {
  border-spacing: 20px 10px; }

.spacing-20-0 {
  border-spacing: 20px 0; }

.spacing-10-0 {
  border-spacing: 10px 0; }

.spacing-0-20 {
  border-spacing: 0 20px; }

.spacing-33-0 {
  border-spacing: 33px 0; }

.txtl {
  text-align: left; }

.txtc {
  text-align: center; }

.txtr {
  text-align: right; }

.va-t {
  vertical-align: top; }

.va-m {
  vertical-align: middle; }

.va-b {
  vertical-align: bottom; }

.h-20 {
  height: 20px; }

.lh-36 {
  line-height: 36px; }

.bg-e9 {
  background: #e9ecee; }

.pr {
  position: relative; }

.pa {
  position: absolute; }

.fr {
  float: right; }

.cf {
  color: #fff; }

.display-ib {
  display: inline-block; }

.w-50, .w-80, .w-100, .w-140, .w-175, .w-190, .w-417 {
  width: 80px;
  text-align: right;
  padding-right: 20px;
  transform: translateY(-2px);
  word-break: break-word;
  font-size: 12px;
  color: #333;
  cursor: pointer; }

.w-30 {
  width: 30px; }

.w-50 {
  width: 50px;
  text-align: left; }

.w-100 {
  width: 100px; }

.w-140 {
  width: 140px; }

.w-175 {
  width: 175px; }

.w-190 {
  width: 190px; }

.w-398 {
  width: 398px; }

.w-417 {
  width: 417px; }

.w-265 {
  width: 265px; }

.w-400 {
  width: 400px; }

.quan-back-dj1 {
  background-color: #FE8564; }

.quan-back-zk1 {
  background-color: #D68BED; }

.quan-back-jf1 {
  background-color: #59CCF2; }

.quan-back-cz1 {
  background-color: #FFBF72; }

.quan-back-end {
  background-color: #c7c7c7; }

.orange, .quan-color-dj {
  color: #FE8564; }

.quan-color-zk {
  color: #D68BED; }

.quan-color-jf {
  color: #59CCF2; }

.quan-color-cz {
  color: #FFBF72; }

.quan-color-end {
  color: #c7c7c7; }

.min-w-1260 {
  min-width: 1050px; }

.textarea {
  height: 125px;
  line-height: 25px;
  padding: 10px; }

.w-300 {
  width: 300px; }

.ws-nor {
  white-space: normal; }

.dc-excel {
  color: #2196F3; }

.h-100 {
  height: 100%; }

.ver-m {
  vertical-align: middle; }

.float-r {
  float: right; }

.txt-r {
  text-align: right; }

.tit-org {
  background: #FDF8E4;
  padding: 5px;
  border: 1px solid #EBE7C1;
  margin-bottom: 10px;
  color: #FF7700; }

.bold {
  font-weight: bold; }

.icon-account, .icon-edit-means, .icon-edit-password, .icon-enterprise-enter {
  padding-right: 8px; }

.center a {
  display: inline-block;
  color: #fff;
  outline: 0; }

.icon-account, .icon-edit-means, .icon-edit-password, .icon-enterprise-enter {
  padding-right: 10px;
  vertical-align: baseline; }

.top-header {
  font-size: 14px;
  color: #fff;
  cursor: pointer; }

.center {
  width: 1198px;
  margin: 0 auto;
  border-bottom: 1px solid #dcdcdc; }
  .center li {
    padding: 0 20px;
    cursor: pointer; }
  .center li:first-child {
    margin-top: 40px; }
  .center a {
    color: #000;
    font-size: 14px; }
  .center .active {
    color: #3a82bd; }

.menu {
  width: 172px;
  background-color: #f5f5f5; }

.show-menu {
  background-color: #0d030e;
  height: 34px;
  line-height: 34px;
  text-align: center; }

/* footer */
.main-footer {
  height: 100px;
  width: 1198px;
  background: #fff;
  margin: 0 auto; }
  .main-footer a {
    padding: 0 20px;
    color: #333;
    display: inline-block; }

.user-header {
  background-color: #005daa;
  height: 77px;
  line-height: 77px; }
  .user-header .user-img {
    vertical-align: middle;
    padding-right: 10px; }
  .user-header .user-text {
    color: #fff;
    font-size: 16px;
    vertical-align: middle; }
  .user-header .dropdown-menu {
    top: 76px;
    z-index: 1000;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    right: 0;
    left: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 1px 0 0 0;
    border-top-width: 0;
    width: 160px;
    background-color: #fff; }
    .user-header .dropdown-menu:before {
      display: inline-block;
      position: absolute;
      left: 70px;
      top: -6px;
      content: '';
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #fff; }
    .user-header .dropdown-menu li {
      height: 26px;
      line-height: 26px;
      padding: 5px 20px;
      color: #000;
      margin: 5px;
      cursor: pointer; }
    .user-header .dropdown-menu li a {
      color: #000; }
    .user-header .dropdown-menu li:not(:last-child) {
      border-bottom: 1px solid #dcdcdc; }
  .user-header .nav-menu {
    top: 48px;
    z-index: 1000;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 48px;
    left: -416px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 1px 0 0 0;
    border-top-width: 0;
    width: 916px;
    height: 200px;
    background-color: #fff; }
    .user-header .nav-menu:before {
      display: inline-block;
      position: absolute;
      left: 430px;
      top: -6px;
      content: '';
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid #fff; }
    .user-header .nav-menu ul {
      display: inline-block;
      height: 100%;
      padding: 15px 35px;
      vertical-align: top;
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      /* Firefox */
      -webkit-box-sizing: border-box;
      /* Safari */ }
    .user-header .nav-menu ul:not(:last-child) {
      border-right: 1px solid #dcdcdc; }
    .user-header .nav-menu li {
      height: 14px;
      line-height: 14px;
      font-size: 14px; }
    .user-header .nav-menu li:first-child {
      color: #000; }
    .user-header .nav-menu li:not(:first-child) {
      padding-top: 15px; }
    .user-header .nav-menu li a {
      color: #999; }
  .user-header .user-info {
    background: #e9e9e9; }
  .user-header .nav-info {
    color: #3a82bd !important; }

.user-content {
  padding: 15px; }

.user-btn {
  font-size: 14px;
  color: #fff;
  width: 140px;
  height: 40px;
  background-color: #155eaa;
  border: 1px solid #155eaa; }

.icon-account:before {
  content: "\E606"; }

.icon-edit-means:before {
  content: "\E626"; }

.icon-edit-password:before {
  content: "\E63E"; }

.icon-enterprise-enter:before {
  content: "\E76B"; }

.user-header .user-log, .register .register-content {
  width: 1198px;
  margin: 0 auto; }

input[type="checkbox"] {
  vertical-align: middle;
  margin-right: 5px; }

.register .register-content .register-login {
  font-size: 16px;
  color: #000; }

.register .register-content a {
  font-size: 16px;
  color: #3a82bd; }

.register .register-content .input, .register .register-content .input-min {
  height: 52px;
  border-radius: 0 !important;
  border: 1px solid #dedede;
  font-size: 14px;
  color: #999; }

.register .register-content .register-input {
  margin-left: -6px;
  width: 190px; }

.register .register-content .w-398 {
  width: 398px;
  display: inline-block; }

.register .register-content .w-407 {
  width: 407px;
  display: inline-block; }

.register .register-content .register-select {
  position: relative;
  width: 215px;
  padding: 10px 5px !important;
  vertical-align: bottom;
  text-align: left; }

.register .register-content .pos-re {
  display: inline-block;
  position: relative; }

.register .register-content .pos-a {
  position: absolute; }

.register .register-content .register-btn {
  width: 160px;
  height: 46px;
  line-height: 46px;
  background-color: #f2f2f2;
  position: absolute;
  right: 3px;
  top: 3px;
  text-align: center;
  cursor: pointer; }

.register .register-content .register-txt {
  font-size: 14px;
  color: #333; }
  .register .register-content .register-txt a {
    font-size: 14px; }

.register .register-content .code-button {
  width: 128px;
  margin-left: 10px;
  background: #f2f2f2;
  color: #000; }

.register .register-content .w-256 {
  width: 256px; }

.register .register-content .w-263 {
  width: 263px; }

.register .register-content .w-436 {
  width: 436px; }

.register .register-content .mandatory-msg {
  display: none; }

.register .register-content .has-error .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
  color: #F44336; }

.register .register-content .has-error .mandatory-msg {
  font-size: 12px;
  display: block;
  color: #F44336;
  position: absolute;
  vertical-align: baseline; }
  .register .register-content .has-error .mandatory-msg .iconfont, .register .register-content .has-error .mandatory-msg .icon {
    color: #F44336; }
  .register .register-content .has-error .mandatory-msg i {
    margin-right: 10px;
    line-height: 20px;
    vertical-align: bottom; }

.register .register-content .has-error input, .register .register-content .has-error .input, .register .register-content .has-error .input-min {
  border-color: #F44336;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.register .register-btn-primary {
  width: 398px;
  height: 55px;
  line-height: 55px;
  font-size: 16px; }

.register .register-bor {
  width: 1198px;
  border-top: 1px solid #ddd; }

.register button.active {
  color: #fff;
  background-color: #006dde;
  border: 1px solid #006dde; }

.register .register-icon {
  position: absolute;
  top: 10px;
  right: 12px; }

.register .bot-none {
  border: none;
  outline: none; }

.register .register-menu {
  background: #fff;
  border-top: 0 !important;
  z-index: 9;
  width: 206px;
  height: 200px;
  overflow-y: auto;
  border: 1px solid #d5c3ac;
  position: absolute;
  top: 52px;
  left: 0; }
  .register .register-menu li {
    cursor: pointer;
    text-align: left;
    margin: 0;
    height: 25px;
    line-height: 25px;
    cursor: pointer;
    padding: 0 5px; }
    .register .register-menu li.active {
      background: #3a82bd; }
  .register .register-menu .country-title {
    color: #3c3c3c;
    padding: 0;
    margin: 0; }
  .register .register-menu .country-code {
    float: right;
    color: #3c3c3c;
    padding: 0;
    margin: 0; }

.register .register-title {
  display: inline-block; }

.register .register-code {
  display: inline-block;
  padding-right: 24px;
  float: right; }

.register .prompt {
  color: #df600b;
  text-align: left; }

.register .bb-blue {
  border-bottom: 1px solid #3a82bd; }

.register .register-tab {
  width: 170px;
  height: 35px;
  border: 1px solid #3a82bd;
  border-bottom: none;
  display: inline-block;
  color: #3a82bd;
  text-align: center;
  line-height: 35px;
  cursor: pointer; }

.register .move {
  background: #3a82bd;
  color: #fff; }

.account .my-service {
  display: flex;
  justify-content: space-between;
  margin: 15px 10px; }
  .account .my-service .title {
    vertical-align: middle;
    font-size: 16px;
    font-weight: bold;
    color: #333; }
  .account .my-service .reminder-btn {
    height: 42px;
    padding: 5px 20px;
    background-color: #72b112;
    border: 1px solid #72b112;
    border-radius: 5px;
    color: #fff; }
  .account .my-service .phone {
    padding-left: 5px;
    font-size: 16px; }

.account .no-service {
  position: relative;
  margin: 0 10px; }
  .account .no-service .tip {
    font-size: 14px;
    color: #999;
    position: absolute;
    top: 30px;
    left: 20px; }
  .account .no-service img {
    margin-bottom: 10px; }

.account .has-services {
  width: 996px; }
  .account .has-services .service {
    display: inline-block;
    width: 165px;
    height: 68px;
    background: #dfdfdf;
    margin-right: 25px;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 8px 5px; }

.account .all-services {
  width: 996px;
  box-sizing: border-box; }
  .account .all-services .menu-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background: #dfdfdf; }
    .account .all-services .menu-row .service {
      width: 165px;
      height: 68px;
      background: #dfdfdf;
      box-sizing: border-box;
      padding: 8px 5px; }
    .account .all-services .menu-row .sys {
      width: 835px;
      box-sizing: border-box;
      background: #efefef; }
      .account .all-services .menu-row .sys .show-overflown {
        height: auto !important;
        overflow: auto !important;
        max-height: 183px;
        overflow-x: hidden;
        overflow-y: auto; }
      .account .all-services .menu-row .sys .menus {
        width: 730px;
        box-sizing: border-box;
        padding: 18px 0 5px 15px;
        line-height: 30px;
        height: 68px; }
        .account .all-services .menu-row .sys .menus div {
          width: 97px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          display: inline-block;
          margin-right: 18px;
          font-size: 14px;
          color: #4f6fa5; }
      .account .all-services .menu-row .sys .sys-btns {
        width: 60px;
        box-sizing: border-box;
        vertical-align: top;
        margin-top: 21px;
        margin-left: 15px; }
        .account .all-services .menu-row .sys .sys-btns div {
          height: 26px;
          width: 57px;
          line-height: 26px;
          text-align: left;
          padding-left: 7px;
          box-sizing: border-box;
          color: #999;
          cursor: pointer; }
        .account .all-services .menu-row .sys .sys-btns div:hover {
          color: #4f6fa5; }
        .account .all-services .menu-row .sys .sys-btns .more {
          background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABQAAD/4QMqaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAxNCA3OS4xNTE0ODEsIDIwMTMvMDMvMTMtMTI6MDk6MTUgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTU4Mzg0MzUzNzY5MTFFQTlBNDQ5RTNFMUIwOEJGRUEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTU4Mzg0MzYzNzY5MTFFQTlBNDQ5RTNFMUIwOEJGRUEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5NTgzODQzMzM3NjkxMUVBOUE0NDlFM0UxQjA4QkZFQSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5NTgzODQzNDM3NjkxMUVBOUE0NDlFM0UxQjA4QkZFQSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uAA5BZG9iZQBkwAAAAAH/2wCEAAICAgICAgICAgIDAgICAwQDAgIDBAUEBAQEBAUGBQUFBQUFBgYHBwgHBwYJCQoKCQkMDAwMDAwMDAwMDAwMDAwBAwMDBQQFCQYGCQ0LCQsNDw4ODg4PDwwMDAwMDw8MDAwMDAwPDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/AABEIABoAOQMBEQACEQEDEQH/xABuAAEAAgIDAAAAAAAAAAAAAAAABAcFBgIICQEBAAAAAAAAAAAAAAAAAAAAABAAAAUBBQUGBwEAAAAAAAAAAAECAwQFESHRkxUxEjNVljKyExR0NVFhcSJiNAY2EQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwD3eplMprlNp7jlPjLWuM0pa1NIMzM0EZmZmV5mAnaTSuWRMlGABpNK5ZEyUYAGk0rlkTJRgAaTSuWRMlGABpNK5ZEyUYAGk0rlkTJRgAo8BeFJ9qpnpGe4QDIAAAA4OEs21k0okuGk/DUorSJVlxmX1Aao1/Vx40eS3W0eQrEDdS/TkWrU+pZ2NqiltcS4dxWXkdyrLAGdpblReiJeqbDcSS8pSyiNq3vCQZ/YhSthqIu0ZXW7AFIALwpPtVM9Iz3CAZAAAAABFdhQ35EaW9GadlQ97yshSSNbe+Vit0zvK0gEoB1/AbxE/Vjf6XhI4HC7JcP8fh8gEjqsA6rAOqwDqsA6rAOqwFfgP//Z); }
        .account .all-services .menu-row .sys .sys-btns .more:hover {
          background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABQAAD/4QMqaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAxNCA3OS4xNTE0ODEsIDIwMTMvMDMvMTMtMTI6MDk6MTUgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTkxNzY2NTczNzY5MTFFQThENjJFRjY4MEM5QkE2QTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTkxNzY2NTgzNzY5MTFFQThENjJFRjY4MEM5QkE2QTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBOTE3NjY1NTM3NjkxMUVBOEQ2MkVGNjgwQzlCQTZBNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBOTE3NjY1NjM3NjkxMUVBOEQ2MkVGNjgwQzlCQTZBNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uAA5BZG9iZQBkwAAAAAH/2wCEAAICAgICAgICAgIDAgICAwQDAgIDBAUEBAQEBAUGBQUFBQUFBgYHBwgHBwYJCQoKCQkMDAwMDAwMDAwMDAwMDAwBAwMDBQQFCQYGCQ0LCQsNDw4ODg4PDwwMDAwMDw8MDAwMDAwPDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/AABEIABoAOQMBEQACEQEDEQH/xACOAAEAAgMBAAAAAAAAAAAAAAAABQkGBwgDAQEAAgMBAAAAAAAAAAAAAAAAAwUCBAYBEAAABQICBgcJAQAAAAAAAAAAAgMEBQEGERMS05UWVpchMSI0tDV1YiMzU2MUFTYHNxEAAgEBBQcDBAMAAAAAAAAAAAECAzFRkVKTESFBMhMEFHGBM2GxEnKh4QX/2gAMAwEAAhEDEQA/ALprIsiy3dl2g6dWhCOXTmEj1XLlWPbHUUUO2TMY5zGTrU1TVrjWtesbncdxVVWSUna+LvNelSg4LcrFwMo3AsPgmB2a11Yi8mrnliyTowyrAbgWHwTA7Na6sPJq55YsdGGVYDcCw+CYHZrXVh5NXPLFjowyrAbgWHwTA7Na6sPJq55YsdGGVYDcCw+CYHZrXVh5NXPLFjowyrAbgWHwTA7Na6sPJq55YsdGGVYFYA64oSz+wP0OyfQY3wqY5Hufln+z+5fUeSPojLhASAAAB4OiuDNnBWihEnRkj0bKqU0iFUqWuiYxaYY0pXroPVs277Dx2bjSzL+1RcRFyrT+htt276tvKRkrVbUMupJKLmy2qsMXoO6TdHpgSlO0Q2JFNGpa1G/L/PlOSdLfB2O6/wDK7Zx/g1l3Sin+e6S4X+l+02PZzu6ZCDRkLwjW0LLvlVFywjZTO+zbnN7hBVXqOqUmGZUvZ0saF6KUGrXjTjLZB7UuN/8AVxNScnHbJbGVdjryhLP7A/Q7J9BjfCpjke5+Wf7P7l9R5I+iMuEBIAAAAAQ7y34KRlIqbfxDR5MQWb+Gk1kSHXa55dFXJUrTEulTorgM41Zxi4pvY7VeYuEW02t6JgYGRUkO1OdOoLf8hhP9q7g28q7h8IvdPo/L9nAVFXnfxWu233+t5vw5Vz+1hL8+hhomWoOfQaI1Bz6DRGoOfQaI1Bz6DRGoOfQaI1DkgXRXH//Z); }
        .account .all-services .menu-row .sys .sys-btns .retract {
          background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABQAAD/4QMqaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAxNCA3OS4xNTE0ODEsIDIwMTMvMDMvMTMtMTI6MDk6MTUgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTcwQzcxRTYzNzY5MTFFQUJBQjZGQzQxMDExRURFRDEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTcwQzcxRTczNzY5MTFFQUJBQjZGQzQxMDExRURFRDEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFNzBDNzFFNDM3NjkxMUVBQkFCNkZDNDEwMTFFREVEMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFNzBDNzFFNTM3NjkxMUVBQkFCNkZDNDEwMTFFREVEMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uAA5BZG9iZQBkwAAAAAH/2wCEAAICAgICAgICAgIDAgICAwQDAgIDBAUEBAQEBAUGBQUFBQUFBgYHBwgHBwYJCQoKCQkMDAwMDAwMDAwMDAwMDAwBAwMDBQQFCQYGCQ0LCQsNDw4ODg4PDwwMDAwMDw8MDAwMDAwPDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/AABEIABoAOQMBEQACEQEDEQH/xABqAAEAAwEBAAAAAAAAAAAAAAAABAYHBQkBAQAAAAAAAAAAAAAAAAAAAAAQAAEDAgIHBgcAAAAAAAAAAAEAAgQDBSEVEdESM5NVlkFRYbJ0NTEiMmI0BjYRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/APd62Wy21Lbb6lS3xnvfGpOe91JhJJYCSSRiSgnZTauWROCzUgZTauWROCzUgZTauWROCzUgZTauWROCzUgZTauWROCzUgZTauWROCzUgw9BuFp9qtnpKPkCDoICAgIKjL/YptSTWbYbZm8O2OIu0hrtnaIwdRjdlSo34nsw2dO0cAsVvuES6RKU2DWFePWHyuGBBGBa4HEEHAg4hBhaDcLT7VbPSUfIEHQQEBAQR4kSNBjUYkOiyPGjtDKNFg0NaB3IFCJGiukuj0WUXS6prySwaNuoWtaXnxIaNKDB0F4ifixv6XdM3G6+kbv7e7wQSOq0DqtA6rQOq0DqtA6rQZ+g/9k=); }
        .account .all-services .menu-row .sys .sys-btns .retract:hover {
          background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABQAAD/4QMqaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAxNCA3OS4xNTE0ODEsIDIwMTMvMDMvMTMtMTI6MDk6MTUgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzY5NUUxNjYzNzY5MTFFQTg3NDlGRTAwRUExMzc4MzYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzY5NUUxNjczNzY5MTFFQTg3NDlGRTAwRUExMzc4MzYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDNjk1RTE2NDM3NjkxMUVBODc0OUZFMDBFQTEzNzgzNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNjk1RTE2NTM3NjkxMUVBODc0OUZFMDBFQTEzNzgzNiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uAA5BZG9iZQBkwAAAAAH/2wCEAAICAgICAgICAgIDAgICAwQDAgIDBAUEBAQEBAUGBQUFBQUFBgYHBwgHBwYJCQoKCQkMDAwMDAwMDAwMDAwMDAwBAwMDBQQFCQYGCQ0LCQsNDw4ODg4PDwwMDAwMDw8MDAwMDAwPDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/AABEIABoAOQMBEQACEQEDEQH/xACNAAEAAgMAAAAAAAAAAAAAAAAABgkFBwgBAQADAQEAAAAAAAAAAAAAAAADBQYEAhAAAAUCAQgHCQAAAAAAAAAAAQIDBAUABhYRIRIT05VWlzE0tDV1NgdBoSJCYjNTYzcRAAIBAQUGBQQDAAAAAAAAAAABAgMRMZFSk0FRMhMEFCFxgbEzYcHRcvESIv/aAAwDAQACEQMRAD8AumsiyLLd2XaDp1aEI5dOYSPVcuVY9sdRRQ7ZMxjnMZMRMJhHKIj012dR1FVVZJSd72vec9KlBwXgrlsJRgCw+CYHdrXZ1F3NXPLFknJhlWAwBYfBMDu1rs6dzVzyxY5MMqwGALD4Jgd2tdnTuaueWLHJhlWAwBYfBMDu1rs6dzVzyxY5MMqwGALD4Jgd2tdnTuaueWLHJhlWAwBYfBMDu1rs6dzVzyxY5MMqwKwK1xQln9geQ7J8Bjeyp1kep+Wf7P3L6jwR8kS6oCQUAoBQGjpr1TuB1Kv0/Te0McwVoLGLe8qmtqtYcnwqMYj5XLpIB0zgIgQNHVaWsOGjY0+jgormy/q5cK+8tyezbtuOWXUSb/wrUr/wt7/g2nbNzQd4QrK4LefkkIt8URSWKAlMUxR0TpqEMAGIoQwCUxDABiiGQQrirUZUpOMlY0T06kZq2NxVhWxKAs/sDyHZPgMb2VOsj1Pyz/Z+5fUeCPkiXVASCgFAKAxcLCxNuxTCDg49GLiIxEqDBg3KBE0ky9AAHvERziOcc9e6lSVSTlJ2tnmMVFWLwQjYWJiFZVaLj0WCk29NIywolAmvdnTTRMscAzaRiJEAR9uTKOfLSdSU7LXbYrF5CMVG2zaVTVsjPnUFv9wwn9q6g27q6h9ovVP0/j+nJVRV438V7vv9frvO+HCuP0uMvz6rxonrUHPqmiNQc+qaI1Bz6pojUHPqmiNQc+qaI1Dkirorj//Z); }
    .account .all-services .menu-row .sys > div {
      display: inline-block; }

.account .sysName {
  width: 97px;
  display: inline-block;
  font-size: 14px;
  color: #333;
  height: 52px;
  line-height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.account .account-100 {
  width: 100px; }

.account .account-top {
  position: relative; }

.account .user-info {
  position: relative;
  height: 100px;
  padding: 20px; }

.account .account-type {
  position: absolute;
  display: inline-block;
  padding-left: 20px;
  padding-top: 16px;
  vertical-align: top; }

.account .account-phone {
  font-size: 16px;
  color: #000;
  font-weight: bold; }

.account .person-info {
  display: inline-block;
  position: relative;
  width: 432px;
  left: 396px;
  top: -3px; }
  .account .person-info .person-header {
    font-size: 16px;
    color: #000;
    padding-bottom: 6px;
    border-bottom: 1px solid #dcdcdc;
    padding-left: 10px; }
  .account .person-info .detail-info {
    display: inline-block;
    font-size: 14px;
    color: #999;
    margin: 10px; }

.account .verify-unpass {
  color: #006dde; }

.account .verify-btn {
  position: relative;
  width: 163px;
  left: 258px;
  top: -90px;
  line-height: 14px;
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid #f39d36;
  background-color: #fff;
  color: #f39d36; }

.account .account-active {
  margin-bottom: 35px; }
  .account .account-active .server {
    padding-bottom: 5px;
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px; }
  .account .account-active .reminder {
    padding-bottom: 20px;
    color: #000; }
  .account .account-active .reminder-info {
    color: #999; }

.account .server-active {
  border-bottom: 3px solid #005daa;
  padding: 7px 20px; }

.account .account-border {
  position: relative;
  display: inline-block;
  background: #fff;
  font-size: 14px;
  border: 2px solid #a8a8a8;
  color: #999;
  width: 63px;
  height: 63px;
  border-radius: 35px;
  text-align: center;
  line-height: 63px;
  margin: 0 10px; }
  .account .account-border .system-img {
    vertical-align: middle; }
  .account .account-border.active {
    display: inline-block;
    font-size: 14px;
    width: 63px;
    height: 63px;
    border-radius: 35px;
    text-align: center;
    line-height: 63px;
    margin: 0 10px;
    background: #005daa;
    color: #fff;
    border: 2px solid #005daa; }

.pu-icon {
  color: #72b112; }

.qi-icon {
  color: #f39d36; }

.account-p {
  display: inline-block;
  font-size: 12px;
  color: #000;
  padding-right: 10px; }

.img-circle {
  z-index: 5;
  height: 100px;
  width: 100px;
  position: relative;
  border: 3px solid;
  border-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%; }

.enterprise-enter .error-info .error-mes, .enterprise-enter .error-info .error-reason {
  font-size: 12px;
  color: #b82121; }

.enterprise-enter .enterprise-header {
  height: 52px;
  line-height: 52px;
  border-bottom: 2px solid #dedede;
  margin-bottom: 15px; }

.enterprise-enter .enterprise-guide {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  padding: 0 25px 0 15px; }

.enterprise-enter .enterprise-step {
  display: inline-block;
  background: #fff;
  font-size: 14px;
  border: 2px solid #999;
  color: #999;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  text-align: center;
  line-height: 24px;
  margin: 0 10px; }
  .enterprise-enter .enterprise-step.active {
    background-color: #005daa;
    color: #fff;
    border: 2px solid #005daa; }
  .enterprise-enter .enterprise-step.visited {
    background-color: #99bedd;
    color: #fff;
    border: 2px solid #99bedd; }

.enterprise-enter .enterprise-text {
  font-size: 15px;
  color: #999;
  padding-right: 10px; }
  .enterprise-enter .enterprise-text.active {
    color: #005daa; }
  .enterprise-enter .enterprise-text.visited {
    color: #99bedd; }

.enterprise-enter .enterprise-line {
  display: inline-block;
  width: 110px;
  border-top: 1px solid #ccc;
  vertical-align: super; }
  .enterprise-enter .enterprise-line.active {
    border: 1px solid #005daa; }
  .enterprise-enter .enterprise-line.visited {
    border: 1px solid #99bedd; }

.enterprise-enter .now-state {
  color: #666;
  padding-right: 10px;
  text-align: center; }

.enterprise-enter .state-txt {
  font-size: 18px;
  color: #0078db; }

.enterprise-enter .verify-txt {
  color: #000; }

.enterprise-enter .verify-mun {
  font-size: 16px;
  color: #df600b; }

.enterprise-enter .error-info {
  background: #ffe6e6;
  border: 1px solid #daa9a9;
  margin-bottom: 15px;
  padding: 15px 15px; }
  .enterprise-enter .error-info .error-mes {
    font-weight: bold;
    padding-bottom: 15px; }

.enterprise-enter .address {
  display: inline-block;
  vertical-align: middle; }

.friendly-prompt {
  font-size: 12px;
  color: #df600b; }

.login .login-top {
  background: url(/cubilose-user/dist/9c0ff2366681241b5a0ed3505909366c.jpg) no-repeat center;
  height: 438px; }
  .login .login-top .login-nav {
    width: 1000px;
    text-align: right;
    margin: 0 auto;
    padding-top: 10px;
    color: #222; }
    .login .login-top .login-nav .active {
      background: rgba(0, 0, 0, 0.2); }
    .login .login-top .login-nav .language-cn, .login .login-top .login-nav .language-yg {
      color: #fff;
      padding: 4px 10px;
      border-radius: 4px;
      cursor: pointer; }
    .login .login-top .login-nav .language-cn {
      margin: 0 10px; }
    .login .login-top .login-nav .language-yg {
      margin-left: 10px; }
    .login .login-top .login-nav img {
      vertical-align: sub;
      margin-right: 5px; }
  .login .login-top .w1000 {
    padding-top: 78px;
    text-align: right; }
  .login .login-top .login-box {
    display: inline-block;
    width: 320px; }
    .login .login-top .login-box .login-box-body {
      background: #fff;
      padding: 20px; }
      .login .login-top .login-box .login-box-body .login-box-msg {
        margin-bottom: 20px;
        height: 30px;
        line-height: 30px;
        text-align: left;
        font-size: 18px; }
        .login .login-top .login-box .login-box-body .login-box-msg .login-error {
          color: #F44336;
          background-color: rgba(244, 67, 54, 0.2);
          font-size: 13px;
          padding: 0 10px; }
      .login .login-top .login-box .login-box-body .has-feedfront {
        position: relative; }
        .login .login-top .login-box .login-box-body .has-feedfront .icon {
          position: absolute;
          left: 20px;
          line-height: 34px;
          top: 0; }
        .login .login-top .login-box .login-box-body .has-feedfront input {
          padding-left: 50px; }
      .login .login-top .login-box .login-box-body .operation a {
        color: #2196F3;
        cursor: pointer; }

.login .login-center, .login .w1000 {
  width: 1000px;
  margin: 0 auto; }

.login .login-bottom {
  background: #f4f4f4;
  height: 50px;
  line-height: 50px; }
  .login .login-bottom .pull-left a, .login .login-bottom .pull-left span {
    display: inline-block;
    font-size: 13px;
    color: #666; }
  .login .login-bottom .pull-left span {
    font-size: 14px;
    margin: 0 15px; }
  .login .login-bottom .pull-right img {
    vertical-align: middle; }

.login .registerpass {
  margin: 0 70px; }

.login .resetpass a.getnumber span, .login .registerpass a.getnumber span {
  color: #2196F3;
  cursor: pointer; }

.login .resetpass .msg-desc, .login .registerpass .msg-desc {
  display: block; }

.login .resetpass .telephone, .login .registerpass .telephone {
  margin-right: 10px; }

/**
 * notify 通知组件
 */
.message-notify {
  position: fixed;
  z-index: 10000;
  top: -52px;
  left: 0;
  width: 100%;
  text-align: center;
  transition: .3s; }
  .message-notify.show {
    top: 6px; }
  .message-notify .message-notify-content {
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
    background: #fff;
    display: inline-block; }
  .message-notify .message-success-icon {
    margin-right: 8px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #87D068 !important;
    font-family: "iconfont" !important; }
    .message-notify .message-success-icon:before {
      content: "\E638"; }
  .message-notify .message-info-icon {
    margin-right: 8px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #339eff !important;
    font-family: "iconfont" !important; }
    .message-notify .message-info-icon:before {
      content: "\E609"; }
  .message-notify .message-error-icon {
    margin-right: 8px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #FF6600 !important;
    font-family: "iconfont" !important; }
    .message-notify .message-error-icon:before {
      content: "\E63A"; }
  .message-notify .message-loading-icon {
    margin-right: 8px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #339eff !important;
    font-family: "iconfont" !important;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear; }
    .message-notify .message-loading-icon:before {
      content: "\E62F"; }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
