/* list */
.common-list {
  box-sizing: border-box;
  padding-bottom: 50px;
}

.common-list .list .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #ededed solid;
  font-size: 16px;
  color: #333;
  line-height: 62px;
}

.common-list .list .item:hover {
  background-color: #f4f6fa;
}

.common-list .item .item-content {
  position: relative;
  padding-left: 18px;
}

.common-list .item .item-content::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-top: 6px transparent solid;
  border-bottom: 6px transparent solid;
  border-left: 6px #b50005 solid;
}

.common-list .item .item-time {
  position: relative;
  padding-right: 12px;
}


/* table */
.common-table {
  box-sizing: border-box;
}

.table-wrap .table-title {
  display: flex;
  justify-content: start;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 62px;
  border-bottom: 1px #ddd solid;
}

.table-wrap .table-title .code,
.table-wrap .table-title .type,
.table-wrap .table-title .time,
.table-wrap .table-title .status {
  width: 15%;
}

.table-wrap .table-title .type,
.table-wrap .table-title .time,
.table-wrap .table-title .status {
  text-align: center;
}

.table-wrap .table-title .theme {
  width: 40%;
}

.table-wrap .table-content .item {
  display: flex;
  justify-content: start;
  font-size: 16px;
  color: #333;
  line-height: 62px;
  border-bottom: 1px #ddd solid;
}

.table-wrap .table-content .item:hover {
  background-color: #f4f6fa;
}

.table-wrap .table-content .item-code,
.table-wrap .table-content .item-type,
.table-wrap .table-content .item-time,
.table-wrap .table-content .item-status {
  width: 15%;
}

.table-wrap .table-content .item-type,
.table-wrap .table-content .item-time,
.table-wrap .table-content .item-status {
  text-align: center;
}

.table-wrap .table-content .item-theme {
  width: 40%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* title-wrap */
.title-wrap .common-cur a {
  display: inline-block;
  width: 120px;
  height: 34px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 34px;
  text-align: center;
}

.title-wrap .common-cur .cur-1 {
  background-color: #b50005;
  color: #fff;
}

.title-wrap .common-cur .cur-2 {
  border: 1px #d9d9d9 solid;
  color: #686868;
  margin-left: 14px;
}