.wi-alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 12px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.wi-alert div {
  line-height: 1
}

.wi-alert .noresult {
  line-height: 100%
}

.wi-alert-info {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(var(--primary-color),.06)
}

.wi-alert-info::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: rgb(var(--primary-color));
  width: 4px;
  height: 100%
}

.wi-alert-info .wi-alert-info--label {
  padding-right: 15px
}

.wi-alert-info .wi-alert-info--label+ {
  margin-left: 10px
}

.wi-alert-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 100%
}

.wi-attachment-wrap {
  padding: 20px 0
}

.wi-attachment-wrap .wi-attachment-item {
  display: block;
  padding: 10px 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(170,170,170,.05);
  box-shadow: 0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(170,170,170,.05)
}

.wi-attachment-wrap .wi-attachment-item .wi-attachment-list-item--name {
  font-size: 14px;
  color: rgb(var(--primary-color))
}

.wi-attachment-wrap .wi-attachment-item+.wi-attachment-item {
  margin-top: 15px
}

.wi-background-white {
  background: rgb(var(--white-color))
}

.wi-badge {
  position: relative;
  padding-left: 12px;
  height: 14px
}

.wi-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  vertical-align: middle;
  border-radius: 50%;
  background: rgb(var(--normal-color))
}

.wi-badge.wi-badge-success::before {
  background: rgb(var(--success-color))
}

.wi-badge.wi-badge-error::before {
  background: rgb(var(--danger-color))
}

.wi-badge.wi-badge-warning::before {
  background: rgb(var(--warning-color))
}

.wi-badge.wi-badge-processing::before {
  background: rgb(var(--info-color))
}

.wi-badge.wi-badge-processing::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid rgb(var(--info-color));
  border-radius: 50%;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: wiStatusProcessing 1.2s ease-in-out infinite;
  animation: wiStatusProcessing 1.2s ease-in-out infinite
}

@-webkit-keyframes wiStatusProcessing {
  0% {
      -webkit-transform: scale(.8);
      transform: scale(.8);
      opacity: .5
  }

  to {
      -webkit-transform: scale(2.4);
      transform: scale(2.4);
      opacity: 0
  }
}

@keyframes wiStatusProcessing {
  0% {
      -webkit-transform: scale(.8);
      transform: scale(.8);
      opacity: .5
  }

  to {
      -webkit-transform: scale(2.4);
      transform: scale(2.4);
      opacity: 0
  }
}

.wi-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #000000d9;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
  color: #00000073;
  font-size: 14px
}

.wi-breadcrumb .wi-breadcrumb-item {
  font-size: 14px
}

.wi-breadcrumb .wi-breadcrumb-item+::before {
  content: "/";
  padding: 0 5px
}

button.small {
  height: 28px
}

button.wi-loading {
  pointer-events: none;
  opacity: .6
}

button[block] {
  display: block;
  width: 100%
}

button[border-dashed] {
  border-style: dashed
}

button[disabled] {
  cursor: default;
  opacity: .6;
  cursor: not-allowed
}

button[disabled]:hover {
  opacity: .6;
  border-color: #faebeb;
  color: #929292
}

button[disabled].smy_button_primary:hover,button[disabled].submit:hover,button[disabled].si-btn--primary:hover {
  opacity: .6
}

button.si-btn-small {
  height: 32px
}

button.si-btn-text {
  border: none;
  background: 0 0;
  color: rgb(var(--primary-color));
  padding: 0!important;
  height: 16px
}

button.si-btn-text:hover {
  color: rgb(var(--primary-color))!important;
  opacity: .6
}

button.si-btn-text-close {
  color: #333
}

button.si-btn-text-close:hover {
  color: #333!important;
  opacity: .6
}

button.si-btn-danger {
  border-color: rgb(var(--danger-color));
  color: rgb(var(--danger-color))
}

button.si-btn-danger:hover {
  border-color: rgb(var(--danger-color))!important;
  color: rgb(var(--danger-color))!important;
  opacity: .6
}

button.si-btn-success {
  background: rgb(var(--success-color));
  color: rgb(var(--white-color))!important;
  border-color: rgb(var(--success-color))
}

button.si-btn-success.si-btn--text {
  color: var(--green-5) !important;
}

button.si-btn-success.si-btn-text {
  color: rgb(var(--success-color))!important;
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none
}

button.si-btn-success.si-btn-text:hover {
  color: rgb(var(--success-color))!important;
  opacity: .6
}

button+button {
  margin-left: 10px
}

button.blue,button.smy_button_primary,button.submit,button.si-btn--primary {
  background: rgb(var(--primary-color));
  color: rgb(var(--white-color))
}

button.blue[ghost],button.smy_button_primary[ghost],button.submit[ghost],button.si-btn--primary[ghost] {
  background: 0 0;
  color: rgb(var(--primary-color));
  border-color: rgb(var(--primary-color))
}

button.blue[ghost]:hover,button.smy_button_primary[ghost]:hover,button.submit[ghost]:hover,button.si-btn--primary[ghost]:hover {
  background: #fff;
  color: rgb(var(--primary-color))!important;
  border-color: rgb(var(--primary-color));
  opacity: .5
}

button.blue.si-btn-danger,button.smy_button_primary.si-btn-danger,button.submit.si-btn-danger,button.si-btn--primary.si-btn-danger {
  background: rgb(var(--danger-color));
  border-color: rgb(var(--danger-color))
}

button.blue.si-btn-danger:hover,button.smy_button_primary.si-btn-danger:hover,button.submit.si-btn-danger:hover,button.si-btn--primary.si-btn-danger:hover {
  background: rgb(var(--danger-color))
}

button.blue:hover,button.smy_button_primary:hover,button.submit:hover,button.si-btn--primary:hover {
  opacity: .8;
  background: rgb(var(--primary-color));
  color: rgb(var(--white-color))!important
}

button[type=card] {
  position: relative;
  border: none
}

