.table-wrap {
  font-size: 16px;
  margin-top: 20px;
}
.table-wrap span {
  padding: 0 10px;
}
.table-wrap .col1 {
  width: 60px;
}
.table-wrap .col2,
.table-wrap .col3 {
  width: 206px;
}
.table-wrap .col4,
.table-wrap .col5 {
  width: 160px;
}
.table-wrap .col6 {
  width: 120px;
}
.table-wrap .col1,
.table-wrap .col4,
.table-wrap .col5,
.table-wrap .col6 {
  text-align: center;
}
.table-wrap .table-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  color: #fff;
  background-color: #1f6de8;
}
.table-wrap .table-bd {
  width: 912px;
  margin-bottom: 18px;
}
.table-wrap .table-bd .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  cursor: pointer;
}
.table-wrap .table-bd .item:hover {
  color: #1f6de8;
  border-color: #1f6de8;
}
.table-wrap .table-bd .item:hover .tip {
  z-index: 10;
  transform: scale(1);
}
.table-wrap .table-bd .item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table-wrap .table-bd .item .tip {
  position: absolute;
  right: 0;
  bottom: 40px;
  padding: 10px;
  color: #fff;
  line-height: 24px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  z-index: -1;
  transform: scale(0);
  pointer-events: none;
}