/*!
 * 工作区整体 UI布局，不能随意修改的通用框架样式！！！
 * Aolai-framework v1.0
 * Copyright 2019
 * Author: Fulin
 */

/* 首先取消默认的样式 */

/* 在IE10+浏览器中,去掉文本框的叉叉和密码输入框的眼睛图标 */
::-ms-clear,
::-ms-reveal {
  display: none;
}
/* 去掉input在ie10+浏览器上默认的样式，自动删除的功能 */
/*input::-ms-clear {
  display: none;
}*/

* {
  margin: 0;
  padding: 0;
}
ul, li {
  list-style: none;
}
/* 取消下划线 */
a {
  text-decoration: none;
}
html, body {
  height: 100%;
  width: 100%;
  font-size: 13px;
  overflow: hidden;
  font-family: 'Microsoft Yahei', 'Avenir', '微软雅黑', "黑体", "宋体", Helvetica, Arial, sans-serif;
  /* 苹方中等体字体 */
  /* , PingFangSC-Medium, PingFangSC-Semibold */
}
/* 去掉textarea在ie浏览器上默认的样式，右边的箭头 */
textarea {
  border: 0;
  list-style: none;
  outline: none;
  resize: none;
  /*
  overflow: hidden;
  font-family: 'Microsoft Yahei', 'Avenir', '微软雅黑', "黑体", "宋体", Helvetica, Arial, sans-serif;
  */
}
/* 清除浮动 */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.padding0 {
  padding: 0!important;
}
/* 全透明 */
.opacity0 {
  opacity: 0;
}
/* 渐变动态效果 */
.tr {
  transition: all 0.3s;
}
/* 显示、隐藏 */
.show {
  display: block !important;
}
.hide {
  display: none;
}
.bg-none {
  background: none;
}
/* 自动完成的隐形行高 */
.line-hide {
  line-height: 0px;
}
/*内联块状元素 内容上下居中*/
.line-middle {
  display: inline-block;
  vertical-align: middle;
}
/* 防止数据加载时 vue的一些标签会闪现，cloak: 遮盖物 */
[v-cloak] {
  display: none;
}
[class^="enum_"] {
  display: inline-block;
  padding: 0 10px;
  height: 20px;
  line-height: 20px;
  border-radius: 5px;
  /*font-size: 13px;*/
  text-align: center;
  letter-spacing: 0;
}
[class^="circle_"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
  font-size: 12px;
  border-radius: 12px;
}
[class^="popup_"] {
  position: absolute;
  left: 0; right: 0;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 2px 4px 2px rgb(186 193 199 / 50%);
  /* border: 1px solid #f00; */
  border-radius: 0.333em;
  z-index: 997;
}

/* 各种颜色和标色：赤字、红色 */
.red {
  color: red;
}
.blue {
  color: blue;
}
.link {
  color: #37c;
  cursor: pointer;
}
.enum_red {
  background: #F9ECE6;
  color: #FD7A3D;
}
.enum_blue {
  background: #EBF2FA;
  color: #3D82F3;
}
.enum_cyan {
  background: #EBF2FA;
  color: #1ABFC0;
}
.circle_red {
  border: 1px solid #FD7A3D;
  color: #FD7A3D;
}
.circle_blue {
  border: 1px solid #3D82F3;
  color: #3D82F3;
}
.circle_cyan {
  border: 1px solid #16BEBF;
  color: #16BEBF;
}
.circle_orange {
  border: 1px solid #F3B919;
  color: #F3B919;
}
/* 占位符字体颜色 */
.placeholder {
  color: #b2b2b2;
}

/* 工作区的满屏高度 */
.full-height {
  height: 100%;
  box-sizing: border-box;
}
/* 工作区的满屏宽度 */
.full-width {
  position: relative;
  width: 100%;
}
.table-box {
  display: table;
  width: 100%;
  height: 100%;
}
.table-box >div {
  display: table-cell;
  position: relative;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
}

.data-item:hover .action-item,
.data-chunk:hover .oper-action {
    display: block;
}
.data-item .action-item,
.data-chunk .oper-action {
    display: none;
}
/*.action-area {
  position: relative;
  width: 100%;
  height: 100%;
}*/
.action-area .table-box >div {
  padding: 0 5px;
}
/* 懒加载报表样式 */
.lazy-table {
  /*height: calc(100% - 31px);*/
  height: 100%; /* 充满 */
  /* 必需有行高 */
  /*line-height: 31px;*/
  overflow: auto;
}
/* 懒加载满屏高度 */
.lazy-shadow {
  position: absolute;
  left: 0; top: 0;
  right: 0; bottom: 0;
}
/* 懒加载页面表格样式——初始 */
.lazy-entity {
  position: absolute;
  left: 0; top: 0;
  right: 0; /* bottom: 0;*/
}

