@charset "UTF-8";
/**
 * Reset
 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizelegibility;
}

article,
aside,
blockquote,
body,
button,
code,
dd,
details,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
input,
legend,
li,
menu,
nav,
ol,
p,
pre,
section,
td,
textarea,
th,
ul,
div {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
button,
input,
select,
textarea {
  color: #333;
  font: normal 14px/1.15 PingFang SC, -apple-system, STHeitiSC-Light, 'Microsoft Yahei', 'Hiragino Sans GB', Arial, sans-serif;
}

body {
  background: #efefef;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 400;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

a,
button,
input,
select,
textarea,
label {
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: #0d57ce;
}

input,
textarea,
button {
  outline: 0;
}

input,
textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/**
 *
 * @Date.css
 * @author xinxuzhang
 * @create 15-07-03
 *
**/
::-webkit-clear-button,
::-webkit-inner-spin-button,
::-webkit-calendar-picker-indicator {
  display: none;
}

[type='date']::-webkit-datetime-edit-text {
  color: transparent;
  background: linear-gradient(to bottom, transparent 9px, #4c5161 9px, #4c5161 10px, transparent 10px) no-repeat center;
  background-size: 80% 100%;
}

::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-ampm-field {
  background: none;
  color: #4c5161;
}

:valid::-webkit-datetime-edit {
  visibility: hidden;
}

.ui-date-input,
.ui-year-input,
.ui-month-input,
.ui-time-input,
.ui-date-range-input,
.ui-month-range-input {
  position: relative;
  cursor: pointer;
}

.ui-date-input > input,
.ui-year-input > input,
.ui-month-input > input,
.ui-time-input > input,
.ui-hour-input > input,
.ui-date-range-input > input,
.ui-month-range-input > input {
  font-family: inherit;
  padding-right: 33px;
  cursor: pointer;
}

.ui-input.hover > input[readonly] {
  border-color: #ababaf;
}

.ui-input:active > input[readonly] {
  background-color: #f7f9fa;
}

span.ui-date-input > input {
  width: 135px;
}

div.ui-date-input {
  width: 180px;
}

span.ui-year-input > input,
span.ui-time-input > input {
  width: 55px;
}

div.ui-year-input,
div.ui-time-input {
  width: 100px;
}

span.ui-month-input > input {
  width: 75px;
}

div.ui-month-input {
  width: 120px;
}

span.ui-date-range-input > input {
  width: 195px;
}

div.ui-date-range-input {
  width: 240px;
}

span.ui-month-range-input > input {
  width: 150px;
}

div.ui-month-range-input {
  width: 195px;
}

/* Chrome-window/iOS 月份日期控件会根据系统添加中文描述，宽度不定，因此，宽度使用自动宽度 */
@supports (-webkit-appearance: none) {
  span.ui-time-input > input[type='time'],
  span.ui-month-input > input[type='month'] {
    width: auto;
  }
  div.ui-time-input {
    width: 117px;
  }
  div.ui-month-input {
    width: 130px;
  }
}

/* IE7 */
@media screen\9 {
  span.ui-date-input,
  span.ui-year-input,
  span.ui-month-input,
  span.ui-time-input,
  span.ui-date-range-input,
  span.ui-month-range-input {
    padding-right: 35px;
  }
}

.ui-date-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 7px;
  top: 10px;
  cursor: pointer;
}

/* 选择浮层 */
.ui-date-container {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  border: 1px solid #d0d0d5;
  border: 0 transparent;
  border-radius: 4px;
  font-size: 14px;
  -webkit-animation: fadeIn 0.2s;
  animation: fadeIn 0.2s;
  z-index: 9;
}

.ui-date-container a {
  text-decoration: none;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.ui-date-head {
  padding: 5px 0 0;
  overflow: hidden;
}

.ui-date-half {
  width: 50%;
  float: left;
}

.ui-date-prev,
.ui-date-next {
  width: 35px;
  height: 30px;
  background: url(images/Date/icons-prev-next.png) no-repeat 50% 0;
  background: none, none;
  text-align: center;
  color: #b6bbc6;
  fill: currentColor;
}

.ui-date-prev {
  background-position: 50% -90px;
}

a.ui-date-prev:hover {
  background-position: 50% -150px;
  color: #0d57ce;
}

span.ui-date-prev {
  background-position: 50% -120px;
  color: #ccd0d7;
}

a.ui-date-next:hover {
  background-position: 50% -60px;
  color: #0d57ce;
}

span.ui-date-next {
  background-position: 50% -30px;
  color: #ccd0d7;
}

.ui-date-prev > svg,
.ui-date-next > svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: 5px auto 0;
}

.ui-date-next > svg {
  -webkit-transform: rotate(180deg) translateZ(0);
  -ms-transform: rotate(180deg) translateZ(0);
  transform: rotate(180deg) translateZ(0);
}

.ui-date-prev {
  float: left;
}

.ui-date-next {
  float: right;
}

.ui-date-switch {
  display: block;
  line-height: 30px;
  margin: 0 35px;
  border-radius: 2px;
  color: #4c5161;
  text-align: center;
}

a.ui-date-switch:hover,
a.ui-date-item:hover {
  color: #4c5161;
  background-color: #f0f0f2;
}

.ui-minute-x,
.ui-hour-x,
.ui-year-x,
.ui-month-x,
.ui-date-x {
  width: 225px;
}

.ui-minute-body {
  padding-left: 12px;
  padding-bottom: 12px;
}

.ui-hour-body {
  padding: 8px 0 12px 12px;
}

.ui-year-body,
.ui-month-body,
.ui-date-body {
  padding-left: 5px;
  padding-right: 2px;
}

.ui-date-item {
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  font-size: 13px;
  color: #4c5161;
}

span.ui-date-item {
  color: #ccd0d7;
}

.ui-minute-body .ui-date-item,
.ui-hour-body .ui-date-item {
  width: 45px;
  line-height: 26px;
  margin-top: 4px;
  margin-right: 7px;
}

.ui-year-body .ui-date-item,
.ui-month-body .ui-date-item {
  width: 45px;
  line-height: 54px;
  margin-top: 5px;
  margin-left: 7px;
}

.ui-date-now {
  display: block;
  line-height: 30px;
  margin: 5px;
  text-align: center;
}

.ui-day-x {
  padding: 0 2px 0 5px;
  text-align: center;
}

.ui-day-item,
.ui-date-body .ui-date-item {
  display: inline-block;
  width: 28px;
  line-height: 28px;
  margin-right: 3px;
  margin-top: 1px;
  vertical-align: top;
}

.ui-range-x {
  width: 458px;
}

.ui-range-body {
  overflow: hidden;
}

.ui-range-body .ui-date-half + .ui-date-half {
  border-left: 1px solid #f0f0f2;
  margin-left: -1px;
}

.ui-range-footer {
  padding: 5px 15px 15px;
  text-align: right;
}

.ui-range-footer > .ui-button {
  border-radius: 2px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-left: 10px;
}

.ui-date-container .selected,
.ui-date-container .selected:hover {
  background-color: #0d57ce;
  color: #fff;
  cursor: default;
}

