@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.考虑移动设备。
*/
/* ==========================================================================
 有即是无，无即是有
 ========================================================================== */
html, 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; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  height: 100%; }

/**
* 非大面积文字排版网站通常不需要列表项，如果需要可单独设置
*/
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: "Helvetica Neue",Helvetica,Arial,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 */ }

/**
* 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 元素给予手型，暗示此处可点击
*/
/**
* 统一 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(/trace-web/dist/98e23001a5ca819fd5a1d0bd57de075b.eot);
  src: url(/trace-web/dist/98e23001a5ca819fd5a1d0bd57de075b.eot) format("embedded-opentype"), url(/trace-web/dist/dbb18bae75db479077eb5227b13926cb.woff) format("woff"), url(/trace-web/dist/e364dab4117df614ebfa60adca644c91.ttf) format("truetype"), url(/trace-web/dist/2414e12657e255729d70d26140b2f7d2.svg) 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-yonghu:before {
  content: "\E614"; }

.icon-tubiaozhexiantu:before {
  content: "\E608"; }

.icon-house:before {
  content: "\E60D"; }

.icon-mima:before {
  content: "\E736"; }

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

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

.icon-cuo:before {
  content: "\E63D"; }

.icon-dui:before {
  content: "\E641"; }

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

.icon-icon02:before {
  content: "\E607"; }

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

.icon-jinlingyingcaiwangtubiao46:before {
  content: "\E6CD"; }

.icon-wendangguanli:before {
  content: "\E66B"; }

.icon-gongsijieshao:before {
  content: "\E621"; }

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

.icon-wujiaoxing:before {
  content: "\E635"; }

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

.icon-xiala1:before {
  content: "\E637"; }

.icon-weituoguanli:before {
  content: "\E659"; }

.icon-jinggao:before {
  content: "\E64F"; }

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

.icon-xingwei:before {
  content: "\E63B"; }

.icon-jianhao:before {
  content: "\E6D0"; }

.icon-qiyejibenxinxi:before {
  content: "\E628"; }

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

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

.icon-jiandujiancha:before {
  content: "\E658"; }

.icon-weibiaoti25:before {
  content: "\E62B"; }

.icon-wujiaoxing1:before {
  content: "\E632"; }

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

.icon-feiji800:before {
  content: "\E669"; }

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

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

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

.icon-xuanzhong:before {
  content: "\E633"; }

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

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

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

.icon-xiazai:before {
  content: "\E648"; }

.icon-5:before {
  content: "\E63C"; }

.icon-yishengzhidao:before {
  content: "\E717"; }

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

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

.icon-feiji:before {
  content: "\E6AE"; }

.icon-jiantou24:before {
  content: "\E72C"; }

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

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

.icon-shangchuan:before {
  content: "\E667"; }

.icon-baocun:before {
  content: "\E6F4"; }

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

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

.icon-jiance01:before {
  content: "\E775"; }

.icon-shouye:before {
  content: "\E668"; }

.icon-lianggequan:before {
  content: "\E622"; }

.icon-chushi:before {
  content: "\E7A2"; }

.icon-xiaofeijilu-copy:before {
  content: "\E627"; }

.icon-ju-icon-square:before {
  content: "\E639"; }

.icon-ai65:before {
  content: "\E6B7"; }

.icon-15daochu:before {
  content: "\E681"; }

.icon-jilu:before {
  content: "\E642"; }

.icon-baogaoguanli:before {
  content: "\E679"; }

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

.icon-chaxun:before {
  content: "\E61E"; }

.icon-zhongguo:before {
  content: "\E665"; }

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

.icon-bianji:before {
  content: "\E630"; }

.icon-xiangmu:before {
  content: "\E69F"; }

.icon-icon27101:before {
  content: "\E720"; }

.icon-dingdangdaijiekuanjilu:before {
  content: "\E6BD"; }

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

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

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

.icon-tupian:before {
  content: "\E674"; }

.icon-zhengcefagui:before {
  content: "\E60E"; }

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

.icon-quanshengmingzhouqiguanli:before {
  content: "\E6CA"; }

.icon-shouqicaidan:before {
  content: "\E623"; }

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

.icon-excel:before {
  content: "\E61F"; }

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

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

.icon-weixuanzhong:before {
  content: "\E634"; }

.icon-jichushujuguanli:before {
  content: "\E615"; }

.icon-tubiao_zhexiantu:before {
  content: "\E72D"; }

.icon-fangkuang:before {
  content: "\E62A"; }

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

.icon-zidianguanli:before {
  content: "\E6C2"; }

.icon-turangwendu:before {
  content: "\E675"; }

.icon-zhuzhuangtu:before {
  content: "\E62C"; }

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

.icon-icon-test:before {
  content: "\E62D"; }

.icon-renyuanguanli:before {
  content: "\E7B2"; }

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

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

.icon-layers:before {
  content: "\E631"; }

.icon-jiha:before {
  content: "\E67B"; }

.icon-xitongshezhi:before {
  content: "\E610"; }

.icon-tijiao1:before {
  content: "\E65D"; }

.icon-ccgl-caigouguanli-7:before {
  content: "\E654"; }

.icon-ccgl-fahuodanguanli-4:before {
  content: "\E73E"; }

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

.icon-qizhi:before {
  content: "\E7B7"; }

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

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

.icon-thermometer_icon:before {
  content: "\E67A"; }

.icon-renwuguanli:before {
  content: "\E6AD"; }

.icon-inquire:before {
  content: "\E750"; }

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

.icon-liuchengB:before {
  content: "\E60C"; }

.icon-renyuan:before {
  content: "\E686"; }

.icon-quxiao:before {
  content: "\E60B"; }

.icon--shebeiguanliu:before {
  content: "\E643"; }

.icon-jingyingzizhi:before {
  content: "\E68B"; }

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

.icon-fanhui2:before {
  content: "\E657"; }

.icon-warn:before {
  content: "\E605"; }

.icon-jiahao:before {
  content: "\E6BB"; }

.icon-tuihui:before {
  content: "\E660"; }

.icon-caidan:before {
  content: "\E611"; }

.icon-saoma:before {
  content: "\E636"; }

.icon-yangpinguanli:before {
  content: "\E661"; }

.icon-erweima:before {
  content: "\E649"; }

.icon-jiance:before {
  content: "\E65A"; }

.icon-fengxiangbiao:before {
  content: "\E69E"; }

.icon-daoru1:before {
  content: "\E61D"; }

.icon-zhongzhi:before {
  content: "\E6E7"; }

.icon-jiaotang:before {
  content: "\E64A"; }

.icon-daoru:before {
  content: "\E66D"; }

.icon-huizong:before {
  content: "\E620"; }

.icon-jiazaizhong:before {
  content: "\E629"; }

.icon-daqiyali:before {
  content: "\E677"; }

.icon-rizhiguanli:before {
  content: "\E6EB"; }

.icon-tongji:before {
  content: "\E612"; }

.icon-peixun:before {
  content: "\E644"; }

.icon-tijiao:before {
  content: "\E64B"; }

.icon-ico_arrows_packup:before {
  content: "\E651"; }

.icon-yangpin:before {
  content: "\E64C"; }

.icon-wuliaobaozhuangdan:before {
  content: "\E617"; }

.icon-xiangmuhuikuan:before {
  content: "\E672"; }

.icon-guidang:before {
  content: "\E666"; }

.icon-fenfa:before {
  content: "\E662"; }

.icon-canshu:before {
  content: "\E65B"; }

.icon-zhixiang:before {
  content: "\E619"; }

.icon-tongji1:before {
  content: "\E64D"; }

.icon-daochu:before {
  content: "\E692"; }

.icon-zhuanyebiaozhunbianzhi:before {
  content: "\E6C0"; }

.icon-wuzheng:before {
  content: "\E664"; }

.icon-shujuzhongxin:before {
  content: "\E65E"; }

.icon-fengsu:before {
  content: "\E678"; }

.icon-zuopintoupiao-:before {
  content: "\E688"; }

.icon-jiaotanglansibuer:before {
  content: "\E68C"; }

.icon-queren:before {
  content: "\E6FD"; }

.icon-Group-:before {
  content: "\E6AF"; }

.icon-jianceguanli:before {
  content: "\E663"; }

.icon-jianzhuanquan:before {
  content: "\E67C"; }

.icon-jianzhuanquan-:before {
  content: "\E67D"; }

.icon-jianzhuanquan-1:before {
  content: "\E67E"; }

.icon-jianzhuanquan1:before {
  content: "\E682"; }

.icon-liuzhuan:before {
  content: "\E709"; }

.icon-app_icons--:before {
  content: "\E683"; }

.icon-app_icons--1:before {
  content: "\E685"; }

.icon-app_icons--2:before {
  content: "\E689"; }

.icon-shenhe:before {
  content: "\E6F8"; }

.icon-daijieshou:before {
  content: "\E66A"; }

.icon-daichuli:before {
  content: "\E66E"; }

.icon-zizhi:before {
  content: "\E670"; }

.icon-fuzhi:before {
  content: "\E65F"; }

.icon-mobanbianzhi:before {
  content: "\E680"; }

.icon-dengji:before {
  content: "\E90D"; }

.icon-jiance1:before {
  content: "\E66F"; }

.icon-guangzhao:before {
  content: "\E68A"; }

.icon-dayin:before {
  content: "\E64E"; }

.icon-piliangtianxieshenpiyijian:before {
  content: "\E9E7"; }

.icon-renwu1:before {
  content: "\E650"; }

.icon-kongzhitai:before {
  content: "\E652"; }

.icon-fujian:before {
  content: "\E673"; }

.icon-weituo:before {
  content: "\E653"; }

.icon-yiyonghaocaifei:before {
  content: "\E66C"; }

.icon-yiyanghuatan:before {
  content: "\EB12"; }

.icon-eryanghuatan:before {
  content: "\EB15"; }

.icon-turangshidu:before {
  content: "\EB24"; }

.icon-turangyanfen:before {
  content: "\EB25"; }

.icon-jiangyuliang:before {
  content: "\EB48"; }

.icon-yiqishebeiguanli:before {
  content: "\E655"; }

.icon-shipin:before {
  content: "\E6BC"; }

.icon-yonghu1:before {
  content: "\E6CC"; }

.icon-kongqizhiliangjianceshujufenxi:before {
  content: "\E68D"; }

.icon-icon-test1:before {
  content: "\E671"; }

.icon-IOTtubiao_huabanfuben:before {
  content: "\E68E"; }

.icon-xiazai3:before {
  content: "\E676"; }

.icon-icon_zongxiangqiefen:before {
  content: "\E824"; }

.icon-icon_diannao:before {
  content: "\E829"; }

.icon-icon_dingdan:before {
  content: "\E827"; }

.icon-icon_dengji:before {
  content: "\E828"; }

.icon-icon_hengxiangqiefen:before {
  content: "\E82A"; }

.icon-icon_liulan:before {
  content: "\E82B"; }

.icon-icon_qingjia:before {
  content: "\E82F"; }

.icon-icon_renwu:before {
  content: "\E830"; }

.icon-icon_qingkong:before {
  content: "\E831"; }

.icon-icon_shezhi:before {
  content: "\E833"; }

.icon-icon_saomiao:before {
  content: "\E832"; }

.icon-icon_tixing:before {
  content: "\E834"; }

.icon-icon_xiaoxi:before {
  content: "\E837"; }

.icon-icon_xinzeng:before {
  content: "\E838"; }

.icon-icon_shuju:before {
  content: "\E83A"; }

.icon-icon_piliangcaiji:before {
  content: "\E84D"; }

.icon-icon_daoru:before {
  content: "\E84E"; }

.icon-icon_yuanwen:before {
  content: "\E850"; }

.icon-icon_shu:before {
  content: "\E852"; }

.icon-icon_wenjian:before {
  content: "\E853"; }

.icon-123:before {
  content: "\E854"; }

.icon-icon_jiance:before {
  content: "\E856"; }

.icon-icon_zhuijiaye:before {
  content: "\E858"; }

.icon-icon_charuye:before {
  content: "\E859"; }

.icon-icon_jiechu:before {
  content: "\E85B"; }

.icon-icon_fenxiang:before {
  content: "\E868"; }

.icon-zhendong:before {
  content: "\E68F"; }

body {
  font: 13px/1.7 LatoRegular, Lucida Grande, Lucida Sans Unicode, Helvetica, sans-serif;
  color: #444; }

/* tb tb-cell table table-cell*/
.tb, .row, .control-group, .control-group-auto, .row-auto, .rules-introduce, .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, .control-group-auto, .row-auto, .rules-introduce, .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: LatoRegular, Lucida Grande, Lucida Sans Unicode, Helvetica, sans-serif;
  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: #155eaa;
  border-color: #155eaa; }

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

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

.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: #155eaa;
  color: #fff; }

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

.bg-primary-deep, .btn-primary-deep, .btn-primary:active, .btn-primary-xl:active, .btn-primary-xxl:active {
  background: #006dee;
  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: 13px; }