/* 页面整体公共布局：居左、居右 */

.action-area .float-left {
  margin-right: 10px;
}
/*修改添加margin-left*/
.action-area .float-right {
  margin-left: 10px;
  margin-right: 10px;
}

.float-right {
  float: right;
}
.float-left,
.float-left >li,
.float-right >li {
  float: left;
}
/* 页面整体公共样式：居左、居右 */
.float-left >li >div {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
}
.float-right >li >div {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
}
.icon-prefix >span,
.icon-suffix >span {
  position: relative;
}
.icon-prefix:hover >span {
  cursor: pointer;
}
/* 绝对定位左上角 */
.icon-prefix i,
.left-top {
  position: absolute;
  top: 0; left: 0;
}
/* 绝对定位右上角 */
.icon-suffix i,
.right-top {
  position: absolute;
  top: 0; right: 0;
}
/* 绝对定位右下角 */
.right-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* 绝对定位左下角 */
.left-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* 图标大小 */
.box_24 {
  width: 24px;
  height: 24px;
}
.box_20 {
  width: 20px;
  height: 20px;
}
.box_17 {
  width: 17px;
  height: 17px;
}
.box_16 {
  width: 16px;
  height: 16px;
}
/* 定义页面数据表格的行高 */
.page-body .el-col {
  height: 30px;
  line-height: 30px;
}
/*修改 文字大小由12修改为13 颜色修改为#424347*/
.page-content .el-col {
  font-size: 13px;
  color: #424347;
}
/* 竖直方向上下留白 */
.space_v {
  margin: 10px 0;
}
.space_v_mini {
  margin: 5px 0;
}
/* 水平方向左右留白 */
.space_h {
  margin: 0 10px;
}
.space_h_mini {
  margin: 0 5px;
}
/* 左留白 */
.space_l {
  margin-left: 10px;
}
.space_l_large {
  margin-left: 20px;
  vertical-align: middle;
}
.space_l_mini {
  margin-left: 5px;
  vertical-align: middle;
}
/* 右留白 */
.space_r {
  margin-right: 10px;
}
.space_r_large {
  margin-right: 20px;
  vertical-align: middle;
}
.space_r_mini {
  margin-right: 5px;
  vertical-align: middle;
}
/* 上留白 */
.space_t {
  margin-top: 10px;
}
.space_t_mini {
  margin-top: 5px;
}
/* 下留白 */
.space_b {
  margin-bottom: 10px;
}
.space_b_mini {
  margin-bottom: 5px;
}

/* 树形的缩进 */
.space_1 {
  padding-left: 0;
}
.space_2 {
  padding-left: 8px;
}
.space_3 {
  padding-left: 16px;
}
.space_4 {
  padding-left: 24px;
}
.space_5 {
  padding-left: 32px;
}
.space_6 {
  padding-left: 40px;
}
.space_7 {
  padding-left: 45px;
}
.space_8 {
  padding-left: 50px;
}
.space_9 {
  padding-left: 55px;
}

/* 树形结构的节点 */