.ui-date-container span.selected {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.ui-range-body .ui-date-half {
  width: 229px;
}

.ui-range-body .ui-date-body {
  padding-left: 6px;
  padding-right: 0;
}

.ui-range-body .ui-month-body {
  margin-bottom: 15px;
}

.ui-range-date-body .selected {
  width: 26px;
  line-height: 26px;
  border: 1px solid #0d57ce;
  border-right-width: 4px;
  margin-right: 0;
  border-radius: 0;
}

.ui-range-body .selected.col0 {
  margin-left: -6px;
  border-left-width: 7px;
}

.ui-range-body .selected.col6 {
  border-right-width: 10px;
}

.ui-range-body .selected.ui-date-first:not(.col0) {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.ui-range-body .selected.ui-date-last:not(.col6) {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.ui-range-body .ui-date-begin,
.ui-range-body .ui-date-end {
  border-radius: 0;
  width: 26px;
  background-color: #fff;
  color: #4c5161;
}

.ui-range-body .ui-date-begin {
  border-right-width: 4px;
  border-left-width: 1px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.ui-range-body .ui-date-end {
  margin-right: 3px;
  border-right-width: 1px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.ui-range-body .ui-date-begin:hover,
.ui-range-body .ui-date-end:hover {
  background-color: #fff;
  color: #4c5161;
}

.ui-range-body .ui-date-begin.col6 {
  border-right-width: 0;
  padding-right: 9px;
}

.ui-range-body .ui-date-begin.col0 {
  border-left-width: 1px;
  margin-left: 0;
}

.ui-range-body .ui-date-end.col0 {
  border-left-width: 0;
  padding-left: 7px;
}

.ui-range-body .ui-date-end.col6 {
  border-right-width: 1px;
}

.ui-range-body .ui-date-begin.ui-date-end {
  margin-right: 3px;
  padding: 0;
  border: 1px solid #0d57ce;
  border-radius: 2px;
}

.ui-range-body .ui-date-begin + .ui-date-end {
  border-left-width: 1px;
  margin-right: 3px;
}

/**
 *
 * @Tips.css
 * @author xinxuzhang
 * @create 15-06-25
 *
**/
.ui-tips[data-title] {
  text-indent: 0;
  position: relative;
  overflow: visible;
}

.ui-tips[data-title]::before,
.ui-tips[data-title]::after {
  position: absolute;
  left: 50%;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden;
}

.ui-tips[data-title]::before {
  content: attr(data-title);
  top: -42px;
  max-width: 250px;
  padding: 6px 10px;
  line-height: 18px;
  border-radius: 3px;
  background-color: #373c42;
  text-align: left;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.ui-tips[data-title]::after {
  content: '';
  width: 0;
  height: 0;
  overflow: hidden;
  border: 6px solid transparent;
  border-top-color: #373c42;
  top: -12px;
}

.ui-tips[data-title]:hover::before,
.ui-tips[data-title]:hover::after,
.ui-tips[data-title]:focus::before,
.ui-tips[data-title]:focus::after {
  -webkit-transition: visibility .1s .1s;
  transition: visibility .1s .1s;
  visibility: visible;
}

.ui-tips[data-title]:hover {
  outline: none;
}

/* 朝下的情况 */
.reverse.ui-tips[data-title]::before {
  top: auto;
  bottom: -42px;
}

.reverse.ui-tips[data-title]::after {
  border-color: transparent transparent #373c42;
  top: auto;
  bottom: -12px;
}

/* 下面是 IE7 IE8 玩耍的代码 */
.ui-tips .ui-tips-before,
.ui-tips .ui-tips-after {
  display: none;
  position: absolute;
  left: 50%;
  white-space: nowrap;
}

.ui-tips-before {
  top: -42px;
  max-width: 250px;
  padding: 6px 10px;
  line-height: 18px;
  border-radius: 3px;
  background-color: #373c42;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  text-align: left;
}

.ui-tips-after {
  width: 0;
  height: 0;
  overflow: hidden;
  border: 6px solid transparent;
  border-top-color: #373c42;
  top: -12px;
}

.ui-tips:hover .ui-tips-before,
.ui-tips:hover .ui-tips-after,
.ui-tips:focus .ui-tips-before,
.ui-tips:focus .ui-tips-after {
  display: block;
}

/* 下面是JS创建的tips效果 */
.ui-tips-x {
  text-align: center;
  position: absolute;
  z-index: 99;
}

.ui-tips-x .ui-tips-before {
  display: block;
}

.ui-tips-x .ui-tips-after {
  display: block;
  *display: inline-block;
  margin: auto;
  position: relative;
  top: 0;
  left: 0;
}

/* 右侧展示的tips效果 */
.ui-tips-rotate {
  margin-left: 10px;
}

.ui-tips-rotate .ui-tips-before {
  max-width: 600px;
}

.ui-tips-rotate .ui-tips-after {
  border-color: transparent #373c42 transparent transparent;
  position: absolute;
  left: -12px;
  top: 50%;
  margin-top: -6px;
}

/* 朝下展示的tips效果 */
.ui-tips-reverse {
  margin-top: 10px;
}

.ui-tips-reverse .ui-tips-after {
  position: absolute;
  border-color: transparent transparent #373c42;
  top: -12px;
  left: 50%;
  margin-left: -6px;
}

/* 错误提示的tips效果 */
.ui-tips-error:not(.none) {
  -webkit-animation: fadeIn .2s, falldown .2s;
  animation: fadeIn .2s, falldown .2s;
}

.ui-tips-error .ui-tips-before {
  background-color: white;
  color: #f4615c;
  font-size: 13px;
  padding: 4px 0 0 0;
}

.ui-tips-error .ui-tips-after {
  border-top-color: #f4615c;
}

/**
 * ┏━━━━━━━━━━━━━━━┓
 * ┃   Variable    ┃
 * ┗━━━━━━━━━━━━━━━┛
 */
/**
 * ┏━━━━━━━━━━━━━━━┓
 * ┃     Mixin     ┃
 * ┗━━━━━━━━━━━━━━━┛
 */
/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃         Flex         ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.flex, .flex-dc, .flex-dcr, .flex-dr, .flex-drr, .flex-fw, .flex-jce, .flex-jcs, .flex-jcc, .flex-jcb, .flex-jca, .flex-aie, .flex-aic, .input-group, .input-label,
.select-label,
.radio,
.textarea, .cell, .flex-ais, .flex-center {
  display: flex;
}

/* flex-direction */
.dc, .flex-dc {
  flex-direction: column;
}

.flex-dc::-webkit-scrollbar {
  width: 0px !important;
}

.dcr, .flex-dcr {
  flex-direction: column-reverse;
}

.dr, .flex-dr {
  flex-direction: row;
}

.drr, .flex-drr {
  flex-direction: row-reverse;
}

/* flex-wrap */
.fw, .flex-fw {
  -ms-flex-wrap: wrap;
  -webkit-box-lines: multiple;
  flex-wrap: wrap;
}

.jce, .flex-jce {
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.jcs, .flex-jcs {
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.jcc, .flex-jcc, .flex-center {
  -webkit-box-pack: center;
  justify-content: center;
}

.jcb, .flex-jcb {
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.jca, .flex-jca {
  -webkit-box-pack: justify;
  justify-content: space-around;
}

.aie, .flex-aie {
  -webkit-box-align: end;
  align-items: flex-end;
}

.aic, .flex-aic, .input-group, .input-label,
.select-label,
.radio,
.textarea, .cell, .flex-center {
  -webkit-box-align: center;
  align-items: center;
}

.ais, .flex-ais {
  align-items: flex-start;
}

.flex1 {
  flex: 1;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃       Button         ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.btn {
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  opacity: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: box-shadow, border, opacity;
}

.btn:hover {
  opacity: 0.9;
}

.btn:focus {
  box-shadow: 0 0 0 2px rgba(13, 87, 206, 0.2);
}

.btn > i {
  font-size: 20px;
  vertical-align: -3px;
}

.btn.small {
  height: 32px;
}

.btn.is-shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn.is-shadow:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn.is-shadow:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.btn.is-outline {
  border: 1px solid #e0e0e0;
  color: #424242;
  background: #fff;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: background, color, opacity;
}

.btn.is-outline:hover {
  border: 1px solid #0d57ce;
  color: #0d57ce;
}

.btn.is-primary-outline {
  border: 1px solid #0d57ce;
  color: #0d57ce;
  background: #fff;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: background, color, opacity;
}

.btn.is-primary-outline:hover {
  background: #0d57ce;
  color: #fff;
}

.btn.has-icon i {
  margin-right: 10px;
  vertical-align: -3px;
  font-size: 20px;
  color: #0d57ce;
}

.btn.btn-primary {
  background: #0d57ce;
  color: #fff;
}

.btn.is-block {
  width: 100%;
}

.btn.disable {
  background-color: white;
  color: #bdbdbd;
  border: 1px solid #bdbdbd;
}

.btn.disable:hover {
  background: white;
  color: #bdbdbd;
}

.btn:disabled {
  background-color: white;
  color: #bdbdbd;
  border: 1px solid #bdbdbd;
}

.btn:disabled:hover {
  background: white;
  color: #bdbdbd;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃       Input          ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.input-group {
  margin-bottom: 10px;
}

.input-label > span,
.select-label > span,
.radio > span,
.textarea > span {
  margin-right: 10px;
}

.input-label > .required > i,
.select-label > .required > i,
.radio > .required > i,
.textarea > .required > i {
  color: red;
  font-style: normal;
  margin-right: 5px;
}

.input-label > span {
  display: inline-block;
  margin-right: 10px;
  width: 60px;
}

.input-label > .required > i {
  color: red;
  font-style: normal;
  margin-right: 5px;
}

.input-label .has-icon {
  position: relative;
}

.input-label .has-icon > .iconfont {
  position: absolute;
  top: 8px;
  left: auto;
  right: 8px;
}

.input-label .has-icon.invoice > .iconfont {
  left: auto;
  right: 8px;
}

.input-label .date-range-margin {
  width: auto !important;
  margin: 0 .2vw;
}

.input-label input[type="text"],
.input-label input[type="password"],
.input-label input[type="date"],
.input-label input[type="date-range"],
.input-label input[type="email"],
.input-label input[type="url"],
.input-label select {
  height: 33px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 2px;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: border-color, box-shadow;
}

.input-label input[type="text"]:focus,
.input-label input[type="password"]:focus,
.input-label input[type="date"]:focus,
.input-label input[type="date-range"]:focus,
.input-label input[type="email"]:focus,
.input-label input[type="url"]:focus,
.input-label select:focus {
  border-color: #0d57ce;
  box-shadow: 0 0 0 2px rgba(13, 87, 206, 0.2);
}

.input-label input[type="text"]:disabled,
.input-label input[type="password"]:disabled,
.input-label input[type="date"]:disabled,
.input-label input[type="date-range"]:disabled,
.input-label input[type="email"]:disabled,
.input-label input[type="url"]:disabled,
.input-label select:disabled {
  background: #efefef;
  color: #666;
  cursor: not-allowed;
}

.input-label input[type="text"].error,
.input-label input[type="password"].error,
.input-label input[type="date"].error,
.input-label input[type="date-range"].error,
.input-label input[type="email"].error,
.input-label input[type="url"].error,
.input-label select.error {
  border-color: #f33713;
}

.select-label select {
  min-width: 100px;
  height: 33px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 2px;
  outline: 0;
  background: #fff;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: border-color, box-shadow;
}

.select-label select:focus {
  border-color: #0d57ce;
  box-shadow: 0 0 0 2px rgba(13, 87, 206, 0.2);
}

.select-label select:disabled {
  background: #efefef;
  color: #666;
  cursor: not-allowed;
}

.select-label select::-ms-expand {
  display: none;
}

.select-label select.error {
  border-color: #f33713;
}

.textarea.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.textarea.vertical textarea {
  margin-top: 15px;
}

.textarea textarea {
  height: 68px;
  width: 240px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  padding: 12px;
  border-radius: 2px;
  outline: 0;
  resize: none;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: border-color, box-shadow;
}

.textarea textarea:focus {
  border-color: #0d57ce;
  box-shadow: 0 0 0 2px rgba(13, 87, 206, 0.2);
}

.textarea textarea:disabled {
  background: #efefef;
  color: #666;
  cursor: not-allowed;
}

.textarea textarea.error {
  border-color: #f33713;
}

.radio .radio-group label {
  margin-right: 15px;
}

.radio .radio-group input[type="radio"],
.radio .radio-group input[type="checkbox"] {
  margin-right: 10px;
}

.radio .radio-group input[type="radio"]:disabled + span,
.radio .radio-group input[type="checkbox"]:disabled + span {
  color: #666;
  cursor: not-allowed;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃       Table          ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.table-wrap {
  background: #fff;
}

.table-wrap.center {
  text-align: center;
}

.table-wrap img {
  width: 192px;
  margin: 24px 0;
}

.table-wrap .invoice-tip {
  padding: 8px 24px;
  background-color: #eef3ff;
  border-radius: 2px;
  margin-bottom: 24px;
  color: #646464;
}

.table-wrap .invoice-tip .value {
  margin: 0 42px 0 16px;
}

.table-wrap .table {
  width: 100%;
}

.table-wrap .table thead tr th {
  color: #242424;
  font-weight: 500;
}

.table-wrap .table thead tr th img {
  width: 12px;
  margin: 0 0 0 8px;
  vertical-align: bottom;
}

.table-wrap .table th:first-child img {
  width: 14px;
  margin: 0 8px 0 0;
}

.table-wrap .table tr {
  height: 56px;
  border-bottom: 1px solid #e0e0e0;
}

.table-wrap .table tr.tc th,
.table-wrap .table tr.tc td {
  text-align: center;
}

.table-wrap .table tr.tl th,
.table-wrap .table tr.tl td {
  text-align: left;
}

.table-wrap .table tr.tr th,
.table-wrap .table tr.tr td {
  text-align: right;
}

.table-wrap .table th {
  background: #fafafa;
  text-align: center;
  padding: 10px;
  color: #666;
  font-size: 13px;
}

.table-wrap .table th input[type="checkbox"] {
  position: relative;
  width: 0px;
  opacity: 0;
}

.table-wrap .table td {
  padding: 20px 10px;
  text-align: center;
  font-size: 13px;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-property: background;
}

.table-wrap .table td a {
  margin-left: 15px;
}

.table-wrap .table td a:first-child {
  margin: 0;
}

.table-wrap .table td input[type="checkbox"] {
  position: relative;
  width: 0px;
  opacity: 0;
}

.table-wrap .table th .parimary-checkbox + label,
.table-wrap .table td .parimary-checkbox + label {
  display: block;
  width: 12px;
  height: 12px;
  cursor: pointer;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 1px;
  margin-right: 8px;
}

.table-wrap .table th .parimary-checkbox:checked + label,
.table-wrap .table td .parimary-checkbox:checked + label {
  background-color: #0d57ce;
}

.table-wrap .table th .parimary-checkbox:disabled + label,
.table-wrap .table td .parimary-checkbox:disabled + label {
  background-color: #e0e0e0;
  border-color: #bdbdbd;
}

.table-wrap .table th .parimary-checkbox:checked + label::before,
.table-wrap .table td .parimary-checkbox:checked + label::before {
  display: block;
  content: "";
  text-align: center;
  font-size: 14px;
  width: 4px;
  height: 8px;
  margin-top: 0px;
  margin-left: 4px;
  border-color: white;
  border-style: solid;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.primary-td {
  display: inline-block;
  max-width: 180px;
  color: #0d57ce;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

.primary-td:hover {
  height: auto;
  overflow: visible;
  white-space: normal;
  word-break: break-all;
}

.table-wrap .table.fixed-head {
  width: 18%;
  float: left;
  box-shadow: 5px 0 10px -5px rgba(0, 0, 0, 0.2);
}

.table-wrap .table.fixed-head td a {
  margin-left: 0;
}

.scroll-body {
  width: 67%;
  float: left;
  overflow: hidden;
  overflow-x: scroll;
}

.scroll-body .table {
  width: 1500px;
}

.scroll-body .table td {
  padding: 10px;
}

.scroll-body.no-tail {
  width: 80%;
}

.table-wrap .table.fixed-tail {
  width: 15%;
  float: left;
  box-shadow: -5px 0 10px -5px rgba(0, 0, 0, 0.2);
}

.table-wrap .table.scroll-table {
  overflow-y: scroll;
}

.table-wrap .table.scroll-table thead, .table-wrap .table.scroll-table tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.table-wrap .table.scroll-table tbody {
  display: block;
  max-height: 285px;
  width: 100%;
  overflow-y: scroll;
}

.w100{
  width: 100% !important;
}

.table-wrap .table.sign-hierarchy th, .table-wrap .table.sign-hierarchy td {
  text-align: left;
}

.table-wrap .table.sign-hierarchy td {
  padding: 10px;
}

.table-wrap .table.sign-hierarchy input {
  height: 30px;
  width: 120px;
}

.table-wrap .table.sign-hierarchy select {
  height: 32px;
  width: 290px;
  border-color: #e0e0e0;
  border-radius: 2px;
}

.table-wrap .table.sign-hierarchy button {
  height: 28px;
  width: 60px;
  padding: 0 15px;
  margin-right: 8px;
}

.page-nation {
  margin-top: 20px;
}

.page-nation li {
  height: 32px;
  line-height: 32px;
  min-width: 32px;
  margin: 0 5px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
}

.page-nation li.active {
  color: #0d57ce;
  border-color: #0d57ce;
}

.page-nation li a {
  display: block;
}

.page-nation li.goto {
  border: 0;
}

.page-nation li.goto-input {
  border: 0;
}

.page-nation li.goto-input input {
  width: 40px;
  padding: 0;
  text-align: center;
  margin: 0;
}

.page-nation li:hover, .page-nation li.active {
  color: #0d57ce;
  border-color: #0d57ce;
}

.cell {
  margin-top: 20px;
}

.cell-title {
  color: #666;
  width: 80px;
  margin-right: 10px;
  text-align: right;
}

.cell-title.required i {
  color: #f33713;
  margin-right: 5px;
  font-style: normal;
}

@keyframes rgiht-pannel-wrap-anim {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes right-pannel-anim {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.todo-matters img{
  height: 123px;
  margin-left: 35%;
  margin-top: 8%;
}

/**
 * ┏━━━━━━━━━━━━━━━┓
 * ┃  Common Wrap  ┃
 * ┗━━━━━━━━━━━━━━━┛
 */
.wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 1280px;
  left: 0;
  top: 0;
}

.margin-b8 {
  margin-bottom: 8px;
}

.margin-b16 {
  margin-bottom: 16px;
}

.margin-b24 {
  margin-bottom: 24px;
}

.margin-t8 {
  margin-top: 8px;
}

.margin-t16 {
  margin-top: 16px;
}

.margin-t24 {
  margin-top: 24px;
}

.margin-r24 {
  margin-right: 24px;
}

.height-500 {
  height: 500px;
}

#loading {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/**
 * ┏━━━━━━━━━━━━━━━┓
 * ┃ Common Toast  ┃
 * ┗━━━━━━━━━━━━━━━┛
 */
.toast {
  top: 50%;
  left: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  background: white;
  color: #333333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  padding: 8px 16px;
  z-index: 13;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.toast img {
  width: 14px;
  margin-right: 8px;
}

.toast.in {
  -webkit-animation-name: contentZoomIn;
  animation-name: contentZoomIn;
}

.toast .text {
  text-align: center;
  max-width: 300px;
  color: #333333;
  font-size: 14px;
}

@-webkit-keyframes contentZoomIn {
  0% {
    -webkit-transform: translate(-50%, -70%);
    transform: translate(-50%, -70%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes contentZoomIn {
  0% {
    -webkit-transform: translate(-50%, -70%);
    transform: translate(-50%, -70%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@-webkit-keyframes contentZoomOut {
  0% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    opacity: 0;
  }
}

@keyframes contentZoomOut {
  0% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    opacity: 0;
  }
}

/**
 * ┏━━━━━━━━━━━━━━━┓
 * ┃ Common Header ┃
 * ┗━━━━━━━━━━━━━━━┛
 */
.header {
  height: 64px;
  background: #fff;
  padding: 0 24px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.header .navigate-label {
  color: #646464;
}

.header .navigate-label .navigate-label-margin {
  margin: 0 10px;
}

.header .tools {
  margin-right: 20px;
}

.usual-use {
  position: relative;
}

.usual-use .tool-btn {
  height: 24px;
  margin-right: 10px;
  text-align: center;
  font-size: 14px;
  border-radius: 35px;
  padding: 0 18px;
  border: 1px solid #0d57ce;
  background: white;
  cursor: pointer;
  color: #0d57ce;
}

.usual-use .tool-btn > i {
  margin-right: 10px;
}

.usual-use .pop-box {
  position: absolute;
  top: 42px;
  left: -210px;
  width: 524px;
  padding: 22px 30px 12px 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: opacity, transform;
}

.usual-use .pop-box.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.usual-use .pop-box > .arrow {
  position: absolute;
  left: 50%;
  top: -5px;
  border: 5px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  transform: rotate(-45deg);
  box-shadow: 1px -1px 0 rgba(0, 0, 0, 0.1);
}

.usual-use .pop-box article {
  margin: 20px 0 10px 0;
}

.usual-use .pop-box h4 {
  font-weight: normal;
  color: #999;
}

.usual-use .pop-box h4 span {
  color: #0d57ce;
  margin-left: 10px;
  cursor: pointer;
}

.usual-use .pop-box a {
  display: inline-block;
  margin: 0 30px 16px 0;
  color: #333;
}

.usual-use .pop-box a:hover {
  color: #0d57ce;
}

.header .user-info .welcome {
  margin-right: 16px;
  color: #424242;
}

.header .user-info .welcome img {
  width: 24px;
  margin-right: 10px;
}

.header .user-info .logout {
  margin-right: 5px;
}

.common-functions {
  display: flex;
  padding: 8px 24px 0;
  justify-content: flex-start;
}

.common-functions .common-function {
  margin-right: 8px;
  background-color: white;
  padding: 8px 15px;
  margin-bottom: 8px;
  border-radius: 2px;
  display: flex;
  align-items: center;
}

.common-functions .common-function a {
  color: #646464;
}

.common-functions .common-function.active a {
  color: #0d57ce;
}

.common-functions .common-function .close {
  width: 10px;
  margin-left: 20px;
  cursor: pointer;
}

.funtion-mudlue {
  color: #242424;
}

.funtion-mudlue .funtion-item {
  width: 25%;
  margin-bottom: 24px;
}

.funtion-mudlue .funtion-item:last-child {
  margin-bottom: 0;
}

.upload-files-wrap .has-bg {
  padding: 36px;
  margin: 24px 0;
  background: #fafafa;
  border: 1px dashed #d9d9d9;
}

.upload-files-wrap .selected-files {
  margin-right: 16px;
}

.upload-files-wrap .uploaded-list li {
  padding: 3px 8px;
  background-color: #f5f5f5;
}

.upload-files-wrap .uploaded-list li:hover span {
  display: inline-block;
}

.upload-files-wrap .uploaded-list span {
  display: none;
  cursor: pointer;
  width: 60px;
  text-align: right;
}

.upload-files-wrap input[type="file"] {
  display: none;
}

.ui-droplist-x {
  width: 238px;
  max-height: 224px;
  overflow-y: scroll;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.ui-droplist-x a {
  display: block;
  line-height: 32px;
  padding: 0 20px;
  color: #333;
}

.ui-droplist-x a:hover {
  background: #e6f7ff;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃   Common Container   ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.container {
  flex: 1 1 auto;
  overflow: hidden;
}

.container .aside {
  width: 256px;
  background: #0739b8;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.container .aside::-webkit-scrollbar {
  width: 0px !important;
}

.container .container .flex1 .main .jTabPanel .panel-content .content-wrap::-webkit-scrollbar {
  width: 0px !important;
}

.container .aside .logo {
  width: 186px;
  height: 50px;
  font-size: 0;
  margin: 20px 30px;
}

.container .aside .logo img {
  width: 100%;
}

.container .aside .bottom-caption {
  position: fixed;
  bottom: 0;
  width: 256px;
  height: 48px;
  border-top: 1px solid rgba(224, 224, 224, 0.2);
}

.container .aside .bottom-caption img {
  width: 16px;
  margin-left: 24px;
}

.aside-nav {
  margin: 20px 0;
}

.aside-nav .nav-caption {
  padding: 15px 30px;
  color: white;
  cursor: pointer;
  font-size: 15px;
}

.aside-nav .nav-caption i {
  margin-right: 15px;
}

.aside-nav .nav-caption img {
  width: 12px;
  position: relative;
  float: right;
  top: 3px;
}

.spread {
  transform: rotate(180deg);
}

.aside-nav .nav-caption:hover, .aside-nav .nav-caption.active {
  background-color: rgba(238, 243, 255, 0.1);
}

.aside-nav .nav-menu {
  display: none;
}

.aside-nav .nav-menu a {
  display: block;
  line-height: 42px;
  color: white;
  padding: 5px 0 5px 61px;
}

.aside-nav .nav-menu a i {
  color: white;
  font-size: 22px;
  vertical-align: -2px;
  margin-right: 12px;
}

.aside-nav .nav-menu a:hover, .aside-nav .nav-menu a.active {
  background-color: rgba(238, 243, 255, 0.1);
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    Common Iframe     ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.scrollable {
  overflow-y: auto;
}

.iframe {
  width: 100%;
  height: -webkit-fill-available;
}

.sub-frame {
  width: 100%;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    Common Content    ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.headspace {
  background-color: white;
  padding: 24px;
}

.headspace .head-title {
  font-size: 20px;
  font-weight: 500;
}

.headspace .head-content {
  margin-top: 24px;
}

.content-24 {
  padding: 24px;
}

.content-24.tab-bottom-padding {
  padding-bottom: 64px;
}

.content-pt-16 {
  padding: 16px 24px 24px;
}

.content-bt-8 {
  padding: 24px 24px 8px;
}

.content-bt-0 {
  padding: 24px 24px 0px;
}

.filter .filter-input-group {
  margin: 0;
}

.filter .filter-input-group .input-label span {
  width: 128px;
  text-align: right;
}

.change-safety-info{
  width: 520px;
}

.filter .filter-input-group .input-label input[type="text"],
.filter .filter-input-group .input-label input[type="email"],
.filter .filter-input-group .input-label input[type="tel"],
.filter .filter-input-group .input-label input[type="date"],
.filter .filter-input-group .input-label input[type="date-range"],
.filter .filter-input-group .input-label input[type="password"] {
  width: 180px;
  font-size: 12px;
}

.filter .filter-input-group .input-label.hidden {
  display: none;
}

.filter .filter-input-group .select-label {
  margin-left: 60px;
}

.filter .filter-input-group .select-label span {
  width: 120px;
  text-align: right;
}

.filter .filter-input-group .select-label select {
  width: 160px;
  font-size: 12px;
}

.filter .filter-input-group .select-label.hidden {
  display: none;
}

.filter .filter-input-group.spread-input input[type="text"],
.filter .filter-input-group.spread-input input[type="email"],
.filter .filter-input-group.spread-input input[type="tel"],
.filter .filter-input-group.spread-input input[type="date"],
.filter .filter-input-group.spread-input input[type="date-range"],
.filter .filter-input-group.spread-input input[type="password"] {
  width: 20vw;
}

.filter .filter-input-group.spread-input .input-label {
  margin-left: 0px;
}

.filter .filter-input-group.spread-input label {
  margin-bottom: 8px;
}

.filter .filter-input-group.spread-input select {
  width: 20vw;
}

.filter .filter-input-group.spread-input .input-label:nth-child(3n) {
  margin-left: auto;
}

.filter .filter-input-group.spread-input .input-label:nth-child(3n-1) {
  width: 31%;
}

.filter .filter-input-group.spread-input .search-select {
  width: 20vw;
}

.filter .filter-input-group.spread-input .search-select input[type="text"] {
  width: 96%;
}

.filter .filter-input-group.spread-input .input-label.range-date input[type="date"] {
  width: 9.3vw;
}

.filter .filter-input-group.spread-input .input-label.range-date .has-icon > .iconfont {
  left: auto;
  right: 8px;
}

.filter .filter-input-group.left-part .input-label {
  margin-left: 0;
  margin-right: 64px;
}

.filter .filter-input-group.left-part .input-label span {
  width: auto;
}

.filter .filter-input-group .filter-tools {
  margin-left: auto;
  margin-bottom: 8px;
}

.filter .search {
  margin-left: 16px;
  padding: 0 24px;
}

.add-custom button {
  background: #fff;
  margin-right: 20px;
}

.usual-modal-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: opacity;
}

.usual-modal-wrap.open {
  opacity: 1;
  visibility: visible;
}

.usual-modal-wrap.open .usual-modal {
  opacity: 1;
  transform: translateY(0);
}

.usual-modal-wrap .usual-modal {
  background: #fff;
  padding: 40px 10px 20px 40px;
  border-radius: 5px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(-15px);
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: opacity, transform;
}

.usual-modal-wrap .usual-modal h4 {
  color: #999;
  font-weight: normal;
  margin-bottom: 20px;
}

.select-usual-tool {
  margin-bottom: 10px;
}

.select-usual-tool span {
  display: inline-block;
  margin: 0 30px 15px 0;
  white-space: nowrap;
  cursor: pointer;
}

.select-usual-tool span:hover {
  color: #0d57ce;
}

.select-usual-tool span i {
  margin-left: 10px;
  font-style: normal;
  color: #0d57ce;
  font-size: 18px;
}

.operation-tab {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 64px;
  background-color: white;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}

.operation-tab button {
  margin-right: 16px;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    Common Right Modal    ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━━━━━┛
 */
.right-modal-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

.right-modal-wrap.open {
  animation: rgiht-pannel-wrap-anim 0.3s cubic-bezier(0.5, 0, 0, 1) 0.1s forwards;
}

.right-modal-wrap.open .right-modal {
  animation: right-pannel-anim 0.3s cubic-bezier(0.5, 0, 0, 1) 0.1s forwards;
}

.right-modal-wrap .right-modal {
  position: absolute;
  right: 0;
  top: 0;
  width: 780px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
}

.right-modal-wrap .modal-title {
  padding: 0 30px;
  border-bottom: 1px solid #d9d9d9;
  height: 60px;
}

.right-modal-wrap .modal-title .text {
  font-size: 16px;
}

.right-modal-wrap .modal-title .close {
  display: inline-block;
  width: 28px;
  height: 28px;
  padding-bottom: 2px;
  line-height: 28px;
  font-size: 20px;
  text-align: center;
  color: #999;
  cursor: pointer;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: color, background;
}

.right-modal-wrap .modal-title .close:hover {
  color: #0d57ce;
  background: #f7f7f7;
}

.right-modal-wrap .modal-content {
  overflow-y: auto;
  flex: 1 1 auto;
}

.right-modal-wrap .modal-footer {
  text-align: center;
  padding: 20px 0;
}

.right-modal-wrap .modal-footer button {
  width: 240px;
  margin-left: 10px;
}

.iframe-content-wrap {
  background: #fff;
}

.add-custom-form {
  padding: 40px 25px 40px 25px;
}

.add-custom-form > h3 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}

.add-custom-form .input-group {
  margin-bottom: 18px;
}

.add-custom-form .input-label > span,
.add-custom-form .select-label > span,
.add-custom-form .radio > span,
.add-custom-form .textarea > span {
  display: inline-block;
  width: 110px;
  text-align: right;
  color: #666;
}

.add-custom-form .input-label input {
  width: 190px;
}

.add-custom-form .select-label select {
  width: 190px;
}

.add-custom-form .textarea textarea {
  width: 390px;
}

.save {
  margin-top: 50px;
  text-align: center;
}

.save button {
  width: 240px;
  margin-left: 10px;
}

.add-custom-tab a {
  display: block;
  padding: 0 5px;
  margin-right: 15px;
  line-height: 58px;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  color: #999;
  cursor: not-allowed;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: color, border-color;
}

.add-custom-tab a.alive, .add-custom-tab a.active {
  cursor: pointer;
}

.add-custom-tab a.alive:hover, .add-custom-tab a.active {
  color: #0d57ce;
  border-bottom-color: #0d57ce;
}

.add-manager {
  padding: 30px 20px 20px;
}

.manager-item {
  width: 300px;
  height: 160px;
  padding: 15px;
  margin: 0 20px 20px 0;
  border: 1px solid #0d57ce;
  border-radius: 4px;
}

.manager-item .manager-name strong {
  font-size: 16px;
}

.manager-item .manager-name strong span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 24px;
}

.manager-item .manager-name .edit-action i {
  margin-left: 10px;
  font-size: 22px;
  color: #0d57ce;
  cursor: pointer;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}

.manager-item .manager-name .edit-action i:hover {
  opacity: 0.7;
}

.manager-item .manager-title {
  margin: 10px 0 20px 0;
}

.manager-item .manager-contact p {
  margin-top: 10px;
}

.manager-item .manager-contact span {
  font-size: 12px;
  color: #999;
  margin-right: 25px;
}

.modal-table-wrap {
  padding: 0 20px 30px;
}

.account-info-item {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}

.account-info-item.cursor-pointer {
  display: block;
  cursor: pointer;
}

.account-info-item.cursor-pointer:hover {
  box-shadow: 0 2px 8px rgba(13, 87, 206, 0.2);
}

.account-info-item.cursor-pointer input[type="checkbox"] {
  margin-right: 10px;
}

.account-info-item .account-info-detail p {
  margin: 20px 80px 0 0;
}

.search-file button {
  height: 33px;
  margin-left: 20px;
}

.advice-textarea span {
  color: #666;
}

.advice-textarea textarea {
  width: 455px;
  height: 180px;
}

.upload-type-list {
  display: none;
  padding: 15px 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.upload-type-list li {
  line-height: 36px;
  padding: 0 20px;
  cursor: pointer;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}

.upload-type-list li:hover {
  background: #e6f7ff;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    page 工作台        ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.user img {
  width: 72px;
  margin-right: 40px;
}

.user-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.user-identity {
  color: #646464;
}

.matters-area {
  display: flex;
  margin-right: 160px;
}

.matters-title {
  color: #646464;
  margin-bottom: 15px;
}

.divider {
  background-color: #e0e0e0;
  height: 48px;
  width: 1px;
  margin: 0 50px;
}

.matters-count {
  color: #0d57ce;
  font-size: 20px;
  font-size: 500;
}

.todo-tab a {
  display: block;
  padding: 0 5px;
  margin-right: 15px;
  line-height: 54px;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  color: #999;
  cursor: not-allowed;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-property: color, border-color;
}

.todo-tab a.alive, .todo-tab a.active {
  cursor: pointer;
}

.todo-tab a.alive:hover, .todo-tab a.active {
  color: #0d57ce;
  border-bottom-color: #0d57ce;
}

.tip {
  background-color: #fefbe6;
  border: 1px solid #ffe58f;
  border-radius: 5px;
  padding: 9px 18px;
  margin-bottom: 16px;
}

.tip img {
  width: 10px;
  margin-left: 20px;
}

.workspace-header {
  height: 56px;
  padding: 0 24px;
  border-bottom: 1px solid #e0e0e0;
}

.workspace-header .header-title {
  font-size: 16px;
  font-weight: 500;
  margin-right: 16px;
}

.workspace-header a {
  padding: 0;
}

.matters-space {
  background-color: white;
  width: 69%;
  height: 431px;
}

.matters-space .matters-content {
  padding: 24px;
}

.matters-space .matters-content .nodata {
  height: 375px;
}

.matters-space .matters-content .nodata img {
  width: 192px;
  height: 164px;
}

.matters-space .matters-content .page-nation {
  margin-top: 0;
}

.matters-space .matters-content .matters-cell {
  height: 76px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px;
  color: #333333;
}

.matters-space .matters-content .matters-cell .title,
.matters-space .matters-content .matters-cell .content,
.matters-space .matters-content .matters-cell a,
.matters-space .matters-content .matters-cell .date {
  line-height: 22px;
}

.matters-space .matters-content .matters-cell .content {
  margin-top: 8px;
  color: #424242;
}

.matters-space .matters-content .matters-cell .date {
  margin-top: 8px;
  color: #646464;
}

.calendar {
  background-color: white;
  height: 431px;
  margin-left: 1%;
  width: 30%;
}

.calendar .calendar-content {
  height: 375px;
}

.calendar #schedule-box {
  width: 90%;
  height: min-content;
  font-size: 13px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
}

.calendar #schedule-box .schedule-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 40px;
  border-bottom: 1px solid #d9d9d9;
}

.calendar #schedule-box .schedule-hd .today-tip {
  font-size: 15px;
  font-weight: 500;
}

.arrow {
  cursor: pointer;
}

.arrow img {
  width: 12px;
}

.arrow #prevMonth {
  width: 8px;
}

.arrow #prevYear {
  margin-right: 15px;
}

.arrow #nextMonth {
  margin-right: 15px;
  width: 8px;
}

.calendar #schedule-box .ul-box {
  overflow: hidden;
}

.calendar #schedule-box .ul-box > li {
  float: left;
  width: 14.28%;
  text-align: center;
  padding: 4px 0;
}

.calendar #schedule-box .week-ul.ul-box {
  margin-top: 10px;
}

.calendar #schedule-box .schedule-bd .other-month {
  color: #999999;
}

.calendar #schedule-box .schedule-bd .current-month {
  color: #333333;
}

.calendar #schedule-box .schedule-bd .current-month > .dayStyle:hover {
  background: #0d57ce;
  color: white;
}

.calendar #schedule-box .schedule-bd.ul-box {
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}

.dayStyle {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

.dayStyle.today-flag {
  background: #d3e5fe;
}

.dayStyle.active-style {
  background: #0d57ce;
  color: #fff;
}

.company-certified {
  margin: 0 0 20px;
}

.company-certified h3 {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
}

.company-certified .certified-item {
  height: 120px;
  padding: 0 40px;
  margin-right: 15px;
  background: #fff;
}

.company-certified .certified-item > .iconfont {
  font-size: 40px;
  color: #0d57ce;
}

.company-certified .certified-item strong {
  font-size: 20px;
  margin: 0 38px 0 20px;
}

.company-certified .certified-item span {
  color: #666;
}

.company-certified .certified-item span .iconfont {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 10px;
}

.company-certified .certified-item span.certified {
  color: #0d57ce;
}

.dayStyle.disabled {
  pointer-events: none;
  background-color: #eeeeee;
  color: #999999;
}

.dayStyle.selected-style {
  background-color: #0d57ce;
  color: #ffffff;
}

.calendar #schedule-box .today {
  flex: 1;
  text-align: center;
  color: #0d57ce;
  cursor: pointer;
  font-size: 15px;
  height: 35px;
}

.notify-item {
  color: #646464;
  line-height: 20px;
  margin-bottom: 8px;
}

.notify-item::before {
  content: "·";
  display: inline-block;
  color: #0d57ce;
  font-size: 30px;
  margin-right: 4px;
}

.data-analyze {
  background-color: white;
  margin-top: 1%;
  margin-bottom: 1%;
  width: 100%;
}

.data-analyze .data-content .nodata {
  text-align: center;
  margin-bottom: 48px;
}

.data-analyze .data-content .nodata img {
  margin: 84px 432px 5px 432px;
  width: 271px;
  height: 146px;
}

.data-analyze .data-content .nodata span {
  color: #bdbdbd;
  margin-right: 5px;
}

.data-analyze .data-content .hasdata {
  padding: 24px;
}

.data-analyze .data-content .echart-content {
  width: 50%;
}

.data-analyze .data-content .echart-content .header-title {
  font-size: 16px;
  font-weight: 500;
  margin-right: 47px;
}

.data-analyze .data-content .echart-content .echart {
  height: 278px;
  border: 8px solid #f5f5f5;
  margin-top: 12px;
  color: #424242;
}

.data-analyze .data-content .echart-content .echart .ranking {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #bdbdbd;
  color: white;
}

.data-analyze .data-content .echart-content .echart .ranking.award {
  background-color: #6b9ff1;
}

.data-analyze .data-content .echart-content .echart .campany {
  margin-left: 16px;
}

.data-setting .setting-modules {
  width: 192px;
  height: 225px;
  border: 1px solid #e0e0e0;
}

.data-setting .setting-modules.data {
  width: 240px;
  height: 353px;
}

.data-setting .setting-modules img {
  width: 12px;
}

.data-setting .setting-modules .modules-header {
  padding: 8px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.data-setting .setting-modules .modules-header img {
  width: 14px;
  margin-right: 8px;
}

.data-setting .setting-modules .modules-content {
  overflow: auto;
}

.data-setting .setting-modules .modules-content .module-item {
  padding: 8px 16px;
}

.data-setting .setting-modules .modules-content .module-item.highlight:hover {
  background-color: #eef3ff;
}

.data-setting .setting-modules .modules-content .module-item.disable {
  color: #bdbdbd;
}

.data-setting .setting-modules .modules-content .module-item .setting-spread {
  margin-right: 4px;
}

.data-setting .setting-modules .modules-content .setting-group {
  display: none;
  padding: 8px 16px 0 48px;
}

.data-setting .setting-modules .modules-content .setting-group .setting-item {
  margin-bottom: 8px;
}

.data-setting .setting-modules .modules-content .setting-group .setting-item input {
  margin-right: 8px;
}

.data-setting .setting-modules .modules-content input[type="checkbox"] {
  position: absolute;
  width: 15px;
  height: 15px;
  opacity: 0;
  z-index: 99;
}

.data-setting .setting-modules .modules-content input[type="checkbox"].head-checkbox {
  left: 57px;
}

.data-setting .setting-modules .modules-content .parimary-checkbox + label {
  display: block;
  width: 12px;
  height: 12px;
  cursor: pointer;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 1px;
  margin-right: 8px;
}

.data-setting .setting-modules .modules-content .parimary-checkbox + label:checked + label {
  background-color: #0d57ce;
}

.data-setting .setting-modules .modules-content .parimary-checkbox:checked + label {
  background-color: #0d57ce;
}

.data-setting .setting-modules .modules-content .parimary-checkbox:disabled + label {
  background-color: #e0e0e0;
  border-color: #bdbdbd;
}

.data-setting .setting-modules .modules-content .parimary-checkbox:checked + label::before {
  display: block;
  content: "";
  text-align: center;
  font-size: 14px;
  width: 4px;
  height: 8px;
  margin-top: 0px;
  margin-left: 4px;
  border-color: white;
  border-style: solid;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.data-setting .exhchange {
  margin: 0 16px;
}

.data-setting .exhchange img {
  width: 24px;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    page 对公客户处理   ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.filter-tools button {
  margin-right: 8px;
}

.filter-tools .spread-condition {
  cursor: pointer;
  color: #0d57ce;
  margin: 0 10px 0 16px;
}

.filter-tools img {
  width: 12px;
}

.table-tools {
  margin-bottom: 16px;
  width: 60%;
}

.table-tools button {
  margin-right: 8px;
}

.table-tools i {
  margin-right: 8px;
}

.table-tools span {
  color: #0d57ce;
  margin-right: 16px;
  cursor: pointer;
}

.clear {
  clear: both;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    page 对公客户信息   ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.module {
  background-color: white;
  border-radius: 2px;
  margin-bottom: 24px;
}

.module .module-header {
  height: 56px;
  padding: 0 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  font-weight: 500;
}

.module .base-info-item {
  width: 33%;
  margin-bottom: 16px;
}

.sign-step4 .base-info-item {
  width: 100%;
  margin-bottom: 16px;
}

.module .base-info-item:last-child {
  width: 50%;
  margin-bottom: 0;
}

.module .base-info-item.stretch-item {
  width: 100%;
}

.module .audit-process {
  background-color: white;
}

.module .audit-process .audit-node {
  margin-top: 56px;
  margin-bottom: 48px;
}

.module .audit-process .audit-node .node {
  font-size: 16px;
  font-weight: 500;
}

.module .audit-process .audit-node .node .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #bdbdbd;
  margin-bottom: 16px;
}

.module .audit-process .audit-node .node .dot.active {
  background-color: #0d57ce;
}

.module .audit-process .audit-node .node .dot.reject {
  background-color: #f56c6c;
}

.module .audit-process .audit-node .node .unaudit {
  color: #bdbdbd;
}

.module .audit-process .audit-node .node .reject {
  color: #f56c6c;
}

.module .audit-process .audit-node .bar {
  width: 264px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #bdbdbd;
}

.module .audit-process .audit-node .bar.active {
  background-color: #0d57ce;
}

.module .sign-process {
  background-color: white;
}

.module .sign-process .sign-node {
  margin-top: 56px;
  margin-bottom: 48px;
}

.module .sign-process .sign-node .node {
  font-size: 16px;
  font-weight: 500;
}

.module .sign-process .sign-node .node .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #bdbdbd;
  margin-bottom: 16px;
}

.module .sign-process .sign-node .node .dot.active {
  background-color: #0d57ce;
}

.module .sign-process .sign-node .node .dot.reject {
  background-color: #f56c6c;
}

.module .sign-process .sign-node .node .unaudit {
  color: #bdbdbd;
}

.module .sign-process .sign-node .node .reject {
  color: #f56c6c;
}

.module .sign-process .sign-node .bar {
  width: 264px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #bdbdbd;
}

.module .sign-process .sign-node .bar.active {
  background-color: #0d57ce;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    page 新增客户信息   ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.add-ressets-form {
  background-color: white;
}

.add-ressets-form .form-item {
  width: 33%;
  margin-bottom: 24px;
}

.add-ressets-form .form-item.last-item {
  width: 60%;
}

.add-ressets-form .form-item .input-label,
.add-ressets-form .form-item .select-label,
.add-ressets-form .form-item .textarea {
  flex-direction: column;
  align-items: initial;
}

.add-ressets-form .form-item .input-label > span,
.add-ressets-form .form-item .select-label > span,
.add-ressets-form .form-item .textarea > span {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 8px;
}

.add-ressets-form .form-item .input-label > .required > i,
.add-ressets-form .form-item .select-label > .required > i,
.add-ressets-form .form-item .textarea > .required > i {
  color: red;
  font-style: normal;
  margin-right: 5px;
}

.add-ressets-form .form-item .input-label input {
  width: 20vw;
}

.add-ressets-form .form-item .input-label .has-icon > .iconfont {
  left: auto;
  right: 8px;
}

.add-ressets-form .form-item .input-label .has-icon > .iconfont.dateicon {
  position: relative;
  top: 0;
  right: 24px;
}

.add-ressets-form .form-item .select-label select {
  width: 20vw;
}

.add-ressets-form .form-item textarea {
  width: 100%;
}

.add-ressets-form .opreation-item {
  width: 100%;
}

.add-ressets-form.single {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.add-ressets-form.single .form-item {
  width: 432px;
}

.add-ressets-form.single .form-item input,
.add-ressets-form.single .form-item select,
.add-ressets-form.single .form-item textarea,
.add-ressets-form.single .form-item .layui-form-select {
  width: 432px;
}

.add-ressets-form.single .form-item.no-mb {
  margin-bottom: 0;
}

.add-ressets-form.single .radio {
  margin-bottom: 24px;
}

.add-ressets-form.double {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.add-ressets-form.double .form-item {
  width: 240px;
  margin-right: 48px;
}

.add-ressets-form.double .form-item:nth-child(2n) {
  margin-right: 0;
}

.add-ressets-form.double .form-item input,
.add-ressets-form.double .form-item select,
.add-ressets-form.double .form-item textarea,
.add-ressets-form.double .form-item .layui-form-select {
  width: 240px;
}

.add-ressets-form.double .form-item.no-mb {
  margin-bottom: 0;
}

.add-ressets-form.treble {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.add-ressets-form.treble .form-item {
  width: 240px;
  margin-right: 48px;
}

.add-ressets-form.treble .form-item:nth-child(3n) {
  margin-right: 0;
}

.add-ressets-form.treble .form-item input,
.add-ressets-form.treble .form-item select,
.add-ressets-form.treble .form-item textarea,
.add-ressets-form.treble .form-item .layui-form-select {
  width: 240px;
}

.add-ressets-form.treble .form-item.no-mb {
  margin-bottom: 0;
}

.ml24 {
  margin-left: 24px;
}

/**
 * ┏━━━━━━━━━━━━━━━━━┓
 * ┃   page 发票管理   ┃
 * ┗━━━━━━━━━━━━━━━━━┛
 */
.steps-wrap {
  margin: 16px 16px 0 16px;
  padding: 48px 144px;
  background: #fff;
}

.steps .step-item {
  position: relative;
  text-align: center;
  font-size: 16px;
  flex: 1;
}

.steps .step-item .item-content {
  position: relative;
  display: inline-flex;
  padding: 16px;
  align-items: center;
  background: #fff;
  color: rgba(0, 0, 0, 0.45);
}

.steps .step-item .item-content strong {
  display: inline-block;
  width: 32px;
  line-height: 32px;
  margin-right: 8px;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-align: center;
}

.steps .step-item:first-child {
  text-align: left;
}

.steps .step-item:first-child .item-content {
  padding-left: 0;
}

.steps .step-item:last-child {
  text-align: right;
}

.steps .step-item:last-child .item-content {
  padding-right: 0;
}

.steps .step-item::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  transform: translateY(50%);
  content: "";
}

.steps .step-item.checked .item-content {
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
}

.steps .step-item.checked strong {
  background: #0d57ce;
  color: #fff;
}

.step-content {
  margin: 0 16px 0 16px;
  background: #FFF;
  padding-bottom: 32px;
}

.add-invoice-form .input-label,
.add-invoice-form .select-label,
.add-invoice-form .radio {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 24px;
}

.add-invoice-form .input-label > span,
.add-invoice-form .select-label > span,
.add-invoice-form .radio > span {
  display: block;
  width: 180px;
  text-align: right;
}

.add-invoice-form .input-label > .required > i,
.add-invoice-form .select-label > .required > i,
.add-invoice-form .radio > .required > i {
  color: red;
  font-style: normal;
  margin-right: 5px;
}

.add-invoice-form .input-label input {
  width: 384px;
}

.add-invoice-form .select-label select {
  width: 384px;
}

.add-invoice-form .select-label .upload-invoice {
  width: 550px;
}

.add-invoice-form .select-label .upload-invoice .upload-status img {
  width: 12px;
  margin-right: 8px;
}

.uploading {
  display: flex;
  flex-direction: column;
}

.uploading .invoice-title {
  width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
  color: #646464;
}

.uploaded {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.uploaded .invoice-title {
  width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #646464;
}

.uploaded .invoice-title.fail {
  color: #f56c6c;
}

.uploaded img {
  width: 12px;
  height: 12px;
  margin-right: 24px;
}

.uploaded .error {
  color: #f56c6c;
}

.add-invoice-form .select-label .upload-invoice .status {
  color: #333333;
}

.add-invoice-form .radio .radio-group label {
  margin-right: 15px;
}

.add-invoice-form .radio .radio-group input[type="radio"],
.add-invoice-form .radio .radio-group input[type="checkbox"] {
  margin-right: 10px;
}

.add-invoice-form .radio .radio-group input[type="radio"]:disabled + span,
.add-invoice-form .radio .radio-group input[type="checkbox"]:disabled + span {
  color: #666;
  cursor: not-allowed;
}

.add-invoice-form button {
  margin-left: 190px;
}

.add-invoice-form .step2-buttons button:last-child {
  margin-left: 16px;
}

.add-invoice-form .invoice-tip {
  max-width: 500px;
  color: #e6a23c;
  margin-left: 190px;
  margin-bottom: 24px;
  line-height: 20px;
}

.invoice-result {
  margin-top: 16px;
}

.invoice-result img {
  width: 72px;
}

.invoice-result .result {
  font-size: 16px;
  font-weight: 500;
  margin: 32px 0 16px;
}

.invoice-result .result-tip {
  color: #646464;
}

.sign-step4 .result-tip{
  text-align: center;
}

.sign-step4 .title{
  width:50%;
  text-align: right;
  display: inline-block;
}

.sign-step4 .value{
  width: 50%;
  text-align: left;
  display: inline-block;
}

.invoice-result button {
  margin: 48px 0 168px;
}

.credit-tip {
  color: #e6a23c;
  margin-bottom: 16px;
}

.contract-upload > span {
  margin-right: 10px;
}

.contract-upload > .required > i {
  color: red;
  font-style: normal;
  margin-right: 5px;
}

.contract-upload img {
  width: 12px;
  height: 12px;
  margin-right: 8px;
}

/**
 * ┏━━━━━━━━━━━━━━━━━┓
 * ┃   带搜索的下拉框  ┃
 * ┗━━━━━━━━━━━━━━━━━┛
 */
.search-select {
  width: 20vw;
  height: 33px;
  position: relative;
}

.search-select.error .layui-input {
  border: 1px solid #f33713;
}
.search-select i.layui-edge {
  z-index: 1;
}

.search-select i.select {
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz--transform: rotate(180deg);
  transform: rotate(180deg);
  margin-top: -8px;
}

.search-select .layui-input {
  height: 33px;
  line-height: 32px;
  position: relative;
  z-index: 1;
}

.search-select.disabled .layui-input {
  pointer-events: none;
  background: #efefef;
  color: #666;
}

.search-select .input-text {
  line-height: 32px;
  position: absolute;
  top: 31px;
  left: 1px;
  z-index: 3;
  display: none;
  background-color: #fff;
}

.search-select .input-text input {
  width: 96%;
  margin-left: 2%;
  height: 36px;
  line-height: 36px;
}

.search-select .input-text .iconfont {
  line-height: 36px;
  color: #999;
  position: absolute;
  top: 0px;
  right: 4%;
  z-index: 2;
}

.search-select ul {
  display: none;
  width: 100%;
  max-height: 228px;
  position: relative;
  top: 0px;
  z-index: 2;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  border-top: 0;
  margin-top: -1px;
  padding: 5px 0;
  padding-top: 36px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.search-select ul li {
  width: 100%;
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-select ul li.active {
  background-color: #0d57ce !important;
  color: #fff;
}

.search-select ul p {
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align: center;
  padding: 0 10px;
  color: #999;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-select ul li.on {
  display: block;
}

.search-select ul li.hide {
  display: none;
}

.search-select ul li:hover {
  background-color: #0d57ce;
  color: #fff;
}

/*带搜索的下拉框 - 结束*/
/*登陆页面样式 - 开始*/
/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃  Page Login & Register   ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━━━━━┛
 */
.login-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.support {
  color: #999;
  margin: 10px 0 -10px 0;
}

.support a {
  color: #999;
}

.login-container {
  width: 907px;
  height: 576px;
  background: #fff;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.brand {
  width: 539px;
  height: 576px;
  padding: 25px;
  background: #eee;
  background: url(../images/login-bg.png) no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.brandzwl {
  width: 539px;
  height: 576px;
  padding: 25px;
  background: #eee;
  background: url(../images/login-zwl-bg.png) no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.brand .company-intro {
  margin-bottom: 30px;
}

.brand .company-intro h1 {
  width: 149px;
}

.brand .company-intro h1 img {
  width: 100%;
}

.brand .system-name {
  margin-left: 20px;
}

.brand .system-name h3 {
  font-weight: 300;
  font-size: 18px;
  color: #fff;
}

.brand .system-name p {
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.brand .brand-text h3 {
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.brand .brand-text p {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.form-wrap {
  width: 370px;
  padding: 60px 45px;
}

.form-wrap header strong {
  font-weight: normal;
  font-size: 18px;
}

.form-wrap .form-box {
  height: 430px;
}

.form-wrap .form-box form,
.form-wrap .form-box .input,
.form-wrap .form-box .input input {
  width: 280px;
}

.form-wrap .form-box .input-label {
  margin-bottom: 20px;
}

.form-wrap .form-box .input-label .has-icon {
  position: relative;
}

.form-wrap .form-box .input-label .has-icon .iconfont {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #666;
}

.form-wrap .form-box .input-label .has-icon .verify-code-img {
  display: inline-block;
  width: 76px;
  height: 32px;
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 0;
}

.form-wrap .form-box .input-label .has-icon .verify-code-img img {
  width: 100%;
}

.form-wrap .form-box .input-label .has-icon .verify-code-img + input {
  padding-right: 100px;
}

.form-wrap .form-box .input-label input {
  height: 42px;
  padding-left: 35px;
}

.form-wrap .form-box .input-label input:focus + .iconfont {
  color: #0d57ce;
}

.form-wrap .form-box .agreement {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #999;
}
/*登陆页面样式 - 结束*/
/*# sourceMappingURL=style.css.map */

.upload-file > .required > i {
  color: red;
  font-style: normal;
  margin-right: 5px;
}

.upload-file img {
  width: 14px;
}

.upload-file .file-type {
  display: inline-block;
  position: relative;
}

.upload-file .file-type span {
  color: #0d57ce;
}

.upload-file .file-type input[type="file"] {
  position: absolute;
  top: -4px;
  opacity: 0;
}

.upload-file .upload-status {
  margin-top: 24px;
}

.upload-file .upload-status .uploading {
  margin-left: 8px;
  width: 60%;
}

.upload-file .upload-status .uploading img {
  width: 13px;
  height: 14px;
}

.upload-file .upload-status .uploading .invoice-title.error {
  color: #f33713;
}

.upload-file .upload-status .uploading .invoice-title.success {
  color: #0d57ce;
}

.upload-file .upload-status .uploading .progress {
  margin-top: 4px;
}

.upload-file .upload-status .uploading .error-tip {
  color: #f33713;
}
/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    portal settings     ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.top-nav-setting {
  color:#0d57ce;
  position: relative;
  cursor: pointer;
}
.setting-dropdown {
  position: absolute;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 4px;
  width: 100px;
  right: 0;
  top: 22px;
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all ease 0.3s;
}
.top-nav-setting.open .setting-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.setting-dropdown a {
  display: block;
  padding: 6px 10px;
  color: #333;
}
.setting-dropdown a:hover {
  background: #d9eef7;
}

/**
 * ┏━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃    page 登录\注册     ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━┛
 */
.landing-bg {
  background-color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 1280px;
  left: 0;
  top: 0;
  justify-content: space-evenly;
}

.landing-bg .landing-header img {
  width: 280px;
  height: 80px;
  margin-left: 20%;
}

.landing-bg .landing-content {
  background-image: url("../images/landing-bg-thum.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100%;
}

.landing-bg .landing-content .landing-login-logo {
	margin-right: 120px;
}

.landing-bg .landing-content .landing-login-logo img{
	width: 460px;
    height: 240px;
}

.landing-bg .landing-content .landing-box {
  width: 372px;
  background-color: white;
  padding: 24px 0px 24px;
  border-radius: 8px;
}

.landing-bg .landing-content .landing-box .landing-title {
  font-size: 24px;
  font-weight: 500;
}

.landing-bg .landing-content .landing-box .landing-tip {
  font-size: 14px;
  color: #646464;
  margin: 24px auto;
}

.landing-bg .landing-content .landing-box .landing-form .input-label {
  margin-bottom: 18px;
}

.landing-bg .landing-content .landing-box .landing-form .input-label input[type="text"],
.landing-bg .landing-content .landing-box .landing-form .input-label input[type="password"] {
  width: 324px;
  height: 48px;
}

.landing-bg .landing-content .landing-box .landing-form .input-label .input {
  position: relative;
}

.landing-bg .landing-content .landing-box .landing-form .input-label .input img {
  display: inline-block;
  width: 76px;
  height: 32px;
  position: absolute;
  right: 5px;
  top: 8px;
  font-size: 0;
}

.landing-bg .landing-content .landing-box .landing-form .input-label .input img img {
  width: 100%;
}

.landing-bg .landing-content .landing-box .landing-form .input-label .input img + input {
  padding-right: 100px;
}

.landing-bg .landing-content .landing-box .operation-item {
  margin-top: 40px;
  margin-left: auto;
}

.landing-bg .landing-content .landing-box .operation-item .custom-a {
  color: #646464;
}

.landing-bg .landing-content .landing-box .operation-item .default-a {
  margin-left: 8px;
}

.landing-bg .landing-content .landing-box .operation-item .default-b {
  margin-right: 24px;
}

.landing-bg .landing-footer {
  color: #bdbdbd;
  font-size: 14px;
  height: 54px;
  justify-content: space-evenly;
}

.landing-bg .landing-footer .version {
  color: #333333;
}

.tdValueSuperLong {
	display: inline-block;
	width: 120px;
	height:55px !important;
	word-break: break-all;
	overflow-y: auto
}
/*开户、经办人变更、手机号变更时的授权页面提示文案样式*/
.auth-tip {
  background-color: #7cd6e12b;
  border: 1px solid #b2cfd37a;
  height: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 8px 15px;
  margin: 0 2%;
}