button[type=card]::after,button[type=card]::before {
  -webkit-transition: .5s cubic-bezier(.215,.61,.355,1);
  transition: .5s cubic-bezier(.215,.61,.355,1);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-35px);
  transform: translateY(-35px);
  content: " ";
  border-radius: 5px;
  background: #cbcbcb
}

button[type=card]:hover::after,button[type=card]:hover::before {
  background: rgb(var(--primary-color))
}

button::after {
  width: 30px;
  height: 4px
}

button::before {
  width: 4px;
  height: 30px
}

.wi-search__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 100px
}

.wi-search__main img {
  margin-right: 20px
}

.wi-search__main .wi-search-input {
  display: block;
  width: 300px;
  height: 36px;
  border-radius: 8px;
  border: 0;
  background: #eef1fa;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 15px
}

.wi-search__main .wi-search-input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px
}

.wi-search__main .wi-search-input::-moz-placeholder {
  color: #999;
  font-size: 14px
}

.wi-search__main .wi-search-input:-ms-input-placeholder {
  color: #999;
  font-size: 14px
}

.wi-search__main .wi-search-input::-ms-input-placeholder {
  color: #999;
  font-size: 14px
}

.wi-search__main .wi-search-input::placeholder {
  color: #999;
  font-size: 14px
}

.wi-header__personal-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer
}

.wi-header__personal-center .name {
  font-size: 12px;
  color: #333
}

.wi-header__personal-center .hand {
  margin: 0 15px;
  overflow: hidden;
  border-radius: 100%;
  display: block;
  width: 40px;
  height: 40px
}

.wi-header__personal-center .icon-down {
  width: 15.5px
}

.wi-card {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  -webkit-transition: .5s cubic-bezier(.215,.61,.355,1);
  transition: .5s cubic-bezier(.215,.61,.355,1)
}

.wi-card[inherit] {
  overflow: visible
}

.wi-card[inherit] .wi-card-body {
  overflow: visible
}

.wi-card[shadow] {
  -webkit-box-shadow: 0 3px 11px 1px rgba(145,137,201,.3809823096);
  box-shadow: 0 3px 11px 1px rgba(145,137,201,.3809823096)
}

.wi-card[center] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.wi-card[center] .wi-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.wi-card[node-hover]:hover {
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  -webkit-transform: inherit;
  transform: inherit
}

.wi-card[node-hover][shadow]:hover {
  -webkit-box-shadow: 0 3px 11px 1px rgba(145,137,201,.3809823096);
  box-shadow: 0 3px 11px 1px rgba(145,137,201,.3809823096)
}

.wi-card:hover {
  -webkit-box-shadow: 0 12px 17px 0 rgba(117,101,228,.17);
  box-shadow: 0 12px 17px 0 rgba(117,101,228,.17);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px)
}

.wi-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 30px
}

.wi-card-head[border-bottom] {
  border-bottom: 1px solid #d9d9d9
}

.wi-card-head .wi-card-head-title--tip {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  line-height: 20px;
  opacity: .8;
  text-shadow: 0 12px 17px rgba(117,101,228,.17)
}

.wi-card-head h2 {
  font-size: 16px;
  color: #666;
  text-shadow: 0 12px 17px rgba(117,101,228,.17)
}

.wi-card-extra .si-btn {
  padding: 7px 15px;
  border: none;
  background: #f8f9fd;
  border-radius: 15px
}

.wi-card-body {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-card-body::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-card-body::-webkit-scrollbar-thumb {
  background-color: #f5f5f5;
  border-radius: 6px
}

.wi-card-body::-webkit-scrollbar-track {
  background-color: #f8faf7;
  border-radius: 6px
}

.wi-card-body[padding] {
  padding: 15px 30px
}

.wi-card-body .wi-card-body-img {
  width: 100%;
  height: 207px
}

.wi-card-body[center] {
  background-color: #f5f5f5
}

.wi-card-body[center] .wi-card-body-img {
  display: block;
  padding: 50px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  max-width: 100%
}

.wi-card-body[center]:hover {
  background-color: #ccc
}

.wi-card-desc {
  padding: 10px 0
}

.wi-card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px
}

.wi-card-footer .wi-card-footer-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-card-footer[center] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.wi-card-footer[dashed-top] {
  border-top: 1px dashed #d9d9d9;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.wi-card-footer[space-around] {
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.wi-card-footer[space-betwee] {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.wi-card-footer[column] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.wi-category__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-category__wrapper .wi-category__right {
  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-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-category__wrapper .wi-category__right .wi-tabs {
  padding: 0 15px;
  background: #fff
}

.wi-category__wrapper .wi-category__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 240px;
  background: #f5f8ff
}

.wi-category__wrapper .wi-category__left .wi-category-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 20px 8px
}

.wi-category__wrapper .wi-category__left .wi-category-head .wi-category-head--title {
  color: #333;
  font-size: 18px;
  font-weight: 700
}

.wi-category__wrapper .wi-tree-wrapper {
  padding: 10px 20px
}

.wi-collapse-item .wi-collapse-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 20px;
  cursor: pointer
}

.wi-collapse-item .wi-collapse-header.wi-collapse-header--primary {
  background-color: rgb(var(--primary-color))
}

.wi-collapse-item .wi-collapse-header .wi-collapse-header--title {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-collapse-item .wi-collapse-header .wi-icon {
  font-size: 20px;
  color: #333
}

.wi-collapse-item .wi-collapse-content {
  display: none
}

.wi-collapse-item .wi-collapse-content[padding] {
  padding: 16px
}

.wi-collapse-item.wi-collapse-item-active .wi-collapse-header .wi-icon {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.wi-collapse-item.wi-collapse-item-active .wi-collapse-content {
  display: block
}

.wi-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0
}

.wi-container.white {
  background-color: #fff
}

.wi-container[vertical] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-container[self-adaption] {
  overflow: hidden
}

.wi-container[scroll] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-container[scroll]::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-container[scroll]::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-container[scroll]::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-detail-container {
  padding: 15px;
  background-color: rgba(236,238,241,.67);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-detail-container::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-detail-container::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-detail-container::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-detail-container[radius] {
  border-radius: 8px
}

.wi-details-wrap {
  padding: 0 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%
}

.wi-details-wrap .wi-details-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: center
}

.wi-details-wrap .wi-details-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0
}