.tree_node >i {
  display: inline-block;
}
/* 圆圈图标： */
.tree_round {
  vertical-align: middle;
  width: 4px;
  height: 4px;
  /*border: 1px solid #6dc3ea;*/
  border: 1px solid rgb(192,196,204);
  border-radius: 50%;
}
/* 下箭头三角 */
.tree_bottom {
  border-top: 6px solid #6dc3ea;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
/* 右箭头三角 */
.tree_right {
  border-left: 6px solid #6dc3ea;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  cursor: pointer;
}

/* 竖直方向上下留白 */
.blank_v {
  padding: 10px 0;
}
.blank_v_mini {
  padding: 5px 0;
}
/* 水平方向左右留白 */
.blank_h {
  padding: 0 10px;
}
.blank_h_mini {
  padding: 0 5px;
}
/* 左留白 */
.blank_l {
  padding-left: 10px;
}
.blank_l_large {
  padding-left: 20px;
}
.blank_l_mini {
  padding-left: 5px;
}
/* 右留白 */
.blank_r {
  padding-right: 10px;
}
.blank_r_large {
  padding-right: 20px;
}
.blank_r_mini {
  padding-right: 5px;
}
/* 上留白 */
.blank_t {
  padding-top: 10px;
}
.blank_t_mini {
  padding-top: 5px;
}
/* 下留白 */
.blank_b {
  padding-bottom: 10px;
}
.blank_b_mini {
  padding-bottom: 5px;
}

/* 缩小字体 */
.font-mini {
  font-size: 11px;
}
/* 缩小字体 */
.font-small {
  font-size: 12px;
}
/* 缩小字体 */
.font-large {
  font-size: 14px;
}
/* 加粗字体 */
.font-bold,
.txt-bold {
  font-weight: bold;
}
/* 文本居左 */
.txt-left {
  text-align: left;
}
/* 文本居右 */
.txt-right {
  text-align: right;
}
/* 文本居中 */
.txt-center {
  text-align: center;
}
/*单行超出省略号统一样式*/
.txt-ellipsis {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* 切断单词进行换行 */
.txt-break {
  word-break: break-all;
}

/* 弹出框中较大的功能框 */
.large_area {
  width: 260px;
}
/* 弹出框中较小的功能框 */
.small_area {
  width: 128px;
  max-width: 100%;
}

/* 优化后的textarea输入框样式 */

.cell-area {
  position: relative;
  float: left;
  box-sizing: border-box;
  padding: 0 5px;
  width: 100%;
  /* 行间距 */
  line-height: 20px;
  /*font-size: 13px;
  color: #333;*/ /* 字体颜色 */
  background: transparent;
  overflow: auto;
}

/* 优化后的input输入框样式 */
.cell-in {
  padding: 0 10px;
  outline: none;
  border: none;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

/* 以下为MaskProgress进度条样式 */

.progress-bar {
  margin: auto;
  width: 270px;
  /*width: 187px;
  height: 145px;*/
  height: 30px;
}

/* 以下为加载提示框样式：loading... */

.mask {
  position: absolute;
  right: 0; bottom: 0;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.mask-wrap {
  background-color: #000;
  /* IE半透明 */
  filter: alpha(opacity=20);
  /* 除IE外所有浏览器 */
  opacity: 0.2;
  /* FF火狐浏览器 */
  -moz-opacity: 0.2;
  z-index: 998;
}
.mask-cell {
  display: table;
  background: transparent;
  z-index: 999;
}
.cell-center {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

/* 树形列表总体样式 */

.tree_select {
  /*解决inline-block之间会留缝隙的bug*/
  /*word-spacing:-10px;*/
  width: 240px;
  height: 28px;
  line-height: 26px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.tree_select >div {
  position: relative;
  padding: 0 10px;
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
}
.tree_select .arrow {
  width: 15px;
  text-align: center;
}
/* 字符串超长省略 */
.tree_select .label {
  padding-right: 25px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tree_arrow {
  width: calc(100% - 107px);
}
.tree_label {
  width: calc(100% - 35px);
}
/* 允许触发事件 */
.tree_select .label .el-input__suffix {
  pointer-events: all;
}

/* 以下为RadioOption选项按钮 */

.radio_option {
  position: relative;
  background: #dfebfe;
  border-radius: 16px;
}
.radio-mask {
  position: absolute;
  top: 3px; bottom: 3px; left: 3px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(55, 66, 73, 0.16);
  border-radius: 14px;
}
.radio_body {
  position: relative;
  /*解决inline-block之间会留缝隙的bug*/
  /*word-spacing:-10px;*/
  color: #4E94FF;
  box-sizing: border-box;
  /*background: #fff;
  border-radius: 16px;*/
}
.radio_body >div {
  padding: 0 10px;
  margin: 2px 3px;
  display: inline-block;
  vertical-align: bottom;
  border-radius: 16px;
  cursor: pointer;
}
.radio_body .picked {
  color: #3E4D57;
  /*background: rgba(55, 66, 73, 0.26);*/
}

/* 以上为RadioOption选项按钮 */








/* 自定义卡片样式 */
li.card-wrap {
  float: left;
  margin: 0px 15px 28px 15px; /* 28px */
  width: 224px; /* 224px+2px = 226px */
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}
.card-body {
  width: 100%;
  height: 78px;
  /*line-height: 126px;*/
  text-align: center;
}
.card-title {
  padding: 0 5px;
  height: 30px;
  line-height: 30px;
  border-bottom: 1px solid #ccc;
  background: #f1f9de;
}
.card-title span {
  display: inline-block;
  width: 160px; /* 214px-26px-26px */
  text-align: left;
  font-size: 14px;
  /*font-weight: bold;*/
  color: #555;
}
.card-title i {
  padding: 3px;
  cursor: pointer;
}
.card-content {
  margin-top: 10px;
}
.card-content p {
  width: 214px; /* 右侧留了 10px */
  line-height: 25px;
  text-indent: 10px; /* 首行文本的缩进 */
  text-align: left;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-apply {
  position: relative;
  height: 32px;
  line-height: 32px;
  text-align: right;
}
.card-apply button {
  position: absolute;
  top: 18px; /* 32-28/2 */
  left: 72px; /* (224-80)/2 */
}
