/* honor list styles */
.honor {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background: linear-gradient(134deg, #f8fbff 0%, #ffffff 50%, #f5fbf7 100%);
}

.honor > img {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.honor .inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.honor .honor-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  gap: 28px 24px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.honor .honor-list > img {
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
}
.honor .honor-list .img1{
  bottom: 38%;
}
.honor .honor-list .img2{
  bottom: -14%;
}
.honor .honor-list .img3{
  display: none;
}
.honor .honor-list-op {
  opacity: 0;
  transform: translateY(12px);
}

.honor .honor-item {
  width: calc((100% - 48px) / 3);
  position: relative;
  z-index: 1;
  transition: transform 0.45s ease;
}

.honor .honor-item:hover {
  transform: translateY(-6px);
}

.honor .honor-item-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 344px;
  padding: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}


.honor .honor-item-cover .el-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.honor .honor-item-cover img,
.honor .honor-item-cover .el-image__inner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.honor .honor-item:hover .honor-item-cover img,
.honor .honor-item:hover .honor-item-cover .el-image__inner {
  transform: scale(1.035);
}

.honor .honor-item-nodata {
  width: 100%;
  margin: 72px 0;
  color: #4b5563;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
}

.honor .page {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 24px;
  margin-top: 54px;
}

.honor .pre-pageBtn,
.honor .next-pageBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 58px;
  border: 0.6px solid rgba(229, 231, 235, 1);
  box-sizing: border-box;
  background: rgba(251, 144, 59, 1);
  cursor: pointer;
  transition: background 0.45s ease, transform 0.45s ease;
}

.honor .pre-pageBtn:hover,
.honor .next-pageBtn:hover {
  transform: translateY(-2px);
  background: rgba(251, 144, 59, 0.88);
}

.honor .pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.honor .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
  padding: 0;
  border: 0.6px solid rgba(229, 231, 235, 1);
  border-radius: 58px;
  background: rgba(255, 255, 255, 1);
  color: rgba(74, 85, 101, 1);
  font-family: "Noto Sans SC", Arial, sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(24, 24, 24, 0.08);
  box-sizing: border-box;
  transition: background 0.45s ease, color 0.45s ease, transform 0.45s ease;
}

.honor .num:hover,
.honor .num.num-active {
  transform: translateY(-2px);
  background: rgba(57, 49, 132, 1);
  box-shadow: 0 4px 12px rgba(57, 49, 132, 0.18);
  color: rgba(255, 255, 255, 1);
}

@media only screen and (max-width: 1280px) {
  .honor {
    padding: 72px 0 68px;
  }

  .honor .honor-item-cover {
    height: 300px;
  }

  .honor .page {
    gap: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .honor .honor-list {
    gap: 24px 20px;
  }

  .honor .honor-item {
    width: calc((100% - 20px) / 2);
  }

  .honor .honor-list .img1{
                bottom: 42%;
  }
  .honor .honor-list .img2{
                bottom: -10%;
  }
  .honor .honor-list .img3{
        bottom: -7%;
  }
}

@media only screen and (max-width: 820px) {
  .honor {
    padding: 46px 0;
  }

  .honor .honor-item-cover {
    height: 260px;
    padding: 14px;
    border-radius: 12px;
  }

  .honor .pre-pageBtn,
  .honor .next-pageBtn,
  .honor .num {
    width: 40px;
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
  }

  .honor .pre-pageBtn svg,
  .honor .next-pageBtn svg {
    width: 8px;
    height: 14px;
  }

  .honor .num {
    font-size: 16px;
    line-height: 20px;
  }

  .honor .page {
    gap: 12px;
    margin-top: 34px;
  }

  .honor .pages {
    gap: 10px;
  }
    .honor .honor-list .img1{
      display: none;
  }
  .honor .honor-list .img2{
      display: none;
  }
  .honor .honor-list .img3{
      display: none;
  }
}

@media only screen and (max-width: 640px) {
  .honor .honor-list {
    gap: 20px;
  }

  .honor .honor-item {
    width: 100%;
  }

  .honor .honor-item-cover {
    height: 300px;
  }

  .honor .honor-list > img {
    display: none;
  }
}

@media only screen and (max-width: 414px) {
  .honor {
    padding: 34px 0;
  }

  .honor .honor-item-cover {
    height: 246px;
  }

}