.wi-details-wrap .wi-details-info span {
  font-size: 14px;
  color: #999
}

.wi-details-wrap .wi-attachment-wrap {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.wi-details-wrap .wi-details-content {
  font-size: 12px;
  color: #333;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-empty-text {
  font-size: 14px;
  text-align: center;
  color: rgba(0,0,0,.25);
  height: 100px;
  line-height: 100px
}

.wi-empty {
  width: 430px;
  min-height: 220px;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center
}

.wi-empty::before {
  display: block;
  content: " ";
  background: url(/pRender/images/lack-plan-approval.png) no-repeat top center;
  background-size: contain;
  width: 430px;
  height: 220px;
  opacity: .5
}

.wi-empty .wi-empty__title {
  opacity: .5;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  margin-top: 15px
}

.wi-empty .wi-empty__description {
  opacity: .5;
  font-size: 16px;
  color: #333
}

.wi-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.wi-flex[space-between] {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.wi-flex[end] {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.wi-font-color-primary {
  color: rgb(var(--primary-color))
}

.wi-font-color-white {
  color: rgb(var(--white-color))
}

.text-ellipsis {
  display: inline-block;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  word-break: break-all
}

.wi-icon {
  font-family: iconfont!important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.wi-footer-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 8px 24px;
  line-height: 44px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  -webkit-box-shadow: 0 -6px 16px -8px rgba(0,0,0,.08),0 -9px 28px 0 rgba(0,0,0,.05),0 -12px 48px 16px rgba(0,0,0,.03);
  box-shadow: 0 -6px 16px -8px rgba(0,0,0,.08),0 -9px 28px 0 rgba(0,0,0,.05),0 -12px 48px 16px rgba(0,0,0,.03);
  -webkit-transition: width .3s cubic-bezier(.645,.045,.355,1);
  transition: width .3s cubic-bezier(.645,.045,.355,1);
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.wi-form-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px
}

.wi-form-item[center] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.wi-form-item[justify-right] {
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right
}

.wi-form-item .to {
  padding: 0 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.wi-form-item img {
  width: 100%
}

.wi-form-item[column] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.wi-form-item[column] .wi-form_label {
  text-align: left
}

.wi-form-item[required] .wi-form_label::before {
  content: "*";
  color: rgb(var(--danger-color))
}

.wi-form-item .wi-form_label {
  position: relative;
  display: block;
  line-height: 34px;
  text-align: right;
  min-width: 120px;
  height: 34px
}

.wi-form-item .wi-form_label[align-justify] {
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify
}

.wi-form-item .wi-form_label[symbol] {
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.wi-form-item .wi-form_label[symbol]::after {
  position: absolute;
  top: 0;
  right: 8px;
  content: ":";
  font-size: 14px
}

.wi-form-item .wi-input,.wi-form-item .wi-select,.wi-form-item select {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-form {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

body::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

body::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

* {
  margin: 0;
  padding: 0;
  font-family: "PingFang SC",Arial,"Microsoft YaHei",sans-serif
}

.wi-char-limit-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-app-header {
  width: 100%;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--header-background);
  -webkit-box-shadow: 0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(170,170,170,.05);
  box-shadow: 0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(170,170,170,.05)
}

.wi-color-danger {
  color: rgb(var(--danger-color))
}

.wi-color-primary {
  color: rgb(var(--primary-color))
}

.wi-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80%
}

.wi-logo img {
  display: block;
  height: 80%
}

.wi-logo h1 {
  font-size: 0
}

.wi-gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray
}

.wi-app-container__wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden
}

.wi-app-container__wrapper .wi-app-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.wi-app-container__wrapper .pack-up .folding-action {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  left: 4px
}

.wi-app-container__wrapper .pack-up .wi-layout-sider {
  width: 0;
  -webkit-transform: translateX(-240px);
  transform: translateX(-240px)
}

.wi-app-container__wrapper .folding-action {
  -webkit-transition: left .5s cubic-bezier(.7,.3,.1,1);
  transition: left .5s cubic-bezier(.7,.3,.1,1)
}

.wi-app-container__wrapper .wi-layout-sider {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  width: 240px;
  -webkit-transition: width .5s cubic-bezier(.7,.3,.1,1),-webkit-transform .5s cubic-bezier(.7,.3,.1,1);
  transition: width .5s cubic-bezier(.7,.3,.1,1),-webkit-transform .5s cubic-bezier(.7,.3,.1,1);
  transition: transform .5s cubic-bezier(.7,.3,.1,1),width .5s cubic-bezier(.7,.3,.1,1);
  transition: transform .5s cubic-bezier(.7,.3,.1,1),width .5s cubic-bezier(.7,.3,.1,1),-webkit-transform .5s cubic-bezier(.7,.3,.1,1)
}

.wi-app-container__wrapper .wi-layout-sider:hover {
  overflow-y: auto
}

.wi-app-container__wrapper .wi-app-content__wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-app-container__wrapper .wi-app-content__wrapper.no-menu {
  width: 100%;
  margin-left: 0
}

.wi-app-container__wrapper .wi-app-content__wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-app-container__wrapper .wi-app-content__wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-app-container__wrapper .wi-app-content__wrapper::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-bottom-copyright {
  background: #fff;
  border-top: 1px solid #e6ecf1
}

.wi-white-space {
  white-space: pre-line;
  word-break: break-all
}

.wi-header-container__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%
}

.wi-hide-visibility {
  visibility: hidden;
  height: 0;
  overflow: hidden
}

.wi-load-more__wrapper {
  text-align: center;
  padding: 10px
}

.wi-padding-right-15 {
  padding-right: 15px
}

.wi-margin-top-md {
  margin-top: 16px
}

.wi-display-none {
  display: none
}

[block] {
  display: block
}

[flex] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

[flex-wrap] {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

[direction-column] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

[align-justify] {
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify
}

[items-center] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

[items-start] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

[space-between] {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

[inline-block] {
  display: inline-block
}

[scroll] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

[scroll]::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

[scroll]::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

[scroll]::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

[align-start] {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

[raduis] {
  border-radius: 8px
}

[pointer] {
  cursor: pointer
}

.wi-triangle {
  cursor: pointer
}

.wi-triangle::after {
  display: inline-block;
  content: "";
  height: 0;
  width: 0;
  border-top: 7.5px solid #ccc;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent
}

.wi-triangle[right]::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg)
}

.wi-triangle[left]::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.calendar .tc-head select {
  height: 32px!important
}

.calendar .tc-head>i {
  cursor: pointer;
  font-size: 0
}

.calendar .tc-head>i::after {
  display: inline-block;
  content: "";
  height: 0;
  width: 0;
  border-top: 7.5px solid #ccc;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent
}

.calendar .tc-head>i.prev::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.calendar .tc-head>i.next::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg)
}

img {
  vertical-align: top
}

img[mode=contain] {
  -o-object-fit: contain;
  object-fit: contain
}

img[mode=cover] {
  -o-object-fit: cover;
  object-fit: cover
}

img[mode=fill] {
  -o-object-fit: fill;
  object-fit: fill
}

img[mode=scale-down] {
  -o-object-fit: scale-down;
  object-fit: scale-down
}

img[contain] {
  -o-object-fit: contain;
  object-fit: contain
}

img[cover] {
  -o-object-fit: cover;
  object-fit: cover
}

img[fill] {
  -o-object-fit: fill;
  object-fit: fill
}

img[none] {
  -o-object-fit: none;
  object-fit: none
}

img[scale-down] {
  -o-object-fit: scale-down;
  object-fit: scale-down
}

img[type=previewImage] {
  cursor: pointer
}

input[type=color],input[type=number],input[type=text] {
}

input[type=checkbox] {
  width: 14px!important;
  height: 14px!important
}

.wi-input,input,textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  padding: 8px 11px;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  box-sizing: border-box
}

