@import url(iconfont/iconfont.css);
.x-buttonGroup {
  display: inline-flex;
  height: 0.24rem;
  line-height: 0.24rem;
  border-radius: 4px;
  box-sizing: border-box;
}

.x-buttonGroup-li {
  box-sizing: content-box;
  cursor: pointer;
  padding: 0 0.2rem;
  border: 1px solid #D9D9D9;
  border-right: 0px;
}

.x-buttonGroup-li:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.x-buttonGroup-li:last-child {
  border-right: 1px solid #D9D9D9;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.x-buttonGroup-li-active {
  border: 1px solid #5B86FD !important;
}

.x-buttonGroup-li-active + li {
  border-left: 0px;
}

.x-btn {
  padding: 0 0.15rem;
  height: 0.26rem;
  word-break: keep-all;
  display: inline-block;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  font-size: 0.14rem;
  color: #595959;
  outline: none;
  border: 1px solid #D9D9D9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.x-btn:hover {
  opacity: 0.8;
}

.x-btn:active {
  opacity: 1;
}

.x-btn-primary {
  background-color: #5B86FD;
  color: #fff;
  border: 1px solid #5B86FD;
}

.x-btn-warning {
  background-color: #F5F5F5;
  color: #DD4B39;
}

.x-btn .xicon {
  margin-right: 0.05rem;
  font-size: 0.14rem;
}

.x-btn-disable {
  cursor: not-allowed;
  background-color: #F5F5F5;
  color: #B8B8B8;
  border: 1px solid #D9D9D9;
}

.x-btn-disable:hover {
  opacity: 1;
}

.x-btn-loading {
  cursor: not-allowed;
  background-color: #AAC0FD;
  color: #fff;
}

.x-btn-loading:hover {
  opacity: 1;
}

.x-btn-lg {
  padding: 0 0.35rem;
  height: 0.32rem;
  font-size: 0.16rem;
}

.x-btn-sm {
  padding: 0 0.2rem;
  height: 0.2rem;
  font-size: 0.12rem;
}

.x-btn .xicon-refresh {
  animation: myfirst 1s infinite linear;
  -webkit-animation: myfirst 1s infinite linear;
  transform: rotate(360deg);
}