.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; }

.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: 12px;
  line-height: 30px;
  height: 30px;
  padding: 0 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: 16px;
  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: 18px;
  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;
  z-index: 0; }
  .switchbtn div .circle {
    position: absolute;
    left: 0;
    top: 0px;
    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: #c0c0c0;
    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: 0px;
      left: 25px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #4cda64;
      border: 1px solid #4cda64;
      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;
  z-index: 0; }
  .switchbtn-mini div .circle {
    position: absolute;
    left: 0;
    top: 0px;
    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: #c0c0c0;
    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: 0px;
      left: 17px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-mini div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #4cda64;
      border: 1px solid #4cda64;
      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;
  z-index: 0; }
  .switchbtn-small div .circle {
    position: absolute;
    left: 0;
    top: 0px;
    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: #c0c0c0;
    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: 0px;
      left: 21px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-small div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #4cda64;
      border: 1px solid #4cda64;
      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;
  z-index: 0; }
  .switchbtn-large div .circle {
    position: absolute;
    left: 0;
    top: 0px;
    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: #c0c0c0;
    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: 0px;
      left: 29px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-large div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #4cda64;
      border: 1px solid #4cda64;
      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;
  z-index: 0; }
  .switchbtn-words-mini div .circle {
    position: absolute;
    left: 0;
    top: 0px;
    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: #c0c0c0;
    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: 0px;
      left: 17px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-words-mini div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #4cda64;
      border: 1px solid #4cda64;
      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;
  z-index: 0; }
  .switchbtn-words-small div .circle {
    position: absolute;
    left: 0;
    top: 0px;
    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: #c0c0c0;
    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: 0px;
      left: 21px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-words-small div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #4cda64;
      border: 1px solid #4cda64;
      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;
  z-index: 0; }
  .switchbtn-words-large div .circle {
    position: absolute;
    left: 0;
    top: 0px;
    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: #c0c0c0;
    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: 0px;
      left: 29px;
      background: #fff;
      transition: all .3s;
      -webkit-transition: all .3s;
      z-index: 2; }
    .switchbtn-words-large div .switchbtnchoose:checked + .circle + .switchcontent {
      background: #4cda64;
      border: 1px solid #4cda64;
      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: #155eaa; }

.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: 1000;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.3; }

.dialog {
  position: fixed;
  top: 53%;
  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: 85%;
  overflow-y: auto; }

