/* .card-primary.card-outline {
  border-top: 3px solid #DB8C39;
} */
.dz-drag-hover {
  border: 3px dashed #db8c39;
}

.widget-user .widget-user-image > img {
  height: 90px;
}

.strip figure {
  margin-bottom: 5px;
  overflow: hidden;
  position: relative;
  height: 200px;
  background-color: #ededed;
}

.strip figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  backface-visibility: hidden;
  width: 100%;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.strip figure:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

body .select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
  padding: 0.46875rem 0.75rem;
  height: calc(2.25rem + 2px);
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 31px;
  right: 6px;
}

/* 自定义 */
.ivu-divider {
  display: table;
  white-space: nowrap;
  text-align: center;
  background: rgb(232, 234, 236);
  background: transparent;
  font-weight: 500;
  color: #17233d;
  font-size: 14px;
  margin: 14px 0;
  vertical-align: middle;
  position: relative;
  top: -0.06em;
  line-height: 1.5;
  color: rgb(81, 90, 110);
  box-sizing: border-box;
  padding: 0px;
  list-style: none;
}

.ivu-divider .inner-text {
  display: inline-block;
  padding: 0 10px;
}

.ivu-divider::after,
.ivu-divider::before {
  content: "";
  display: table-cell;
  top: 50%;
  width: 50%;
  border-top: 1px solid #e8eaec;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.modal-content .close.position-absolute {
  right: 1.25rem;
  top: 0.875rem;
  z-index: 1;
}

/* table sort */
.ivu-table-sort {
  display: inline-block;
  width: 14px;
  height: 18px;
  margin-top: -1px;
  vertical-align: middle;
  /* overflow: hidden; */
  cursor: pointer;
  position: relative;
}
.ivu-table-sort i {
  display: block;
  height: 10px;
  width: 10px;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  color: #c5c8ce;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  font-size: 16px;
}
.ivu-table-sort i:first-child {
  line-height: 16px;
  top: -2px;
}
.ivu-table-sort i:last-child {
  top: 6px;
  line-height: 6px;
}
.ivu-table-sort.asc i[data-sort="asc"],
.ivu-table-sort.desc i[data-sort="desc"] {
  color: #2d8cf0;
}
.ivu-table-sort i:hover {
  color: #65a9f1;
}
