.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.dishonesty_header {
  height: 567px;
  background: url(../images/dishonesty_bg_header.png) no-repeat;
  background-size: 100% 100%;
  padding-top: 25px;
}
.dishonesty_header .dishonesty_banner {
  display: flex;
  justify-content: center;
  margin-top: 149px;
}
.filter {
  display: flex;
  justify-content: center;
  margin-top: -150px;
}
.filter .filter_inner {
  display: flex;
  align-items: center;
  width: 1180px;
  height: 180px;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 15px 1px rgba(11, 60, 109, 0.32);
  border-radius: 20px;
  border: solid 1px #ffffff;
  padding: 24px;
}
.filter .filter_inner h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 126px;
  height: 118px;
  background-color: #ff6c00;
  border-radius: 20px 0px 20px 20px;
  border: solid 1px #ffffff;
  font-size: 30px;
  color: #fff;
  line-height: 40px;
  margin-right: 24px;
}
.filter .filter_inner .layui-form {
  display: flex;
  align-items: center;
  flex: 1;
}
.filter .filter_inner .layui-form .form_left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1;
}
.filter .filter_inner .layui-form .form_left .form_left_item {
  display: flex;
  align-items: center;
  width: 48%;
  margin: 7px 0;
}
.filter .filter_inner .layui-form .form_left .form_left_item .label {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  margin-right: 20px;
}
.filter .filter_inner .layui-form .form_left .form_left_item .layui-input {
  flex: 1;
}
.filter .filter_inner .layui-form .form_left .form_left_item .layui-inline {
  display: flex;
  flex: 1;
}
.filter .filter_inner .layui-form .form_left .form_left_item .layui-inline .layui-form-mid {
  margin-left: 10px;
}
.filter .filter_inner .layui-form .form_left .form_left_item .item_select {
  flex: 1;
}
.filter .filter_inner .layui-form .form_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 127px;
  margin-left: 83px;
}
.filter .filter_inner .layui-form .form_right .layui-btn {
  width: 100%;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #137eda;
  font-size: 18px;
  color: #333;
  background-color: #fff;
  margin: 7px 0 7px 0;
}
.filter .filter_inner .layui-form .form_right .layui-btn.query-btn {
  background-color: #005498;
  color: #fff;
}
.table {
  margin-top: 50px;
  margin-bottom: 50px;
}
.table .list_head {
  display: flex;
  align-items: center;
  height: 70px;
  background-color: rgba(1, 82, 147, 0.06);
  font-size: 20px;
  color: #015293;
  font-weight: 700;
}
.table .list_head .w30 {
  width: 30%;
  padding: 0 15px;
}
.table .list_head .w25 {
  width: 25%;
  padding: 0 15px;
}
.table .list_head .w15 {
  width: 15%;
  padding: 0 15px;
}
.table .list li {
  line-height: 58px;
  border-bottom: 1px solid rgba(1, 82, 147, 0.2);
}
.table .list li a {
  display: flex;
  font-size: 18px;
  color: #333;
}
.table .list li a .name {
  color: #ff6c00;
}
.table .list li a .w30 {
  width: 30%;
  padding: 0 15px;
}
.table .list li a .w25 {
  width: 25%;
  padding: 0 15px;
}
.table .list li a .w15 {
  width: 15%;
  padding: 0 15px;
}
.list-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  gap: 14px;
  color: #999;
  font-size: 14px;
}
.list-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e8e8e8;
  border-top-color: #015293;
  border-radius: 50%;
  animation: list-spin 0.8s linear infinite;
}
@keyframes list-spin {
  to {
    transform: rotate(360deg);
  }
}
.list-loading-dots {
  display: flex;
  gap: 6px;
}
.list-loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  animation: list-bounce 1.4s ease-in-out infinite both;
}
.list-loading-dot:nth-child(1) {
  animation-delay: -0.32s;
  background-color: #015293;
}
.list-loading-dot:nth-child(2) {
  animation-delay: -0.16s;
  background-color: #015293;
  opacity: 0.7;
}
.list-loading-dot:nth-child(3) {
  animation-delay: 0s;
  background-color: #015293;
  opacity: 0.4;
}
@keyframes list-bounce {
  0%,
  80%,
  100% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
