.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2px;
  margin-top: 11px;
}
.table .table-head {
  height: 42px;
  background: #f6f5f8;
  border-radius: 6px;
}
.table .table-head .th-first {
  text-align: center;
}
.table .table-head .th-second {
  text-align: center;
}
.table .table-head th {
  height: 12px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: #096BEF;
  text-align: left;
}
.table .table-content {
  height: 50px;
  background: #ffffff;
  border-radius: 2px;
}
.table .table-content .ellipsis {
  padding-left: 10px;
  text-align: left;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table .table-content:hover .detail {
  background: #096BEF;
  border-color: #096BEF;
}
.table .table-content:hover .detail div {
  color: #ffffff;
}
.table .table-content:hover .border a {
  color: #242424;
}
.table .table-content:hover td {
  color: #565656;
}
.table .table-content .iconfont {
  color: #fcb52c;
  cursor: pointer;
}
.table .table-content .border a {
  color: #565656;
  display: inline-block;
  width: 100%;
  padding-left: 40px;
  text-align: left;
}
.table .table-content td {
  padding-top: 11px;
  padding-bottom: 11px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #565656;
}
.table .table-content td .detail {
  width: 75px;
  height: 28px;
  display: inline-block;
  text-align: center;
  background: #F0F7FF;
  line-height: 26px;
  margin: auto;
  border: 1px solid #7AB9F9;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 400;
  color: #409EFF;
  cursor: pointer;
}
.table .table-content td .detail a {
  color: #409EFF;
  display: inline-block;
  width: 100%;
}
.table .table-content:hover {
  background: #ffffff;
  border-radius: 2px;
}
table tr th:first-child,
table tr td:first-child {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
table tr th:last-child,
table tr td:last-child {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
