@charset "UTF-8";
.c-box {
  margin-top: 30px;
  padding-bottom: 30px;
}
.c-box .table-header {
  margin-top: 20px;
  padding-left: 25px;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  border-top: 4px solid #12489d;
  box-shadow: 0px 2px 10px 0 rgba(18, 72, 157, 0.1);
  background-color: #fff;
  *zoom: 1;
}
.c-box .table-header:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.c-box .table-header span {
  float: left;
  display: block;
  font-size: 16.2px;
  font-size: calc(18 * var(--font-scale) * 1px);
  color: #12489d;
  font-weight: bold;
  line-height: 46px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-box .table-header span:nth-child(1) {
  width: 30%;
}
.c-box .table-header span:nth-child(2) {
  width: 50%;
}
.c-box .table-header span:nth-child(3) {
  width: 20%;
  text-align: center;
}
.c-box .table-list {
  margin-top: 5px;
  width: 100%;
}
.c-box .table-list li {
  padding-left: 25px;
  *zoom: 1;
  border-bottom: 1px solid #ebebeb;
}
.c-box .table-list li:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.c-box .table-list li span {
  float: left;
  display: block;
  padding: 12px 0;
  font-size: 14.4px;
  font-size: calc(16 * var(--font-scale) * 1px);
  color: #333;
  line-height: 34px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-box .table-list li span:nth-child(1) {
  padding-right: 1%;
  width: 30%;
  box-sizing: border-box;
}
.c-box .table-list li span:nth-child(2) {
  width: 50%;
}
.c-box .table-list li span:nth-child(3) {
  width: 20%;
  text-align: center;
}
.c-box .table-list li:hover span {
  color: #12489d;
}

@media screen and (max-width: 992px) {
  .c-box {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .c-box .table-header {
    margin-top: 15px;
    padding-left: 15px;
    display: none;
  }
  .c-box .table-list li {
    padding-left: 10px;
    background-color: #f7f7f7;
    margin-bottom: 10px;
    border-bottom: none;
    position: relative;
    padding-top: 40px;
    padding-right: 10px;
  }
  .c-box .table-list li span {
    float: none;
    padding: 0;
  }
  .c-box .table-list li span:nth-child(3) {
    display: block;
    word-break: keep-all;
    width: auto;
    text-align: right;
  }
  .c-box .table-list li span:nth-child(1) {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 10px;
    background-color: #12489d;
    width: auto;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    border-bottom-right-radius: 12px;
  }
  .c-box .table-list li span:nth-child(2) {
    display: block;
    width: auto;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical; /*设置对齐模式*/
    -webkit-line-clamp: 2; /*设置多行的行数*/
  }
}