.wi-input::-webkit-input-placeholder,input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #cecece
}

.wi-input::-moz-placeholder,input::-moz-placeholder,textarea::-moz-placeholder {
  font-size: 14px;
  color: #cecece
}

.wi-input:-ms-input-placeholder,input:-ms-input-placeholder,textarea:-ms-input-placeholder {
  font-size: 14px;
  color: #cecece
}

.wi-input::-ms-input-placeholder,input::-ms-input-placeholder,textarea::-ms-input-placeholder {
  font-size: 14px;
  color: #cecece
}

.wi-input::placeholder,input::placeholder,textarea::placeholder {
  font-size: 14px;
  color: #cecece
}

.wi-input[resize=none],input[resize=none],textarea[resize=none] {
  resize: none
}

.wi-input[resize=vertical],input[resize=vertical],textarea[resize=vertical] {
  resize: vertical
}

.wi-input[disabled]:hover,.wi-input[readonly]:hover,input[disabled]:hover,input[readonly]:hover,textarea[disabled]:hover,textarea[readonly]:hover {
  border-color: #d9d9d9
}

.wi-input:hover,input:hover,textarea:hover {
  border-color: rgb(var(--primary-color));
  border-right-width: 1px!important
}

.wi-input[outline=none]:focus,input[outline=none]:focus,textarea[outline=none]:focus {
  border-color: #d9d9d9!important;
  border-right-width: 0!important;
  -webkit-box-shadow: none;
  box-shadow: none
}

.wi-input:focus,input:focus,textarea:focus {
  border-color: rgb(var(--primary-color))!important;
  border-right-width: 1px!important;
  -webkit-box-shadow: 0 0 0 2px rgba(var(--primary-color),.1);
  box-shadow: 0 0 0 2px rgba(var(--primary-color),.1)
}

.wi-layouts-content {
  background: var(--layout-content-background);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-layouts-content .wi-empty {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  background: #fff
}

.wi-layouts-content .wi-empty.no-bg {
  background: 0 0
}

.wi-layouts-content .wi-empty::before {
  margin: 0 auto
}

.wi-layouts-content.wi-container {
  padding: 10px;
  background: #fff;
  border-radius: 0
}

.wi-layouts-content.wi-container .pager {
  background: #fff
}

.wi-layouts-content[node-radius] {
  border-radius: 0
}

.wi-layouts-content[scrollBar] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-layouts-content[scrollBar]::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-layouts-content[scrollBar]::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-layouts-content[scrollBar]::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-layouts-content.white {
  background-color: #fff
}

.wi-layouts-content[full-screen] {
  height: 100vh
}

.wi-layouts-content[row] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

.wi-layouts-content[padding=none] {
  padding: 0
}

.wi-layouts-content .wi-table-wrapper {
  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-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden
}

.wi-layouts-content .wi-table-wrapper .wi-table-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-layouts-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  margin-bottom: 0;
  border-radius: 4px;
  padding: 24px 15px 0!important;
  margin-bottom: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.wi-layouts-search.form {
  padding-bottom: 0
}

.wi-layouts-search .wi-form-item {
  width: 33.333%;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.wi-layouts-search .wi-form-item .wi-form_label {
  min-width: 80px
}

.wi-layouts-category--list .wi-layouts-category--list__item {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  padding: 0 20px;
  cursor: pointer;
  -webkit-transition: ease .5s;
  transition: ease .5s
}

.wi-layouts-category--list .wi-layouts-category--list__item.active,.wi-layouts-category--list .wi-layouts-category--list__item:hover {
  background: rgba(87,123,249,.2)
}

.wi-layouts-header {
  margin-bottom: 15px
}

.wi-layouts-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.wi-layouts-title {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  word-break: break-all
}

.wi-layouts-content .wi-layouts-category{
  background-color: #fff;
}

.wi-layouts-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 240px;
  padding: 10px 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.wi-layouts-category.shadow {
  -webkit-box-shadow: 0 12px 17px 0 rgba(117,101,228,.17);
  box-shadow: 0 12px 17px 0 rgba(117,101,228,.17)
}

.wi-layouts-category.white {
  background-color: #fff;
  box-shadow: inset -1px 0 0 0 rgb(0 0 0 / 5%),inset 0 1px 0 0 rgb(0 0 0 / 5%)
}

.wi-layouts-category .wi-layouts-category__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 15px
}

.wi-layouts-category .wi-layouts-category--item {
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  cursor: pointer
}

.wi-layouts-category .wi-layouts-category--item input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 32px
}