.dialog-header {
  height: 49px;
  line-height: 49px;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 20px; }
  .dialog-header .dialog-title {
    display: inline-block;
    color: #333333;
    font-size: 15px;
    padding-right: 15px; }
    .dialog-header .dialog-title:before {
      content: '';
      border: 2px solid #0069e1;
      margin-right: 15px; }
  .dialog-header .dialog-prompt {
    display: inline-block;
    line-height: 24px;
    background: #daecf6;
    font-size: 12px;
    color: #1772a6;
    padding: 0 10px;
    min-width: 0px; }
  .dialog-header .dialog-icon {
    float: right;
    display: inline-block;
    color: #777; }
    .dialog-header .dialog-icon:hover {
      color: #333333; }

.dialog-content {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0; }
  .dialog-content .lable {
    color: #333333;
    font-size: 12px; }
  .dialog-content .warn-text {
    display: inline-block;
    height: 46px;
    line-height: 46px; }
  .dialog-content .warn-text-twoline {
    display: inline-block;
    width: 300px;
    line-height: 23px; }

.dialog-btn {
  padding: 15px;
  text-align: right; }

.dialog-choose {
  border: 1px solid #e0e0e0; }
  .dialog-choose .chooses-header {
    width: 100%;
    height: 45px;
    border-bottom: 1px solid #e0e0e0;
    color: #2196f3;
    font-size: 14px;
    padding-left: 5px; }
  .dialog-choose .chooses-middle {
    height: 295px;
    overflow: hidden; }
    .dialog-choose .chooses-middle .centre {
      width: 75px;
      height: 100%;
      border-left: 1px solid #e0e0e0;
      border-right: 1px solid #e0e0e0; }
      .dialog-choose .chooses-middle .centre .ced-btn {
        width: 30px;
        height: 21px;
        background: #2196f3;
        text-align: center;
        line-height: 22px;
        margin: auto; }
        .dialog-choose .chooses-middle .centre .ced-btn .icon-big {
          font-size: 25px;
          color: #fff; }
      .dialog-choose .chooses-middle .centre .mt-60 {
        margin-top: 60px; }
      .dialog-choose .chooses-middle .centre .mt-20 {
        margin-top: 20px; }
    .dialog-choose .chooses-middle .chooses-ul {
      width: 233px;
      overflow-y: auto;
      height: 100%; }
      .dialog-choose .chooses-middle .chooses-ul p {
        height: 33px;
        border-bottom: 1px solid #e0e0e0;
        line-height: 33px;
        padding-left: 14px;
        font-size: 14px; }

.input-xl, .input-l, .input, .input-min, .input-s, .input-xs {
  font-family: "microsoft yahei";
  display: inline-block;
  padding: 0 10px;
  height: 27px;
  line-height: 27px;
  font-size: 12px;
  color: #444444;
  background-color: #fff;
  background-image: none;
  border: 1px solid #c8c8c8;
  -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-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-oh > table, .table-assistant table, .table-analysis table {
  /* table基础样式 */
  width: 100%;
  border-left: 1px solid #e1e6eb;
  border-right: 1px solid #e1e6eb; }
  .table-striped table th, .table-oh > table th, .table-assistant table th, .table-analysis table th, .table-striped table td, .table-oh > table td, .table-assistant table td, .table-analysis table td {
    padding: 0 5px;
    border: 0;
    height: 33px;
    line-height: 33px; }
  .table-striped table th, .table-oh > table th, .table-assistant table th, .table-analysis table th {
    border-bottom: 1px solid #e1e6eb;
    border-top: 1px solid #e1e6eb;
    font-weight: normal;
    color: #fff;
    background-color: #428BCA;
    text-align: center; }
  .table-striped table td, .table-oh > table td, .table-assistant table td, .table-analysis table td {
    border-bottom: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    height: 42px;
    line-height: 42px;
    text-align: center; }
    .table-striped table td a, .table-oh > table td a, .table-assistant table td a, .table-analysis table td a {
      color: #155eaa;
      cursor: pointer; }
    .table-striped table td a:hover, .table-oh > table td a:hover, .table-assistant table td a:hover, .table-analysis table td a:hover {
      text-decoration: underline; }
  .table-striped table td:not(:last-child), .table-oh > table td:not(:last-child), .table-assistant table td:not(:last-child), .table-analysis table td:not(:last-child) {
    font-size: 12px; }
  .table-striped table tr:nth-of-type(even), .table-oh > table tr:nth-of-type(even), .table-assistant table tr:nth-of-type(even), .table-analysis table tr:nth-of-type(even) {
    background-color: #f9f9fb; }
  .table-striped table tr:nth-of-type(odd), .table-oh > table tr:nth-of-type(odd), .table-assistant table tr:nth-of-type(odd), .table-analysis table tr:nth-of-type(odd) {
    background-color: #fff; }
  .table-striped table tr:hover, .table-oh > table tr:hover, .table-assistant table tr:hover, .table-analysis table tr:hover {
    background-color: #f6f7fb; }
  .table-striped table .bottom-bg:hover, .table-oh > table .bottom-bg:hover, .table-assistant table .bottom-bg:hover, .table-analysis table .bottom-bg:hover {
    background-color: #fff; }

.table-striped {
  overflow-y: hidden; }
  .table-striped table {
    white-space: nowrap; }
  .table-striped .table-input {
    height: 43px;
    border: none;
    border-radius: 0px; }
  .table-striped .txt-r {
    text-align: right; }
  .table-striped .txt-c {
    text-align: center; }
  .table-striped .txt-l {
    text-align: left; }
  .table-striped .td-textover {
    color: #333;
    display: block;
    overflow: hidden;
    text-decoration: none;
    max-width: 200px;
    text-overflow: ellipsis;
    cursor: context-menu;
    margin: auto; }
  .table-striped .color-gray {
    color: #999; }
  .table-striped .td-wrap {
    white-space: initial; }
  .table-striped .td-textover:hover {
    text-decoration: none; }
  .table-striped .table-colum td {
    text-align: center;
    border: 1px solid #e1e6eb; }
  .table-striped .table-colum th {
    text-align: center;
    border: 1px solid #e1e6eb; }
  .table-striped .bg-qls td {
    background: #cbdbe8; }

.table-oh {
  overflow: hidden; }
  .table-oh .error-color {
    color: red; }
  .table-oh .txt-c {
    text-align: center; }

.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; }

.table-assistant {
  overflow-y: hidden; }
  .table-assistant table th {
    padding: 0 5px; }
  .table-assistant table td + td {
    padding-left: 0; }
  .table-assistant table td:first-child {
    padding: 0 5px !important; }
  .table-assistant table td:last-child {
    padding: 0 5px !important; }
  .table-assistant tbody tr:nth-of-type(even) {
    background-color: #f9f9fb; }
  .table-assistant tbody tr:nth-of-type(odd) {
    background-color: #fff; }
  .table-assistant .table-input {
    height: 32px;
    border: none;
    border-radius: 0px; }
  .table-assistant .table-derhide {
    border-left: none;
    border-right: none; }
    .table-assistant .table-derhide td {
      height: 30px;
      border: 1px solid #e1e6eb;
      line-height: 30px; }
    .table-assistant .table-derhide th {
      background: url(data:image/jpeg;base64,R0lGODlhDwAjAMQAAO3w9fDy9+jr8PHw9vDx9ujp7unq7+jo7ebo7e/x9vHy9uPm6/P0+fLz+Obp7vHy9+vs8ezt8uTn7O3u8+/w9err8Ofq7+7v9OXo7QAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS41LWMwMTQgNzkuMTUxNDgxLCAyMDEzLzAzLzEzLTEyOjA5OjE1ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjVERTEzOEIzNjgzRjExRTdBNTYzOUU3QTNDQTgwODAwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjVERTEzOEI0NjgzRjExRTdBNTYzOUU3QTNDQTgwODAwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NURFMTM4QjE2ODNGMTFFN0E1NjM5RTdBM0NBODA4MDAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NURFMTM4QjI2ODNGMTFFN0E1NjM5RTdBM0NBODA4MDAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQAAAAAACwAAAAADwAjAAAFhyAjjmTZnGiqNk/rvi8Bzy6h3HieP0Hv/z/CYEgsFgmJpHK5pDif0Kh0+gRYr1jsZcvter/gsHhCLpvP6DQ5wm673/A4G0Kv2+/4PL3C7/v/gIF9AoSFhoYGFoqLjI2Oj5CQBQ6UlZaWk5ealAcYnp+goAihpKWmp6cSqqusra6vqguys7S1IQA7) repeat;
      border: 1px solid #e1e6eb; }

.table-fixed {
  position: fixed;
  bottom: 0; }

.table-re {
  position: relative; }

.table-pb {
  margin-bottom: 30px; }

.table-list {
  height: 38px;
  background: #f4f5f9;
  border: 1px solid #e1e6eb;
  border-bottom: none;
  border-left: 4px solid #777788; }

.table-mid {
  border: 1px solid #e1e6eb;
  border-bottom: none; }

.table-seach {
  padding: 10px 0;
  border: 1px solid #e9e9e9;
  border-bottom: none; }

.table-analysis {
  overflow-y: hidden;
  border-radius: 5px; }
  .table-analysis table {
    white-space: nowrap;
    border: none; }
    .table-analysis table th {
      height: 36px;
      background: #7ab0d0; }
    .table-analysis table td {
      border: none;
      height: 36px;
      line-height: 36px; }
  .table-analysis .td-textover {
    color: #333;
    display: block;
    overflow: hidden;
    text-decoration: none;
    max-width: 200px;
    text-overflow: ellipsis;
    cursor: context-menu;
    margin: auto; }
  .table-analysis .td-textover:hover {
    text-decoration: none; }
  .table-analysis .w50 {
    width: 50px; }
  .table-analysis .w200 {
    width: 200px; }

.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 {
  margin-bottom: 10px; }

.form-box-center {
  min-width: 430px;
  margin: 0 15px;
  background: #fff;
  padding: 15px 80px 15px 15px; }

.form-box-center-relative {
  position: relative;
  top: 51px; }

.form-center-single {
  min-width: 430px;
  max-width: 600px; }

.lang-en .form-box-center {
  max-width: 800px; }

.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 .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;
  left: 0px;
  line-height: 12px;
  padding-top: 2px; }
  .has-error .mandatory-msg .iconfont, .has-error .mandatory-msg .icon {
    color: #F44336; }
  .has-error .mandatory-msg i {
    margin-right: 10px;
    line-height: 12px;
    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 .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;
  left: 0px;
  line-height: 12px;
  padding-top: 2px; }
  .has-warning .mandatory-msg .iconfont, .has-warning .mandatory-msg .icon {
    color: #FF5722; }
  .has-warning .mandatory-msg i {
    margin-right: 10px;
    line-height: 12px;
    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 .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;
  left: 0px;
  line-height: 12px;
  padding-top: 2px; }
  .has-success .mandatory-msg .iconfont, .has-success .mandatory-msg .icon {
    color: #4CAF50; }
  .has-success .mandatory-msg i {
    margin-right: 10px;
    line-height: 12px;
    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; }

.PageGroup {
  box-sizing: border-box;
  width: 100%;
  display: table;
  border-spacing: 0;
  table-layout: auto; }

.Page {
  display: inline-block; }

.PageGroup-statistical {
  display: inline-block;
  padding-right: 20px; }

.PageGroup li, .Page li {
  display: inline-block;
  width: 27px;
  height: 27px;
  line-height: 27px;
  text-align: center;
  color: #000;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.PageGroup li:hover, .Page li:hover {
  background: #f5f5f5;
  color: #000; }

.Page .active, .PageGroup .active, .PageGroup li.active:hover, .Page li.active:hover {
  background: #155eaa;
  color: #fff; }

.Page .disabled, .PageGroup .disabled {
  color: #999;
  cursor: not-allowed; }

.Page .disabled:hover, .PageGroup .disabled:hover {
  background: transparent;
  color: #999; }

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

.PageGroup-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; }

/*!
 * Tree View Vue Component.
 * @copyright 10Quality <info@10quality.com>
 */
/**
 * @author Alejandro Mostajo <http://about.me/amostajo>
 * @copyright 10Quality <http://www.10quality.com>
 * @license MIT
 * @version 1.0.0
 */
.icon.node-parent svg {
  width: 14px;
  height: 14px; }
  .icon.node-parent svg .fill {
    fill: #000;
    stroke: none; }
  .icon.node-parent svg .light {
    fill: #FFF;
    stroke: none; }

.icon.node-parent-toggled svg {
  width: 14px;
  height: 14px; }
  .icon.node-parent-toggled svg .back {
    fill: #FFF;
    stroke: #000;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: miter;
    stroke-miterlimit: 4;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    stroke-opacity: 1; }
  .icon.node-parent-toggled svg .front {
    fill: #000;
    stroke: none; }
  .icon.node-parent-toggled svg .light {
    fill: #FFF;
    stroke: none; }

.icon.node svg {
  width: 8px;
  height: 8px; }
  .icon.node svg circle {
    fill: none;
    stroke: #000;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: miter;
    stroke-miterlimit: 4;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    stroke-opacity: 1; }

.treeview .node:hover {
  background-color: #4c83c3;
  color: #FFF; }

.treeview .node.active {
  background-color: #4c83c3;
  color: #FFF; }

.treeview {
  position: relative;
  overflow: auto;
  white-space: nowrap; }
  .treeview.inner {
    border: none;
    height: auto;
    max-height: none; }
  .treeview .node {
    display: inline-block; }
  .treeview .children {
    overflow: hidden; }
    .treeview .children .margin {
      display: inline-block;
      width: 20px; }
    .treeview .children .nodes {
      display: inline-block; }
  .treeview span.icon {
    width: 20px;
    display: inline-block;
    text-align: center; }

.treeview-custom .icon.node-parent .fill {
  fill: #607D8B; }

.treeview-custom .icon.node-parent-toggled .front {
  fill: #546E7A; }

.treeview-custom .icon.node-parent-toggled .back {
  stroke: #546E7A;
  fill: #f6dc7b; }

.treeview-custom .icon.node circle {
  stroke: #e9af00;
  fill: #f6dc7b; }

.treeview-custom label {
  font-weight: normal; }

.treeview-custom .node.active {
  background-color: #4c83c3;
  color: #FFF; }

.info-title {
  height: 35px;
  border-bottom: 1px solid #ddd; }

.table-newadd {
  width: 56px;
  color: white;
  font-size: 12px;
  border: none;
  background: #2196F3;
  height: 25px; }

.table-name {
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  border-left: 3px solid #155eaa; }

.double-title {
  background: #f6f7fb;
  border: 1px solid #e9e9e9;
  border-bottom: none;
  border-left: none; }

.tag-or {
  width: 119px;
  height: 32px;
  border-radius: 5px;
  background: #ff9900;
  font-size: 13px;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
  line-height: 32px;
  padding: 0 10px;
  margin-right: 5px;
  text-align: center;
  overflow: hidden;
  cursor: pointer; }
  .tag-or .tag-tit {
    display: inline-block;
    max-width: 88px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer; }
  .tag-or .tag-icon {
    font-size: 16px;
    float: right;
    width: 11px; }

.tag-wt {
  border: 1px solid #ccc;
  height: 25px;
  color: #666;
  padding: 0 5px;
  min-width: 95px;
  max-width: 155px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
  text-align: center;
  line-height: 24px;
  overflow: hidden; }
  .tag-wt .wt-icon {
    float: right;
    width: 13px; }
  .tag-wt .tag-sp {
    display: inline-block;
    max-width: 130px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer; }

.tag-wt:hover {
  border: 1px solid #2196f3; }
  .tag-wt:hover .wt-icon {
    color: #2196f3; }

.tag-dyn {
  width: 150px;
  height: 50px;
  overflow: hidden;
  display: inline-block;
  position: relative; }
  .tag-dyn .tag-ser {
    display: inline-block;
    float: left;
    position: relative; }
    .tag-dyn .tag-ser .tag-num {
      /* float: left; */
      display: inline-block;
      width: 25px;
      height: 25px;
      position: absolute;
      left: 9px;
      top: 3px;
      font-size: 12px;
      color: #00aef9; }
  .tag-dyn .tag-left {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
    display: inline-block;
    float: right;
    margin-left: 10px;
    margin-top: 18px; }
  .tag-dyn .tag-top {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
    display: inline-block;
    float: right;
    margin-left: 10px;
    margin-top: 18px; }
  .tag-dyn .tag-down {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -moz-transform: rotate(90deg);
    /* Firefox */
    -webkit-transform: rotate(90deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(90deg);
    display: inline-block;
    position: absolute;
    left: 78px;
    bottom: 36px; }
  .tag-dyn .tag-right {
    display: inline-block;
    float: left;
    margin-right: 8px;
    margin-top: 18px; }

.tag-flag {
  width: 16px;
  height: 16px;
  margin-top: 8px;
  display: inline-block;
  line-height: 16px;
  background: red;
  border-radius: 9px;
  color: white;
  padding-left: 0.5px; }

.tag-active {
  background: #4cd964; }

.tag-status {
  background: #cdbda4;
  color: #666; }

.tag-limit {
  border: 1px solid #ccc;
  height: 25px;
  color: #666;
  padding: 0 5px;
  min-width: 95px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
  text-align: center;
  line-height: 24px; }
  .tag-limit .wt-icon {
    float: right;
    width: 13px; }
  .tag-limit .tag-sp {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer; }

.mandatory-msg {
  display: none; }

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

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

a:active {
  color: #444; }

table {
  border-collapse: collapse; }

.oh {
  overflow: hidden; }

.od {
  overflow: visible; }

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

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

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

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

.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-2 {
  padding-top: 2px; }

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

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

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

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

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

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

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

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

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

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

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

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

.m-20 {
  margin: 20px; }

.p-9 {
  padding: 9px; }

.p-10 {
  padding: 10px; }

.p-15 {
  padding: 15px; }

.p-20 {
  padding: 20px; }

.m-auto {
  margin: auto; }

.m-10 {
  margin: 10px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.full {
  width: 100%; }

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

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

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

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

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

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

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

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

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

.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; }

.txt-l {
  text-align: left; }

.txt-c {
  text-align: center; }

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

.h-20 {
  height: 20px; }

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

.pr {
  position: relative; }

.border-lr {
  border-left: 1px solid #e1e6eb;
  border-right: 1px solid #e1e6eb; }

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

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

.show-border {
  border: 1px solid #333; }

.fontSzie-18 {
  font-size: 18px; }

.w-50, .w-70, .w-80, .w-100, .w-36, .w-125, .w-130, .w-160, .w-105, .w-info, .w-150 {
  width: 80px;
  text-align: right;
  padding-right: 12px;
  word-break: break-word;
  font-size: 12px; }

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

.w-70 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 70px; }

.w-80 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 80px; }

.w-100 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 100px; }

.w-36 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 36px; }

.w-125 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 125px; }

.w-130 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 130px; }

.w-160 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 160px; }

.w-105 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 105px; }

.w-73 {
  transform: translateY(-2px);
  padding-top: 6px;
  width: 73px; }

.w-362 {
  width: 370px !important; }

.w-15 {
  width: 15px; }

.w-40 {
  width: 40px; }

.w-120 {
  width: 120px; }

.w-140 {
  width: 140px; }

.w-234 {
  width: 234px; }

.w-160 {
  width: 160px; }

.w-180 {
  width: 180px !important; }

.w-250 {
  width: 250px; }

.w-267 {
  width: 267px; }

.w-300 {
  width: 300px; }

.w-310 {
  width: 310px; }

.w-362 {
  width: 362px; }

.w-176 {
  width: 176px; }

.w-75 {
  width: 75px; }

.w-60 {
  width: 60px; }

.wl-100 {
  width: 100px;
  text-align: left; }

.w-info {
  width: 130px;
  color: #333; }

#zhiding {
  vertical-align: top; }

.w-150 {
  width: 150px;
  color: #333; }

.info-r {
  color: #666;
  vertical-align: bottom; }

.dis-i {
  display: inline-block; }

.orange {
  color: #FF7700; }

.red {
  color: #F44336; }

.blue {
  color: #0099FF; }

.navy-blue {
  color: #1800db; }

.theGrey {
  background: #e4e4e4; }

.success-green {
  color: #26bf21; }

.bg-orange {
  background: #fe7400; }

.black {
  color: #000; }

.bgWhite {
  background-color: #fff; }

.bgcolor {
  background-color: #F2F2F2; }

.textarea {
  height: 51px;
  line-height: 20px;
  padding: 5px 10px;
  display: block; }

.w-10 {
  width: 10px; }

.w-45 {
  width: 45px; }

.w-60 {
  width: 60px; }

.w-85 {
  width: 85px; }

.w-95 {
  width: 95px; }

.w-300 {
  width: 300px; }

.w-305 {
  width: 305px; }

.w-345 {
  width: 345px; }

.w-500 {
  width: 500px; }

.w-615 {
  width: 615px; }

.w-45-per {
  width: 45%; }

.w-30-per {
  width: 30%; }

.w-53-per {
  width: 53%; }

.w-70-per {
  width: 70%; }

.w-100-per {
  width: 100%; }

.w-100-img {
  width: 100px; }

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

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

.h-100 {
  height: 100%; }

.h-93 {
  height: 93%; }

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

.float-r {
  float: right; }

.float-l {
  float: left; }

.fb {
  font-weight: bold; }

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

.block {
  display: block; }

.per-25 {
  width: 25%;
  float: left; }

.per-73 {
  width: 73%;
  float: right; }

.vtl-top {
  vertical-align: top; }

.vtl-mid {
  vertical-align: middle; }

.vtl-sub {
  vertical-align: sub; }

.vtl-txtb {
  vertical-align: text-bottom; }

.vtl-bse {
  vertical-align: baseline; }

.vtl-iht {
  vertical-align: inherit; }

.vtl-bot {
  vertical-align: bottom; }

.borbtm-none {
  border-bottom: none; }

.group-nowrap {
  padding: 0 10px;
  display: inline-block; }

.max-w230 {
  max-width: 230px; }

.hand-pointer {
  cursor: pointer; }

#cic1 {
  width: 160px !important; }

#chaxun {
  font-size: 30px;
  background-color: blue;
  margin-left: 10%; }

.center .icon {
  padding-right: 8px; }

.center a {
  display: block;
  color: #b8c7ce;
  outline: 0; }

.top-header .logo_style {
  color: #b8c7ce;
  height: 51px;
  line-height: 51px;
  text-align: center;
  margin-left: -1px;
  font-size: 14px;
  font-style: bold; }

.dialog_color {
  color: #000; }

.loginout-menu {
  position: absolute;
  top: 45px;
  right: 10px;
  width: 150px;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2); }
  .loginout-menu:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 50px;
    top: -6px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff; }
  .loginout-menu > li {
    height: 26px;
    line-height: 26px;
    color: #000;
    padding: 0 10px;
    margin: 5px 12px;
    cursor: pointer;
    text-align: center; }
  .loginout-menu > li a {
    color: #000; }
  .loginout-menu > li:not(:last-child) {
    border-bottom: 1px solid #ccc; }
  .loginout-menu .loginout-bg {
    background: #e9e9e9; }

.top-header {
  z-index: 101;
  position: relative;
  background: #438EB9;
  height: 45px; }
  .top-header .product-system {
    display: inline-block;
    font-weight: bold;
    letter-spacing: 3px;
    min-width: 150px;
    font-size: 16px;
    color: #fff;
    line-height: 45px; }
  .top-header .logo_style {
    width: 199px;
    display: inline-block;
    cursor: pointer; }
    .top-header .logo_style .logo_font {
      font-size: 17px;
      font-weight: 700; }
    .top-header .logo_style .main-header-logo {
      vertical-align: middle; }
    .top-header .logo_style .logo_font:hover {
      color: #fff; }
  .top-header .header_right {
    display: inline-block;
    float: right;
    color: #fff; }
    .top-header .header_right .sys-menu {
      float: left;
      height: 45px;
      position: relative;
      cursor: pointer;
      min-width: 150px; }
      .top-header .header_right .sys-menu:hover {
        background: #2c5976; }
      .top-header .header_right .sys-menu span {
        display: inline-block;
        height: 45px;
        min-width: 150px;
        line-height: 45px;
        text-align: center; }
      .top-header .header_right .sys-menu .nav-menu {
        position: absolute;
        top: 45px;
        right: 0px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.2);
        box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.15); }
        .top-header .header_right .sys-menu .nav-menu > ul {
          padding: 3px; }
        .top-header .header_right .sys-menu .nav-menu > ul > li {
          height: 35px; }
        .top-header .header_right .sys-menu .nav-menu > ul > li a {
          color: #333;
          display: inline-block;
          height: 35px;
          padding-left: 20px;
          line-height: 35px;
          font-size: 14px;
          min-width: 140px; }
        .top-header .header_right .sys-menu .nav-menu .nav-menu-a:hover {
          background: #e1e3e9; }
        .top-header .header_right .sys-menu .nav-menu .nav-info {
          color: #3a82bd !important; }
    .top-header .header_right .get-back-btn {
      width: 120px;
      cursor: pointer;
      line-height: 45px;
      display: inline-block;
      text-align: center;
      float: left;
      border-left: 1px solid #fff;
      border-right: 1px solid #fff; }
      .top-header .header_right .get-back-btn a {
        color: #fff; }
    .top-header .header_right .get-back-btn:hover {
      background: #2c5976; }
    .top-header .header_right .user_operate {
      float: right;
      padding: 0 10px; }
    .top-header .header_right .user_name {
      display: inline-block;
      line-height: 45px;
      text-align: center;
      cursor: pointer;
      min-width: 150px;
      height: 45px;
      float: right; }
    .top-header .header_right .user_operate:hover {
      background: #2c5976; }

.left {
  position: fixed;
  top: 45px;
  left: 0;
  bottom: 0;
  color: #585858;
  background-color: #f2f2f2;
  border-right: 1px solid #E5E5E5;
  overflow: auto;
  overflow-x: hidden; }
  .left .item-menu {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto; }
  .left .first-menu {
    background-color: #f8f8f8;
    height: 40px;
    line-height: 40px;
    padding: 0 10px 0 20px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #E5E5E5; }
    .left .first-menu.active {
      border-right: 2px solid #2B7DBC;
      color: #2B7DBC; }
      .left .first-menu.active::after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        top: 6px;
        border: 8px solid transparent;
        border-width: 14px 10px;
        border-right-color: #2B7DBC; }
    .left .first-menu .nav_icon {
      margin-right: 5px; }
    .left .first-menu:hover {
      color: #266cad;
      border-left: 5px solid #266cad; }
    .left .first-menu span {
      vertical-align: top; }
  .left .second-menu-icon {
    font-size: 12px;
    padding-right: 10px; }
  .left ul {
    width: 220px;
    background: #F1F5F9;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: scroll; }
    .left ul :before {
      content: '';
      display: block;
      position: absolute;
      z-index: 1;
      left: 18px;
      top: 0;
      bottom: 0;
      border: 1px dotted #8eb3d0;
      border-width: 0 0 0 1px; }
  .left li {
    width: 200px;
    height: 40px;
    line-height: 40px;
    padding-left: 30px;
    text-align: left;
    cursor: pointer;
    position: relative;
    border-bottom: 1px dotted #E4E4E4; }
    .left li:hover {
      color: #4B88B7;
      background-color: #F1F5F9; }
      .left li:hover :before {
        content: '';
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #4B88B7;
        position: absolute;
        left: 17px;
        top: 15px; }
    .left li :before {
      content: '';
      display: block;
      width: 7px;
      position: absolute;
      z-index: 1;
      left: 20px;
      top: 20px;
      border: 1px dotted #8eb3d0;
      border-width: 1px 0 0; }
    .left li.menu_active {
      color: #266cad; }
      .left li.menu_active :before {
        content: '';
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #d65616;
        position: absolute;
        left: 17px;
        top: 15px; }
    .left li .first-active {
      border-left: 5px solid #f79d0b;
      padding-left: 4px; }
    .left li .second-active {
      background: #e0e0e0; }

.left::-webkit-scrollbar {
  display: none; }

.temp-tooltip, .tooltip {
  position: absolute;
  display: inline-block;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.3s ease-out;
  border-radius: 3px;
  box-sizing: border-box;
  margin-left: 10px;
  padding: 8px 21px;
  background: #222;
  color: #fff; }

.temp-tooltip {
  visibility: hidden;
  opacity: 0; }
  .temp-tooltip:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: -7px;
    width: 8px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #222; }

.tooltip:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -7px;
  width: 8px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #222; }

.center {
  position: fixed;
  top: 51px;
  bottom: 0;
  z-index: 102;
  background-color: #eaedf1;
  border-left: 1px solid #eaedf1; }
  .center .center-close {
    display: inline-block;
    position: absolute;
    left: 146px;
    top: 300px;
    width: 4px;
    height: 56px;
    border-top: 10px solid transparent;
    border-right: 12px solid #c8c9ca;
    border-bottom: 10px solid transparent; }
  .center .icon-close {
    position: relative;
    left: -1px;
    top: 3px; }
  .center li {
    height: 40px;
    line-height: 40px;
    padding: 0 10px 0 20px; }
    .center li.active {
      background-color: #fff;
      border-left: 5px solid #006dde; }
  .center a {
    color: #000; }
  .center .checked-menu {
    background-color: #c8c9ca;
    height: 40px;
    line-height: 40px;
    text-align: center; }

.center-open {
  display: inline-block;
  position: fixed;
  z-index: 102;
  top: 350px;
  width: 4px;
  height: 56px;
  border-top: 10px solid transparent;
  border-left: 12px solid #c8c9ca;
  border-bottom: 10px solid transparent; }

.icon-open {
  position: relative;
  left: -13px;
  top: 3px; }

.show-menu {
  background-color: #F8F8F8;
  height: 41px;
  line-height: 41px;
  text-align: center;
  padding: 0 20px;
  color: #000;
  border-bottom: 1px solid #E5E5E5; }

.main {
  position: absolute;
  top: 45px;
  left: 0;
  bottom: 0;
  z-index: 100;
  width: 100%; }

.chain-main {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%; }

.main-content {
  position: absolute;
  top: 0;
  right: 0;
  overflow: auto;
  overflow-x: hidden;
  height: 100%;
  background: #e4e7ea; }

.content-box {
  padding: 0 15px; }

@keyframes dropshow {
  0% {
    opacity: 0;
    transform: translateY(0); }
  100% {
    opacity: 1; } }

@keyframes dropout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.drop-enter {
  -webkit-animation: dropshow 1s;
  -moz-animation: dropshow 1s;
  -ms-animation: dropshow 1s;
  -o-animation: dropshow 1s;
  animation: dropshow 1s; }

.drop-leave {
  -webkit-animation: dropout 1s;
  -moz-animation: dropout 1s;
  -ms-animation: dropout 1s;
  -o-animation: dropout 1s;
  animation: dropout 1s; }

option {
  padding: 0; }

select.input, select.input-min {
  padding: 0 7px; }

.icon-examine, .icon-operate, .icon-metaData, .icon-workbench, .icon-tracePlan, .icon-enterprise, .icon-traceInfo, .icon-traceOperate, .icon-basics, .icon-interface, .icon-auth, .icon-role, .icon-task, .icon-agent, .icon-trace, .icon-customer, .icon-public, .icon-platform, .icon-screen, .icon-quality, .icon-monitoring, .icon-traceabilityEquipment, .icon-dataRepository, .icon-emergency, .icon-subject, .icon-recall, .icon-audit, .icon-security {
  margin-right: 5px;
  font-size: 23px; }

.icon-examine:before {
  content: "\E828"; }

.icon-operate:before {
  content: "\E84D"; }

.icon-metaData:before {
  content: "\E830"; }

.icon-workbench:before {
  content: "\E852"; }

.icon-tracePlan:before {
  content: "\E838"; }

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

.icon-traceInfo:before {
  content: "\E827"; }

.icon-traceOperate:before {
  content: "\E832"; }

.icon-basics:before {
  content: "\E853"; }

.icon-interface:before {
  content: "\E84E"; }

.icon-auth:before {
  content: "\E858"; }

.icon-role:before {
  content: "\E82F"; }

.icon-task:before {
  content: "\E854"; }

.icon-agent:before {
  content: "\E859"; }

.icon-trace:before {
  content: "\E831"; }

.icon-customer:before {
  content: "\E85B"; }

.icon-public:before {
  content: "\E837"; }

.icon-platform:before {
  content: "\E856"; }

.icon-screen:before {
  content: "\E829"; }

.icon-quality:before {
  content: "\E82A"; }

.icon-monitoring:before {
  content: "\E82B"; }

.icon-traceabilityEquipment:before {
  content: "\E833"; }

.icon-dataRepository:before {
  content: "\E868"; }

.icon-emergency:before {
  content: "\E834"; }

.icon-subject:before {
  content: "\E824"; }

.icon-recall:before {
  content: "\E6CA"; }

.icon-audit:before {
  content: "\E6AD"; }

.icon-security:before {
  content: "\E660"; }

.search-background {
  background: #FAFAFA;
  padding: 15px;
  border: 1px solid #E5E6E8;
  margin-bottom: 15px; }

.hov {
  background-color: #155EAA;
  color: white;
  display: block;
  float: left;
  padding: 6.5px 0px; }

.hov:hover {
  background-color: #006DDE; }

.mon:hover input {
  background-color: #006DDE; }

.success-background {
  background: #ebf8f2;
  padding: 8px;
  border: 1px solid #cfefdf;
  margin-bottom: 15px;
  border-radius: 5px; }

.msg-background {
  background: #FDF8E4;
  padding: 10px 15px;
  border: 1px solid #EBE7C1;
  margin-bottom: 15px; }

.msg-fc {
  color: #FF7700; }

.block-pl10 {
  display: inline-block;
  padding-right: 10px; }

.block-120 {
  display: inline-block;
  width: 120px; }

.square-box {
  margin-right: 30px;
  margin-left: 30px; }

.square {
  position: relative;
  height: 4px;
  background: #24BDFF;
  width: 8px;
  margin-bottom: 3px;
  display: inline-block; }

.square:after {
  border: 6px solid transparent;
  border-left: 6px solid #24BDFF;
  width: 0;
  height: 0;
  left: 8px;
  position: absolute;
  content: ' ';
  top: -4px; }

.content-header {
  font-size: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
  margin-bottom: 15px;
  background: #fff;
  padding: 5px 0 5px 6px;
  padding-right: 30px; }

.content-header-fixed {
  position: fixed;
  z-index: 9999; }

.border-l {
  border-left: 7px solid #428BCA;
  height: 30px;
  padding-right: 10px; }

.btn-del {
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  color: #333;
  border: 1px solid #dddddd;
  background-color: #f7f7f7;
  font-size: 12px; }

.btn-del:hover {
  border: 1px solid #dddddd;
  background-color: #ffffff; }

.btn-msg {
  display: inline-block;
  background: #24BDFF;
  font-size: 12px;
  line-height: 30px;
  height: 30px;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  border-radius: 4px; }

.btn-test {
  height: 25px;
  min-width: 45px;
  line-height: 25px;
  font-size: 12px;
  background: #2196f3;
  padding: 0 10px;
  color: #fff; }

.dialog-form {
  width: 100%; }
  .dialog-form > tbody > tr > td {
    height: 29px;
    font-size: 12px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #ccc; }
  .dialog-form > tbody > tr > td:nth-of-type(odd) {
    width: 130px;
    color: #333;
    text-align: right; }
  .dialog-form > tbody > tr > td:nth-of-type(even) {
    width: 295px;
    color: #666; }

.record-table {
  width: 100%; }
  .record-table > thead > tr > th {
    height: 29px;
    font-size: 12px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #ccc; }
  .record-table > tbody > tr > td {
    height: 29px;
    font-size: 12px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #ccc; }

.search-100 {
  text-align: right;
  width: 100px; }

.btn-fixed {
  position: fixed;
  top: 59px;
  right: 30px; }

.btn-re {
  position: relative; }

.drop-down {
  position: absolute;
  top: 26px;
  left: 0;
  max-height: 100px;
  background: #fff;
  font-size: 12px;
  border: 1px solid #c8c8c8;
  overflow-x: hidden;
  overflow-y: auto;
  white-space: nowrap;
  z-index: 1; }
  .drop-down > ul > li {
    height: 27px;
    line-height: 27px; }
  .drop-down .drop-active {
    background: #2196f3 !important; }

.icon-drop {
  position: relative; }
  .icon-drop:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 8px;
    right: -9px;
    color: #155eaa;
    border-top: 4px solid #155eaa;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent; }

.show-active {
  background: #2196f3 !important; }

.meta-checked {
  width: 90px;
  display: inline-block; }

.query-data {
  width: 95px;
  position: relative;
  display: inline-block; }

.consor-menu {
  cursor: context-menu; }

.consor-pointer {
  cursor: pointer; }

.echarts-icon {
  color: #155eaa;
  font-size: 22px;
  padding-left: 10px; }

.data-border {
  height: 27px;
  line-height: 27px;
  border: 1px solid #c8c8c8;
  padding: 0 5px; }
  .data-border .file-upload {
    float: right; }
  .data-border .file-upload-text {
    color: #000; }

.enter-status {
  color: #000; }

.upload-btn {
  background: #fff;
  border: 1px solid #155eaa;
  color: #155eaa;
  padding: 0 12px;
  height: 29px;
  font-size: 12px;
  border-radius: 2px;
  display: inline-block; }
  .upload-btn a {
    color: #155eaa; }

.td-begin {
  margin-left: 10px;
  display: inline-block;
  color: red;
  border: 1px solid red;
  border-radius: 15px;
  font-size: 13px;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  text-align: center;
  line-height: 23px; }

.in-f-color .file-upload-text {
  color: #fff;
  margin-left: 8px; }

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

.import-loading {
  text-align: center;
  margin: 10px 0; }

.img-info, .table-img {
  width: 150px;
  height: 100px;
  border: 1px solid #444;
  display: inline-block;
  margin-right: 5px;
  text-align: center; }
  .img-info img, .table-img img {
    height: 100%; }

.table-img {
  border: 1px solid #444;
  margin: 10px; }

.bg-cc {
  background: #cccccc; }

.file-table {
  width: 100%; }
  .file-table tr {
    height: 33px;
    line-height: 33px; }
  .file-table td {
    padding: 0 5px;
    background: #eee;
    color: #666;
    border-bottom: 2px solid #fff; }

.attachment-table tr {
  height: 33px;
  line-height: 33px; }

.attachment-table td {
  padding: 0 10px;
  background: #eee;
  color: #666;
  border-bottom: 2px solid #fff; }

.text-ellipsis {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.guidance-instructions {
  background: #daecf6;
  font-size: 12px;
  color: #1772a6;
  border: 1px solid #b8e5ff;
  padding: 0 10px; }

.library-stay, .library-already {
  font-size: 12px;
  height: 36px;
  border-radius: 20px;
  padding: 0 2px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  display: inline-block; }

.library-stay {
  background: #69df42; }

.library-already {
  background: #e99023; }

.library-fall {
  color: red; }

.blue-tips {
  display: inline-block;
  padding: 0 10px;
  background: #2f5eaa;
  color: #fff; }

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

.report-sel {
  position: absolute;
  left: 35%;
  min-width: 100px; }

.textOver-slh {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.Eom-garden {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  vertical-align: middle;
  margin-right: 10px; }

.Eom-on-line {
  background: #479905; }

.Eom-off-line {
  background: #e62f2d; }

.content-tree {
  border: 1px solid #e1e6eb;
  background: #fff; }
  .content-tree .product-menu {
    width: 189px;
    border-right: 1px solid #e1e6eb; }
  .content-tree .menu-header {
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    font-size: 14px;
    color: #333;
    margin: 0 5px; }
  .content-tree .product-icon {
    color: #fff;
    font-size: 14px;
    border: 1px solid #1c98fa;
    background: #1c98fa;
    border-radius: 50%;
    padding: 3px;
    margin: 0 5px; }
  .content-tree .menu-body {
    margin: 5px;
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto; }
    .content-tree .menu-body::-webkit-scrollbar {
      display: none; }
  .content-tree .m-w120 {
    max-width: 120px; }
  .content-tree .btn-del {
    padding: 0 13px; }
  .content-tree .new-root {
    font-size: 12px;
    color: #2196f3;
    margin-bottom: 8px;
    cursor: pointer; }
  .content-tree .tree-table {
    padding: 13px 13px 0 13px; }

.trace-exit .header-w10 {
  width: 10px; }

.trace-exit .bor-bot {
  border-bottom: 1px solid #e9e9e9; }

.trace-exit .exit-header {
  display: inline-block;
  min-width: 100px;
  height: 100%;
  padding: 5px;
  font-size: 14px;
  /* margin-left: 10px; */
  color: #2196f3;
  border-bottom: 3px solid #2196f3; }

.trace-exit .trace-manage {
  border-bottom: 1px dotted #b5b5b5; }
  .trace-exit .trace-manage .book-header {
    background: #f4f5f9;
    height: 28px;
    font-size: 12px;
    color: #333; }
  .trace-exit .trace-manage .book-icon {
    border: none;
    background: #f4f5f9;
    color: #235f8f;
    margin-left: 15px;
    outline: none; }

.trace-exit .trace-active {
  border: 1px solid #2196f3; }

.trace-icon {
  color: #FF7700;
  padding-right: 5px;
  vertical-align: bottom; }

.trace-lim {
  display: inline-block;
  height: 25px;
  padding: 0px 10px;
  margin-left: 10px;
  text-align: left;
  background: #FDF8E4;
  line-height: 25px;
  color: #666;
  font-size: 12px;
  border: 1px solid #EBE7C1; }

.vid-upload .file-upload-text {
  color: #fff; }

.copy-link {
  display: inline-block;
  min-width: 80px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  padding: 0 10px;
  color: #006dde;
  border: 1px solid #006dde;
  margin-bottom: 10px;
  margin-right: 5px; }

.traceability-query .error-show {
  font-size: 12px;
  color: #f00; }

.traceability-query .success-show {
  color: #00a854;
  padding: 9px; }

.packing-code .param-name {
  transform: inherit;
  padding-top: unset; }

.packing-code .iconstyle {
  float: left;
  font-size: smaller;
  position: absolute;
  z-index: 1;
  margin-left: -18px;
  line-height: 27px;
  height: 27px;
  cursor: pointer; }

.packing-code .confirm-button {
  position: absolute;
  top: 102px;
  right: 42px; }

.code-activiation .no-icon {
  color: #ff0000;
  padding-right: 0px;
  position: relative;
  top: 1px;
  font-size: x-large; }

.code-activiation .no-span {
  color: #ff0000;
  font-size: small; }

.code-activiation .yes-icon {
  color: #009944;
  padding-right: 0px;
  position: relative;
  top: 1px;
  font-size: x-large; }

.code-activiation .yes-span {
  color: #009944;
  font-size: small; }

.product-classification .menu-content {
  width: 17%;
  border-right: 1px solid #e1e6eb; }

.product-classification .menu-content-tree {
  background-color: #155EAA;
  color: white;
  padding-left: 9px;
  padding-top: 4px;
  padding-bottom: 4px; }

.product-classification .new-menu {
  font-size: initial;
  padding-left: 10px;
  margin-top: 8px; }

.product-classification .menu-search {
  margin-left: 7px;
  width: 180px; }

.data-manage .data-manage-warn {
  border: 1px solid #f6e2b7;
  background: #fcf8e2;
  color: #ff7700;
  font-size: 14px;
  padding: 15px;
  margin: 15px 0; }

.data-manage .has-error > .data-border {
  border: 1px solid #F44336; }

.homePage .homePage-top {
  margin: 10px 0;
  padding: 0 2px; }
  .homePage .homePage-top .red {
    background: #dd6362; }
  .homePage .homePage-top .green {
    background: #4eb4ad; }
  .homePage .homePage-top .Violet {
    background: #8a7aa7; }
  .homePage .homePage-top .yellow {
    background: #f6c83f; }
  .homePage .homePage-top .show-data {
    height: 125px;
    padding: 20px 40px;
    font-size: 14px;
    color: #fff;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3); }
    .homePage .homePage-top .show-data .show-middle {
      overflow: hidden; }
      .homePage .homePage-top .show-data .show-middle div {
        float: left; }
      .homePage .homePage-top .show-data .show-middle .icon-size {
        font-size: 50px;
        opacity: 0.5; }
      .homePage .homePage-top .show-data .show-middle .text-size {
        font-size: 30px; }
      .homePage .homePage-top .show-data .show-middle .line-high-50 {
        line-height: 50px; }
      .homePage .homePage-top .show-data .show-middle .line-high-10 {
        line-height: 10px; }

.homePage .express-lane {
  border: 1px solid #d2d2d2;
  min-height: 172px;
  background: #fff; }
  .homePage .express-lane .express-left {
    width: 53px;
    border-right: 1px solid #d2d2d2; }
    .homePage .express-lane .express-left .express-title {
      font-size: 16px;
      white-space: normal;
      width: 20px;
      line-height: 22px;
      margin: 0 auto;
      text-align: center; }
    .homePage .express-lane .express-left .rocket {
      display: inline-block;
      text-align: center;
      width: 100%;
      color: #0d77c9; }
      .homePage .express-lane .express-left .rocket .rocket-icon {
        font-size: 30px; }
  .homePage .express-lane .express-right {
    padding: 10px 18px; }
    .homePage .express-lane .express-right .w-404 {
      width: 404px; }
    .homePage .express-lane .express-right .express-search {
      width: 394px;
      height: 35px;
      border: 2px solid #0087c3;
      border-radius: 5px;
      position: relative; }
      .homePage .express-lane .express-right .express-search .search-left {
        width: 327px; }
        .homePage .express-lane .express-right .express-search .search-left .search-input {
          height: 31px;
          padding-left: 15px;
          outline: none;
          border: none; }
      .homePage .express-lane .express-right .express-search .drop-product {
        position: absolute;
        top: 33px;
        left: 0;
        max-height: 94px;
        background: #fff;
        font-size: 14px;
        border: 1px solid #c8c8c8;
        overflow-x: hidden;
        overflow-y: auto;
        white-space: nowrap;
        z-index: 1; }
        .homePage .express-lane .express-right .express-search .drop-product > ul > li {
          height: 27px;
          line-height: 27px; }
        .homePage .express-lane .express-right .express-search .drop-product .drop-active {
          background: #2196f3 !important; }
      .homePage .express-lane .express-right .express-search .search-right {
        width: 65px;
        text-align: center;
        background: #0087c3;
        color: #fff;
        cursor: pointer; }
    .homePage .express-lane .express-right .historical {
      color: #666;
      display: inline-block;
      padding: 0px 10px;
      font-size: 12px;
      height: 25px;
      line-height: 25px;
      margin-right: 10px;
      white-space: nowrap;
      max-width: 104px;
      overflow: hidden;
      text-overflow: ellipsis;
      vertical-align: middle; }
      .homePage .express-lane .express-right .historical a {
        display: inline-block; }
    .homePage .express-lane .express-right .his-active {
      background: #7bbc52;
      color: #fff; }
    .homePage .express-lane .express-right .dialog-box {
      position: relative;
      width: 139px;
      min-height: 74px;
      background: #333;
      border-radius: 5px; }
      .homePage .express-lane .express-right .dialog-box:before {
        content: '';
        display: inline-block;
        position: absolute;
        left: 139px;
        top: 28px;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 10px solid #333; }
      .homePage .express-lane .express-right .dialog-box .box-title {
        text-align: center;
        padding-top: 15px; }
      .homePage .express-lane .express-right .dialog-box a {
        color: #fff;
        display: block;
        padding: 0 5px;
        white-space: nowrap;
        max-width: 139px;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle; }
    .homePage .express-lane .express-right .link-hint {
      font-size: 12px;
      color: #999; }
    .homePage .express-lane .express-right .flow-chart .flow {
      display: inline-block;
      min-width: 100px;
      height: 54px;
      padding-top: 10px;
      text-align: center;
      position: relative;
      cursor: pointer; }
      .homePage .express-lane .express-right .flow-chart .flow .flow-spot {
        width: 14px;
        height: 14px;
        border-radius: 7px;
        border: 4px solid #7bbc52;
        margin: 0 auto; }
      .homePage .express-lane .express-right .flow-chart .flow .flow-arrow:before {
        content: '';
        border: 1px solid #999;
        width: 10px;
        /* height: 10px; */
        position: absolute;
        left: 120px;
        top: 13px;
        transform: rotate(45deg); }
      .homePage .express-lane .express-right .flow-chart .flow .flow-arrow:after {
        content: '';
        border: 1px solid #999;
        width: 10px;
        /* height: 10px; */
        position: absolute;
        left: 120px;
        top: 19px;
        transform: rotate(135deg); }
      .homePage .express-lane .express-right .flow-chart .flow .arrow-line:before {
        content: '';
        border: 1px dashed #999;
        position: absolute;
        width: 55px;
        left: 65px;
        top: 16px; }
      .homePage .express-lane .express-right .flow-chart .flow .name {
        line-height: 30px; }

.homePage .navigation {
  height: 84px; }
  .homePage .navigation .nav-mid {
    border: 1px solid #d2d2d2;
    padding: 10px 20px;
    background: #fff;
    color: #999; }
    .homePage .navigation .nav-mid .serial-num {
      width: 20px;
      height: 20px;
      border: 1px solid #999;
      border-radius: 10px;
      display: inline-block;
      text-align: center;
      line-height: 20px;
      margin-right: 10px; }
    .homePage .navigation .nav-mid .jump-link {
      display: inline-block;
      text-align: center;
      line-height: 25px;
      cursor: pointer; }
      .homePage .navigation .nav-mid .jump-link i {
        font-size: 30px; }
      .homePage .navigation .nav-mid .jump-link a {
        font-size: 13px;
        color: #0d77c9; }
    .homePage .navigation .nav-mid .arrow-right {
      vertical-align: bottom;
      text-align: center; }
      .homePage .navigation .nav-mid .arrow-right i {
        font-size: 30px; }
  .homePage .navigation .nav-hid {
    width: 25px;
    background: #1b2831;
    font-size: 13px;
    color: #fff;
    white-space: normal;
    line-height: 15px;
    text-align: center;
    cursor: pointer; }

.homePage .nav-tit, .homePage .nav-display {
  width: 60px;
  background: #0087c3;
  font-size: 15px;
  height: 84px;
  color: #fff; }
  .homePage .nav-tit i, .homePage .nav-display i {
    font-size: 30px; }
  .homePage .nav-tit p, .homePage .nav-display p {
    width: 30px;
    white-space: normal;
    margin: 0 auto;
    line-height: 20px; }

.homePage .nav-display {
  position: fixed;
  right: 0;
  top: 55%;
  padding-top: 10px;
  cursor: pointer; }

.homePage .ehart {
  height: 416px;
  background: #fff;
  padding-top: 10px; }
  .homePage .ehart .ehart-left {
    position: relative; }
    .homePage .ehart .ehart-left .ehart-sel {
      position: absolute;
      z-index: 99;
      right: 10px; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(40px); } }

.homePage .fade-enter {
  -webkit-animation: fadeInRight 2s;
  -moz-animation: fadeInRight 2s;
  -ms-animation: fadeInRight 2s;
  -o-animation: fadeInRight 2s;
  animation: fadeInRight 2s; }

.homePage .fade-leave {
  -webkit-animation: fadeOutRight 2s;
  -moz-animation: fadeOutRight 2s;
  -ms-animation: fadeOutRight 2s;
  -o-animation: fadeOutRight 2s;
  animation: fadeOutRight 2s; }

.details-page .org-icon {
  font-size: 15px;
  padding-right: 5px; }

.details-page .next-nav {
  color: #FF7700;
  padding: 0 10px;
  border-right: 1px solid #ddd; }

.details-page .details-top {
  border: 1px solid #ddd;
  padding: 15px; }
  .details-page .details-top .top-left {
    padding-left: 20px; }
  .details-page .details-top .w-200 {
    width: 200px; }
  .details-page .details-top .details-logo {
    width: 200px;
    display: inline-block;
    text-align: center; }
  .details-page .details-top .font-w {
    font-weight: 600; }
  .details-page .details-top .info-tit {
    color: #999;
    text-align: left; }
  .details-page .details-top .w45 {
    width: 45px; }
  .details-page .details-top .w95 {
    width: 95px; }
  .details-page .details-top .w70 {
    width: 70px; }
  .details-page .details-top .w85 {
    width: 85px; }

.details-page .details-bottom {
  border: 1px solid #ddd;
  margin-top: 15px; }
  .details-page .details-bottom .head {
    border-bottom: 1px solid #ddd;
    height: 40px; }
    .details-page .details-bottom .head .title {
      background: #f3a81c;
      width: 100px;
      text-align: center;
      color: #fff;
      padding: 0 10px; }
  .details-page .details-bottom .min-h200 {
    min-height: 200px; }

.login {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 12px;
  color: white;
  font-family: 'Bookman Old Style', serif; }
  .login .login-top {
    height: 80px;
    line-height: 80px; }
  .login .login-tip {
    font-size: 14px; }
  .login .login-header-content {
    width: 1000px;
    margin: 0 auto; }
  .login .login-header-content img {
    vertical-align: middle; }
  .login .login-bottom {
    width: 100%;
    margin-top: 20px;
    font-family: Arial; }
  .login .login-bt-frame {
    margin: 0 auto;
    text-align: center; }
  .login .login-bt-text {
    margin-top: 8px;
    color: #000000;
    line-height: 30px; }
  .login .login-bt-link {
    font-size: 11;
    color: #808080;
    text-decoration: none; }
  .login .one-word {
    display: inline-block;
    width: 1em; }
  .login .login-pos {
    position: relative;
    height: 100%;
    width: 1236px;
    margin: 0 auto; }
  .login .login-box {
    position: absolute;
    top: 75px;
    right: 70px;
    width: 329px;
    background: #fff; }
  .login .login-content {
    width: 269px;
    height: 100%;
    margin: 0 auto;
    padding-bottom: 35px; }
  .login .login-tittle {
    height: 53px;
    line-height: 53px;
    font-size: 18px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-family: "microsoft yahei"; }
  .login .login-name-frame {
    margin-top: 33px; }
  .login .login-error {
    line-height: 24px;
    border: 1px solid #F15532;
    color: #F15533;
    padding: 5px 10px;
    margin: 10px 0 -16px; }
  .login .login-error-text {
    cursor: pointer;
    font-weight: bold; }
  .login .login-input {
    font-family: "microsoft yahei";
    padding-left: 10px;
    height: 38px;
    width: 230px;
    line-height: 38px;
    font-size: 14px;
    color: #999;
    background-color: #fff;
    border: 1px solid #bdbdbd; }
  .login .login-input:focus {
    color: #333; }
  .login .login-icon-frame {
    float: left;
    text-align: center;
    vertical-align: middle;
    height: 38px;
    line-height: 38px;
    width: 38px;
    background-color: #f3f3f3;
    border: 1px solid #bdbdbd;
    border-right: none; }
  .login .login-icon {
    color: #d2d2d2;
    font-size: 18px; }
  .login .btn-btn {
    width: 100%;
    padding: 0;
    font-size: 16px;
    line-height: 34px;
    height: 34px;
    color: #fff;
    background: #ff7800; }
  .login .login-center {
    height: 500px;
    background: url(/trace-web/dist/7a4fc87b590456ca32fbf6d9d6f93f6c.jpg) no-repeat center;
    background-repeat: no-repeat;
    background-position: center; }
  .login .lsx-center {
    height: 500px;
    background: url(/trace-web/dist/0ec7b9a99082ef2a357139680743dd0e.jpg) no-repeat center; }
  .login .login-reset {
    font-size: 16px;
    color: #2f5daa; }

.error-content {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 12px;
  color: white;
  font-family: 'microsoft yahei'; }
  .error-content .con-frame {
    width: 1017px;
    height: 500px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute; }
  .error-content .frame-left,
  .error-content .frame-right {
    height: 100%; }
  .error-content .frame-left,
  .error-content .waring-icon {
    float: left; }
  .error-content .frame-left {
    width: 600px; }
  .error-content .error-img,
  .error-content .msg-top,
  .error-content .msg-middle,
  .error-content .waring-icon,
  .error-content .go-index-frame {
    display: block; }
  .error-content .error-img {
    width: 596px;
    height: 497px;
    margin: -45px auto; }
  .error-content .frame-right {
    width: 417px;
    float: right; }
  .error-content .error-msg-frame {
    width: 100%;
    height: auto;
    margin-top: 240px; }
  .error-content .msg-top,
  .error-content .time-text {
    color: #e14e1b; }
  .error-content .msg-top {
    color: #e14e1b;
    font-size: 24px;
    padding-left: 50px;
    height: 26px;
    line-height: 26px; }
  .error-content .msg-middle {
    color: #333;
    font-size: 16px;
    padding-left: 50px;
    margin: 25px 0;
    height: 18px;
    line-height: 18px; }
  .error-content .waring-icon {
    width: 57px;
    height: 43px;
    line-height: 43px;
    margin-left: -58px;
    margin-top: -8px;
    background: url(data:image/gif;base64,R0lGODlhPQArAPcAAP6IHv+HHv2GHv6HIf2IH/+GHf2HHf7+/v+IIP2IHv+GIf+JH/2IIf///f7+//6IHP2GIP+FHv+FIPyHHv6JIP+GH/+HHP6HI/+FHf2JHP+IIv/+//7+/P+EIP/+/vyHHf6JIvyIIfyJHvyHIP+GI/+FG/+IH/+JHf7+/f+FIf3+//3+/v+GG/yJH/6JH/+FIv2KIP6FHf7///7//v3Fk/6IJPyJHP+NLf2GIv2HG/359f7p1v+EHf6KHf6GJf+EHP+HIv7o1f/9/v+DH/uIHf+HIP+1dP3+/f+KI/+NKvyII/79/P2JIv+HJP6OLP748/2oXf39+//9//+2ePyFHf+GHP6VOvyFH/7izP7Cj/+4ff+FJf6VOf2FJP7z6/v///2FJvuHJPu7ev6KJf/+/f/38/zElPyYOv25gv3Glf+PK/+8gf25e//59fz/+/+MKf6MKf+GJv306PyIG//7+PzjzPyQLv/8+P6FGv306f61d/z9+/+3eP+OJP7z6f3//P+NLP6MLPy9fvqGH/717f+KIf60c/2JGv+nXv77+P25fvz+/f3+/P/hyf+3ev6NJf749P/DkP/Imv+KKP7Hm/+lWPvHlv+IHf/8+v66g/mGG//Ekv+lXP6OKv7//PyGHP3u3v2PLf/jyvy9hf2PLv/9/f3p1P+fUv3Im/6nWvz///78+/7iy/6IGv7Ek/+HJ/6PM/7q1/67ff7p2f7kzf65ev2KH/3GmP307PuLH/+FH/2JJP6JGP/07P6WP/+5gf39/v7//fuWPP39/f3p1vu+hf+gT//Il/6nWP+KIP/17P6FHP/GlP/hy/3m0P6LIf359v61dv79//+PLf/79/3//v7t4PyGIv/+/P+MLP2HGf+EHv+GHv+HH/6HH////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS41LWMwMTQgNzkuMTUxNDgxLCAyMDEzLzAzLzEzLTEyOjA5OjE1ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmRkMDcwNzUyLWYyZDAtOTM0MC05MThjLWZkZWEyZmFkYzhhMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyQkI5M0UyOTI1QkUxMUU4OUM3QUU4OTg3NTVFQ0JFRiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyQkI5M0UyODI1QkUxMUU4OUM3QUU4OTg3NTVFQ0JFRiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MThiNmFlNjEtODAzMS03ZTRmLWI4NjItOTZmYTQ3NGU5NDQ0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOmRkMDcwNzUyLWYyZDAtOTM0MC05MThjLWZkZWEyZmFkYzhhMiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAAAAAAALAAAAAA9ACsAAAj/AL8JHEiw4MADHjxIcyCEg8GHECNKlFgtShAaUKw4WdDpDBRUOxKpmEiyJMQDuH7BCnAJQI0ACbh5i9BhQahicmaY3DnxgA4jCEQAGADBm7cA3BAAoDDhU4QUCAzpwMazKkEHzUgRWCCBW4EBAwB0ewGAgIBuCFzMIdAEDi2HVnk62NSKQIWiMDJwG2AAAIAJEboBwDCCSYQAFIYwOxDX5AFZHQRkuFAhgAHBAgY88GYApjcJ3SCYSABgrxa4jSM6oFQgmYYCCzJ0CBHAQgpdNiowAADBgAILFx5IGEGBhYYsI1M/dNComwZvP2qEEZygWwsEV5AE2D5igYDLAlII/4hAIYA3LKiVDyxz40QOAt28FUgAWoGGHyeODrhQgFuLABNUAUACnHkjwA06qEfQCmiEgEAPg+TgAwAzASBAAgMI8EAIBjzQTQVG7WXDAl0g9kEBejigoEB5cNNEAEMM5k0CBCgRg3ndbPBNAwIpECALLjAwwDUVXAYACN54saIDmVBQgAgddMMADAYU4Q0DAZAgwB86CrFBNxRcJgJaGASwCwIBDNCNIMkph0kSFnSDAwExIMBNCADYOYFXOgrkRgUpAFBBNw9gsAADBBTgDTcAvHGHgrEIgIFRlFbqTTfxEdRAfCFSaKlRCZii3gGWeKMApqiiahSm3mjK6aJipf+KqgKuMJbaAZXEJ6uql2Y60KaUMrorpgAgY2tjB1hhIDfMNsvsqr4KBGynzjorABfHxuVBIAQgVe2zvbb666vcxPStTNmgoNwSrxhgwbkyhetqsOZ+a8AkjCh3wBgILHoutOJKq+ui9VaLQBw6peaAL97EuivA88ZX7rDdFCAMMMqhwAmlEvAAQWbcCGCUACHvKIMUDRRw1qKFekNFN9wwIIAEJ6RyhHIOpJGBAAEoIEBRFkiwLMwX0DygbyZAMBQ3AbxgJwkGLEAAAbdkGxcxGpwQ1gQ5MBByzw88kCgTAAi9ADcEUKHAB6ya4E0HLljGzSwK0vFIvEfNSAAGA3z/IFM3i5Ax0AAUVOBXZgXYwOgA3gwwDTUKOiDGFuYF0E0ABNjJzQO7RSDDNxvw2E0CJECgcp4C5OIbWGskrF4vIXQAQAEGYDChfBkYCAQHXwQjwwEMsN1NZvKtDQIPCyDgx4rfHGAEWB8X0B8EMF9ugAqhq7LpAt0cckE3A1gQwVkERrMC8988kYQ3OACogHc8t8DANhpkcOoDCizKnzcgdAMf5mqABPqaJwqZWIABDwhAWXqmgPHlrmHdYIEICPCCGXXjGQDQRg1YYTUFHYAGJJhPtygggQCIgAKcKUKNAlAAGHilG+DhhgYEEIn0oG8FjihEAEoAAqUFYAHeiAES30qwqAWQYAQA4oYtBhCCC5SADTYcYCmycIUBgCFNA2gfAiTDgB5wYwRB4hQCCvABM5xvgAZxABb6oAkABIAFJhgA5jRQgqgtwwTc4IUCuGEAJ9RBCmiEyBKeMAUCJAAEIIgAAiZQggm8gBtAIAICEDAAGPABGjcLZESGQYhRAAIPBLiAAsxSASIA4DA3qIUy1KVJknhgFTugAQBaYIEBEKA0igjCHvrUyp0cQBIMiBOzjuGBXjbGE1MYgQAAYIwOGnMnUTiFCAZgjWI+My4HaIMdEKGiazYGBc4AhTe/ERAAOw==) no-repeat center; }
  .error-content .go-index-frame {
    font-size: 18px;
    padding-left: 50px; }
  .error-content .go-index-btn {
    color: #fff;
    background-color: #155eab;
    width: 128px;
    height: 49px;
    line-height: 49px;
    border-radius: 3px;
    padding: 0px 26px;
    border: none; }
  .error-content .go-index-btn:hover {
    background-color: #006dee; }

.screen {
  background: url(/trace-web/dist/ac4762d978dd55bb7b9e34fd1edba8da.jpg) no-repeat center;
  height: 100%;
  width: 1920px;
  padding-bottom: 30px;
  overflow: auto; }
  .screen .header {
    height: 93px;
    border-bottom: 2px solid #0a2c54; }
    .screen .header .logo {
      width: 200px; }
    .screen .header .title {
      text-align: center;
      font-size: 45px;
      color: #f2d638; }
  .screen .content {
    padding: 35px 30px 0 30px; }
    .screen .content .trace-total {
      height: 132px;
      width: 100%;
      margin-bottom: 30px;
      text-align: center;
      font-weight: bold;
      background-color: rgba(245, 245, 245, 0.06); }
      .screen .content .trace-total .tit {
        font-size: 40px;
        color: #51ffff; }
      .screen .content .trace-total .num {
        color: #fff;
        font-size: 43px;
        font-family: Century Gothic; }
      .screen .content .trace-total .unit {
        padding-left: 10px;
        color: #dfc736;
        font-size: 30px;
        font-weight: 100;
        font-family: Century Gothic; }
    .screen .content .mb-229 {
      margin-bottom: 229px; }
    .screen .content .child-bar {
      width: 270px;
      height: 95px;
      background-color: rgba(245, 245, 245, 0.06);
      font-size: 28px;
      padding-left: 15px;
      font-weight: bold; }
      .screen .content .child-bar .tit {
        color: #51ffff; }
      .screen .content .child-bar .num {
        font-size: 30px;
        color: #fff;
        font-family: Century Gothic;
        font-weight: bold; }
    .screen .content .mt-189 {
      margin-top: 189px; }
    .screen .content .child-bar-2 {
      width: 260px;
      height: 105px;
      display: inline-block;
      font-size: 18px;
      padding: 15px 18px 0px 10px; }
      .screen .content .child-bar-2 .number {
        font-family: Century Gothic;
        font-size: 26px;
        color: #fff; }
    .screen .content .yellow-bar {
      border: 2px solid #d8ed49;
      color: #d8ed49; }
      .screen .content .yellow-bar .line {
        border: 3px solid #d8ed49; }
    .screen .content .green-bar {
      border: 2px solid #5df42e;
      color: #5df42e; }
      .screen .content .green-bar .line {
        border: 3px solid #5df42e; }
    .screen .content .blue-bar {
      border: 2px solid #18dae1;
      color: #18dae1; }
      .screen .content .blue-bar .line {
        border: 3px solid #18dae1; }
    .screen .content .pink-bar {
      border: 2px solid #ff5197;
      color: #ff5197; }
      .screen .content .pink-bar .line {
        border: 3px solid #ff5197; }
    .screen .content .orange-bar {
      border: 2px solid #ff7e51;
      color: #ff7e51; }
      .screen .content .orange-bar .line {
        border: 3px solid #ff7e51; }
    .screen .content .gray-line {
      border: 3px solid #7f7e7c; }
    .screen .content .screen-middle .tit {
      font-size: 35px;
      color: #51ffff;
      text-align: center; }
    .screen .content .screen-middle .bottom-module {
      width: 1061px;
      margin-left: -100px; }
    .screen .content .screen-left {
      width: 364px; }
    .screen .content .screen-right {
      width: 458px; }
      .screen .content .screen-right .hx {
        width: 20px;
        height: 6px;
        margin: auto; }
      .screen .content .screen-right .title {
        width: 40px;
        font-size: 16px;
        padding-top: 10px;
        background-color: #000; }
      .screen .content .screen-right .wz {
        margin: auto;
        width: 16px;
        line-height: 22px;
        padding-top: 5px; }
      .screen .content .screen-right .top {
        height: 235px;
        background-color: rgba(0, 0, 0, 0.6); }
        .screen .content .screen-right .top .title-colour {
          color: #42ca83; }
        .screen .content .screen-right .top .line-colour {
          background: #42ca83; }
      .screen .content .screen-right .middle {
        height: 285px;
        background-color: rgba(0, 0, 0, 0.6); }
        .screen .content .screen-right .middle .title-colour {
          color: #1e5de3; }
        .screen .content .screen-right .middle .line-colour {
          background: #1e5de3; }
      .screen .content .screen-right .bottom {
        height: 340px;
        background-color: rgba(0, 0, 0, 0.6); }
        .screen .content .screen-right .bottom .title-colour {
          color: #51ffff; }
        .screen .content .screen-right .bottom .line-colour {
          background: #51ffff; }
        .screen .content .screen-right .bottom .small-title {
          font-size: 15px;
          color: #fff; }
        .screen .content .screen-right .bottom .bottom-top-half {
          height: 150px;
          padding-top: 10PX;
          padding-left: 5px;
          padding-right: 5px; }
          .screen .content .screen-right .bottom .bottom-top-half .num {
            font-size: 35px;
            color: #51ffff;
            font-family: Century Gothic; }
          .screen .content .screen-right .bottom .bottom-top-half .unit {
            font-size: 20px;
            color: #51ffff;
            padding-left: 5px; }
        .screen .content .screen-right .bottom .bottom-second-half {
          padding-top: 10px;
          padding-left: 5px;
          padding-right: 5px; }
        .screen .content .screen-right .bottom .number-increase {
          display: inline-block;
          width: 125px; }
        .screen .content .screen-right .bottom .than-increase {
          width: 64px;
          display: inline-block;
          text-align: right;
          color: #fff; }
        .screen .content .screen-right .bottom .company-name a {
          color: #fff;
          font-size: 14px;
          text-align: center;
          display: inline-block;
          width: 136px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .screen .content .screen-right .bottom .icon-shang {
          color: #51ffff; }
        .screen .content .screen-right .bottom .half-left, .screen .content .screen-right .bottom .half-right {
          border-bottom: 1px dashed #999; }

@keyframes fadeAppear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadehide {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fadeIn-enter {
  -webkit-animation: fadeAppear 2s;
  -moz-animation: fadeAppear 2s;
  -ms-animation: fadeAppear 2s;
  -o-animation: fadeAppear 2s;
  animation: fadeAppear 2s; }

.fadeIn-leave {
  -webkit-animation: fadehide 2s;
  -moz-animation: fadehide 2s;
  -ms-animation: fadehide 2s;
  -o-animation: fadehide 2s;
  animation: fadehide 2s; }

.rolling {
  height: 225px;
  overflow: hidden; }
  .rolling .data-rolling {
    height: 45px;
    border-bottom: 1px dashed #999;
    font-size: 18px;
    color: #fff;
    padding: 0 10px; }
    .rolling .data-rolling a {
      width: 300px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #fff;
      display: inline-block; }
    .rolling .data-rolling .rolling-right {
      font-size: 16px;
      font-family: Century Gothic;
      text-align: right; }

.Eom-btn {
  display: inline-block;
  background: #4c97dc;
  padding: 0 10px;
  color: #fff; }

.Eom-data-box {
  height: 75px;
  border: 1px solid #e1e6eb;
  max-width: 249px;
  margin-bottom: 1px; }
  .Eom-data-box .Eom-icon {
    color: #4c97dc;
    font-size: 40px; }
  .Eom-data-box .Eom-name {
    font-size: 15px;
    font-weight: bold; }
  .Eom-data-box .Eom-time {
    font-size: 12px;
    color: #999; }
  .Eom-data-box:hover {
    border: 1px solid #2196F3; }

.Eom-data-active {
  border: 1px solid #2196F3;
  background: #cfeaf8; }

.icon-temperature, .icon-humidity, .icon-PM, .icon-PM-ten, .icon-Infra-red, .icon-noise, .icon-combustible, .icon-airQuality, .icon-smoke, .icon-formaldehyde, .icon-carbon-monoxide, .icon-shock, .icon-Illumination, .icon-CO2, .icon-wind-speed, .icon-wind-direction, .icon-rainfall, .icon-soil-temperature, .icon-soil-moisture, .icon-soil-salinity, .icon-atmospheric {
  color: #4c97dc;
  font-size: 40px; }

.icon-temperature:before {
  content: "\E67A"; }

.icon-humidity:before {
  content: "\E68E"; }

.icon-PM:before {
  content: "\E683"; }

.icon-PM-ten:before {
  content: "\E689"; }

.icon-Infra-red:before {
  content: "\E67D"; }

.icon-noise:before {
  content: "\E67C"; }

.icon-combustible:before {
  content: "\E67E"; }

.icon-airQuality:before {
  content: "\E68D"; }

.icon-smoke:before {
  content: "\E682"; }

.icon-formaldehyde:before {
  content: "\E685"; }

.icon-carbon-monoxide:before {
  content: "\EB12"; }

.icon-shock:before {
  content: "\E68F"; }

.icon-Illumination:before {
  content: "\E68A"; }

.icon-CO2:before {
  content: "\E68A"; }

.icon-wind-speed:before {
  content: "\E678"; }

.icon-wind-direction:before {
  content: "\E69E"; }

.icon-rainfall:before {
  content: "\EB48"; }

.icon-soil-temperature:before {
  content: "\E675"; }

.icon-soil-moisture:before {
  content: "\EB24"; }

.icon-soil-salinity:before {
  content: "\EB25"; }

.icon-atmospheric:before {
  content: "\E677"; }

.echarts-select {
  position: absolute;
  right: 10px;
  z-index: 10; }

.emergency-coordination {
  background: #fff;
  padding: 0 15px; }
  .emergency-coordination .track:not(:last-child):after {
    content: '';
    display: block;
    height: 22px;
    width: 27px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAKDklEQVR4Xu2dQVIbRxSGXysYZxfZF4ipitianMD4BHCD4KXRIuYExifAG+GlyQ3wCQwnMNlCqkguAOOlAatTg7HLpgBpev4ZHtMf26j/UX//fLSeJJxg/EAAAtcSCLCBAASuJ4Ag3B0QuIEAgnB7QABBuAcgkEaAEySNG6syIYAgmRTNNtMIIEgaN1ZlQgBBGi66v3HYt/ufl3ohPorRFsysX/OSRQi2N/5se3Y6s1uszRU181jOkN7+PVCK0fv57M84thch1Jbiyg3EaEXo2euj54NX7e8wjytygjTQcylHmD19H0IoT4zGf2KMe/Hk3lNOEz1qBBEzbVuOr08fScRFXsQhiJjrw9HBugV7KY6dLi7aq6PhYH26B/OoaQggyDSUpnzMl9Pj7LCpmWPS0yhnkngyM8dLrUmkpv/vCDI9q4mP7I/2V3ohvJ34wAYfMI7xWTGc32rwEllFI4iw7lt9efVtGOFllrBSQxAhzQejg+0QbEkYWTkqRnt3PBwsV17IgisJIIjwxniwebATzJ4IIytHRbPd49XBYuWFLECQpu8BBGmacPv5nCBC5ggihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppMoBBEWgSBCmE6iEERYBIIIYTqJQhBhEQgihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppMoBBEWgSBCmE6iEERYBIIIYTqJQhBhEQgihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppMoBBEWgSBCmE6iEERYBIIIYTqJQhBhEQgihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppMoBBEWgSBCmE6iEERYBIIIYTqJQhBhEQgihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppMoBBEWgSBCmE6iEERYBIIIYTqJQhBhEQgihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppMoBBEWgSBCmE6iEERYBIIIYTqJQhBhEQgihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppMoBBEWgSBCmE6iEERYBIIIYTqJQhBhEQgihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppMoBBEWgSBCmE6iEERYBIIIYTqJQhBhEQgihOkkCkGERSCIEKaTKAQRFoEgQphOohBEWASCCGE6iUIQYREIIoTpJApBhEUgiBCmkygEERaBIEKYTqIQRFgEgghhOolCEGERCCKE6SQKQYRFIIgQppOoLAXpvzl8ZPHzk2Bx2cz6Fm0hBOs76cTF04jRCgu2Z2ZFtLBt4afd4vncvy6eXItPIitB+huH/d7s6YaFsNIi485cKpptx08zz4q1uaIzm5qwkWwEKU+NMD77wElR79YuT5Zo8WkxnC9Pl87/ZCFIeXKE2dP3IYSFzjfawgZjjHvx5N7THE6SPAQZ7a/0Qnjbwr2TzSXGMT4rhvNbXd9wFoI83NzfMgt/dL3MdvcX/zpane/8LJeFIB7efm335m3+atFs93h1sNj8lW73ClkIwgnSxE3GCdIE1VvJ7G8evOiZbdzKxTt60bHZWrE6eN3R7X3bVhYnSPkWby+eHXa9zDb3Nw4zczl8cJiFIOWN82B0sB2CLbV5E3X1WjHau+PhoPwWQud/shGkP9pf6IXwofONtrDBcYy/80FhC6DbvsTD0cG6BXvZ9nU7db1or46Gg/VO7emGzWRzgpQMzj9Rv3+6Eyw8zqVg5T6jxb/jp3uLOXyC/pVbVoKcSzLaXwgh7ASzX5Q3T9ezotnHGONiLi+tshXkQhK+elLR6Fy+WnIZS3YnyFcAfHhYxZA8PhS8iki2gjCPTCdIjnPH92SyFYR5ZLIguc4dCPIdgT5fhb/WlFznDgS5dEswj1zlSL5zB4Jcuh+YR34EkvvcgSBX/MLk85EvUJg7frw5sh7SL3vCPGLG3IEgN759k/c8wtzBB4UT3t3MdR5h7rj6xuAlFvMIc8cNvzQR5Bo4Oc0jzB3XG4IgN/z2yGMeYe646VU3gtxAp+vzCHPH5K/bIMikob2jfz/C5x2T5SgfgSBTcOriPMLcMUXxCDIdpPJR3ZpHmDumbZ4TZEpSXZlHmDumLPziYQhSgddd/74Wc0eFshGkOqxyxV2eR5g7qnfOCVKd2R2dR5g7EqrmXawUaHdtHmHuSGn5yxpOkER2d2UeYe5ILJgZpB64uzKPMHfU65kTpB4/5/MIc0fNenmJVReg13mEuaNus8wgGoIO/71f5g5ZtZwgKpSePh9h7lC1yrtYOpJuvq/F3KEslSFdSPO25xHmDmGZvM2rh3nx1u+t/P9HmDua6ZMTpAGutzGPMHc0UCSfpDcDtUxt9+9HmDuaapITpCGybc0jzB0NFcgM0izYNuYR5o7mO+QEaZhxk/MIc0fD5TGDNA+4uXmEuaON9jhBWqCsnkeYO1oojRmkPcjn88jGYT/cP90JFh7XuTJy1KFXfS0nSHVmySv6bw4fhfHZTgj2a0pIjPZfPJlZKNbmipT1rKlOAEGqM6u14vwkmT3bCsGWqgTFaO/iycwKclShVv+xCFKfYVJCf/Of5WDj9Ukvuc5fUllvvVj9bTvpQiyqRQBBauGrv7j82/aeheUYbPH7tBBtZ2xxuxjO79W/CgmpBBAklRzrsiCAIFnUzCZTCSBIKjnWZUEAQbKomU2mEkCQVHKsy4IAgmRRM5tMJYAgqeRYlwUBBMmiZjaZSgBBUsmxLgsCCJJFzWwylQCCpJJjXRYEECSLmtlkKgEESSXHuiwIIEgWNbPJVAIIkkqOdVkQQJAsamaTqQT+B7zv7wVpuKm1AAAAAElFTkSuQmCC) no-repeat;
    background-size: 100% 100%;
    margin-left: 155px; }

.record-subject-analysis {
  min-width: 1166px; }
  .record-subject-analysis .header-box {
    height: 127px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    padding: 15px 15px 20px 15px;
    font-weight: bold; }
    .record-subject-analysis .header-box .box-left {
      width: 100px;
      text-align: center; }
    .record-subject-analysis .header-box .box-title {
      margin-top: 5px; }
    .record-subject-analysis .header-box .box-right {
      height: 90px;
      position: relative; }
      .record-subject-analysis .header-box .box-right .right-bottom {
        position: absolute;
        bottom: -8px;
        right: 0px; }
      .record-subject-analysis .header-box .box-right .number {
        font-size: 30px; }
  .record-subject-analysis .violet {
    background: #848dc8; }
  .record-subject-analysis .blue {
    background: #358dd7; }
  .record-subject-analysis .green {
    background: #55b9b7; }
  .record-subject-analysis .yellow {
    background: #bcd038; }
  .record-subject-analysis .subheading {
    font-weight: bold;
    letter-spacing: 1px;
    padding-left: 18px;
    margin-bottom: 3px; }
  .record-subject-analysis .subheading-blue {
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 3px;
    color: #428bca; }
  .record-subject-analysis .subject-middle {
    margin-top: 10px;
    padding: 20px;
    border-top: 3px solid #428bca;
    height: 570px;
    background: #fff;
    position: relative; }
    .record-subject-analysis .subject-middle .right-top {
      height: 280px; }
    .record-subject-analysis .subject-middle .right-bottom {
      height: 250px; }
    .record-subject-analysis .subject-middle .w-450 {
      width: 450px; }
    .record-subject-analysis .subject-middle .w-629 {
      width: 629px; }
    .record-subject-analysis .subject-middle .rolling {
      height: 180px;
      overflow: hidden; }
    .record-subject-analysis .subject-middle .donghu, .record-subject-analysis .subject-middle .xihu, .record-subject-analysis .subject-middle .qingyunpu, .record-subject-analysis .subject-middle .wanli, .record-subject-analysis .subject-middle .qingshanhu, .record-subject-analysis .subject-middle .xinjian, .record-subject-analysis .subject-middle .jinxian, .record-subject-analysis .subject-middle .trace, .record-subject-analysis .subject-middle .anyi {
      width: 30px;
      height: 35px;
      line-height: 30px;
      position: absolute;
      background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAjCAYAAACD1LrRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGQ0VDQkM4MkUyODAxMUU5QjNEM0E1NzkxMjVFREI3MSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGQ0VDQkM4M0UyODAxMUU5QjNEM0E1NzkxMjVFREI3MSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkZDRUNCQzgwRTI4MDExRTlCM0QzQTU3OTEyNUVEQjcxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZDRUNCQzgxRTI4MDExRTlCM0QzQTU3OTEyNUVEQjcxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+nBiuaQAAA4dJREFUeNq0mGlIVFEUx/93dJYc07TcSqcsSyq13bCiyDLMJcpKLFrAwqEy6kOJYBGl0fIhI5OYoD4U0YYtaCLtUUKbELYZFZVpabtL1pjO69wZ+mDznvMc3zswM/e9d+/9vXPuueecO0zIQu/EIrg1zFNWr2JrNDx1CdSKReefCGg8QsA0wXTdQdcN1K4HYy/p9y5+NVWgj+8bV1MySY0tgga/m5fA4JODb7UxqC4D3t4HPj4Hmj4A1lbA1gl4BwC+IUBoDDA0DoiaC3j5VcLWsRfrDKU0jyAfbBFM6Gg/RaA4XMoHnl2Wb0ONBzBhMZCUBwRFXoGHdgXdbXAN3vd1FPTGayjJCcaNIkBwbw1paYCUbUBibi1+t8ST+V93eb8unXe984PRvwzHVgXj+gH3oVw62oELpPXpDSbovCrQ+KKvNNg3pAC3DoXj3gkoJjcOguaLQODwfHFTF/0cSA7xFnnDtGj9AkXFJwgoeG0lE5qg9/7UVWOtYQmqzioP5dLcCDw8rUfbj3RnUwu2eDwuh2ryhObuNyjeGfzHOhoNNeqB+f5vbxsv5lyBaPmkHrj1MzdrkDNYb9TRGqgH5nPrjFoxjZtpk6sHNvg4GCLg9/A3qQceMMTBEAE/RdgY9cCDJ/I1fiIGrkTENPXAIymrMk2lGLgc0SmO7KK0aCjtR87kgb/UGWxmbyi03bTnU6Uldiko+dyWWmMu+5GwSXnw7I32bCCdnbgpRsyoQVSSctDxC4GwcdXUOicNNjMbfa/H0mKByhdlslJGEdVHWEcfW3cac/hV9B9SiMzjvXM0XoFkneE5nufhO07+JjEsB9HJ17Fgt/vgZYeB4dO5eXeIOrroIDPj5lmEOZteIW5lz6GJuaBxVdRazqOGfLAD/p2+U+nNm+xlq1wZMw+Yv7OOWvN5apDc2t1OYmY1tFYZWHuxE36hrqGhFHJXn2yjCJVGV3XdxhSXk5lZBfoGbEY2FfQ6L+l+vKjPLhOoD6+jH7gMZrLMZ2aFpM1Ru6cz5vycv9Ca8yCrUD2LEllRtAcuswbj0u4gdft/RwJ6kRVHgPDJvCaWvQ3kg82MKnSkIWlLrf2I8k+StwKTMu5SK1PKg3t2aJM+lo6loq0Se6Z4UZHOg0QdaT2BnvSoYGNunY8tQjp+1J+isPqL1ncq3XmkzvnY2exnCD6LWtXuQN3XWIF/BP4KMACcsP2MwVxBSgAAAABJRU5ErkJggg==);
      text-align: center;
      color: #fff;
      font-size: 15px; }
    .record-subject-analysis .subject-middle .donghu {
      left: 284px;
      top: 266px; }
    .record-subject-analysis .subject-middle .xihu {
      left: 282px;
      top: 294px; }
    .record-subject-analysis .subject-middle .qingyunpu {
      left: 294px;
      top: 312px; }
    .record-subject-analysis .subject-middle .wanli {
      left: 219px;
      top: 274px; }
    .record-subject-analysis .subject-middle .qingshanhu {
      left: 263px;
      top: 251px; }
    .record-subject-analysis .subject-middle .xinjian {
      left: 213px;
      top: 351px; }
    .record-subject-analysis .subject-middle .jinxian {
      left: 421px;
      top: 381px; }
    .record-subject-analysis .subject-middle .trace {
      left: 361px;
      top: 301px; }
    .record-subject-analysis .subject-middle .anyi {
      left: 174px;
      top: 216px; }
  .record-subject-analysis .subject-bottom {
    margin-top: 10px;
    margin-bottom: 30px;
    border-top: 3px solid #428bca;
    height: 270px;
    background: #fff;
    position: relative; }
    .record-subject-analysis .subject-bottom .tltle {
      position: absolute;
      top: 0;
      left: 0;
      padding-left: 20px;
      padding-top: 10px; }

.sel-div {
  outline: none; }
  .sel-div .sel-top {
    background-color: #00BCD4;
    color: #fff;
    text-align: center; }
  .sel-div .sel-ul {
    width: 100%;
    border: 1px solid #00BCD4;
    border-top: none;
    padding-bottom: 5px; }
    .sel-div .sel-ul .sel-shop {
      text-align: center;
      padding-top: 5px;
      padding-bottom: 3px;
      border-top: 1px solid #00BCD4; }
      .sel-div .sel-ul .sel-shop .sel {
        width: 52px;
        min-width: 50px;
        background: #2196f3;
        color: #fff;
        height: 20px;
        font-size: 12px; }
      .sel-div .sel-ul .sel-shop .sel-hid {
        display: flex;
        justify-content: space-evenly; }

/**
 * notify 通知组件
 */
.message-notify {
  position: fixed;
  z-index: 10000;
  top: -50px;
  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); } }

.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; }
  .loading-icon:before {
    content: "\E62F"; }