@keyframes myfirst {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes myfirst {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.x-input-container {
  position: relative;
}

.x-input-container .x-input {
  display: block;
  width: 100%;
  font-size: .14rem;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  color: #595959;
  border-radius: .04rem;
  box-sizing: border-box;
  transition: all .3s;
  outline: none;
}

.x-input-container .x-input::-webkit-input-placeholder {
  color: #D9D9D9;
}

.x-input-container .x-input.disabled {
  background-color: #F5F5F5;
  color: #B8B8B8;
  cursor: not-allowed;
}

.x-input-container .x-input.disabled:hover {
  border-color: #D9D9D9;
}

.x-input-container .x-input.danger {
  color: #DD4B39;
  border-color: #DD4B39;
}

.x-input-container .x-input.danger:hover {
  border-color: #DD4B39;
}

.x-input-container .x-input.danger:focus {
  border-color: #DD4B39;
}

.x-input-container .x-input:hover {
  border-color: #5B86FD;
}

.x-input-container .x-input:focus {
  border-color: #5B86FD;
}

.x-input-container .x-input.lg {
  padding: .065rem .1rem;
}

.x-input-container .x-input.md {
  padding: .035rem .1rem;
}

.x-input-container .x-input.sm {
  padding: .005rem .1rem;
}

.x-input-container > i {
  position: absolute;
  right: .15rem;
  top: 50%;
  transform: translate(0, -50%);
}

.x-input-container .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #5B85FC;
  text-align: center;
  border-top-right-radius: .04rem;
  border-bottom-right-radius: .04rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 .2rem;
  cursor: pointer;
}

.x-input-container .search-btn > i {
  color: #ffffff;
}

.x-input-container-i18n {
  position: relative;
}

.x-input-container-i18n .x-input {
  display: block;
  width: 100%;
  font-size: .14rem;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  color: #595959;
  border-radius: .04rem;
  box-sizing: border-box;
  transition: all .3s;
  outline: none;
}

.x-input-container-i18n .x-input::-webkit-input-placeholder {
  color: #D9D9D9;
}

.x-input-container-i18n .x-input.disabled {
  background-color: #F5F5F5;
  color: #B8B8B8;
  cursor: not-allowed;
}

.x-input-container-i18n .x-input.disabled:hover {
  border-color: #D9D9D9;
}

.x-input-container-i18n .x-input.danger {
  color: #DD4B39;
  border-color: #DD4B39;
}

.x-input-container-i18n .x-input.danger:hover {
  border-color: #DD4B39;
}

.x-input-container-i18n .x-input.danger:focus {
  border-color: #DD4B39;
}

.x-input-container-i18n .x-input:hover {
  border-color: #5B86FD;
}

.x-input-container-i18n .x-input:focus {
  border-color: #5B86FD;
}

.x-input-container-i18n .x-input.lg {
  padding: .065rem .1rem;
}

.x-input-container-i18n .x-input.md {
  padding: .035rem .1rem;
}

.x-input-container-i18n .x-input.sm {
  padding: .005rem .1rem;
}

.x-input-container-i18n > i {
  position: absolute;
  left: .15rem;
  top: 50%;
  transform: translate(0, -50%);
}

.x-input-container-i18n .search-btn {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #5B85FC;
  text-align: center;
  border-top-right-radius: .04rem;
  border-bottom-right-radius: .04rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 .2rem;
  cursor: pointer;
}

.x-input-container-i18n .search-btn > i {
  color: #ffffff;
}

.x-radio {
  display: inline-block;
}

.x-radio .x-radio-li {
  padding: 0.2rem 0;
  width: 1.2rem;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.x-radio .x-radio-li i {
  margin-right: 6px;
}

.x-radio .active-radio {
  color: #5B86FD;
}

.x-radio .x-selected-img {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 5px;
  display: inline-flex;
}

.x-radio .x-selected-img::before {
  position: absolute;
}

.x-radio .radio-disable {
  cursor: not-allowed !important;
  color: #d9d9d9;
}

.x-radio-i18n {
  display: inline-block;
}

.x-radio-i18n .x-radio-li {
  padding: 0.2rem 0;
  width: 1.2rem;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.x-radio-i18n .x-radio-li i {
  margin-left: 6px;
}

.x-radio-i18n .active-radio {
  color: #5B86FD;
}

.x-radio-i18n .x-selected-img {
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 5px;
  display: inline-flex;
}

.x-radio-i18n .x-selected-img::before {
  position: absolute;
}

.x-radio-i18n .radio-disable {
  cursor: not-allowed !important;
  color: #d9d9d9;
}

.x-checkbox {
  display: inline-block;
  white-space: nowrap;
}

.x-checkbox .x-checkbox-li {
  padding: 0.2rem 0;
  width: 1.2rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}

.x-checkbox .x-checkbox-li i {
  margin-right: 6px;
}

.x-checkbox .active-checkbox {
  color: #5B86FD;
}

.x-checkbox .checkbox-disable {
  cursor: not-allowed;
  color: #D9D9D9;
}

.x-checkbox-i18n {
  display: inline-block;
  white-space: nowrap;
}

.x-checkbox-i18n .x-checkbox-li {
  padding: 0.2rem 0;
  width: 1.2rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}

.x-checkbox-i18n .x-checkbox-li i {
  margin-left: 6px;
}

.x-checkbox-i18n .active-checkbox {
  color: #5B86FD;
}

.x-checkbox-i18n .checkbox-disable {
  cursor: not-allowed;
  color: #D9D9D9;
}

.x-header {
  height: .6rem;
  line-height: .6rem;
  color: #314659;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  background-color: #fff;
  box-shadow: 0px 2px 4px 2px rgba(155, 156, 156, 0.1);
}

.x-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.x-layout.x-layout-has-sidebar {
  flex-direction: row;
}

.x-sidebar {
  width: 2rem;
  color: #314659;
  border-right: .5px solid #E9E9E9;
  background-color: #fff;
  margin-top: .2rem;
  height: 100vh;
  overflow-y: scroll;
}

.x-sidebar .tree-header {
  position: relative;
}

.x-sidebar .tree-header .header-icon {
  font-size: .12rem;
}

.x-sidebar .pull-right {
  width: auto;
  position: absolute;
  right: .2rem;
  transition: transform .5s ease;
}

.x-sidebar .treeview.menu-open .pull-right {
  transform: rotate(-90deg);
  transition: transform .5s ease;
}

.x-sidebar .treeview-menu {
  height: 0;
  transition: height .5s;
  padding-left: 0;
  overflow: hidden;
}

.x-sidebar .treeview-menu .menu-item {
  font-size: .12rem;
}

.x-sidebar .treeview-menu .menu-item .english-name {
  margin-right: .1rem;
}

.x-sidebar .treeview-menu .menu-item .name {
  color: #909090;
}

.x-sidebar .child-icon {
  font-size: .12rem;
  margin-right: .1rem;
}

.x-sidebar .menu-item, .x-sidebar .tree-header {
  padding: .12rem .2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.x-sidebar .menu-item:hover a, .x-sidebar .tree-header:hover a {
  color: #5B86FD;
}

.x-sidebar .menu-item:hover a .name, .x-sidebar .tree-header:hover a .name {
  color: #5B86FD;
}

.x-sidebar .menu-item.active, .x-sidebar .tree-header.active {
  cursor: pointer;
  background-color: rgba(91, 134, 253, 0.1);
  border-right: 3px solid #5B86FD;
}

.x-sidebar .menu-item.active a, .x-sidebar .menu-item.active .name, .x-sidebar .tree-header.active a, .x-sidebar .tree-header.active .name {
  color: #5B86FD;
}

.x-sidebar .menu-item .icon-left, .x-sidebar .tree-header .icon-left {
  width: .2rem;
}

.x-box {
  background-color: #fff;
  margin-bottom: .3rem;
  border-radius: 5px;
  padding: .2rem .2rem .2rem .34rem;
  box-shadow: 0px 2px 4px 2px rgba(0, 66, 124, 0.1);
}

.x-box-header {
  margin-bottom: .1rem;
}

.x-box-title::before {
  content: '';
  width: .1rem;
  height: .1rem;
  border-radius: 50%;
  margin-left: -.14rem;
  margin-right: 5px;
  display: inline-block;
  background-color: #55C97B;
}

.x-box-i18n {
  background-color: #fff;
  margin-bottom: .3rem;
  border-radius: 5px;
  padding: .2rem .34rem .2rem .2rem;
  box-shadow: 0px 2px 4px 2px rgba(0, 66, 124, 0.1);
}

.x-box-i18n .x-box-header {
  margin-bottom: .1rem;
}

.x-box-i18n .x-box-title::before {
  content: '';
  width: .1rem;
  height: .1rem;
  border-radius: 50%;
  margin-right: -.14rem;
  margin-left: 5px;
  display: inline-block;
  background-color: #55C97B;
}

.x-row * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.x-grid-row [class^=col-] {
  padding: 0 1%;
}

@media (max-width: 992px) {
  .x-grid-row [class^=col-] {
    display: block;
  }
}

@media (min-width: 992px) {
  .col-sm-12 {
    width: 100%;
    display: inline-block;
  }
  .col-sm-11 {
    width: 91.66667%;
    display: inline-block;
  }
  .col-sm-10 {
    width: 83.33333%;
    display: inline-block;
  }
  .col-sm-9 {
    width: 75%;
    display: inline-block;
  }
  .col-sm-8 {
    width: 66.66667%;
    display: inline-block;
  }
  .col-sm-7 {
    width: 58.33333%;
    display: inline-block;
  }
  .col-sm-6 {
    width: 50%;
    display: inline-block;
  }
  .col-sm-5 {
    width: 41.66667%;
    display: inline-block;
  }
  .col-sm-4 {
    width: 33.33333%;
    display: inline-block;
  }
  .col-sm-3 {
    width: 25%;
    display: inline-block;
  }
  .col-sm-2 {
    width: 16.66667%;
    display: inline-block;
  }
  .col-sm-1 {
    width: 8.33333%;
    display: inline-block;
  }
}

@media (min-width: 1200px) {
  .col-md-12 {
    width: 100%;
    display: inline-block;
  }
  .col-md-11 {
    width: 91.66667%;
    display: inline-block;
  }
  .col-md-10 {
    width: 83.33333%;
    display: inline-block;
  }
  .col-md-9 {
    width: 75%;
    display: inline-block;
  }
  .col-md-8 {
    width: 66.66667%;
    display: inline-block;
  }
  .col-md-7 {
    width: 58.33333%;
    display: inline-block;
  }
  .col-md-6 {
    width: 50%;
    display: inline-block;
  }
  .col-md-5 {
    width: 41.66667%;
    display: inline-block;
  }
  .col-md-4 {
    width: 33.33333%;
    display: inline-block;
  }
  .col-md-3 {
    width: 25%;
    display: inline-block;
  }
  .col-md-2 {
    width: 16.66667%;
    display: inline-block;
  }
  .col-md-1 {
    width: 8.33333%;
    display: inline-block;
  }
}

@media (min-width: 1500px) {
  .col-lg-12 {
    width: 100%;
    display: inline-block;
  }
  .col-lg-11 {
    width: 91.66667%;
    display: inline-block;
  }
  .col-lg-10 {
    width: 83.33333%;
    display: inline-block;
  }
  .col-lg-9 {
    width: 75%;
    display: inline-block;
  }
  .col-lg-8 {
    width: 66.66667%;
    display: inline-block;
  }
  .col-lg-7 {
    width: 58.33333%;
    display: inline-block;
  }
  .col-lg-6 {
    width: 50%;
    display: inline-block;
  }
  .col-lg-5 {
    width: 41.66667%;
    display: inline-block;
  }
  .col-lg-4 {
    width: 33.33333%;
    display: inline-block;
  }
  .col-lg-3 {
    width: 25%;
    display: inline-block;
  }
  .col-lg-2 {
    width: 16.66667%;
    display: inline-block;
  }
  .col-lg-1 {
    width: 8.33333%;
    display: inline-block;
  }
}

.x-menu {
  flex: 1;
}

.x-menu-horizontal {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 .15rem;
}

.x-menu-horizontal li {
  float: left;
  font-size: .16rem;
  padding: 0 .46rem;
  cursor: pointer;
  line-height: .58rem;
  border-bottom: 2px solid transparent;
}

.x-menu-horizontal li.active,
.x-menu-horizontal li:hover {
  color: #5B86FD;
}

.x-menu-horizontal li.active {
  border-bottom-color: #5B86FD;
}

.x-toast-notification {
  position: fixed;
  top: .5rem;
  left: 50%;
  display: inline-block;
  transform: translate(-50%, 0);
  z-index: 1000;
}

.x-toast-notification .x-toast-notice {
  height: .5rem;
  background-color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: .1rem;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  position: relative;
  cursor: pointer;
}

.x-toast-notification .x-toast-notice .x-toast-icon-box {
  width: .5rem;
  height: .5rem;
  text-align: center;
  line-height: .5rem;
  color: #ffffff;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.x-toast-notification .x-toast-notice .x-toast-icon-box.success {
  background-color: #41B580;
}

.x-toast-notification .x-toast-notice .x-toast-icon-box.info {
  background-color: #5B86FD;
}

.x-toast-notification .x-toast-notice .x-toast-icon-box.error {
  background-color: #FF4D4F;
}

.x-toast-notification .x-toast-notice .x-toast-icon-box.warning {
  background-color: #E96900;
}

.x-toast-notification .x-toast-notice .x-toast-notice-content {
  padding: .14rem .2rem;
}

.x-toast-notification .toast-notice-enter {
  opacity: 0.01;
  transform: translateY(-40%);
}

.x-toast-notification .toast-notice-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 300ms ease-out;
}

.x-toast-notification .toast-notice-exit {
  opacity: 1;
  transform: translateY(0);
}

.x-toast-notification .toast-notice-exit-active {
  opacity: 0.01;
  transform: translateY(-40%);
  transition: all 300ms ease-out;
}

.x-toast-notification-i18n {
  position: fixed;
  top: .5rem;
  right: 50%;
  display: inline-block;
  transform: translate(50%, 0);
  z-index: 1000;
}

.x-toast-notification-i18n .x-toast-notice {
  height: .5rem;
  background-color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: .1rem;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  position: relative;
  cursor: pointer;
}

.x-toast-notification-i18n .x-toast-notice .x-toast-icon-box {
  width: .5rem;
  height: .5rem;
  text-align: center;
  line-height: .5rem;
  color: #ffffff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.x-toast-notification-i18n .x-toast-notice .x-toast-icon-box.success {
  background-color: #41B580;
}

.x-toast-notification-i18n .x-toast-notice .x-toast-icon-box.info {
  background-color: #5B86FD;
}

.x-toast-notification-i18n .x-toast-notice .x-toast-icon-box.error {
  background-color: #FF4D4F;
}

.x-toast-notification-i18n .x-toast-notice .x-toast-icon-box.warning {
  background-color: #E96900;
}

.x-toast-notification-i18n .x-toast-notice .x-toast-notice-content {
  padding: .14rem .2rem;
}

.x-toast-notification-i18n .toast-notice-enter {
  opacity: 0.01;
  transform: translateY(-40%);
}

.x-toast-notification-i18n .toast-notice-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 300ms ease-out;
}

.x-toast-notification-i18n .toast-notice-exit {
  opacity: 1;
  transform: translateY(0);
}

.x-toast-notification-i18n .toast-notice-exit-active {
  opacity: 0.01;
  transform: translateY(-40%);
  transition: all 300ms ease-out;
}

.x-tooltip {
  position: relative;
}

.x-tooltip .top {
  cursor: pointer;
}

.x-tooltip .top:hover + .box {
  opacity: 1;
}

.x-tooltip .box {
  position: absolute;
  display: inline-flex;
  width: max-content;
  background-color: rgba(0, 0, 0, 0.647);
  color: #ffffff;
  padding: 0.08rem 0.2rem;
  border-radius: 4px;
  max-width: 2rem;
  word-break: break-word;
  z-index: 1;
  line-height: 0.14rem;
  opacity: 0;
  transition: opacity 1s;
}

.x-tooltip .box-top {
  bottom: calc(100% + 6px);
  transform: translate(-50%, 0);
  margin-left: -50%;
}

.x-tooltip .box-top::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.647);
  top: 100%;
  left: calc(50% - 3px);
}