.wi-layouts-category .wi-layouts-category--item::after {
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  -webkit-transition: .5s cubic-bezier(.215,.61,.355,1);
  transition: .5s cubic-bezier(.215,.61,.355,1);
  background: -webkit-gradient(linear,left top,right top,from(rgba(var(--primary-color),0)),to(rgba(var(--primary-color),1)));
  background: linear-gradient(90deg,rgba(var(--primary-color),0),rgba(var(--primary-color),1));
  width: 4px;
  height: 0
}

.wi-layouts-category .wi-layouts-category--item .wi-layouts-category-actions {
  display: none;
  margin-left: 10px
}

.wi-layouts-category .wi-layouts-category--item.edit .wi-layouts-category--item__title {
  display: none
}

.wi-layouts-category .wi-layouts-category--item.edit .wi-layouts-category-actions {
  display: none!important
}

.wi-layouts-category .wi-layouts-category--item:hover .wi-layouts-category-actions {
  display: block
}

.wi-layouts-category .wi-layouts-category--item.active {
  background: rgba(87,123,249,.2)
}

.wi-layouts-category .wi-layouts-category--item.active::after {
  height: 100%
}

.wi-layouts-category .wi-layouts-category--item.space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.wi-layouts-category .wi-layouts-category--item__title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  color: #333
}

.wi-layouts-category .wi-layouts-category--item__title:hover {
  color: rgb(var(--primary-color))
}

.wi-layouts-category .wi-layouts-category__container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-layouts-category .wi-layouts-category__container::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-layouts-category .wi-layouts-category__container::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-layouts-category .wi-layouts-category__container::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-layouts-category .tree-vert {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-layouts-category .tree-vert::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-layouts-category .tree-vert::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-layouts-category .tree-vert::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-layouts-category .tree-vert i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.wi-layouts-category .tree-vert i::after {
  content: " "
}

.wi-layouts-category .tree-vert i::before {
  width: 10px;
  content: " ";
  margin-right: 6px
}

.wi-layouts-category .tree-vert i.expansion::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  height: 0;
  width: 0;
  border-top: 5px solid #ccc;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent
}

.wi-layouts-category .tree-vert i .tree-cbx {
  margin-right: 5px;
  border-color: #d9d9d9
}

.wi-layouts-category .tree-vert i.collapse.expansion::before {
  -webkit-transform: rotate(0);
  transform: rotate(0)
}

.wi-layouts-category .tree-vert i.active,.wi-layouts-category .tree-vert i.active a {
  color: rgb(var(--primary-color));
  background: 0 0
}

.wi-layouts-category .tree-vert i.active a:hover,.wi-layouts-category .tree-vert i.active:hover {
  color: rgb(var(--primary-color))
}

.wi-layouts-list__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden
}

.wi-layouts-list__wrapper[column] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.wi-layouts-list__wrapper[col-4] .wi-card,
.wi-layouts-list__wrapper[col-4] .c-card {
  width: calc(25% - 14px)
}

.wi-layouts-list__wrapper[col-4] .wi-card:nth-child(3n),
.wi-layouts-list__wrapper[col-4] .c-card:nth-child(3n) {
  margin-right: 18px
}

.wi-layouts-list__wrapper[col-4] .wi-card:nth-child(4n),
.wi-layouts-list__wrapper[col-4] .c-card:nth-child(4n) {
  margin-right: 0
}

.wi-layouts-list__wrapper[col-2] .wi-card,
.wi-layouts-list__wrapper[col-2] .c-card {
  width: calc(50% - 8px);
  margin-right: 0
}

.wi-layouts-list__wrapper[col-2] .wi-card:nth-child(2n),
.wi-layouts-list__wrapper[col-2] .c-card:nth-child(2n) {
  margin-left: 15px
}

.wi-layouts-list__wrapper .wi-card,
.wi-layouts-list__wrapper .c-card {
  width: calc(33.333% - 12px);
  margin-bottom: 15px;
  margin-right: 18px
}

.wi-layouts-list__wrapper .wi-card:nth-child(3n),
.wi-layouts-list__wrapper .c-card:nth-child(3n) {
  margin-right: 0
}

.triangle.down {
  height: 0;
  width: 0;
  border-top: 5px solid rgb(var(--success-color));
  border-left: 5px solid transparent;
  border-right: 5px solid transparent
}

.triangle.up {
  height: 0;
  width: 0;
  border-bottom: 5px solid rgb(var(--danger-color));
  border-left: 5px solid transparent;
  border-right: 5px solid transparent
}

.wi-loop-panel {
  margin: 15px;
  padding: 20px;
  border-radius: 4px;
  background: #f4f7fe
}

.wi-loop-panel header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.wi-loop-panel header h3 {
  font-size: 14px;
  font-weight: 400;
  color: #333
}

.wi-loop-panel header i {
  font-size: 18px;
  cursor: pointer
}

.flex-center {
  display: -webkit-box!important;
  display: -ms-flexbox!important;
  display: flex!important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

#sider>.wi-menu>li {
  font-size: 14px;
  font-weight: 400;
  padding-left: 24px!important
}

#sider .wi-menu li.wi-menu-sub {
  padding: 0!important;
  height: auto!important
}

