body {
  margin: 0;
}
.x-spreadsheet {
  font-size: 13px;
  line-height: normal;
  user-select: none;
  -moz-user-select: none;
  font-family: 'Lato', 'Source Sans Pro', Roboto, Helvetica, Arial, sans-serif;
  box-sizing: content-box;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.x-spreadsheet textarea {
  font: 400 13px Arial, 'Lato', 'Source Sans Pro', Roboto, Helvetica, sans-serif;
}
.x-spreadsheet-sheet {
  position: relative;
  overflow: hidden;
}
.x-spreadsheet-table {
  vertical-align: bottom;
}
.x-spreadsheet-tooltip {
  font-family: inherit;
  position: absolute;
  padding: 5px 10px;
  color: #fff;
  border-radius: 1px;
  background: #000000;
  font-size: 12px;
  z-index: 201;
}
.x-spreadsheet-tooltip:before {
  pointer-events: none;
  position: absolute;
  left: calc(50% - 4px);
  top: -4px;
  content: "";
  width: 8px;
  height: 8px;
  background: inherit;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.3);
}
.x-spreadsheet-color-palette {
  padding: 5px;
}
.x-spreadsheet-color-palette table {
  margin: 0;
  padding: 0;
  border-collapse: separate;
  border-spacing: 2;
  background: #fff;
}
.x-spreadsheet-color-palette table td {
  margin: 0;
  cursor: pointer;
  border: 1px solid transparent;
}
.x-spreadsheet-color-palette table td:hover {
  border-color: #ddd;
}
.x-spreadsheet-color-palette table td .x-spreadsheet-color-palette-cell {
  width: 16px;
  height: 16px;
}
.x-spreadsheet-border-palette {
  padding: 6px;
}
.x-spreadsheet-border-palette table {
  margin: 0;
  padding: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  table-layout: fixed;
}
.x-spreadsheet-border-palette table td {
  margin: 0;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left {
  border-right: 1px solid #eee;
  padding-right: 6px;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell {
  width: 30px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell .x-spreadsheet-icon-img {
  opacity: 0.8;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell:hover {
  background-color: #eee;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right {
  padding-left: 6px;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right .x-spreadsheet-toolbar-btn {
  margin-top: 0;
  margin-bottom: 3px;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right .x-spreadsheet-line-type {
  position: relative;
  left: 0;
  top: -3px;
}
.x-spreadsheet-dropdown {
  position: relative;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-content {
  position: absolute;
  z-index: 200;
  background: #fff;
  box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
}
.x-spreadsheet-dropdown.bottom-left .x-spreadsheet-dropdown-content {
  top: calc(100% + 5px);
  left: 0;
}
.x-spreadsheet-dropdown.bottom-right .x-spreadsheet-dropdown-content {
  top: calc(100% + 5px);
  right: 0;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-title {
  padding: 0 5px;
  display: inline-block;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-left {
  margin-left: 4px;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-right {
  width: 10px;
  margin-right: 4px;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-right .arrow-down {
  left: -130px;
}
/* resizer **/
.x-spreadsheet-resizer {
  position: absolute;
  z-index: 11;
}
.x-spreadsheet-resizer .x-spreadsheet-resizer-hover {
  background-color: rgba(75, 137, 255, 0.25);
}
.x-spreadsheet-resizer .x-spreadsheet-resizer-line {
  position: absolute;
}
.x-spreadsheet-resizer.horizontal {
  cursor: row-resize;
}
.x-spreadsheet-resizer.horizontal .x-spreadsheet-resizer-line {
  border-bottom: 2px dashed #4b89ff;
  left: 0;
  bottom: 0;
}
.x-spreadsheet-resizer.vertical {
  cursor: col-resize;
}
.x-spreadsheet-resizer.vertical .x-spreadsheet-resizer-line {
  border-right: 2px dashed #4b89ff;
  top: 0;
  right: 0;
}
/* scrollbar */
.x-spreadsheet-scrollbar {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #f4f5f8;
  opacity: 0;
  z-index: 12;
}
.x-spreadsheet-scrollbar.horizontal {
  overflow-x: scroll;
  overflow-y: hidden;
}
.x-spreadsheet-scrollbar.vertical {
  overflow-x: scroll;
  overflow-y: scroll;
}
.x-spreadsheet-scrollbar:hover {
  opacity: 0.85;
}
/* @{css-prefix}-overlayer */
.x-spreadsheet-overlayer {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.x-spreadsheet-overlayer .x-spreadsheet-overlayer-content {
  position: absolute;
  overflow: scroll;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.x-spreadsheet-editor,
.x-spreadsheet-selector {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* @{css-prefix}-selector */
.x-spreadsheet-selector .x-spreadsheet-selector-area {
  position: absolute;
  border: 2px solid #4b89ff;
  background: rgba(75, 137, 255, 0.1);
}
.x-spreadsheet-selector .x-spreadsheet-selector-clipboard,
.x-spreadsheet-selector .x-spreadsheet-selector-autofill {
  position: absolute;
  background: transparent;
  z-index: 100;
}
.x-spreadsheet-selector .x-spreadsheet-selector-clipboard {
  border: 2px dashed #4b89ff;
}
.x-spreadsheet-selector .x-spreadsheet-selector-autofill {
  border: 1px dashed rgba(0, 0, 0, 0.45);
}
.x-spreadsheet-selector .x-spreadsheet-selector-corner {
  pointer-events: auto;
  position: absolute;
  cursor: crosshair;
  font-size: 0;
  height: 5px;
  width: 5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #ffffff;
  background: #4b89ff;
}
.x-spreadsheet-editor {
  z-index: 20;
}
.x-spreadsheet-editor .x-spreadsheet-editor-area {
  position: absolute;
  text-align: left;
  border: 2px solid #4b89ff;
  line-height: 0;
  z-index: 100;
  pointer-events: auto;
}
.x-spreadsheet-editor .x-spreadsheet-editor-area textarea {
  box-sizing: content-box;
  border: none;
  padding: 0 3px;
  outline-width: 0;
  resize: none;
  text-align: start;
  overflow-y: hidden;
  font: 400 13px Arial, 'Lato', 'Source Sans Pro', Roboto, Helvetica, sans-serif;
  color: inherit;
  white-space: normal;
  word-wrap: break-word;
  line-height: 22px;
  margin: 0;
}
.x-spreadsheet-editor .x-spreadsheet-editor-area .textline {
  overflow: hidden;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
}
.x-spreadsheet-item {
  user-select: none;
  background: 0;
  border: 1px solid transparent;
  outline: none;
  height: 20px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 20px;
  list-style: none;
  padding: 2px 10px;
  cursor: default;
  text-align: left;
}
.x-spreadsheet-item.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.x-spreadsheet-item:hover,
.x-spreadsheet-item.active {
  background: rgba(0, 0, 0, 0.05);
}
.x-spreadsheet-item.divider {
  height: 0;
  padding: 0;
  margin: 2px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.x-spreadsheet-item .label {
  float: right;
  opacity: 0.65;
  font-size: 1em;
}
.x-spreadsheet-item.state,
.x-spreadsheet-header.state {
  padding-left: 35px !important;
  position: relative;
}
.x-spreadsheet-item.state:before,
.x-spreadsheet-header.state:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  left: 12px;
  top: calc(50% - 5px);
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
}
.x-spreadsheet-item.state.checked:before,
.x-spreadsheet-header.state.checked:before {
  background: #4b89ff;
}
.x-spreadsheet-checkbox {
  position: relative;
  display: inline-block;
  backface-visibility: hidden;
  outline: 0;
  vertical-align: baseline;
  font-style: normal;
  font-size: 1rem;
  line-height: 1em;
}
.x-spreadsheet-checkbox > input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0 !important;
  outline: 0;
  z-index: -1;
}
.x-spreadsheet-suggest,
.x-spreadsheet-contextmenu,
.x-spreadsheet-sort-filter {
  position: absolute;
  box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
  background: #fff;
  z-index: 100;
  width: 200px;
  pointer-events: auto;
  overflow: auto;
}
.x-spreadsheet-resizer-lenwid {
  position: absolute;
  box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
  background: #fff;
  z-index: 100;
  pointer-events: auto;
  overflow: auto;
}
.x-spreadsheet-suggest {
  position: absolute;
  width: 200px;
  max-height: 500px;
  overflow: scroll;
  margin-top: 30px;
}
.x-spreadsheet-suggest .x-spreadsheet-item {
  white-space: nowrap;
}
.x-spreadsheet-filter {
  border: 1px solid #e9e9e9;
  font-size: 12px;
  margin: 10px;
}
.x-spreadsheet-filter .x-spreadsheet-header {
  padding: 0.5em 0.75em;
  background: #f8f8f9;
  border-bottom: 1px solid #e9e9e9;
  border-left: 1px solid transparent;
}
.x-spreadsheet-filter .x-spreadsheet-body {
  height: 200px;
  overflow-y: auto;
}
.x-spreadsheet-filter .x-spreadsheet-body .x-spreadsheet-item {
  height: 20px;
  line-height: 20px;
}
.x-spreadsheet-sort-filter .x-spreadsheet-buttons {
  margin: 10px;
}
.x-spreadsheet-toolbar,
.x-spreadsheet-bottombar {
  height: 40px;
  padding: 0 30px;
  text-align: left;
  background: #f5f6f7;
  display: flex;
}
.x-spreadsheet-bottombar {
  border-top: 1px solid #e0e2e4;
}
.x-spreadsheet-toolbar {
  border-bottom: 1px solid #e0e2e4;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btns {
  display: inline-flex;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-more {
  padding: 0 6px 6px;
  text-align: left;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-more .x-spreadsheet-toolbar-divider {
  margin-top: 0;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn {
  flex: 0 0 auto;
  display: inline-block;
  border: 1px solid transparent;
  height: 26px;
  line-height: 26px;
  min-width: 26px;
  margin: 6px 1px 0;
  padding: 0;
  text-align: center;
  border-radius: 2px;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn:hover,
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn.active {
  background: rgba(0, 0, 0, 0.08);
}
.x-spreadsheet-toolbar-divider {
  display: inline-block;
  border-right: 1px solid #e0e2e4;
  width: 0;
  vertical-align: middle;
  height: 18px;
  margin: 12px 3px 0;
}
.x-spreadsheet-calendar {
  color: rgba(0, 0, 0, 0.65);
  background: #ffffff;
  user-select: none;
}
.x-spreadsheet-calendar .calendar-header {
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  width: 100%;
  float: left;
  background: #f9fafb;
}
.x-spreadsheet-calendar .calendar-header .calendar-header-left {
  padding-left: 5px;
  float: left;
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right {
  float: right;
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right a {
  padding: 3px 0;
  margin-right: 2px;
  border-radius: 2px;
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right a:hover {
  background: rgba(0, 0, 0, 0.08);
}
.x-spreadsheet-calendar .calendar-body {
  border-collapse: collapse;
  border-spacing: 0;
}
.x-spreadsheet-calendar .calendar-body th,
.x-spreadsheet-calendar .calendar-body td {
  width: 14.28571429%;
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  line-height: 30px;
  padding: 0;
}
.x-spreadsheet-calendar .calendar-body td > .cell:hover {
  background: #ecf6fd;
}
.x-spreadsheet-calendar .calendar-body td > .cell.active,
.x-spreadsheet-calendar .calendar-body td > .cell.active:hover {
  background: #ecf6fd;
  color: #2185D0;
}
.x-spreadsheet-calendar .calendar-body td > .cell.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.x-spreadsheet-datepicker {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  z-index: 10;
  width: auto;
}
.x-spreadsheet-buttons-tab {
  display: flex;
  justify-content: flex-start;
}
.x-spreadsheet-buttons-tab .x-spreadsheet-button {
  margin-right: 8px;
  margin-bottom: 5px;
  margin-top: -5px;
  padding: 0.5em 0.5em;
}
.x-spreadsheet-buttons {
  display: flex;
  justify-content: flex-end;
}
.x-spreadsheet-buttons .x-spreadsheet-button {
  margin-left: 8px;
}
.x-spreadsheet-button {
  display: inline-block;
  border-radius: 3px;
  line-height: 1em;
  min-height: 1em;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  padding: 0.75em 1em;
  color: rgba(0, 0, 0, 0.6);
  background: #E0E1E2;
  text-decoration: none;
  font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
  outline: none;
  vertical-align: baseline;
  zoom: 1;
  user-select: none;
  transition: all 0.1s linear;
}
.x-spreadsheet-button.active,
.x-spreadsheet-button:hover {
  background-color: #C0C1C2;
  color: rgba(0, 0, 0, 0.8);
}
.x-spreadsheet-button.primary {
  color: #fff;
  background-color: #2185D0;
}
.x-spreadsheet-button.primary:hover,
.x-spreadsheet-button.primary.active {
  color: #fff;
  background-color: #1678c2;
}
.x-spreadsheet-button.selected {
  background-color: #C0C1C2;
  color: rgba(0, 0, 0, 0.8);
}
.x-spreadsheet-form-input {
  font-size: 1em;
  position: relative;
  font-weight: 400;
  display: inline-flex;
  color: rgba(0, 0, 0, 0.87);
}
.x-spreadsheet-form-input input {
  z-index: 1;
  margin: 0;
  max-width: 100%;
  flex: 1 0 auto;
  outline: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  text-align: left;
  line-height: 30px;
  height: 30px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  transition: box-shadow 0.1s ease, border-color 0.1s ease;
  box-shadow: inset 0 1px 2px hsla(0, 0%, 4%, 0.06);
}
.x-spreadsheet-form-input input:focus {
  border-color: #4b89ff;
  box-shadow: inset 0 1px 2px rgba(75, 137, 255, 0.2);
}
.x-spreadsheet-form-input-top {
  vertical-align: top;
}
.x-spreadsheet-form-textarea {
  font-size: 1em;
  position: relative;
  font-weight: 400;
  display: inline-flex;
  color: rgba(0, 0, 0, 0.87);
}
.x-spreadsheet-form-textarea textarea {
  z-index: 1;
  margin: 0;
  max-width: 100%;
  flex: 1 0 auto;
  outline: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  text-align: left;
  padding: 2 5px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  transition: box-shadow 0.1s ease, border-color 0.1s ease;
  box-shadow: inset 0 1px 2px hsla(0, 0%, 4%, 0.06);
  height: 100px;
  line-height: 18px;
}
.x-spreadsheet-form-textarea textarea:focus {
  border-color: #4b89ff;
  box-shadow: inset 0 1px 2px rgba(75, 137, 255, 0.2);
}
.x-spreadsheet-form-select {
  position: relative;
  display: inline-flex;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.87);
  user-select: none;
  box-shadow: inset 0 1px 2px hsla(0, 0%, 4%, 0.06);
}
.x-spreadsheet-form-select .input-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 60px;
  width: auto;
  height: 30px;
  line-height: 30px;
  padding: 0 8px;
}
.x-spreadsheet-form-radio {
  padding: 5px 0;
  font-size: 1em;
  position: relative;
  font-weight: 400;
  display: inline;
  color: rgba(0, 0, 0, 0.87);
}
.x-spreadsheet-form-radio input[type="radio"] {
  margin: 3px 5px 0 5px;
}
.x-spreadsheet-form-fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.x-spreadsheet-form-fields .x-spreadsheet-form-field {
  flex: 0 1 auto;
}
.x-spreadsheet-form-fields .x-spreadsheet-form-field .label {
  display: inline-block;
  margin: 0 10px 0 0;
}
.x-spreadsheet-form-field {
  display: block;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 5px;
}
.x-spreadsheet-form-field:first-child {
  margin-left: 0;
}
.x-spreadsheet-form-field.error .x-spreadsheet-form-select,
.x-spreadsheet-form-field.error textarea,
.x-spreadsheet-form-field.error input {
  border-color: #f04134;
}
.x-spreadsheet-form-field .tip {
  color: #f04134;
  font-size: 0.9em;
}
.x-spreadsheet-imgPreview {
  width: 70%;
  height: 180px;
  margin: 10px auto 0px auto;
  border: 1px #8c939d;
  text-align: center;
  margin-left: 90px;
}
.x-spreadsheet-imgPreview .icon {
  font-size: 28px;
  color: #8c939d;
  width: 178px;
  height: 178px;
  line-height: 178px;
  text-align: center;
}
.x-spreadsheet-imgPreview .icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  margin-left: -5px;
  margin-top: -5px;
  border-top: 2px solid;
  color: #8c939d;
}
.x-spreadsheet-imgPreview .icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 30px;
  margin-left: 10px;
  margin-top: -20px;
  border-left: 2px solid;
  color: #8c939d;
}
.x-spreadsheet-imgPreview .icon:hover {
  color: blue;
}
.x-spreadsheet-imgPreview .prompt {
  height: 180px;
  border: 1px dashed #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.x-spreadsheet-imgPreview .imgSpan {
  position: absolute;
  top: 90px;
  left: 110px;
}
.x-spreadsheet-imgPreview .filepath {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.x-spreadsheet-imgPreview .img {
  height: 180px;
  width: 200px;
  display: none;
}
.x-spreadsheet-imgPreview .close {
  position: relative;
  width: 12px;
  height: 12px;
  display: none;
}
.x-spreadsheet-imgPreview .close:before,
.x-spreadsheet-imgPreview .close:after {
  position: absolute;
  left: 90px;
  content: ' ';
  height: 14px;
  width: 2px;
  background-color: #e0e2e4;
}
.x-spreadsheet-imgPreview .close:before {
  transform: rotate(45deg);
}
.x-spreadsheet-imgPreview .close:after {
  transform: rotate(-45deg);
}
.calculator {
  display: none;
  position: absolute;
  top: 0%;
  left: 101%;
  font-size: 13px;
  z-index: 1001;
  text-align: left;
  line-height: 1.25em;
  min-width: 550px;
  color: rgba(0, 0, 0, 0.87);
  font-family: 'Lato', 'Source Sans Pro', Roboto, Helvetica, Arial, sans-serif;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}
.calculator-header {
  border-bottom: 1px solid #e0e2e4;
  background: rgba(0, 0, 0, 0.08);
  font-size: 1.0785em;
  height: 16px;
  padding: 10px;
}
.calculator-header .x-spreadsheet-icon {
  position: absolute;
  right: 0.8em;
  top: 0.65em;
  border-radius: 18px;
}
.calculator-header .x-spreadsheet-icon .x-spreadsheet-icon-img.close {
  left: -234px;
  top: -36px;
}
.calculator-content {
  padding: 0 1em;
  font-size: 13px;
  height: 300px;
  overflow-y: auto;
}
.calculator-bottom {
  width: 97%;
  height: 30px;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
}
.calculator-button {
  margin-left: 8px;
}
.calculator div {
  clear: both;
}
.calcu-btn {
  display: block;
}
.calcu-param {
  display: block;
  padding: 0px;
  height: 30px;
}
.calculator ul {
  width: 250px;
  overflow: hidden;
  display: inline-block;
  padding: 0;
  margin-top: 5px;
}
.calculator li {
  list-style: none;
  float: left;
  width: 18%;
  margin: 0.5%;
  display: inline;
  line-height: 25px;
  font-size: 15px;
  text-align: center;
  background: #eaeaea;
  padding: 2.28%;
  border: #e6d8d8 1px solid;
}
.calculator li.big {
  width: 25%;
}
.calculator li.large {
  width: 42%;
}
.calculator li.tool {
  background: #738FD8;
}
.calculator li.D06A15 {
  background-color: #D06A15;
}
.calculator li:hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.calculator li:active {
  background-color: #fc0;
  cursor: pointer;
}
.calculator li.tool:active {
  background-color: #d8e8ff;
  cursor: pointer;
}
.calcu-head {
  text-align: left;
  padding: 10px 15px 5px;
}
.screen {
  width: 97%;
  height: 50px;
  line-height: 42px;
  border: #e6e6e6 1px solid;
  border-bottom: #f2f2f2 1px solid;
  border-right: #f2f2f2 1px solid;
  margin: 10px auto 0px;
  font-size: 20px;
  color: #999;
  direction: ltr;
  padding: 7px;
}
.calcu-bottom {
  display: flex;
  justify-content: flex-end;
}
.calcu-bottom div {
  display: inline-block;
  border-radius: 3px;
  line-height: 1em;
  min-height: 1em;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  padding: 0.75em 1em;
  color: rgba(0, 0, 0, 0.6);
  background: #E0E1E2;
  text-decoration: none;
  font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
  outline: none;
  vertical-align: baseline;
  zoom: 1;
  user-select: none;
  transition: all 0.1s linear;
  margin-left: 8px;
}
.expression {
  display: none;
  position: absolute;
  top: 0%;
  left: 101%;
  font-size: 13px;
  z-index: 1001;
  text-align: left;
  line-height: 1.25em;
  min-width: 550px;
  color: rgba(0, 0, 0, 0.87);
  font-family: 'Lato', 'Source Sans Pro', Roboto, Helvetica, Arial, sans-serif;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}
.expression-header {
  border-bottom: 1px solid #e0e2e4;
  background: rgba(0, 0, 0, 0.08);
  font-size: 1.0785em;
  height: 16px;
  padding: 10px;
}
.expression-header .x-spreadsheet-icon {
  position: absolute;
  right: 0.8em;
  top: 0.65em;
  border-radius: 18px;
}
.expression-header .x-spreadsheet-icon .x-spreadsheet-icon-img.close {
  left: -234px;
  top: -36px;
}
.expression-content {
  padding: 0.75em 1em;
  font-size: 13px;
  height: 480px;
  overflow-y: auto;
}
.expression-content .param {
  height: 30px;
  border-width: 1px;
  border-color: #a9a9a9;
  border-image: initial;
}
.expression-content td {
  height: 30px;
  width: 120px;
  text-align: center;
}
.expression-table {
  width: 100%;
  border: 1px solid #a9a9a9;
}
.expression-table td {
  border: 1px solid #a9a9a9;
  height: 30px;
}
.expression-table .x-spreadsheet-form-field {
  margin-bottom: 0;
}
.expression-bottom {
  width: 97%;
  height: 30px;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
}
.expression-button {
  margin-left: 8px;
}
.expression-table {
  width: 100%;
  height: auto;
  overflow-y: auto;
}
.mapping {
  display: none;
  position: absolute;
  top: 0%;
  left: 101%;
  font-size: 13px;
  z-index: 1001;
  text-align: left;
  line-height: 1.25em;
  min-width: 530px;
  color: rgba(0, 0, 0, 0.87);
  font-family: 'Lato', 'Source Sans Pro', Roboto, Helvetica, Arial, sans-serif;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}
.mapping_modal {
  display: none;
  top: 0%;
  left: 101%;
  font-size: 13px;
  z-index: 1001;
  text-align: left;
  line-height: 1.25em;
  min-width: 530px;
  color: rgba(0, 0, 0, 0.87);
  font-family: 'Lato', 'Source Sans Pro', Roboto, Helvetica, Arial, sans-serif;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}
.mapping-header {
  border-bottom: 1px solid #e0e2e4;
  background: rgba(0, 0, 0, 0.08);
  font-size: 1.0785em;
  height: 16px;
  padding: 10px;
}
.mapping-header .x-spreadsheet-icon {
  position: absolute;
  right: 0.8em;
  top: 0.65em;
  border-radius: 18px;
}
.mapping-header .x-spreadsheet-icon .x-spreadsheet-icon-img.close {
  left: -234px;
  top: -36px;
}
.mapping-content {
  padding: 0.75em 1em;
}
.mapping-content td {
  height: 30px;
  width: 120px;
  text-align: center;
}
.mapping-content .border {
  height: 33px;
  border-width: 1px;
  border-color: #a9a9a9;
  border-image: initial;
}
.mapping-content .ck {
  height: 33px;
  border: 1px solid #a9a9a9;
}
.mapping-ck {
  width: 97%;
  height: 30px;
  padding: 0 0 0 10px;
  display: flex;
  justify-content: flex-start;
}
.mapping-select {
  width: 97%;
  height: 30px;
  padding: 10px;
}
.mapping-bottom {
  width: 97%;
  height: 30px;
  padding: 10px;
  display: flex;
  justify-content: flex-end;
}
.mapping-button {
  margin-left: 8px;
}
.mapping-table {
  width: 100%;
  border: 1px solid #a9a9a9;
}
.mapping-table td {
  border: 1px solid #a9a9a9;
  height: 30px;
}
.mapping-table .x-spreadsheet-form-field {
  margin-bottom: 0;
}
.mapping-table .x-spreadsheet-form-select {
  margin-left: 1px;
}
.mapping .x-spreadsheet-form-input input {
  box-shadow: none;
}
.mapping_modal .x-spreadsheet-form-input input {
  box-shadow: none;
}
.bd {
  border: 1px solid #a9a9a9;
}
.mt-5 {
  margin-top: 5px;
}
.t-a-center {
  text-align: center;
}
.h-30 {
  height: 30px;
}
.x-spreadsheet-dimmer {
  display: none;
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  transition: background-color 0.5s linear;
  user-select: none;
  z-index: 1000;
}
.x-spreadsheet-dimmer.active {
  display: block;
  opacity: 1;
}
.x-spreadsheet-modal,
.x-spreadsheet-toast {
  font-size: 13px;
  position: fixed;
  z-index: 1001;
  text-align: left;
  line-height: 1.25em;
  min-width: 360px;
  color: rgba(0, 0, 0, 0.87);
  font-family: 'Lato', 'Source Sans Pro', Roboto, Helvetica, Arial, sans-serif;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}
.x-spreadsheet-toast {
  background-color: rgba(255, 255, 255, 0.85);
}
.x-spreadsheet-modal-header,
.x-spreadsheet-toast-header {
  font-weight: 600;
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px 4px 0 0;
}
.x-spreadsheet-modal-header .x-spreadsheet-icon,
.x-spreadsheet-toast-header .x-spreadsheet-icon {
  position: absolute;
  right: 0.8em;
  top: 0.65em;
  border-radius: 18px;
}
.x-spreadsheet-modal-header .x-spreadsheet-icon:hover,
.x-spreadsheet-toast-header .x-spreadsheet-icon:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.08);
}
.x-spreadsheet-toast-header {
  color: #F2711C;
}
.x-spreadsheet-modal-header {
  border-bottom: 1px solid #e0e2e4;
  background: rgba(0, 0, 0, 0.08);
  font-size: 1.0785em;
}
.x-spreadsheet-modal-header,
.x-spreadsheet-modal-content,
.x-spreadsheet-toast-header,
.x-spreadsheet-toast-content {
  padding: 0.75em 1em;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .x-spreadsheet-toolbar {
    display: none;
  }
}
.x-spreadsheet-icon {
  width: 18px;
  height: 18px;
  margin: 1px 1px 2px 1px;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img {
  background-image: url(d6ae8c4e5d2a92c50bf10583aad2d141.svg);
  position: absolute;
  width: 262px;
  height: 444px;
  opacity: 0.56;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.undo {
  left: 0;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.redo {
  left: -18px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.print {
  left: -36px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.paintformat {
  left: -54px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.clearformat {
  left: -72px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.bold {
  left: -90px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.italic {
  left: -108px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.underline {
  left: -126px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.strike {
  left: -144px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.text-color {
  left: -162px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.fill-color {
  left: -180px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.merge {
  left: -198px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-left {
  left: -216px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-center {
  left: -234px;
  top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-right {
  left: 0;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-top {
  left: -18px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-middle {
  left: -36px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-bottom {
  left: -54px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.textwrap {
  left: -72px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.autofilter {
  left: -90px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.formula {
  left: -108px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.arrow-down {
  left: -126px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.arrow-right {
  left: -144px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.link {
  left: -162px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chart {
  left: -180px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.freeze {
  left: -198px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.ellipsis {
  left: -216px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.add {
  left: -234px;
  top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-all {
  left: 0;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-inside {
  left: -18px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-horizontal {
  left: -36px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-vertical {
  left: -54px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-outside {
  left: -72px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-left {
  left: -90px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-top {
  left: -108px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-right {
  left: -126px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-bottom {
  left: -144px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-none {
  left: -162px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.line-color {
  left: -180px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.line-type {
  left: -198px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.close {
  left: -234px;
  top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-down {
  left: 0;
  top: -54px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-up {
  left: -18px;
  top: -54px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-left {
  left: -36px;
  top: -54px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-right {
  left: -54px;
  top: -54px;
}
.input-image {
  background: url(6eb1e85b2147ecbc263cbb9e40488212.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.inputnum-image {
  background: url(9a54bcb22c4da1c659dd3f02f95d4b38.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.radio-image {
  background: url(655df617047784264459d999145e6c2a.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.checkbox-image {
  background: url(3f36757eb2d6e83d0a60ba9a2643614e.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.checkboxgroup-image {
  background: url(541ff5c671db894a2a3e6e4a07643b24.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.time-image {
  background: url(638036e9760486962aed1c095f7ef0da.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.button-image {
  background: url(fd8be811de5712b0cf2e31177832cc83.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
  margin-top: -1px;
}
.select-image {
  background: url(b0a07e435bd05454ecc2cba24dde1c42.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.textarea-image {
  background: url(aef07efca44193f67b580403ffd87d4f.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.approve-image {
  background: url(7f48e99b70b3a3de440bb7b34addb683.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.sn-image {
  background: url(c68d6d1bb991b6ec70c873c948687e39.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.label-image {
  background: url(4e626c0fe0c26240ad1f44331dc292d2.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.qrcode-image {
  background: url(3f46f7558a88789e8ff2f5e0a54225ec.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.upload-image {
  background: url(5e1cb77bfd49aeefc8a983c1a1b68e4a.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.image-image {
  background: url(a0264a3db95236457eadd477deedb32b.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.repeat-image {
  background: url(2facfbc47257f0881c8680e7a3df9729.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.data-image {
  background: url(af00964a7bcb97b60ddbbbd50e078a1b.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.docword-image {
  background: url(b861bc703e9868bc0e6728e697768317.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.depselect-image {
  background: url(44ed3af1968dffd52b4db1f5492ec308.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.selectuser-image {
  background: url(3e33af53418145bdc1a77b3c501736ca.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.pagebreak-image {
  background: url(279b90c6c8f3bf9f49c3e1ca8441d166.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.flowapprovelist-image {
  background: url(0dbca2c026a63dfc14182c435446972c.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.htmltext-image {
  background: url(c9434e1fea077eed3fd958b24754ecc2.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.textlink-image {
  background: url(5f2aed30ab03ab1bce26ae277ee25501.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.launchform-image {
  background: url(51e3d62154829a437b284b0e0391c71c.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.inputnumdisplay-image {
  background: url(9a54bcb22c4da1c659dd3f02f95d4b38.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.modedict-image {
  background: url(01fc3b6509f20795c66fa896844e4414.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
.flowatt-image {
  background: url(21a2b7275857f3ec383252f5a4926b7c.png) no-repeat;
  width: 95px;
  height: 38px;
  float: left;
}
@font-face {
  font-family: '\65B9\6B63\4EFF\5B8B_GBK';
  src: url(fe87b189ae9a5286a1e1b361060d791d.ttf);
}
@font-face {
  font-family: '\65B9\6B63\9ED1\4F53_GBK';
  src: url(a2a3775b2c5afd564d09a0915a6c7029.ttf);
}
@font-face {
  font-family: '\65B9\6B63\6977\4F53_GBK';
  src: url(6d868a8f92f5a14f0ebed2f01357b51b.ttf);
}
@font-face {
  font-family: '\65B9\6B63\5C0F\6807\5B8B_GBK';
  src: url(b09b84e8940c826ce6c6032f80ca5666.ttf);
}
@font-face {
  font-family: '\65B0\7F57\9A6C\5B57\4F53';
  src: url(b3c5da6b8efa11f500cae0ce5b01141c.ttf);
}
@font-face {
  font-family: '\534E\5EB7\7B80\6807\9898\5B8B';
  src: url(372df58cf2f32acf60f5bc46162eda28.ttf);
}


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