@charset "UTF-8";
:root {
  --retract-appbar-width: 58px;
}

/**
 * OAUI for OAdmin
 * updatedAt : 20250702
 */
/*************************************************************
 *  重置元素常用样式
 *************************************************************/
/* 链接去除下划线 */
a {
  text-decoration: none;
}

/* 表单字段字体继承 */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* 按钮去除outline */
button,
select,
input[type=submit],
input[type=button],
input[type=reset] {
  outline: none;
}

/* 表格处理 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  /* 设置手机端点击时出现蓝色的背景为透明 */
  -webkit-tap-highlight-color: transparent;
}

/*************************************************************
 *  常用函数式样式Class
 *************************************************************/
/* 左浮动 */
.pull-left {
  float: left;
}

.pull-left-priority {
  float: left !important;
}

/* 右浮动 */
.pull-right {
  float: right;
}

.pull-right-priority {
  float: right !important;
}

/* 清除浮动 */
.pull-clear {
  float: none;
  clear: both;
}

.pull-clear-priority {
  float: none !important;
  clear: both !important;
}

/* 隐藏元素 */
.hide {
  display: none;
}

.hide-priority {
  display: none !important;
}

/* 块级显示 */
.block {
  display: block;
}

.block-priority {
  display: block !important;
}

/* 行内显示 */
.inline {
  display: inline;
}

.inline-priority {
  display: inline !important;
}

/* 行内块级显示 */
.inline-block {
  display: inline-block;
}

.inline-block-priority {
  display: inline-block !important;
}

/* flex */
.flex {
  display: flex;
}

.flex-priority {
  display: flex !important;
}

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

.inline-flex-priority {
  display: inline-flex !important;
}

/* 占位隐藏 */
.hidden {
  visibility: hidden;
}

.hidden-priority {
  visibility: hidden !important;
}

/* 元素可见 */
.visible {
  visibility: visible;
}

.visible-priority {
  visibility: visible !important;
}

/* 行内左对齐 */
.text-left {
  text-align: left;
}

.text-left-priority {
  text-align: left !important;
}

/* 行内居中对齐 */
.text-center {
  text-align: center;
}

.text-center-priority {
  text-align: center !important;
}

/* 行内右对齐 */
.text-right {
  text-align: right;
}

.text-right-priority {
  text-align: right !important;
}