#sider .wi-menu li.wi-menu-sub::after,#sider .wi-menu li.wi-menu-sub::before {
  display: none
}

.wi-menu {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden
}

.wi-menu[light=true] {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  overflow: inherit
}

.wi-menu[light=true] li::before {
  display: none
}

.wi-menu[light=true][top=true] li {
  color: rgb(var(--white-color));
  font-size: 16px;
  font-weight: 400
}

.wi-menu[light=true][top=true] li.active,.wi-menu[light=true][top=true] li:hover {
  color: rgb(var(--white-color))
}

.wi-menu[light=true][top=true] li.active a,.wi-menu[light=true][top=true] li:hover a {
  color: rgb(var(--white-color))
}

.wi-menu[light=true][top=true] li::after {
  background: rgb(var(--white-color));
  top: 0
}

.wi-menu[light=true] li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0;
  margin: 0 20px;
  font-size: 14px
}

.wi-menu[light=true] li::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: " ";
  -webkit-transition: .5s cubic-bezier(.215,.61,.355,1);
  transition: .5s cubic-bezier(.215,.61,.355,1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgb(var(--primary-color));
  height: 4px;
  width: 0;
  top: inherit
}

.wi-menu[light=true] li.active,.wi-menu[light=true] li:hover {
  background-color: transparent;
  color: rgb(var(--primary-color))
}

.wi-menu[light=true] li.active a,.wi-menu[light=true] li:hover a {
  color: rgb(var(--primary-color));
  text-decoration: none!important
}

.wi-menu[light=true] li.active::after,.wi-menu[light=true] li:hover::after {
  width: 100%;
  height: 4px
}

.wi-menu>.wi-menu {
  margin: 0
}

.wi-menu .wi-menu-title {
  height: 24px;
  line-height: 24px;
  padding-top: 15px;
  color: #00000073;
  padding-left: 16px;
  cursor: auto;
  margin-bottom: 10px
}

.wi-menu .wi-menu-title:hover {
  color: #00000073!important
}

.wi-menu li {
  display: block;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  position: relative;
  padding: 0 24px;
  height: 40px;
  line-height: 40px;
  color: #333;
  -webkit-transition: .5s cubic-bezier(.215,.61,.355,1);
  transition: .5s cubic-bezier(.215,.61,.355,1)
}

.wi-menu li.active.title::before,.wi-menu li:hover.title::before {
  display: none
}

.wi-menu li i {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.wi-menu li i.active {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg)
}

.wi-menu li.title::after {
  display: none
}

.wi-menu li.title.active,.wi-menu li.title:hover {
  background-color: rgb(var(--white-color))!important;
  color: rgb(var(--primary-color))
}

.wi-menu li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  -webkit-transition: .5s cubic-bezier(.215,.61,.355,1);
  transition: .5s cubic-bezier(.215,.61,.355,1);
  background: rgb(var(--primary-color));
  width: 4px;
  height: 0
}

.wi-menu li.active::after,.wi-menu li:hover::after {
  height: 100%
}

.wi-menu li.active::before,.wi-menu li:hover::before {
  position: absolute;
  content: " ";
  background: rgb(var(--primary-color));
  opacity: .2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.wi-image-preview-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  cursor: pointer;
  z-index: 99999
}

.wi-image-preview-wrap .wi-image-preview-img {
  display: block;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.wi-rows {
  display: grid;
  grid-gap: 20px 20px;
  grid-template-columns: repeat(5,20%);
  grid-template-rows: repeat(5,20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

div.wi-daily-schedule {
  overflow-y: auto
}

div.wi-daily-schedule i.hover {
  background-color: rgb(var(--primary-color))
}

div.wi-daily-schedule header>div:last-child {
  display: none
}

div.wi-daily-schedule section i[disabled] {
  opacity: .4;
  cursor: not-allowed;
  border-color: #faebeb
}

div.wi-daily-schedule section i {
  background: #fff
}

div.wi-daily-schedule section i.multiple,div.wi-daily-schedule section i.single {
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top: 1px solid #e1e4e8;
  border-bottom: 1px solid #e1e4e8
}

div.wi-daily-schedule section b,div.wi-daily-schedule section i {
  border-color: #e1e4e8
}

div.wi-daily-schedule section b {
  background: #eaefff
}

.wi-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eef1fa;
  height: 40px;
  padding-left: 15px;
  border-radius: 50px;
  margin: 0 auto
}

.wi-search input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  background: 0 0;
  height: 100%
}

.wi-search input:focus {
  border-color: transparent!important;
  -webkit-box-shadow: none;
  box-shadow: none
}

.wi-search button {
  color: #fff;
  font-size: 14px;
  height: 40px;
  padding: 0 30px;
  border-radius: 20px;
  background: -webkit-gradient(linear,left top,right top,from(rgba(var(--primary-color),.5)),to(rgba(var(--primary-color),1)));
  background: linear-gradient(to right,rgba(var(--primary-color),.5),rgba(var(--primary-color),1))
}

.wi-search button:hover {
  background: -webkit-gradient(linear,left top,right top,from(rgba(var(--primary-color),.5)),to(rgba(var(--primary-color),1)));
  background: linear-gradient(to right,rgba(var(--primary-color),.5),rgba(var(--primary-color),1))
}

.wi-search button.primary {
  background: rgb(var(--primary-color))
}

.wi-select,select {
  height: 34px!important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  border: 1px solid #cecece;
  border-radius: 4px;
  padding: 6px 11px;
  box-sizing: border-box;
  font-size: 14px
}

.wi-select option[disabled],.wi-select option[placeholder],select option[disabled],select option[placeholder] {
  opacity: .6;
  cursor: not-allowed;
  border-color: #faebeb;
  color: #929292
}

.wi-stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100px;
  height: 34px;
  background: #fafafa;
  border-radius: 8px
}

.wi-stepper i {
  width: 25px;
  height: 100%;
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  color: rgb(var(--primary-color));
  font-style: normal
}