.x-tooltip .box-right {
  transform: translate(0, -50%);
  top: 50%;
  margin-left: 6px;
}

.x-tooltip .box-right::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.647);
  top: calc(50% - 3px);
  left: -6px;
}

.x-tooltip .box-bottom {
  top: calc(100% + 6px);
  transform: translate(-50%, 0);
  margin-left: -50%;
}

.x-tooltip .box-bottom::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 6px solid rgba(0, 0, 0, 0.647);
  top: -6px;
  left: calc(50% - 3px);
}

.x-tooltip .box-left {
  transform: translate(-100%, -50%);
  top: 50%;
  margin-left: calc(-100% - 6px);
}

.x-tooltip .box-left::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid rgba(0, 0, 0, 0.647);
  left: 100%;
  top: calc(50% - 3px);
}

.x-tooltip-i18n {
  position: relative;
}

.x-tooltip-i18n .top {
  cursor: pointer;
}

.x-tooltip-i18n .top:hover + .box {
  opacity: 1;
}

.x-tooltip-i18n .box {
  position: absolute;
  display: inline-flex;
  width: max-content;
  background-color: rgba(0, 0, 0, 0.647);
  color: #ffffff;
  padding: 0.08rem 0.2rem;
  border-radius: 4px;
  max-width: 2rem;
  word-break: break-word;
  z-index: 1;
  line-height: 0.14rem;
  opacity: 0;
  transition: opacity 1s;
}

.x-tooltip-i18n .box-top {
  bottom: calc(100% + 6px);
  transform: translate(50%, 0);
  margin-right: -50%;
}

.x-tooltip-i18n .box-top::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.647);
  top: 100%;
  right: calc(50% - 3px);
}

.x-tooltip-i18n .box-right {
  transform: translate(0, -50%);
  top: 50%;
  margin-right: 6px;
}

.x-tooltip-i18n .box-right::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 6px solid rgba(0, 0, 0, 0.647);
  top: calc(50% - 3px);
  right: -6px;
}

.x-tooltip-i18n .box-bottom {
  top: calc(100% + 6px);
  transform: translate(50%, 0);
  margin-right: -50%;
}

.x-tooltip-i18n .box-bottom::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 6px solid rgba(0, 0, 0, 0.647);
  top: -6px;
  right: calc(50% - 3px);
}

.x-tooltip-i18n .box-left {
  transform: translate(100%, -50%);
  top: 50%;
  margin-right: calc(-100% - 6px);
}

.x-tooltip-i18n .box-left::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.647);
  right: 100%;
  top: calc(50% - 3px);
}

.x-select {
  width: 100%;
  position: relative;
  display: inline-flex;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  line-height: 0.3rem;
  flex-direction: column;
  transition: border 0.5s;
}

.x-select .x-select-title {
  height: 100%;
  flex: 1;
  outline: none;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  margin: 0;
  padding: 0;
  padding-left: 0.1rem;
  padding-right: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.14rem;
  user-select: none;
}

.x-select .x-select-title-multiple {
  cursor: default;
  white-space: normal;
  padding-top: 3px;
  flex-direction: column;
}

.x-select .x-select-title-multiple .x-select-item-multiple {
  background-color: #fafafa;
  border: 1px solid #D9D9D9;
  margin-right: 5px;
  max-width: 1.5rem;
  border-radius: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  top: 1px;
  padding-right: 20px;
  display: inline-block;
  height: 0.2rem;
  line-height: 0.2rem;
  padding-left: 0.12rem;
  padding-right: 0.2rem;
}

.x-select .x-select-title-multiple .x-select-item-multiple i {
  cursor: pointer;
  position: absolute;
  right: 2px;
  transform: scale(0.6);
  color: #B8B8B8;
}

.x-select .x-select-disabled {
  cursor: not-allowed;
  background-color: #F5F5F5;
}