.text-black {
  color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.text-red {
  color: #d05839 !important;
}

.text-green {
  color: #62bc00 !important;
}

.text-orange {
  color: #eaa326 !important;
}

.text-blue {
  color: #297ccf !important;
}

.text-gray {
  color: #b1b1b1 !important;
}

/* 方向0边距 */
.margin-h0 {
  margin-left: 0;
  margin-right: 0;
}

.margin-h0-priority {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.margin-v0 {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-v0-priority {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* 方向0填充 */
.padding-h0 {
  padding-left: 0;
  padding-right: 0;
}

.padding-h0-priority {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.padding-v0 {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-v0-priority {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* 定位 */
.relative {
  position: relative;
}

.relative-priority {
  position: relative !important;
}

.absolute {
  position: absolute;
}

.absolute-priority {
  position: absolute !important;
}

.fixed {
  position: fixed;
}

.fixed-priority {
  position: fixed !important;
}

.sticky {
  position: sticky;
}

.sticky-priority {
  position: sticky;
}

/* 垂直对齐 */
.vertical-middle {
  vertical-align: middle;
}

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

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

/* 溢出隐藏 */
.overflow-hidden {
  overflow: hidden;
}

.overflow-hidden-priority {
  overflow: hidden !important;
}

/* 溢出自动 */
.overflow-auto {
  overflow: auto;
}

.overflow-hidden-priority {
  overflow: auto !important;
}

/* 字体粗细 */
.weight-bold {
  font-weight: bold;
}

.weight-bold-priority {
  font-weight: bold !important;
}

.weight-normal {
  font-weight: normal;
}

.weight-normal-priority {
  font-weight: normal !important;
}

/* 字体大小 */
.fontsize-12 {
  font-size: 12px;
}

.fontsize-12-priority {
  font-size: 12px !important;
}

.fontsize-14 {
  font-size: 14px;
}

.fontsize-14-priority {
  font-size: 14px !important;
}

.fontsize-16 {
  font-size: 16px;
}

.fontsize-16-priority {
  font-size: 16px !important;
}

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

.fontsize-18-priority {
  font-size: 18px !important;
}

.fontsize-20 {
  font-size: 20px;
}

.fontsize-20-priority {
  font-size: 20px !important;
}

.fontsize-22 {
  font-size: 22px;
}

.fontsize-22-priority {
  font-size: 22px !important;
}

/* 背景 */
.bg-none {
  background-color: transparent;
}

.bg-none-priority {
  background-color: transparent !important;
}

.bg-white {
  background-color: white;
}

.bg-white-priority {
  background-color: white !important;
}

/* 列表项符号 */
.list-style-none {
  list-style: none;
}

.list-style-none-priority {
  list-style: none !important;
}

/* 光标形状 */
.cursor-pointer {
  cursor: pointer;
}

.cursor-pointer-priority {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default;
}

.cursor-default-priority {
  cursor: default !important;
}

.cursor-unallowed {
  cursor: not-allowed;
}

.cursor-unallowed-priority {
  cursor: not-allowed !important;
}

/* 边框 */
.border-0 {
  border: 0;
}

.border-0-priority {
  border: 0 !important;
}

.border-none {
  border: none;
}

.border-none-priority {
  border: none !important;
}

.border-left-none {
  border-left: none;
}

.border-left-none-priority {
  border-left: none !important;
}

.border-right-none {
  border-right: none;
}

.border-right-none-priority {
  border-right: none !important;
}

.border-top-none {
  border-top: none;
}

.border-top-none-priority {
  border-top: none !important;
}

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

.border-bottom-none-priority {
  border-bottom: none !important;
}

.table-collapse-separate {
  border-collapse: separate;
}

.table-collapse-separate-priority {
  border-collapse: separate !important;
}

.table-collapse-collapse {
  border-collapse: collapse;
}

.table-collapse-collapse-priority {
  border-collapse: collapse !important;
}

.outline-none {
  outline: none;
}

.outline-none-priority {
  outline: none !important;
}

.user-select-none {
  user-select: none;
}

.user-select-auto {
  user-select: auto;
}

.user-select-all {
  user-select: all;
}

.user-select-text {
  user-select: text;
}

/* 圆角 */
.border-radius-0 {
  border-radius: 0;
}

.border-radius-0-priority {
  border-radius: 0 !important;
}

.border-radius-unset {
  border-radius: unset;
}

.border-radius-unset-priority {
  border-radius: unset !important;
}

/* 盒子模型 */
.border-box {
  box-sizing: border-box;
}

.border-box-priority {
  box-sizing: border-box;
}

.content-box {
  box-sizing: content-box;
}

.content-box-priority {
  box-sizing: content-box;
}

/* 文本省略 */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 清除浮动 */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* 文本框拉伸 */
.resize-none {
  resize: none;
}

.resize-none-priority {
  resize: none;
}

.resize-both {
  resize: both;
}

.resize-both-priority {
  resize: both;
}

.resize-h {
  resize: horizontal;
}

.resize-h-priority {
  resize: horizontal;
}

.resize-v {
  resize: vertical;
}

.resize-v-priority {
  resize: vertical;
}

/* 伪类不显示content内容 */
.empty-before-content::before {
  content: "" !important;
}

.empty-after-content::after {
  content: "" !important;
}

.empty-both-content::before {
  content: "" !important;
}

.empty-both-content::after {
  content: "" !important;
}

.msfont {
  font-family: "Courier New", "Source Code Pro", "Monaco", "Andale Mono" !important;
}

.dqmtext:before {
  content: "“";
  font-family: SimHei;
  font-size: 118%;
  margin-left: -3px;
}

.dqmtext:after {
  content: "”";
  font-family: SimHei;
  font-size: 118%;
  margin-right: -3px;
}

/*************************************************************
 *  初始化样式
 *************************************************************/
body {
  font-family: "Microsoft Yahei", "Helvetica Neue", Verdana, sans-serif;
  font-size: 12px;
}

/*************************************************************
 *  滚动条样式
 *************************************************************/
/* scrollbar */
.scrollbar::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.scrollbar::-webkit-scrollbar-track-piece {
  border-left: 1px solid #fff;
}

.scrollbar::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-left: 1px solid #fff;
}

/* iscrollbar */
.iscrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
  border-radius: 0;
}

.iscrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
  border-radius: 0;
}

.iscrollbar::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 0;
}

/*************************************************************
 *  Widget Common Style
 *************************************************************/
/* widget-com-grid */
/* grid-search */
.widget-com-grid .grid-search {
  padding: 12px 10px 10px;
  background: #f5f5f5;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  height: auto;
  min-height: 30px;
}

.grid-search-item {
  display: inline-block;
  vertical-align: middle;
  margin: 3px 6px;
}

.grid-search-item > label {
  vertical-align: middle;
}

.grid-search-item > label:after {
  content: ":";
  padding: 0 2px;
  color: #999;
}

.grid-search-text {
  box-sizing: border-box;
  height: 22px;
  line-height: 22px;
  vertical-align: middle;
  font-family: inherit;
  color: #333;
  text-indent: 2px;
  border-color: #d0d0d0;
  border-style: solid;
  border-width: 1px;
  outline: none;
}

.grid-search-text:focus {
  border-color: #aaaaaa #cccccc #cccccc #aaaaaa;
}

.grid-search-date {
  width: 96px;
}

.grid-search-datetime {
  width: 146px;
}

.grid-search-button {
  outline: none;
  height: 22px;
  line-height: 20px;
  padding: 0;
  box-sizing: border-box;
  min-width: 80px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border-radius: unset;
  cursor: pointer;
  color: #333;
  border: 1px solid #b7b7b7;
  background-color: #d8d8d8;
  box-shadow: inset 0 0 2px #fff;
}

.grid-search-submit {
  color: #fff;
  border: 1px solid #1f1f1f;
  background-color: #505050;
}

.grid-search-obdownload {
  color: #fff;
  border: 1px solid #487199;
  background-color: #658cb3;
}

.grid-search-select {
  outline: none;
  vertical-align: middle;
  height: 22px;
  padding: 2px 24px 2px 8px;
  border-color: #d0d0d0;
  border-style: solid;
  border-width: 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAwElEQVQoU2NkIBEwkqiegTwNnZ2dW9jY2FILCwuf47Kxq6trCiMj4xqwDf39/ZK/f/9ewMLCEllUVPQOXVNnZ2cvAwPDufLy8qVwJ/X29sr++fNnNg8PT0h2dvYXmKbOzs42BgaGqyDFIDEUP3R1dan+//+///v372ENDQ3furq66hgYGJ6UlZXNgxmA4enu7m69////tzAwMJxnYGB4UVZWNh3ZiVhDqaenR+v////KpaWlm9H9Q16wkhJ5JNsAAPcZQe425EgZAAAAAElFTkSuQmCC");
}

.grid-search-select + .grid-search-select {
  margin-left: 1px;
}

.grid-search-select:focus {
  border-color: #aaaaaa #cccccc #cccccc #aaaaaa;
}

.grid-search i.grid-search-range-connector {
  font-style: normal;
  color: #a09d9d;
  margin: 0 -2px;
  user-select: none;
}

/* grid-list */
.widget-com-grid {
  background-color: transparent;
}

.widget-com-grid .grid-list {
  font-size: 12px;
  border: 1px solid #ccc;
  width: calc(100% - 8px);
}

.widget-com-grid .grid-list th, .widget-com-grid .grid-list td {
  border: 1px dotted #ccc;
  background-color: white;
  color: #333;
  line-height: 120%;
  padding: 1px;
}

.widget-com-grid .grid-list th {
  cursor: default;
  color: #555;
  text-shadow: 1px 1px #fff;
  line-height: 24px;
  background-image: none;
  background-color: #f2f2f2;
  background: -webkit-linear-gradient(to bottom, #ffffff 0, #F2F2F2 100%);
  background: linear-gradient(to bottom, #ffffff 0, #F2F2F2 100%);
}

.widget-com-grid .grid-list .thead-sticky th {
  top: -1px;
}

.widget-com-grid .grid-list .tfoot-sticky td {
  bottom: -6px;
}

.widget-com-grid .grid-list td {
  padding: 3px 6px;
}

.widget-com-grid .grid-list tr:hover td {
  background-color: #f9f9f9;
}

.widget-com-grid .grid-list tr.checked td {
  background-color: #c9e0fb;
}

.widget-com-grid .grid-list td .brace {
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
}

.widget-com-grid .grid-list td.ellipsis {
  min-height: 20px;
  line-height: 20px;
}

.widget-com-grid .grid-list td .ellipsis {
  display: inline-block;
  margin: 0;
  min-height: 20px;
  line-height: 20px;
  max-width: 300px;
}

.widget-com-grid .grid-list th a.grid-sort {
  color: black;
  background: url(grid_sort.png) no-repeat right 4px;
  padding-right: 10px;
}

.widget-com-grid .grid-list th a.grid-sort-desc {
  background-position: right -12px;
}

.widget-com-grid .grid-list th a.grid-sort-asc {
  background-position: right -28px;
}

.widget-com-grid .grid-list th span.field-text {
  display: inline-block;
  vertical-align: middle;
}

.widget-com-grid .grid-list th span.field-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.widget-com-grid .grid-list th span.field-icon-login {
  width: 13px;
  height: 13px;
  cursor: help;
}

.widget-com-grid .grid-list th span.field-icon-login-disabled {
  filter: brightness(200%);
}

.widget-com-grid .grid-list tfoot.gray tr td {
  color: #6e6e6e;
  background-color: #f3f3f3;
  text-shadow: 1px 1px #fff;
}

.widget-com-grid .grid-list-empty td {
  text-align: center;
  height: 36px;
  background-color: #fbfbfb;
  text-shadow: 1px 1px #fff;
  color: #8a8a8a;
}

.widget-com-grid .grid-list-empty:hover td {
  background-color: #fbfbfb !important;
}

/* widget common tree */
.widget-com-tree {
  overflow: hidden;
}

.widget-com-tree .tree-container {
  width: 220px;
  overflow-y: scroll;
  overflow-x: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.widget-com-tree .ztree {
  width: 180px;
}

.widget-com-tree .ztree-loading {
  min-height: 20px;
  background: url(loading.gif) no-repeat center center;
  background-size: 16px;
}

.widget-com-tree .tree-detail {
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  left: 220px;
  top: 0;
  right: 0;
  bottom: 0;
}

.widget-com-tree .tree-detail .container {
  padding: 20px 20px 20px 40px;
}

.widget-com-tree .tree-detail td {
  padding: 6px 0;
  color: #333;
}

/*  wioget common fieldset  */
.widget-com-fieldset {
  margin: 3% 10%;
  border-radius: 5px;
  border: 1px dotted #b7b7b7;
  position: relative;
}

.widget-com-fieldset legend {
  font-size: 14px;
  border-radius: 3px;
  border: 1px dotted #b7b7b7;
  background-color: #f9f7f7;
  color: #a5a4a4;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.69);
  text-align: center;
  padding: 4px 8px;
  pointer-events: none;
  user-select: none;
}

.widget-com-fieldset:has(.fieldset-buttons) {
  position: relative;
}

.widget-com-fieldset:has(.fieldset-buttons) legend {
  position: absolute;
  top: -14px;
  left: 10px;
}

/*  wioget grid fieldset  */
.widget-grid-fieldset {
  margin: 33px 0 30px;
  padding: 22px 10px 10px 10px;
  border-radius: 4px;
  border: 1px dotted #b7b7b7;
}

.widget-grid-fieldset legend {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  border: 1px dotted #b7b7b7;
  background-color: #f9f7f7;
  color: #a5a4a4;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.69);
  padding: 4px 8px;
  pointer-events: none;
  user-select: none;
}

.widget-grid-fieldset:has(.fieldset-buttons) {
  position: relative;
}

.widget-grid-fieldset:has(.fieldset-buttons) legend {
  position: absolute;
  top: -14px;
  left: 10px;
}

.widget-grid-fieldset .widget-com-grid {
  margin: auto;
}

.widget-grid-fieldset .widget-com-grid .grid-list {
  width: 100%;
}

.widget-grid-fieldset .widget-com-grid .grid-list th,
.widget-grid-fieldset .widget-com-grid .grid-list td {
  border: 1px solid #e2e2e2;
}

.widget-com-fieldset .fieldset-buttons,
.widget-grid-fieldset .fieldset-buttons {
  position: absolute;
  right: 10px;
  top: -14px;
}

.widget-com-fieldset .fieldset-buttons .fieldset-icon-button,
.widget-grid-fieldset .fieldset-buttons .fieldset-icon-button {
  font-size: 14px;
  color: #5f5f5f;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.69);
  border-radius: 3px;
  border: 1px solid #e0dcdc;
  background-color: #f9f7f7;
  background-position: 4px center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  padding: 4px 6px 4px 24px;
  margin: 0 2px;
  vertical-align: middle;
  cursor: pointer;
}

.widget-com-fieldset .fieldset-buttons .fieldset-icon-button:hover,
.widget-grid-fieldset .fieldset-buttons .fieldset-icon-button:hover {
  color: #676767;
  border: 1px solid #cccaca;
  background-color: #eae9e9;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.9);
}

.widget-com-fieldset .fieldset-buttons .fieldset-icon-button[disabled],
.widget-grid-fieldset .fieldset-buttons .fieldset-icon-button[disabled] {
  cursor: not-allowed;
  filter: grayscale(100%);
  color: #bfbdbd;
  border: 1px solid #dcdbdb;
  background-color: #f3f1f1;
  text-shadow: 1px 1px #fff;
}

/* dialog grid */
.dialog-grid-table {
  max-width: 600px;
  border: 1px solid #e6e6e6;
}

.dialog-grid-table thead th {
  background-color: #f9f9f9;
  border: 1px solid #e6e6e6;
  padding: 3px;
}

.dialog-grid-table tbody td {
  border: 1px solid #e6e6e6;
  padding: 3px;
}

/*  common button */
.com-button-16px {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 0;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
}

.com-button-32px {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 0;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
}

/* mini-icon-button */
.mini-icon-button {
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  width: 30px;
  height: 30px;
  padding: 1px;
  margin: 0 1px;
  text-indent: -999em;
  vertical-align: middle;
  outline: 1px solid #d6d5d5;
  border: 1px solid #fff;
  background-color: #f5f5f5;
  background-position: center center;
  background-repeat: no-repeat;
}

.mini-icon-button:hover {
  outline: 1px solid #8b9fb3;
  background-color: #e0ebf7;
}

.mini-icon-button[disabled] {
  cursor: not-allowed;
  filter: grayscale(100%);
}

/* text-icon-button */
.text-icon-button {
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  font-size: 12px;
  width: auto;
  height: 20px;
  padding: 2px 2px 2px 20px;
  margin: 2px;
  vertical-align: middle;
  outline: 1px solid #d6d5d5;
  border: 1px solid #fff;
  line-height: 13px;
  background-color: #f5f5f5;
  background-position: 2px center;
  background-repeat: no-repeat;
  color: #606060;
  user-select: none;
}

.text-icon-button:hover {
  outline: 1px solid #8b9fb3;
  background-color: #e0ebf7;
  color: #000;
}

.text-icon-button[disabled] {
  cursor: not-allowed;
  filter: grayscale(100%);
}

.text-icon-button.mate-field-button {
  height: 24px;
  padding-left: 25px;
  padding-right: 7px;
  background-position-x: 3px;
}

/* button */
.oaui-button {
  font-family: inherit;
  height: 36px;
  line-height: 32px;
  border-radius: 2px;
  box-sizing: border-box;
  min-width: 110px;
  font-size: 14px;
  cursor: pointer;
}

a.oaui-button {
  display: inline-block;
}

/* Button Common */
.oaui-button-common {
  color: #555;
  background: #bbb;
  background: -webkit-linear-gradient(to bottom, #eee, #bbb);
  background: linear-gradient(to bottom, #eee, #bbb);
  border: 1px solid #aaa;
  padding: 1px;
  box-shadow: inset 0 0 2px #fff;
}

.oaui-button-common[data-icon]:before {
  content: attr(data-icon);
  display: inline-block;
  padding-right: 2px;
}

.oaui-button-common:hover {
  background: #aaa;
  background: -webkit-linear-gradient(to bottom, #ddd, #aaa);
  background: linear-gradient(to bottom, #ddd, #aaa);
  border: 1px solid #999;
}

.oaui-button-common[disabled] {
  color: #afafaf;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.7);
  background: #bbb;
  background: -webkit-linear-gradient(to bottom, #eee, #dcdcdc);
  background: linear-gradient(to bottom, #eee, #bbb);
  border: 1px solid #dcdcdc;
  cursor: not-allowed;
}

/* Button Submit */
.oaui-button-submit {
  color: #fff;
  background: #323232;
  background: -webkit-linear-gradient(to bottom, #858585, #323232);
  background: linear-gradient(to bottom, #858585, #323232);
  border: 1px solid #333;
  padding: 1px;
  box-shadow: inset 0 0 2px #fff;
}

.oaui-button-submit:hover {
  color: #fff;
  background: #020202;
  background: -webkit-linear-gradient(to bottom, #666, #020202);
  background: linear-gradient(to bottom, #666, #020202);
  border: 1px solid #000;
}

.oaui-button-nail {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
  width: 26px;
  height: 26px;
  overflow: hidden;
  margin-left: 2px;
  outline: 1px solid #fff;
  outline-offset: -2px;
  border: 1px solid #d6d5d5;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  font-size: 0;
}

.oaui-button-nail img {
  display: inline-block;
  width: 16px;
  height: 16px;
}

.oaui-button-nail:hover {
  border: 1px solid #a9a9a9;
  background-color: #ebebeb;
}

/* input */
.oaui-input-tips {
  color: #999;
}

.oaui-input-text {
  box-sizing: border-box;
  width: 260px;
  height: 26px;
  line-height: 26px;
  outline: none;
  font-family: inherit;
  text-indent: 4px;
  padding: 0;
  color: #333;
  border: 1px solid #d0d0d0;
  vertical-align: middle;
}

.oaui-input-text:focus {
  border-color: #aaa #ccc #ccc #aaa;
}

.oaui-input-text-half {
  width: 128px;
}

.oaui-input-indicator::-webkit-calendar-picker-indicator {
  height: 26px;
  line-height: 26px;
  margin-right: 3px;
  block-size: unset !important;
}

.oaui-input-file {
  box-sizing: border-box;
  width: 260px;
  height: 26px;
  outline: none;
  font-family: inherit;
  color: #666;
  border: 1px solid #d0d0d0;
  vertical-align: middle;
  line-height: 23px;
  cursor: pointer;
}

.oaui-input-file[preview] {
  position: relative;
}

.oaui-input-file[preview]:after {
  cursor: pointer;
  display: inline-block;
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: var(--input-file-preview-image);
}

.oaui-input-file[preview]:before {
  position: absolute;
  left: 70px;
  top: 1px;
  text-align: left;
  height: 22px;
  line-height: 22px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  padding-right: 24px;
  content: attr(filename);
  overflow: hidden;
}

.oaui-input-file[preview][changed]:before {
  display: none;
}

.oaui-input-file::-webkit-file-upload-button {
  border-radius: 0;
  padding: 0 5px;
  margin: -3px 5px 0 1px;
  border: 0;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  color: #666;
  vertical-align: middle;
  height: 22px;
  line-height: 22px;
}

.oaui-input-radio {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #818181;
  border-radius: 50%;
  background-color: #fff;
  outline: none;
}

.oaui-input-radio:checked {
  border: 1px solid #8fb0da;
  position: relative;
}

.oaui-input-radio:checked:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: #81a0ce;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border: 2px solid #fff;
}

.oaui-static-text {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  vertical-align: middle;
}

.oaui-screen-text {
  box-sizing: border-box;
  width: 260px;
  height: 26px;
  line-height: 26px;
  outline: none;
  font-family: inherit;
  text-indent: 4px;
  padding: 0;
  color: #333;
  border: 1px solid #d0d0d0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: default;
}

.oaui-screen-text[readonly] {
  background-color: #fafafa;
}

.oaui-form .form-field .field-combo .oaui-screen-text {
  width: 235px;
}

.oaui-form .form-field .field-combo .oaui-screen-text i {
  font-style: normal;
  color: #bdbdbd;
  user-select: none;
}

.oaui-multi-text {
  width: 300px;
  max-height: 500px;
  line-height: 20px;
  box-sizing: border-box;
  font-family: inherit;
  color: #333;
  vertical-align: middle;
  overflow-y: auto;
  overflow-x: hidden;
}

.oaui-textarea {
  width: 260px;
  min-height: 120px;
  line-height: 20px;
  box-sizing: border-box;
  padding: 6px;
  font-family: inherit;
  color: #333;
  border: 1px solid #d0d0d0;
  outline: none;
  vertical-align: middle;
}

.oaui-select {
  width: 260px;
  height: 26px;
  line-height: 24px;
  font-family: inherit;
  color: #333;
  border: 1px solid #d0d0d0;
  vertical-align: top;
  padding: 0 18px 0 4px;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAYAAADwdn+XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyN0E0RjM5RUQzNDYxMUU3QTY4RUM1ODU5NkY1RDQwQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyN0E0RjM5RkQzNDYxMUU3QTY4RUM1ODU5NkY1RDQwQiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjI3QTRGMzlDRDM0NjExRTdBNjhFQzU4NTk2RjVENDBCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjI3QTRGMzlERDM0NjExRTdBNjhFQzU4NTk2RjVENDBCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+paYeTQAAAKhJREFUeNpi3L9/vxYDA8M1BsJAy8HBAUMdi6Cg4NX379+LA+lXuHQC5cVA6oBMRnQ5pnfv3vkBJV8CFUnh0CwFkgepwybPJCQktBko6QxU9BTdEKjmpyB5kDqsBoAIoOQ+oGI3qCEyUM0yUL4bSB6X95hgDKDi3UDFIO88BtIWUBrE340vZFmQOUDFm4Ga7IH0cSh9iFDUsAAVoosdBYq5QmmCcQsQYACt01yeT1PqNgAAAABJRU5ErkJggg==) no-repeat right center;
}

.oaui-select + .oaui-select {
  margin-left: 1px;
}

br + .oaui-select {
  margin-top: 1px;
}

.oaui-select::-ms-expand {
  display: none;
}

.oaui-select:focus {
  border-color: #aaa #ccc #ccc #aaa;
}

.oaui-select option[disabled] {
  background-color: #fcfcfc;
  color: #ccc;
}

.oaui-select-multiple {
  height: auto;
  min-height: 60px;
  padding-right: 4px;
}

.oaui-input-text[readonly] {
  border: 1px solid #f3f3f3;
  background-color: #fdfdfd;
  color: #a5a4a4;
}

.oaui-input-text[disabled],
.oaui-select[disabled],
.oaui-select-multiple[disabled] {
  border: 1px solid #dcdcdc;
  background-color: #f9f9f9;
  color: #a5a4a4;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.69);
}

.oaui-switch {
  -webkit-appearance: none;
  display: inline-block;
  box-sizing: border-box;
  width: 66px;
  height: 26px;
  padding: 2px 10px;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background-color 100ms ease-out;
  vertical-align: middle;
}

.oaui-switch::before {
  content: attr(data-off);
  display: inline-block;
  box-sizing: border-box;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  color: #919191;
  position: absolute;
  top: 0;
  right: 7px;
}

.oaui-switch::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: 1px solid #f7f7f7;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  background-color: #fbfbfb;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 100ms ease-out;
}

.oaui-switch:checked {
  background-color: #5a5a5a;
  border: 1px solid #d0d0d0;
}

.oaui-switch:checked::before {
  content: attr(data-on);
  display: inline-block;
  box-sizing: border-box;
  color: #d1d1d1;
  right: unset;
  left: 7px;
}

.oaui-switch:checked::after {
  border: 1px solid #d4d4d4;
  box-shadow: none;
  left: 42px;
  color: #919191;
}

.oaui-switch:disabled {
  background-color: #ececec;
  border: 1px solid #e0e0e0;
  cursor: not-allowed;
}

.oaui-switch:checked:disabled::after {
  background-color: #fbfbfb;
  border: 1px solid #f7f7f7;
}

.oaui-switch:checked:disabled {
  background-color: #c3c3c3;
  border: 1px solid #e0e0e0;
  cursor: not-allowed;
}

.oaui-switch:checked:disabled::after {
  background-color: #ececec;
  border: 1px solid #cecece;
}

.oaui-input-color {
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  line-height: 26px;
  outline: none;
  border: 1px solid #d0d0d0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.oaui-input-color::-webkit-color-swatch-wrapper {
  padding: 1px;
}

.oaui-input-color::-webkit-color-swatch {
  border-color: transparent;
}

.oaui-input-range {
  -webkit-appearance: none;
  width: 260px;
  height: 26px;
  padding: 0 1px;
  background: #fafafa;
  box-sizing: border-box;
  border: 1px solid #d0d0d0;
  outline: none;
  position: relative;
}

.oaui-input-range:before {
  content: attr(value);
  color: #333;
  position: absolute;
  top: 0;
  left: 4px;
  display: inline-block;
  line-height: 26px;
}

.oaui-input-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 22px;
  border-radius: 0;
  background: -webkit-linear-gradient(to right, #858585, #323232);
  background: linear-gradient(to right, #858585, #323232);
  cursor: pointer;
  border: 1px solid transparent;
  border-left-color: #323232;
  border-right-color: #858585;
  border-top-color: #323232;
  border-bottom-color: #858585;
}

.oaui-field-margin-v {
  margin-top: 1px;
  margin-bottom: 1px;
}

.oaui-field-margin-h {
  margin-left: 1px;
  margin-right: 1px;
}

/* form */
.oaui-form {
  padding: 20px;
  font-size: 14px;
}

.oaui-form .form-container {
  margin: auto;
}

.oaui-form .form-container tbody[title] {
  border-top: 40px solid transparent;
  box-shadow: 0 -1px 0 0 #e9e9e9;
  position: relative;
}

.oaui-form .form-container tbody[title]:before {
  content: attr(title);
  position: absolute;
  top: -52px;
  width: 100%;
  text-align: center;
  line-height: 26px;
  color: #fff;
  background-color: #fff;
  transform: scaleX(0.3);
}

.oaui-form .form-container tbody[title]:after {
  content: attr(title);
  position: absolute;
  top: -52px;
  width: 100%;
  text-align: center;
  line-height: 26px;
  color: #a9a9a9;
}

.oaui-form .form-container tbody[title] tr:first-child td {
  padding-top: 0;
}

.oaui-form .form-container tbody[fieldset][title] {
  border: 37px solid transparent;
  outline: 1px solid #eaeaea;
  border-radius: 3px;
}

.oaui-form .form-container tbody[fieldset][title]:before {
  transform: scaleX(0.23);
}

/* field label, field input */
.oaui-form .form-field .field-label,
.oaui-form .form-field .field-input,
.oaui-form .form-field .field-textarea,
.oaui-form .form-field .field-datalist,
.oaui-form .form-field .field-select,
.oaui-form .form-field .field-widget,
.oaui-form .form-field .field-switch {
  padding: 10px;
  color: #333;
}

.oaui-form .form-field .field-ueditor {
  padding: 10px;
}

.oaui-form .form-field .field-image {
  padding: 10px;
}

.oaui-form .form-field .field-label {
  text-align: right;
  font-weight: bold;
}

.oaui-form .form-field .field-label:after {
  content: "：";
}

/* field group */
.oaui-form .form-field .field-group {
  padding: 10px;
}

.oaui-form .form-field .field-group .field-item {
  font-size: inherit;
  color: #6d6d6d;
  margin: 3px;
  display: inline-block;
  background: #f0f0f0;
  border: 1px solid #ccc;
  padding: 3px 6px;
  border-radius: 2px;
  user-select: none;
}

.oaui-form .form-field .field-group br + .field-item {
  margin-left: 0;
}

.oaui-form .form-field .field-group .field-item input,
.oaui-form .form-field .field-group .field-item span {
  vertical-align: middle;
}

.oaui-form .form-field .field-group .field-item span {
  margin-left: 3px;
}

.oaui-form .form-field .field-group .field-item:first-child {
  margin-left: 0;
}

.oaui-form .form-field .field-group .field-item input:checked + span {
  color: #111;
}

.oaui-form .form-field .field-group .field-item:hover {
  background: #d8d8d8;
  color: #333333;
  border-color: #a5a5a5;
}

.oaui-form .form-field .field-group input {
  vertical-align: middle;
  outline: none;
}

.oaui-form .form-field .field-group .field-item.disabled,
.oaui-form .form-field .field-group .field-item.disabled:hover,
.oaui-form .form-field .field-group .field-item:has([type=radio][disabled]),
.oaui-form .form-field .field-group .field-item:has([type=radio][disabled]):hover,
.oaui-form .form-field .field-group .field-item:has([type=checkbox][disabled]),
.oaui-form .form-field .field-group .field-item:has([type=checkbox][disabled]):hover {
  background: #f0f0f0;
  color: #b9b9b9;
  text-shadow: 1px 1px #fff;
  border-color: #ccc;
  cursor: not-allowed;
}

.oaui-form .form-field .field-group .field-item.disabled input[type=radio][disabled],
.oaui-form .form-field .field-group .field-item.disabled:hover input[type=checkbox][disabled],
.oaui-form .form-field .field-group .field-item input[type=radio][disabled],
.oaui-form .form-field .field-group .field-item input[type=checkbox][disabled] {
  background-color: #f7f7f7;
  border: 1px solid #cfcfcf;
}

.oaui-form .form-field .field-combo {
  display: flex;
  padding: 10px;
  align-items: center;
}

.oaui-form .form-field .field-combo .oaui-input-prepend {
  line-height: 24px;
  background-color: #eaeaea;
  border: 1px solid #d0d0d0;
  border-right: none;
  display: inline-block;
  box-sizing: border-box;
  min-width: 26px;
  text-align: center;
  user-select: none;
}

.oaui-form .form-field .field-combo .oaui-input-append {
  line-height: 22px;
  background-color: #f7f7f7;
  border: 1px solid #ffffff;
  display: inline-block;
  box-sizing: border-box;
  min-width: 24px;
  height: 24px;
  text-align: center;
  user-select: none;
  outline: 1px solid #d0d0d0;
  color: #afafaf;
}

.oaui-form .form-field .field-combo button.oaui-input-append {
  padding: 0;
  cursor: pointer;
}

.oaui-form .form-field .field-combo button.oaui-button-picker {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAAXNSR0IArs4c6QAAAOxJREFUSEvtleERwUAQhd+rwKiADihBCV4qoAMqoAQdUEFWCTpAB0qggjU7kxjEZIJM8oP7ebdz3+7bvXdEQ4sNcfADIDObAFgA6D/JegAwl7T7RO6CdGmankiOJcXFt2VmI3dfJUkyjM0soXUJdCppk58XQGbmkh72AwLgDGD/fFa1upcgAFMAA0nzyDwqIRmw2kFdd9+R7Lj7JZPy9KraryrK5cn6sJUUskVfCrJ+DGpyGKInS5K9+2zd/UhyVtt4V5Xi3bj2LOg3nCHvR63jXXbZH3T/BFr9JsaZMwz+zlBmS+1Z0LtmWTX+CkMjvBtOSMHCAAAAAElFTkSuQmCC") no-repeat center center;
}

.oaui-form .form-field .field-combo .oaui-input-text {
  width: 235px;
}

.oaui-form .form-field .field-combo .oaui-select + .oaui-input-text {
  border-left: none;
}

.oaui-form .form-field .field-text {
  vertical-align: middle;
  line-height: 26px;
  padding: 10px;
}

.oaui-form .form-field .field-ueditor {
  padding: 10px;
}

.oaui-form .form-field .field-ueditor-title {
  text-align: center;
  padding: 5px;
  background: #fbfbfb;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  font-weight: bold;
}

/* field tips */
.oaui-form .form-field .field-label + td.field-tips {
  padding: 10px;
}

.oaui-form .form-field .field-label + td.field-tips .oaui-inline-tips {
  padding-top: 4px;
  padding-bottom: 4px;
  box-sizing: border-box;
  width: 260px;
  background-size: 16px;
  border-radius: 0;
}

.oaui-form .form-field dl.field-tips {
  display: inline-block;
  vertical-align: middle;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  line-height: 0;
}

.oaui-form .form-field .field-tips dt {
  display: inline-block;
  width: 26px !important;
  height: 26px !important;
  overflow: hidden;
  text-indent: -999em;
  box-sizing: border-box;
  background: url(field_tips.svg) center center no-repeat transparent;
  cursor: help;
  padding: 0 !important;
  margin: 0 !important;
}

.oaui-form .form-field .field-tips dd {
  display: none;
  position: absolute;
  color: #84a5d0;
  border: 1px solid #c4d7f1;
  background-color: #f3f8ff;
  top: 0;
  right: 0;
  padding: 3px 22px 3px 10px !important;
  margin: 0 !important;
  width: 252px;
  height: auto;
  line-height: 18px;
  font-size: 12px;
}

.oaui-form .form-field .field-tips:hover dd {
  display: block;
  z-index: 3;
}

.oaui-form .form-field .field-tips:hover dt {
  position: relative;
  z-index: 5;
}

.oaui-form .field-remark td,
.oaui-form .field-remark td {
  background-color: #f1f1f1;
  border: 1px solid #dfdfdf;
}

/* form line */
.oaui-form .form-line hr {
  border: none;
  border-top: 1px dotted #f0f0f0;
  height: 0;
  outline: none;
}

/* form-btns */
.oaui-form .form-btns {
  padding-top: 40px;
}

.oaui-form .form-btns .btns-item {
  text-align: center;
  padding: 40px 0;
}

.oaui-form .form-btns .btns-item > div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 80%;
  margin: auto;
}

/* dialog page */
.dialog-form {
  min-width: 430px;
}

.full-form,
.full-form .form-container {
  width: 100%;
  box-sizing: border-box;
}

.dialog-body .widget-com-grid .grid-list,
.dialog-page .widget-com-grid .grid-list {
  width: 100%;
}

.dialog-page .widget-com-grid {
  background-color: transparent;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 5px 5px 0 5px;
}

.dialog-page .dialog-form .field-image,
.dialog-page .dialog-form .field-input,
.dialog-page .dialog-form .field-select,
.dialog-page .dialog-form .field-combo,
.dialog-page .dialog-form .field-text,
.dialog-page .dialog-form .field-textarea,
.dialog-page .dialog-form .field-group,
.dialog-page .dialog-form .field-datalist {
  padding: 5px 0;
}

.dialog-page .grid-page {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 2px 10px 2px 0;
  text-align: right;
  background-color: #fbfbfb;
  border-bottom: 1px solid #efefef;
}

/* oaui tips */
.oaui-inline-tips {
  text-align: left;
  display: inline-block;
  padding: 6px 12px 6px 34px;
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 18px;
}

.oaui-block-tips {
  text-align: left;
  display: block;
  padding: 12px 30px 12px 50px;
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 32px;
}

.tips-success {
  color: #62bc00;
  border-color: #cffb88;
  background-color: #f3fde3;
  background-image: url(success.png);
}

.tips-error {
  color: #d05839;
  border-color: #f7a995;
  background-color: #f9d6ca;
  background-image: url(error.png);
}

.tips-warning {
  color: #eaa326;
  border-color: #fbe0ae;
  background-color: #fdf2d9;
  background-image: url(warning.png);
}

.tips-confirm {
  color: #84a5d0;
  border-color: #d3e5fd;
  background-color: #f3f8ff;
  background-image: url(confirm.png);
}

.tips-info {
  color: #84a5d0;
  border-color: #d3e5fd;
  background-color: #f3f8ff;
  background-image: url(info.png);
}

.tips-alert {
  color: #d05839;
  border-color: #f7a995;
  background-color: #f9d6ca;
  background-image: url(alert.png);
}

/* status capsule */
.status-capsule {
  display: inline-block;
  padding: 2px 5px;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  user-select: none;
}

.status-capsule-green,
.status-capsule-on {
  background-color: #0bb31c;
}

.status-capsule-red,
.status-capsule-off {
  background-color: #e64242;
}

.status-capsule-orange {
  background-color: #fbb136;
}

.status-capsule-blue {
  background-color: #259bf9;
}

/* loading */
.loading-placeholder {
  display: inline-block;
  background: url(loading.gif) no-repeat center center;
  background-size: cover;
  width: 20px;
  height: 20px;
}

.loading-prepend {
  background: url(loading.gif) no-repeat left center;
  background-size: contain;
  padding-left: 1.8em;
}

/* table thead 表头粘滞固定  */
.thead-sticky {
  position: relative;
}

.thead-sticky th {
  position: sticky;
  top: 0;
}

/* table tfoot 表头粘滞固定  */
.tfoot-sticky {
  position: relative;
}

.tfoot-sticky td {
  position: sticky;
  bottom: 0;
}

/* 通用进度条 progress-bar */
.progress-bar {
  width: 100%;
  height: 18px;
  line-height: 18px;
  border: 1px solid #e4e4e4;
  display: inline-block;
  background-color: #f5f5f5;
  position: relative;
  z-index: 0;
}

.progress-bar:before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(1% * var(--percent));
  transition: width 500ms ease-in-out;
  background-color: #67b0ff;
}

.progress-bar:after {
  display: inline-block;
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  counter-reset: progress var(--percent);
  content: counter(progress) "% ";
  text-align: center;
}

/* widget-div-grid */
.widget-div-grid .div-grid-row {
  display: flex;
}

.widget-div-grid .div-grid-head {
  color: #555;
  text-shadow: 1px 1px #fff;
  height: 26px;
  border: 1px solid #e2e2e2;
  background-image: none;
  background-color: #f2f2f2;
  background: -webkit-linear-gradient(to bottom, #ffffff 0, #F2F2F2 100%);
  background: linear-gradient(to bottom, #ffffff 0, #F2F2F2 100%);
}

.widget-div-grid .div-grid-head .div-grid-row {
  align-items: center;
  justify-content: space-around;
  font-weight: bold;
  text-align: center;
  height: 100%;
}

.widget-div-grid .div-grid-head .div-grid-row > div {
  height: 100%;
  line-height: 2;
}

.widget-div-grid .div-grid-body {
  border: 1px solid #e2e2e2;
  border-top: none;
}

.widget-div-grid .div-grid-body .div-grid-row {
  align-items: center;
  justify-content: space-around;
  padding: 5px 0;
  border-bottom: 1px solid #e2e2e2;
}

.widget-div-grid .div-grid-body .div-grid-row:last-child {
  border-bottom: none;
}

.widget-div-grid .div-grid-body .widget-node-clone {
  padding: 0;
}

.widget-div-grid .div-grid-foot .div-grid-row {
  align-items: center;
  justify-content: space-around;
}

q {
  margin: 0 -5px;
}

q:before {
  font-family: "SimHei";
  content: "“";
}

q:after {
  font-family: "SimHei";
  content: "”";
}

/*# sourceMappingURL=oaui.css.map */
