@-webkit-keyframes scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes crossData {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes crossData {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
.scale {
  overflow: hidden;
  -webkit-animation: scale 2s linear infinite;
  animation: scale 2s linear infinite;
}

.scale .light {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 60px;
  top: -10px;
  left: -10px;
  transform: rotate(-75deg);
  background-image: linear-gradient(rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0));
  opacity: 0.6;
  -webkit-animation: crossData 1s ease-in infinite;
  animation: crossData 1s ease-in infinite;
}

html,
body {
  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto;
}

.page {
  min-width: 1200px;
  min-height: calc(100vh - 150px);
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hidden {
  overflow: hidden;
}

.box-list {
  display: none !important;
}
.box-list.show {
  display: flex !important;
}

.container {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding-bottom: 20px;
  padding-top: 1px;
  position: relative;
  border-radius: 16px;
  box-sizing: border-box;
}
.container .con {
  position: relative;
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  height: 60px;
  justify-content: space-between;
  background: linear-gradient(rgba(22, 87, 218, 0.07), rgb(255, 255, 255));
  padding: 30px 15px 0px 45px;
  transform: translateY(-1px);
}
.container .con.con-r {
  height: 45px;
  padding: 15px 15px 0 30px;
}
.container .con.con-r .title::after {
  left: 18px;
}
.container .con .title {
  align-items: center;
  color: #1d479c;
  display: flex;
  font-size: 20px;
}
.container .con .title::after {
  bottom: 4px;
  content: "";
  height: 22px;
  left: 30px;
  position: absolute;
  width: 4px;
  background: #1d479c;
  border-radius: 2px;
}
.container .con .title .text {
  width: 120px;
}
.container .con .title .list-t {
  display: flex;
}
.container .con .title .list-t .item {
  border-radius: 15px;
  color: #666;
  cursor: pointer;
  font-size: 14px;
  height: 22px;
  line-height: 22px;
  margin: 0 5px;
  padding: 0 10px;
  position: relative;
  transition: all 0.24s linear;
}
.container .con .title .list-t .item:hover {
  color: #1d479c;
}
.container .con .title .list-t .item.active {
  color: #fff;
  background: #1d479c;
}
.container .con .more {
  align-items: center;
  color: #999;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  padding-right: 12px;
  background: url("../images/arrow-r.png") no-repeat right center;
}

.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 20px;
  gap: 10px;
}
.pagination .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  line-height: 30px;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  transition: all 0.24s ease;
  cursor: pointer;
}
.pagination .item.active {
  background: #1d479c;
  color: #fff;
  border: none;
}
.pagination .item.prev, .pagination .item.next {
  width: 80px;
}
.pagination .item.prev.disabled, .pagination .item.next.disabled {
  color: inherit;
  background-color: rgba(210, 210, 210, 0.25);
  border-color: #d2d2d2;
  cursor: not-allowed;
}

.breadcrumb {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
}
.breadcrumb .rouer {
  font-weight: 400;
  font-size: 14px;
  color: #666;
}
.breadcrumb .rouer:hover {
  color: #1d479c;
}
.breadcrumb .rouer:last-child {
  color: #999;
}
.breadcrumb .iconfont {
  height: 100%;
  color: #666;
}

.parse {
  font-size: 14px;
  color: #333;
  line-height: 32px;
  word-break: break-all;
  word-wrap: break-word;
  font-weight: 400;
}
.parse h1,
.parse h2,
.parse h3,
.parse h4,
.parse h5,
.parse h6 {
  font-weight: 400;
  font-size: 14px;
  color: #333;
  line-height: 32px;
  word-break: break-all;
  word-wrap: break-word;
}
.parse img {
  display: initial;
}

.no-data {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  width: 100%;
  color: #999;
  font-size: 18px;
}
