.table-wrapper {
  width: 100%;
}

.table-wrapper .sum {
  font-weight: bold;
}

.table-wrapper .loading {
  font-size: 18px;
}

.table-wrapper .loading td {
  padding: 20px;
}

.table-wrapper .loading i {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 26px;
  margin-right: 12px;
  vertical-align: middle;
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.table-wrapper .data-null {
  text-align: center;
  padding: 10px 0;
}

.table-wrapper a {
  color: #549adb;
}

.table-wrapper table {
  width: 100%;
}

.table-wrapper th {
  padding: 8px;
  color: #333;
  background: #ecf1f5;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
}

.table-wrapper td {
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.table-wrapper.has-line td {
  border-right: 1px solid #ccc;
}

.table-wrapper td:last-child {
  border-right: 0;
}

.table-wrapper tr:hover {
  background: #eaf3fd;
}

.table-wrapper tr .icon {
  display: none;
}

.table-wrapper tr:hover .icon {
  display: inline-block;
}

.table-wrapper .sort-wrap {
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  width: 10px;
  height: 20px;
  top: -3px;
  margin-left: 3px;
}

.table-wrapper .th-wrap {
  display: block;
  max-height: 48px;
}

.table-wrapper .f-efonts {
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
}

.sort-wrap .asc,
.sort-wrap .desc {
  position: absolute;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border: 5px solid transparent;
}

.sort-wrap .asc {
  top: 0;
  border-bottom-color: #c0c4cc;
}

.sort-wrap .desc {
  top: 12px;
  border-top-color: #c0c4cc;
}

.sort-wrap .activeasc {
  border-bottom-color: #9eaebd;
}

.sort-wrap .activedesc {
  border-top-color: #9eaebd;
}

.table-wrapper th .select-box {
  position: relative;
  width: 30px;
  height: 15px;
  line-height: 15px;
  margin: 0 auto;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 0;
  text-align: left;
  padding: 2px;
  user-select: none;
}

.table-wrapper th .select-box:hover .dropdown {
  display: block;
}

.table-wrapper th .select-box-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
}

.table-wrapper th .arrowdown {
  display: inline-block;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: rgb(10, 9, 9);
  position: relative;
  left: 2px;
  top: 2px;
}

.table-wrapper th .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 80px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 5px #ccc;
}

.table-wrapper .dropdown .active {
  color: #000;
  font-weight: bold;
}

.table-wrapper th .dropdown > div {
  height: 25px;
  line-height: 25px;
  cursor: pointer;
}

.table-wrapper th .dropdown > div:hover {
  background: #f3f3f3;
  color: #333;
}

.data-null {
  border-bottom: 1px solid #ccc;
}

.table-wrapper th:last-child {
  border-right: 0;
}

/* 快转化类型url太长添加浮层； */
.table-wrapper td:hover span {
  display: inline-block;
}
.floater {
  position: relative;
}

.floater span {
  display: none;
  position: absolute;
  padding: 10px;
  border-radius: 2px;
  line-height: 20px;
  z-index: 999;
  text-align: left;
  background: #fff;
  border: 1px solid #e9e9e9;
  min-width: 310px;
}