.wi-stepper input {
  border: 0;
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 50px;
  background: 0 0;
  border-radius: 8px 8px 8px 8px;
  text-align: center
}

.wi-stepper input:focus {
  -webkit-box-shadow: none;
  box-shadow: none
}

.wi-stepper input::-webkit-inner-spin-button,.wi-stepper input::-webkit-outer-spin-button {
  -webkit-appearance: none
}

.wi-stepper input[type=number] {
  -moz-appearance: textfield
}

.wi-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.wi-steps .wi-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0
}

.wi-steps .wi-step+.wi-step {
  margin-left: 20px
}

.wi-steps .wi-step .text-wrap {
  padding-left: 10px
}

.wi-steps .wi-step .text-wrap h6 {
  color: #333;
  font-size: 14px;
  font-weight: 400
}

.wi-steps .wi-step .text-wrap p {
  padding-top: 5px
}

.wi-steps .wi-step .text-wrap h6,.wi-steps .wi-step .text-wrap p {
  line-height: 1
}

.wi-table-main {
  position: relative;
  overflow-x: auto;
  margin-bottom: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-table-main::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-table-main::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-table-main::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-table-main .wi-table-thead {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 3
}

.wi-table-main table {
  margin-bottom: 0;
  table-layout: fixed
}

.wi-table-main table td,.wi-table-main table th {
  position: relative;
  background: #fff
}

.wi-table-main table td[fixed-right],.wi-table-main table th[fixed-right] {
  position: sticky;
  right: 0;
  z-index: 2
}

.wi-table-main table td[fixed-right]::before,.wi-table-main table th[fixed-right]::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  width: 30px;
  pointer-events: none;
  left: 0;
  -webkit-transform: translate(-100%);
  transform: translate(-100%)
}

.wi-table-main table td[fixed-left],.wi-table-main table th[fixed-left] {
  position: sticky;
  left: 0;
  z-index: 2
}

.wi-table-main table td[fixed-left]::before,.wi-table-main table th[fixed-left]::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  width: 30px;
  -webkit-transform: translate(100%);
  transform: translate(100%);
  pointer-events: none
}

.wi-table-main .wi-table-caret-wrapper {
  position: relative;
  margin-left: 8px
}

.wi-table-main .wi-table-caret-wrapper .asc {
  position: absolute;
  left: 0;
  top: 2px;
  height: 0;
  width: 0;
  border-bottom: 5px solid #ccc;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent
}

.wi-table-main .wi-table-caret-wrapper .des {
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 0;
  width: 0;
  border-top: 5px solid #ccc;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent
}

.wi-table-wrapper {
  position: relative;
  padding: 15px;
  background: #fff;
  border-radius: 5px
}

.wi-table-wrapper tr.current-row td {
  background: rgba(var(--primary-color),.2)
}

.wi-table-wrapper .wi-table-column.sort {
  cursor: pointer
}

.wi-table-wrapper .wi-table-column.asc .asc {
  height: 0;
  width: 0;
  border-bottom: 5px solid rgb(var(--primary-color));
  border-left: 5px solid transparent;
  border-right: 5px solid transparent
}

.wi-table-wrapper .wi-table-column.des .des {
  height: 0;
  width: 0;
  border-top: 5px solid rgb(var(--primary-color));
  border-left: 5px solid transparent;
  border-right: 5px solid transparent
}

.wi-table-wrapper[center] .wi-table-column {
  text-align: center
}

.wi-table-wrapper .wi-table-main {
  overflow-x: auto;
  margin-bottom: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.wi-table-wrapper .wi-table-main tbody {
  position: inherit
}

.wi-table-wrapper td {
  word-wrap: break-word;
  white-space: normal;
  word-break: break-all;
  vertical-align: middle;
  padding: 16px 12px
}

.wi-table-placeholder .wi-empty {
  text-align: center;
  color: rgba(0,0,0,.25);
  height: 100px;
  line-height: 100px;
  font-size: 14px
}

.wi-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.wi-tabs[borderd] {
  border-bottom: 1px solid #f0f0f0
}

.wi-tabs[card] {
  padding: 0 20px;
  background: #f4f7fe
}

.wi-tabs[card] .wi-tabs-tab+.wi-tabs-tab {
  margin-left: 30px
}

.wi-tabs[center] .wi-tabs-tab {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center
}

.wi-tabs .wi-tabs-tab {
  position: relative;
  font-size: 14px;
  padding: 10px 0;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.wi-tabs .wi-tabs-tab+.wi-tabs-tab {
  margin-left: 15px
}

.wi-tabs .wi-tabs-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgb(var(--primary-color))
}

.wi-tabs .wi-tabs-tab.active,.wi-tabs .wi-tabs-tab:hover {
  color: rgb(var(--primary-color))
}

.wi-tabs .wi-tabs-tab.active::after,.wi-tabs .wi-tabs-tab:hover::after {
  width: 85%;
  -webkit-transition: .3s cubic-bezier(.9,0,.3,.7);
  transition: .3s cubic-bezier(.9,0,.3,.7)
}

.wi-tag-group .wi-tag-title {
  font-size: 14px;
  color: #333;
  background-color: #f4f7fe;
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px solid #d9d9d9
}

.wi-tag-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #f4f7fe;
  max-height: 400px;
  padding: 20px 20px 10px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-tag-content::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-tag-content::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-tag-content::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 8px;
  background-color: #afb0c6;
  height: 26px;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 10px
}

.wi-tag+.wi-tag {
  margin-left: 10px
}

.wi-tag .wi-tag-label {
  margin-right: 8px
}

.wi-tag .wi-tag-delete {
  padding: 5px;
  cursor: pointer
}

.wi-text {
  font-size: 12px;
  font-weight: 400;
  color: #383874;
  line-height: 17px;
  text-shadow: 0 12px 17px rgba(117,101,228,.17);
  word-wrap: break-word;
  white-space: normal;
  word-break: break-all
}