.x-select .x-select-ul {
  position: absolute;
  margin-top: 0.32rem;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  max-height: 0rem;
  overflow-y: scroll;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s,max-height 0.5s;
}

.x-select .x-select-ul .x-select-li {
  height: 0.3rem;
  line-height: 0.3rem;
  cursor: pointer;
  padding: 0 0.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.x-select .x-select-ul .x-select-li:hover {
  background-color: rgba(91, 134, 253, 0.1);
}

.x-select .x-select-ul .x-select-li-true {
  font-weight: 400;
  background-color: whitesmoke;
}

.x-select .x-select-ul .x-select-li-disable {
  cursor: not-allowed;
  pointer-events: none;
}

.x-select .x-select-ul-lg {
  margin-top: 0.32rem;
}

.x-select .x-select-ul-lg .x-select-li {
  height: 0.3rem;
  line-height: 0.3rem;
}

.x-select .x-select-ul-md {
  margin-top: 0.26rem;
}

.x-select .x-select-ul-md .x-select-li {
  height: 0.24rem;
  line-height: 0.24rem;
}

.x-select .xicon-angle-left, .x-select .xicon-angle-right {
  position: absolute;
  margin-right: 0.15rem;
  right: 0rem;
  top: 50%;
  transform: translate(50%, -50%) rotate(-90deg);
  cursor: pointer;
  transition: transform 0.5s;
}

.x-select-clicked {
  border: 1px solid #5B86FD;
}

.x-select-clicked .x-select-ul {
  opacity: 1 !important;
  max-height: 1.5rem;
}

.x-select-clicked .x-select-ul-lg {
  max-height: 1.5rem;
}

.x-select-clicked .x-select-ul-md {
  max-height: 1.2rem;
}

.x-select-clicked .xicon-angle-left, .x-select-clicked .xicon-angle-right {
  transform: translate(50%, -50%) rotate(90deg);
}

.x-select-clicked-multiple {
  flex-direction: column;
  line-height: unset;
  justify-content: center;
  min-height: 0.3rem;
}

.x-select-clicked-multiple .x-select-ul {
  margin-top: 0.02rem;
}

.x-select-content-height {
  height: 0.32rem;
  box-sizing: border-box;
}

.x-select-lg {
  height: 0.32rem;
  line-height: 0.3rem;
}

.x-select-md {
  height: 0.26rem;
  line-height: 0.24rem;
}

.x-select-i18n {
  width: 100%;
  position: relative;
  display: inline-flex;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  line-height: 0.3rem;
  flex-direction: column;
  transition: border 0.5s;
}

.x-select-i18n .x-select-title {
  height: 100%;
  flex: 1;
  outline: none;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  margin: 0;
  padding: 0;
  padding-right: 0.1rem;
  padding-left: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.14rem;
  user-select: none;
}

.x-select-i18n .x-select-title-multiple {
  cursor: default;
  white-space: normal;
  padding-top: 3px;
  flex-direction: column;
}

.x-select-i18n .x-select-title-multiple .x-select-item-multiple {
  background-color: #fafafa;
  border: 1px solid #D9D9D9;
  margin-left: 5px;
  max-width: 1.5rem;
  border-radius: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  top: 1px;
  padding-left: 20px;
  display: inline-block;
  height: 0.2rem;
  line-height: 0.2rem;
  padding-right: 0.12rem;
  padding-left: 0.2rem;
}

.x-select-i18n .x-select-title-multiple .x-select-item-multiple i {
  cursor: pointer;
  position: absolute;
  left: 2px;
  transform: scale(0.6);
  color: #B8B8B8;
}

.x-select-i18n .x-select-disabled {
  cursor: not-allowed;
  background-color: #F5F5F5;
}

.x-select-i18n .x-select-ul {
  position: absolute;
  margin-top: 0.32rem;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  max-height: 0rem;
  overflow-y: scroll;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s,max-height 0.5s;
}

.x-select-i18n .x-select-ul .x-select-li {
  height: 0.3rem;
  line-height: 0.3rem;
  cursor: pointer;
  padding: 0 0.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.x-select-i18n .x-select-ul .x-select-li:hover {
  background-color: rgba(91, 134, 253, 0.1);
}

.x-select-i18n .x-select-ul .x-select-li-true {
  font-weight: 400;
  background-color: whitesmoke;
}

.x-select-i18n .x-select-ul .x-select-li-disable {
  cursor: not-allowed;
  pointer-events: none;
}

.x-select-i18n .x-select-ul .x-select-lg {
  margin-top: 0.32rem;
}

.x-select-i18n .x-select-ul .x-select-lg .x-select-li {
  height: 0.3rem;
  line-height: 0.3rem;
}

.x-select-i18n .x-select-ul .x-select-md {
  margin-top: 0.26rem;
}

.x-select-i18n .x-select-ul .x-select-md .x-select-li {
  height: 0.24rem;
  line-height: 0.24rem;
}

.x-select-i18n .xicon-angle-left, .x-select-i18n .xicon-angle-right {
  position: absolute;
  margin-left: 0.15rem;
  left: 0rem;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  cursor: pointer;
  transition: transform 0.5s;
}

.x-select-i18n-clicked {
  border: 1px solid #5B86FD;
}

.x-select-i18n-clicked .x-select-ul {
  opacity: 1 !important;
  max-height: 1.5rem;
}

.x-select-i18n-clicked .x-select-ul .x-select-lg {
  max-height: 1.5rem;
}

.x-select-i18n-clicked .x-select-ul .x-select-md {
  max-height: 1.2rem;
}

.x-select-i18n-clicked .xicon-angle-left, .x-select-i18n-clicked .xicon-angle-right {
  transform: translate(-50%, -50%) rotate(90deg);
}

.x-select-i18n-clicked-multiple {
  flex-direction: column;
  line-height: unset;
  justify-content: center;
  min-height: 0.3rem;
}

.x-select-i18n-clicked-multiple .x-select-ul {
  margin-top: 0.02rem;
}

.x-select-i18n .x-select-content-height {
  height: 0.32rem;
  box-sizing: border-box;
}

.x-select-i18n .x-select-lg {
  height: 0.32rem;
  line-height: 0.3rem;
}

.x-select-i18n .x-select-md {
  height: 0.26rem;
  line-height: 0.24rem;
}

.x-pagination {
  display: flex;
  align-items: center;
}

.x-pagination .x-pagination-list > li {
  display: inline-block;
  margin-right: .1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.x-pagination .x-pagination-list > li i {
  vertical-align: middle;
}

.x-pagination .x-pagination-list > li:last-child {
  margin-right: 0;
}

.x-pagination .x-pagination-list > .page-item {
  display: inline-block;
  height: .28rem;
  line-height: .28rem;
  text-align: center;
  border-radius: .04rem;
  border: 1px solid #D9D9D9;
  transition: all .3s;
  cursor: pointer;
}

.x-pagination .x-pagination-list > .page-item.more {
  border: none;
}

.x-pagination .x-pagination-list > .page-item.more:hover {
  border-color: #D9D9D9;
}

.x-pagination .x-pagination-list > .page-item.active {
  border-color: #5B86FD;
  color: #5B86FD;
}

.x-pagination .x-pagination-list > .page-item:hover {
  border-color: #5B86FD;
  color: #5B86FD;
}

.x-pagination .x-pagination-list .prev, .x-pagination .x-pagination-list .next {
  cursor: pointer;
}

.x-pagination .x-pagination-list .prev:hover, .x-pagination .x-pagination-list .next:hover {
  color: #5B86FD;
}

.x-pagination .x-pagination-list .prev.disabled, .x-pagination .x-pagination-list .next.disabled {
  color: #B8B8B8;
  cursor: not-allowed;
}

.x-pagination .pagesize-change {
  display: flex;
  align-items: center;
}

.x-pagination .goto-page {
  display: flex;
  align-items: center;
  margin: 0 .2rem;
}

.x-pagination .goto-page .goto-input {
  margin: 0 .1rem;
}

.x-pagination .goto-page input.x-input {
  padding: .06rem;
  text-align: center;
  width: .4rem;
}

.x-pagination .pagination-select {
  width: 60px;
  margin-right: .1rem;
}

.x-pagination.lg .x-pagination-list > .page-item {
  padding: 0 .1rem;
  height: .32rem;
  line-height: .32rem;
}

.x-pagination.lg .goto-input > input {
  height: .32rem;
  line-height: .32rem;
}

.x-pagination.lg .pagination-select > div {
  height: .32rem;
  line-height: .32rem;
}

.x-pagination.md .x-pagination-list > .page-item {
  padding: 0 .08rem;
  height: .28rem;
  line-height: .28rem;
}

.x-pagination.md .goto-input > input {
  height: .28rem;
  line-height: .28rem;
}

.x-pagination.md .pagination-select > div {
  height: .28rem;
  line-height: .28rem;
}

.x-pagination.sm .x-pagination-list > .page-item {
  padding: 0 0.05rem;
  height: .24rem;
  line-height: .24rem;
}

.x-pagination.sm .goto-input > input {
  height: .24rem;
  line-height: .24rem;
}

.x-pagination.sm .pagination-select > div {
  height: .24rem;
  line-height: .24rem;
}

.x-pagination-i18n {
  display: flex;
  align-items: center;
}

.x-pagination-i18n .x-pagination-list > li {
  display: inline-block;
  margin-right: .1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.x-pagination-i18n .x-pagination-list > li i {
  vertical-align: middle;
}

.x-pagination-i18n .x-pagination-list > li:last-child {
  margin-left: 0;
}

.x-pagination-i18n .x-pagination-list > .page-item {
  display: inline-block;
  height: .28rem;
  line-height: .28rem;
  text-align: center;
  border-radius: .04rem;
  border: 1px solid #D9D9D9;
  transition: all .3s;
  cursor: pointer;
}

.x-pagination-i18n .x-pagination-list > .page-item.more {
  border: none;
}

.x-pagination-i18n .x-pagination-list > .page-item.more:hover {
  border-color: #D9D9D9;
}

.x-pagination-i18n .x-pagination-list > .page-item.active {
  border-color: #5B86FD;
  color: #5B86FD;
}

.x-pagination-i18n .x-pagination-list > .page-item:hover {
  border-color: #5B86FD;
  color: #5B86FD;
}

.x-pagination-i18n .x-pagination-list .prev, .x-pagination-i18n .x-pagination-list .next {
  cursor: pointer;
}

.x-pagination-i18n .x-pagination-list .prev:hover, .x-pagination-i18n .x-pagination-list .next:hover {
  color: #5B86FD;
}

.x-pagination-i18n .x-pagination-list .prev.disabled, .x-pagination-i18n .x-pagination-list .next.disabled {
  color: #B8B8B8;
  cursor: not-allowed;
}

.x-pagination-i18n .pagesize-change {
  display: flex;
  align-items: center;
}

.x-pagination-i18n .goto-page {
  display: flex;
  align-items: center;
  margin: 0 .2rem;
}

.x-pagination-i18n .goto-page .goto-input {
  margin: 0 .1rem;
}

.x-pagination-i18n .goto-page input.x-input {
  padding: .06rem;
  text-align: center;
  width: .4rem;
}

.x-pagination-i18n .pagination-select {
  width: 60px;
  margin-left: .1rem;
}

.x-pagination-i18n.lg .x-pagination-list > .page-item {
  padding: 0 .1rem;
  height: .32rem;
  line-height: .32rem;
}

.x-pagination-i18n.lg .goto-input > input {
  height: .32rem;
  line-height: .32rem;
}

.x-pagination-i18n.lg .pagination-select > div {
  height: .32rem;
  line-height: .32rem;
}

.x-pagination-i18n.md .x-pagination-list > .page-item {
  padding: 0 .08rem;
  height: .28rem;
  line-height: .28rem;
}

.x-pagination-i18n.md .goto-input > input {
  height: .28rem;
  line-height: .28rem;
}

.x-pagination-i18n.md .pagination-select > div {
  height: .28rem;
  line-height: .28rem;
}

.x-pagination-i18n.sm .x-pagination-list > .page-item {
  padding: 0 0.05rem;
  height: .24rem;
  line-height: .24rem;
}

.x-pagination-i18n.sm .goto-input > input {
  height: .24rem;
  line-height: .24rem;
}

.x-pagination-i18n.sm .pagination-select > div {
  height: .24rem;
  line-height: .24rem;
}

.x-loading {
  background: rgba(255, 255, 255, 0.75);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.x-loading.page-loading {
  position: absolute;
}

.x-loading.table-loading {
  position: absolute;
}

.x-loading.sm-loading {
  height: 167px;
}

.x-loading.big-loading {
  height: 900px;
}

.x-loading .loading-box {
  width: .36rem;
  height: .36rem;
  position: relative;
}

.x-loading .loading-box .dot {
  width: .12rem;
  height: .12rem;
  border-radius: 100%;
  display: inline-block;
}

.x-loading .loading-box .dot-1 {
  animation: loadingAnimate_1 1.5s linear infinite;
  background-color: #98B2FC;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.x-loading .loading-box .dot-2 {
  animation: loadingAnimate_2 1.5s linear infinite;
  background-color: #B6C9FB;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.x-loading .loading-box .dot-3 {
  animation: loadingAnimate_3 1.5s linear infinite;
  background-color: #D9E2FB;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.x-loading .loading-box .dot-4 {
  animation: loadingAnimate_4 1.5s linear infinite;
  background-color: #7297FF;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.x-loading-i18n {
  background: rgba(255, 255, 255, 0.75);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.x-loading-i18n.page-loading {
  position: absolute;
}

.x-loading-i18n.table-loading {
  position: absolute;
}

.x-loading-i18n.sm-loading {
  height: 167px;
}

.x-loading-i18n.big-loading {
  height: 900px;
}

.x-loading-i18n .loading-box {
  width: .36rem;
  height: .36rem;
  position: relative;
}

.x-loading-i18n .loading-box .dot {
  width: .12rem;
  height: .12rem;
  border-radius: 100%;
  display: inline-block;
}

.x-loading-i18n .loading-box .dot-1 {
  animation: loadingAnimate_1 1.5s linear infinite;
  background-color: #98B2FC;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%, 0);
}

.x-loading-i18n .loading-box .dot-2 {
  animation: loadingAnimate_2 1.5s linear infinite;
  background-color: #B6C9FB;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.x-loading-i18n .loading-box .dot-3 {
  animation: loadingAnimate_3 1.5s linear infinite;
  background-color: #D9E2FB;
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0);
}

.x-loading-i18n .loading-box .dot-4 {
  animation: loadingAnimate_4 1.5s linear infinite;
  background-color: #7297FF;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.sm-loading {
  height: 167px;
}

@keyframes loadingAnimate_1 {
  0% {
    background-color: #98B2FC;
  }
  25% {
    background-color: #B6C9FB;
  }
  50% {
    background-color: #D9E2FB;
  }
  75% {
    background-color: #7297FF;
  }
  100% {
    background-color: #98B2FC;
  }
}

@keyframes loadingAnimate_2 {
  0% {
    background-color: #B6C9FB;
  }
  25% {
    background-color: #D9E2FB;
  }
  50% {
    background-color: #7297FF;
  }
  75% {
    background-color: #98B2FC;
  }
  100% {
    background-color: #B6C9FB;
  }
}

@keyframes loadingAnimate_3 {
  0% {
    background-color: #D9E2FB;
  }
  25% {
    background-color: #7297FF;
  }
  50% {
    background-color: #98B2FC;
  }
  75% {
    background-color: #B6C9FB;
  }
  100% {
    background-color: #D9E2FB;
  }
}

@keyframes loadingAnimate_4 {
  0% {
    background-color: #7297FF;
  }
  25% {
    background-color: #98B2FC;
  }
  50% {
    background-color: #B6C9FB;
  }
  75% {
    background-color: #D9E2FB;
  }
  100% {
    background-color: #7297FF;
  }
}

.x-table {
  position: relative;
}

.x-table .x-table-wrapper {
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  font-size: .14rem;
  line-height: .14rem;
}

.x-table .x-table-wrapper.no-border {
  border: none;
}

.x-table .x-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.x-table .x-table-wrapper table tr:nth-child(even) {
  background-color: rgba(91, 134, 253, 0.05);
}

.x-table .x-table-wrapper table thead th {
  background-color: rgba(91, 134, 253, 0.1);
  color: #6B7491;
  padding: .2rem .3rem;
  text-align: left;
  font-weight: 400;
  white-space: nowrap;
}

.x-table .x-table-wrapper table tbody {
  overflow-x: hidden;
  color: #909090;
}

.x-table .x-table-wrapper table tbody td {
  padding: .16rem .3rem;
}

.x-table .x-table-wrapper table tbody td.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.x-table .x-table-wrapper table tbody td a {
  width: .16rem;
  height: .16rem;
}

.x-table .x-table-wrapper table tbody td a.normal {
  color: #5B86FD;
}

.x-table .x-table-wrapper table tbody td a.delete {
  color: #9B9B9B;
}

.x-table .x-table-wrapper table td, .x-table .x-table-wrapper table th {
  margin: 0;
}

.x-table .x-table-wrapper table .table-no-data {
  text-align: center;
}

.x-table .x-table-wrapper table .td-c {
  text-align: center;
}

.x-table .x-table-wrapper table .td-r {
  text-align: right;
}

.x-table .x-table-wrapper table .td-l {
  text-align: left;
}

.x-table .x-table-wrapper table .td-btngroup {
  white-space: nowrap;
}

.x-table .x-table-wrapper table .order-box {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.08rem;
}

.x-table .x-table-wrapper table .order-box .order-up {
  width: 0;
  height: 0;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #6B7491 transparent;
  border-style: solid;
  margin-bottom: 2px;
  cursor: pointer;
}

.x-table .x-table-wrapper table .order-box .order-up:hover {
  border-color: transparent transparent #5B86FD transparent;
}

.x-table .x-table-wrapper table .order-box .order-up.selected {
  border-color: transparent transparent #5B86FD transparent;
}

.x-table .x-table-wrapper table .order-box .order-down {
  border-width: 5px 5px 0 5px;
  border-color: #6B7491 transparent transparent transparent;
  border-style: solid;
  cursor: pointer;
}

.x-table .x-table-wrapper table .order-box .order-down:hover {
  border-color: #5B86FD transparent transparent transparent;
}

.x-table .x-table-wrapper table .order-box .order-down.selected {
  border-color: #5B86FD transparent transparent transparent;
}

.x-table .x-table-wrapper.xs table thead th {
  padding: .16rem .1rem;
}

.x-table .x-table-wrapper.xs table tbody td {
  font-size: .12rem;
  padding: .12rem .1rem;
  line-height: .12rem;
}

.x-table .x-pagination-wrapper {
  margin: .15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.x-table-i18n {
  position: relative;
}

.x-table-i18n .x-table-wrapper {
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  font-size: .14rem;
  line-height: .14rem;
}

.x-table-i18n .x-table-wrapper.no-border {
  border: none;
}

.x-table-i18n .x-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.x-table-i18n .x-table-wrapper table tr:nth-child(even) {
  background-color: rgba(91, 134, 253, 0.05);
}

.x-table-i18n .x-table-wrapper table thead th {
  background-color: rgba(91, 134, 253, 0.1);
  color: #6B7491;
  padding: .2rem .3rem;
  text-align: right;
  font-weight: 400;
  white-space: nowrap;
}

.x-table-i18n .x-table-wrapper table tbody {
  overflow-x: hidden;
  color: #909090;
}

.x-table-i18n .x-table-wrapper table tbody td {
  padding: .16rem .3rem;
}

.x-table-i18n .x-table-wrapper table tbody td.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.x-table-i18n .x-table-wrapper table tbody td a {
  width: .16rem;
  height: .16rem;
}

.x-table-i18n .x-table-wrapper table tbody td a.normal {
  color: #5B86FD;
}

.x-table-i18n .x-table-wrapper table tbody td a.delete {
  color: #9B9B9B;
}

.x-table-i18n .x-table-wrapper table td, .x-table-i18n .x-table-wrapper table th {
  margin: 0;
}

.x-table-i18n .x-table-wrapper table .table-no-data {
  text-align: center;
}

.x-table-i18n .x-table-wrapper table .td-c {
  text-align: center;
}

.x-table-i18n .x-table-wrapper table .td-r {
  text-align: left;
}

.x-table-i18n .x-table-wrapper table .td-l {
  text-align: right;
}

.x-table-i18n .x-table-wrapper table .td-btngroup {
  white-space: nowrap;
}

.x-table-i18n .x-table-wrapper table .order-box {
  display: inline-block;
  vertical-align: baseline;
  margin-right: 0.08rem;
}

.x-table-i18n .x-table-wrapper table .order-box .order-up {
  width: 0;
  height: 0;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #6B7491 transparent;
  border-style: solid;
  margin-bottom: 2px;
  cursor: pointer;
}

.x-table-i18n .x-table-wrapper table .order-box .order-up:hover {
  border-color: transparent transparent #5B86FD transparent;
}

.x-table-i18n .x-table-wrapper table .order-box .order-up.selected {
  border-color: transparent transparent #5B86FD transparent;
}

.x-table-i18n .x-table-wrapper table .order-box .order-down {
  border-width: 5px 5px 0 5px;
  border-color: #6B7491 transparent transparent transparent;
  border-style: solid;
  cursor: pointer;
}

.x-table-i18n .x-table-wrapper table .order-box .order-down:hover {
  border-color: #5B86FD transparent transparent transparent;
}

.x-table-i18n .x-table-wrapper table .order-box .order-down.selected {
  border-color: #5B86FD transparent transparent transparent;
}

.x-table-i18n .x-table-wrapper.xs table thead th {
  padding: .16rem .1rem;
}

.x-table-i18n .x-table-wrapper.xs table tbody td {
  font-size: .12rem;
  padding: .12rem .1rem;
  line-height: .12rem;
}

.x-table-i18n .x-pagination-wrapper {
  margin: .15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.x-tabs-content {
  overflow: hidden;
  max-width: 6rem;
}

.x-tabs-content .x-tabs {
  display: inline-block;
  white-space: nowrap;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
  left: 0;
  transition: left 0.5s;
}

.x-tabs-content .x-tabs .x-tab-li {
  padding: 0.2rem 0;
  width: 1.2rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: border-bottom 0.5s;
  border-bottom: 2px solid rgba(217, 217, 217, 0);
}

.x-tabs-content .x-tabs .active-tab {
  color: #5B86FD;
  border-bottom: 2px solid #5b86fd;
}

.x-tabs-content .x-tabs .tab-disable {
  cursor: not-allowed;
  color: #D9D9D9;
}

.x-tabs-content-i18n {
  overflow: hidden;
  max-width: 6rem;
}

.x-tabs-content-i18n .x-tabs {
  display: inline-block;
  white-space: nowrap;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
  right: 0;
  transition: right 0.5s;
}

.x-tabs-content-i18n .x-tabs .x-tab-li {
  padding: 0.2rem 0;
  width: 1.2rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: border-bottom 0.5s;
  border-bottom: 2px solid rgba(217, 217, 217, 0);
}

.x-tabs-content-i18n .x-tabs .active-tab {
  color: #5B86FD;
  border-bottom: 2px solid #5b86fd;
}

.x-tabs-content-i18n .x-tabs .tab-disable {
  cursor: not-allowed;
  color: #D9D9D9;
}

/**
 * name: 
 * desc:
 * date: 2019/1/14
 * author: kelvin
 */
.x-upload {
  position: relative;
  display: inline-block;
  margin-bottom: .1rem;
}

.x-upload .x-upload-trigger {
  cursor: pointer;
}

.x-upload .x-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.x-upload-list {
  display: flex;
  flex-wrap: wrap;
}

.x-upload-list .x-upload-item-normal {
  margin-bottom: .1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
}

.x-upload-list .x-upload-item-normal:hover {
  background-color: #EEF3FF;
}

.x-upload-list .x-upload-item-normal .x-upload-item-info {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 400px;
}

.x-upload-list .x-upload-item-normal .x-upload-item-remove:hover {
  color: #FF4D4F;
}

.x-upload-list .x-upload-item-normal .x-upload-loading {
  width: 100%;
  background-color: #F5F5F5;
  height: 1px;
  transition: all .2s;
}

.x-upload-list .x-upload-item-normal .x-upload-loading.none {
  opacity: 0;
}

.x-upload-list .x-upload-item-normal .x-upload-loading .x-upload-loading-bar {
  width: 0;
  height: 100%;
  background-color: #5B86FD;
  transition: all .2s;
}

.x-upload-list .x-upload-item-preview-name {
  width: 2.3rem;
  height: .7rem;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  margin-bottom: .1rem;
  margin-right: .1rem;
}

.x-upload-list .x-upload-item-preview-name .img-name-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.x-upload-list .x-upload-item-preview-name .img-name-wrapper > img {
  width: .55rem;
  height: .55rem;
  margin-right: .1rem;
}

.x-upload-list .x-upload-item-preview-name .img-name-wrapper .x-upload-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100px;
}

.x-upload-list .x-upload-item-preview-name .img-name-wrapper .x-upload-loading {
  width: 100%;
  background-color: #F5F5F5;
  height: 1px;
  transition: all .2s;
}

.x-upload-list .x-upload-item-preview-name .img-name-wrapper .x-upload-loading.none {
  opacity: 0;
}

.x-upload-list .x-upload-item-preview-name .img-name-wrapper .x-upload-loading .x-upload-loading-bar {
  width: 0;
  height: 100%;
  background-color: #5B86FD;
  transition: all .2s;
}

.x-upload-list .x-upload-item-preview-name .close-img-icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 12px 12px 0 0;
  cursor: pointer;
}

.x-upload-list .x-upload-item-preview-name .close-img-icon:hover {
  color: #FF4D4F;
}

.x-upload-list .x-upload-item-preview {
  width: 95px;
  height: 95px;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  padding: 8px;
  box-sizing: border-box;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-upload-list .x-upload-item-preview > img {
  width: 80px;
  height: 80px;
}

.x-upload-list .x-upload-item-preview .x-upload-loading-box .x-upload-loading-txt {
  color: #909090;
  font-size: 14px;
  margin-bottom: .1rem;
}

.x-upload-list .x-upload-item-preview .x-upload-loading-box .x-upload-loading-close {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 12px;
  color: #909090;
  cursor: pointer;
}

.x-upload-list .x-upload-item-preview .x-upload-loading-box .x-upload-loading {
  width: 100%;
  background-color: #F5F5F5;
  height: 1px;
  transition: all .2s;
}

.x-upload-list .x-upload-item-preview .x-upload-loading-box .x-upload-loading.none {
  opacity: 0;
}

.x-upload-list .x-upload-item-preview .x-upload-loading-box .x-upload-loading .x-upload-loading-bar {
  width: 0;
  height: 100%;
  background-color: #5B86FD;
  transition: all .2s;
}

.x-upload-list .x-upload-img-box {
  cursor: pointer;
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.x-upload-list .x-upload-img-box > img {
  width: 100%;
  height: 100%;
}

.x-upload-list .x-upload-img-box:hover .x-upload-img-opt {
  display: flex;
}

.x-upload-list .x-upload-img-box .x-upload-img-opt {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}

.x-upload-list .x-upload-img-box .x-upload-img-opt > i {
  color: #ffffff;
  cursor: pointer;
}

.x-upload-i18n {
  position: relative;
  display: inline-block;
  margin-bottom: .1rem;
}

.x-upload-i18n .x-upload-trigger {
  cursor: pointer;
}

.x-upload-i18n .x-upload-input {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
}

.x-upload-list-i18n {
  display: flex;
  flex-wrap: wrap;
}

.x-upload-list-i18n .x-upload-item-normal {
  margin-bottom: .1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
}

.x-upload-list-i18n .x-upload-item-normal:hover {
  background-color: #EEF3FF;
}

.x-upload-list-i18n .x-upload-item-normal .x-upload-item-info {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 400px;
}

.x-upload-list-i18n .x-upload-item-normal .x-upload-item-remove:hover {
  color: #FF4D4F;
}

.x-upload-list-i18n .x-upload-item-normal .x-upload-loading {
  width: 100%;
  background-color: #F5F5F5;
  height: 1px;
  transition: all .2s;
}

.x-upload-list-i18n .x-upload-item-normal .x-upload-loading.none {
  opacity: 0;
}

.x-upload-list-i18n .x-upload-item-normal .x-upload-loading .x-upload-loading-bar {
  width: 0;
  height: 100%;
  background-color: #5B86FD;
  transition: all .2s;
}

.x-upload-list-i18n .x-upload-item-preview-name {
  width: 2.3rem;
  height: .7rem;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  margin-bottom: .1rem;
  margin-left: .1rem;
}

.x-upload-list-i18n .x-upload-item-preview-name .img-name-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.x-upload-list-i18n .x-upload-item-preview-name .img-name-wrapper > img {
  width: .55rem;
  height: .55rem;
  margin-left: .1rem;
}

.x-upload-list-i18n .x-upload-item-preview-name .img-name-wrapper .x-upload-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100px;
}

.x-upload-list-i18n .x-upload-item-preview-name .img-name-wrapper .x-upload-loading {
  width: 100%;
  background-color: #F5F5F5;
  height: 1px;
  transition: all .2s;
}

.x-upload-list-i18n .x-upload-item-preview-name .img-name-wrapper .x-upload-loading.none {
  opacity: 0;
}

.x-upload-list-i18n .x-upload-item-preview-name .img-name-wrapper .x-upload-loading .x-upload-loading-bar {
  width: 0;
  height: 100%;
  background-color: #5B86FD;
  transition: all .2s;
}

.x-upload-list-i18n .x-upload-item-preview-name .close-img-icon {
  position: absolute;
  top: 0;
  left: 0;
  margin: 12px 0 0 12px;
  cursor: pointer;
}

.x-upload-list-i18n .x-upload-item-preview-name .close-img-icon:hover {
  color: #FF4D4F;
}

.x-upload-list-i18n .x-upload-item-preview {
  width: 95px;
  height: 95px;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  padding: 8px;
  box-sizing: border-box;
  margin-left: 10px;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-upload-list-i18n .x-upload-item-preview > img {
  width: 80px;
  height: 80px;
}

.x-upload-list-i18n .x-upload-item-preview .x-upload-loading-box .x-upload-loading-txt {
  color: #909090;
  font-size: 14px;
  margin-bottom: .1rem;
}

.x-upload-list-i18n .x-upload-item-preview .x-upload-loading-box .x-upload-loading-close {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 12px;
  color: #909090;
  cursor: pointer;
}

.x-upload-list-i18n .x-upload-item-preview .x-upload-loading-box .x-upload-loading {
  width: 100%;
  background-color: #F5F5F5;
  height: 1px;
  transition: all .2s;
}

.x-upload-list-i18n .x-upload-item-preview .x-upload-loading-box .x-upload-loading.none {
  opacity: 0;
}

.x-upload-list-i18n .x-upload-item-preview .x-upload-loading-box .x-upload-loading .x-upload-loading-bar {
  width: 0;
  height: 100%;
  background-color: #5B86FD;
  transition: all .2s;
}

.x-upload-list-i18n .x-upload-img-box {
  cursor: pointer;
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.x-upload-list-i18n .x-upload-img-box > img {
  width: 100%;
  height: 100%;
}

.x-upload-list-i18n .x-upload-img-box:hover .x-upload-img-opt {
  display: flex;
}

.x-upload-list-i18n .x-upload-img-box .x-upload-img-opt {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}

.x-upload-list-i18n .x-upload-img-box .x-upload-img-opt > i {
  color: #ffffff;
  cursor: pointer;
}

/**
 * name: 
 * desc:
 * date: 2018/12/29
 * author: kelvin
 */
.x-image-view {
  cursor: pointer;
  width: .75rem;
  height: .75rem;
}

.x-image-view.lg {
  width: .95rem;
  height: .95rem;
}

.x-image-view.md {
  width: .75rem;
  height: .75rem;
}

.x-image-view.sm {
  width: .6rem;
  height: .6rem;
}

.x-imgview-box {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
}

.x-imgview-box .imgview-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .8s;
}

.x-imgview-box .img-canvas {
  transition: all .8s;
}

.x-imgview-box .x-imgview-loading {
  font-size: .16rem;
  color: #ffffff;
  text-align: center;
  position: absolute;
}

.x-imgview-box .x-imgview-close {
  background: #B8B8B8;
  position: absolute;
  top: -0.18rem;
  right: -0.18rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: .36rem;
  height: .36rem;
}

.x-imgview-box .x-imgview-close > i {
  font-size: .25rem;
  margin: 0;
  color: #ffffff;
  cursor: pointer;
}

.x-imgview-box-i18n {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
}

.x-imgview-box-i18n .imgview-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .8s;
}

.x-imgview-box-i18n .img-canvas {
  transition: all .8s;
}

.x-imgview-box-i18n .x-imgview-loading {
  font-size: .16rem;
  color: #ffffff;
  text-align: center;
  position: absolute;
}

.x-imgview-box-i18n .x-imgview-close {
  background: #B8B8B8;
  position: absolute;
  top: -0.18rem;
  left: -0.18rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: .36rem;
  height: .36rem;
}

.x-imgview-box-i18n .x-imgview-close > i {
  font-size: .25rem;
  margin: 0;
  color: #ffffff;
  cursor: pointer;
}

.x-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99998;
  overflow-y: auto;
  font-size: 14px;
}

.x-modal-confirm {
  z-index: 999998;
}

.x-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .2s;
}

.x-modal-content {
  color: #475669;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 #B7B7B7;
  border-radius: 4px;
  left: 50%;
  top: 80px;
  transform: translate(-50%);
  opacity: 0;
  transition: all .4s;
  margin-bottom: 100px;
}

.x-modal-content .border {
  padding: 20px;
  border-bottom: .5px solid #E3E6F0;
  border-top: .5px solid #E3E6F0;
}

.x-modal-content.x-modal-sm {
  width: 360px;
}

.x-modal-content.x-modal-md {
  width: 490px;
}

.x-modal-content.x-modal-lg {
  width: 640px;
}

.x-modal-content.x-modal-sg {
  width: 960px;
}

.x-modal-header {
  line-height: 16px;
  display: flex;
  padding: 14px 20px;
  align-items: center;
  font-size: 16px;
}

.x-modal-header .title {
  flex: 1;
  width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.x-modal-header .close-btn {
  display: block;
  cursor: pointer;
}

.x-modal-body {
  padding: 20px;
  font-size: 14px;
}

.x-modal-footer {
  text-align: right;
  padding: 20px;
}

.x-modal-footer button {
  margin-left: 10px;
}

.x-modal-dialog .x-modal-body {
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}

.x-modal-confirm .x-modal-header, .x-modal-alert .x-modal-header {
  padding-bottom: 6px;
  margin-bottom: 0;
}

.x-modal-confirm .x-modal-body, .x-modal-alert .x-modal-body {
  padding-top: 0;
  padding-bottom: 0;
}

.x-modal-confirm .title, .x-modal-alert .title {
  line-height: .2rem;
  margin-bottom: .1rem;
  font-size: .16rem;
}

.x-modal-confirm .title .xicon, .x-modal-confirm .title .iconfont, .x-modal-alert .title .xicon, .x-modal-alert .title .iconfont {
  margin-right: .08rem;
  font-size: .2rem;
}

.x-modal-confirm .title .xicon-question, .x-modal-alert .title .xicon-question {
  color: #DD4B39;
}

.x-modal-confirm .title .xicon-alarm, .x-modal-alert .title .xicon-alarm {
  color: #E96900;
}

.x-modal-confirm .content, .x-modal-alert .content {
  font-size: .12rem;
  line-height: .12rem;
  margin-left: .28rem;
  color: #515666;
}

.x-modal-fade .x-modal-bg {
  opacity: 1;
}

.x-modal-fade .x-modal-content {
  opacity: 1;
  top: 100px;
}

@media screen and (max-width: 980px) {
  .x-modal-content {
    width: auto !important;
    left: 20px;
    right: 20px;
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 1200px) {
  .x-modal-content.x-modal-sg {
    width: auto !important;
    left: 20px;
    right: 20px;
    transform: translate(0, 0);
  }
}

.x-toggle {
  position: relative;
  display: inline-block;
}

.x-toggle.open .x-toggle-box {
  display: block;
}

.x-toggle-top {
  cursor: pointer;
}

.x-toggle-box {
  position: absolute;
  display: none;
  z-index: 9999;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.15);
}

.x-toggle-box.bottomLeft {
  top: 100%;
  left: 0;
}

.x-toggle-box.bottomRight {
  top: 100%;
  right: 0;
}

.x-toggle-box.topRight {
  bottom: 100%;
  right: 0;
}

.x-toggle-box.topLeft {
  bottom: 100%;
  left: 0;
}

.x-toggle-box.bottomCenter {
  left: 50%;
  transform: translate(-50%);
}

.x-toggle-box.topCenter {
  left: 50%;
  bottom: 100%;
  transform: translate(-50%);
}