.wi-text-tip {
  color: rgb(var(--normal-color));
  font-size: 12px
}

.wi-text-tip[danger] {
  color: rgb(var(--danger-color))
}

.wi-text-tip[info] {
  color: #999
}

.wi-text-tip[success] {
  color: #52c41a
}

.wi-text-tip[warning] {
  color: #e6a23c
}

.wi-time-picker .time-spinner-wrapper {
  position: absolute;
  z-index: 9;
  background: #fff;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,.1)
}

.wi-time-picker .time-spinner-wrapper section {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.wi-time-picker .time-spinner-wrapper footer {
  text-align: right;
  padding-right: 10px;
  border-top: 1px solid #e4e4e4;
  padding: 5px 10px
}

.wi-time-picker .time-spinner-wrapper .time-spinner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.wi-time-picker .time-spinner-wrapper .time-spinner::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

.wi-time-picker .time-spinner-wrapper .time-spinner::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,.2);
  border-radius: 6px
}

.wi-time-picker .time-spinner-wrapper .time-spinner::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px
}

.wi-time-picker .time-spinner-wrapper .time-spinner .time-spinner-item {
  display: block;
  cursor: pointer;
  width: 60px;
  height: 32px;
  text-align: center;
  line-height: 32px
}

.wi-time-picker .time-spinner-wrapper .time-spinner .time-spinner-item.active {
  color: rgb(var(--primary-color))
}

.wi-time-picker .time-spinner-wrapper .time-spinner .time-spinner-item:hover {
  background: #f5f7fa
}

.wi-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: rgb(var(--primary-color));
  font-size: 14px;
  font-weight: 500;
  height: 20px;
  line-height: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px
}

.wi-title[card] {
  background-color: #f4f7fe
}

.wi-title::before {
  display: inline-block;
  content: " ";
  width: 3px;
  height: 80%;
  background-color: rgb(var(--primary-color));
  margin-right: 10px
}

@media (max-width: 900px) {
  .content-header {
      padding:20px
  }

  .login-container .login-box {
      width: 100%;
      -webkit-transform: translate(0);
      transform: translate(0)
  }

  .logoin-form-box {
      padding: 0
  }
}

.wi-uploader {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.wi-uploader .wi-uploader-button {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  background-color: #fafbff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0,0,0,.11);
  box-shadow: 0 4px 4px 0 rgba(0,0,0,.11);
  cursor: pointer
}

.wi-uploader .wi-uploader-button .wi-input-file {
  position: absolute;
  left: -50%;
  top: -50%;
  width: 1000%;
  height: 1000%;
  cursor: pointer
}

.wi-uploader .wi-uploader-button[column] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.wi-uploader .wi-uploader-button[borderd] {
  border: 1px dashed #d9d9d9
}

.wi-uploader .wi-uploader-button .wi-icon {
  font-size: 30px;
  margin-right: 10px;
  color: rgb(var(--primary-color))
}

.wi-uploader .wi-uploader-button img {
  width: 34px
}

.wi-uploader .wi-uploader-text {
  color: #333;
  font-size: 14px;
  line-height: 1
}

.wi-uploader .wi-uploader-tip {
  color: #999;
  font-size: 12px;
  line-height: 1;
  padding-top: 6px
}

.wi-uploader .wi-uploader-container {
  margin-top: 15px
}

.wi-uploader .wi-uploader-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed #dce2e8
}

.wi-uploader .wi-uploader-item .wi-uploader-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.wi-uploader .wi-uploader-item .wi-uploader-content img {
  width: 30px;
  height: 30px
}

.wi-uploader .wi-uploader-item .wi-uploader-content span {
  font-size: 14px;
  margin-left: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all
}

.wi-uploader .wi-uploader-item .wi-uploader-delete {
  cursor: pointer
}

.wi-year-schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left: 1px solid #e1e4e8;
  border-top: 1px solid #e1e4e8;
  background: #fff
}

.wi-year-schedule>div {
  width: 25%;
  height: 120px;
  text-align: right;
  padding-top: 8px;
  padding-right: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #e1e4e8;
  border-bottom: 1px solid #e1e4e8;
  cursor: pointer
}

.wi-year-schedule>div.multiple {
  background-color: rgb(var(--primary-color));
  border-color: rgb(var(--primary-color))
}

.wi-year-schedule>div.single {
  background-color: #bbd2ff;
  border-color: #bbd2ff
}

.wi-year-schedule>div span {
  font-size: 16px
}

.wi-year-schedule>div[disable] {
  cursor: not-allowed
}

.wi-year-schedule>div[disable] span {
  opacity: .2
}

.wi-year-schedule>div.active {
  background: rgb(var(--primary-color))
}

.wi-checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.wi-checkbox-group[column] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.wi-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer
}

.wi-checkbox+.wi-checkbox {
  margin-left: 15px
}

.wi-checkbox span {
  color: #333;
  margin-left: 10px
}

.wi-checkbox:hover .wi-checkbox-input {
  border-color: rgb(var(--primary-color))
}

.wi-checkbox-input {
  width: 17px;
  height: 17px;
  -webkit-transition: cubic-bezier(.215,.61,.355,1);
  transition: cubic-bezier(.215,.61,.355,1);
  border-radius: 5px;
  margin: 0
}

.wi-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.wi-radio-group.no-shrink .wi-radio-button+.wi-radio-button {
  margin-left: 0;
  border-left: 1px solid #fff;
  border-radius: 0
}

.wi-radio-group.no-shrink .wi-radio-button:hover {
  color: #929292;
  border-color: #faebeb
}

.wi-radio-group.no-shrink .wi-radio-button.active {
  background-color: rgb(var(--primary-color));
  border-color: rgb(var(--primary-color));
  color: #fff;
  border-radius: 0
}

.wi-radio-button {
  cursor: pointer
}

.wi-radio-button.active,.wi-radio-button:hover {
  color: rgb(var(--primary-color))
}

.wi-radio-button+.wi-radio-button {
  margin-left: 10px
}
