.about-head {
  background-image: url("../Images/myzkpbg.webp");
}

.zhiku-page .search {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
  align-items: center;
}
.zhiku-page .search input {
  flex: 1;
  max-width: 600px;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  color: #333;
  outline: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.zhiku-page .search input::-moz-placeholder {
  color: #999;
  font-weight: 500;
}
.zhiku-page .search input::placeholder {
  color: #999;
  font-weight: 500;
}
.zhiku-page .search input:focus {
  border-color: #173fb8;
  box-shadow: 0 2px 12px rgba(23, 63, 184, 0.15);
  background: #ffffff;
}
.zhiku-page .search input:hover:not(:focus) {
  border-color: #d0d0d0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.zhiku-page .search button {
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #173fb8 0%, #0f2f8f 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(23, 63, 184, 0.2);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.zhiku-page .search button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ea1a1a 0%, #c91401 100%);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.zhiku-page .search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(23, 63, 184, 0.3);
}
.zhiku-page .search button:hover::before {
  left: 0;
}
.zhiku-page .search button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(23, 63, 184, 0.2);
}

.zhiku-page {
  padding: 2.6vw 9.375vw 5.2vw;
  background-image: url("../Images/pbbg.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.zhiku-page .zk-item {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border-radius: 10px;
  border: solid 1px #f0f0f0;
  margin-bottom: 38px;
  position: relative;
  transition: all 0.5s;
}
.zhiku-page .zk-item:hover {
  border-color: #e91502;
}
.zhiku-page .zk-item:hover .content .title {
  color: #e91502;
}
.zhiku-page .zk-item:hover .content .desc {
  color: #e91502;
}
.zhiku-page .zk-item:hover .date {
  background: #e91502;
  color: #fff;
}
.zhiku-page .zk-item:hover .date .day::after {
  background: linear-gradient(to right, transparent, #fff, transparent);
}
.zhiku-page .zk-item:hover .more {
  color: #fff;
  background: #e91502;
  border-color: #e91502;
}
.zhiku-page .zk-item .date {
  text-align: center;
  flex-shrink: 0;
  width: 102px;
  height: 102px;
  padding: 10px;
  border-radius: 10px;
  background: #f6f6f6;
  color: #e91502;
  font-size: 16px;
  transition: all 0.5s;
}
.zhiku-page .zk-item .date .day {
  font-size: 36px;
  margin: 0 auto 6px;
  position: relative;
}
.zhiku-page .zk-item .date .day::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #333, transparent);
  opacity: 0.3;
  margin: 0 auto;
}
.zhiku-page .zk-item .content {
  width: calc(100% - 102px - 56px - 66px);
}
.zhiku-page .zk-item .content .title {
  font-size: 26px;
  color: #000;
  margin-bottom: 20px;
  font-weight: normal;
  transition: all 0.5s;
}
.zhiku-page .zk-item .content .title span {
  color: #e91502;
}
.zhiku-page .zk-item .content .desc {
  font-size: 16px;
  color: #999;
  transition: all 0.5s;
}
.zhiku-page .zk-item .more {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 66px;
  height: 66px;
  border: solid 2px #d3d3d3;
  transition: all 0.5s;
  color: #d3d3d3;
  font-size: 20px;
}
.zhiku-page .pagination {
  margin-top: 60px;
}

.about-page-zcjy.zhiku-zjtd .zcjy-left {
  flex: 0 0 23vw;
}
.about-page-zcjy.zhiku-zjtd .zcjy-left .pic {
  height: auto;
}
.about-page-zcjy.zhiku-zjtd .name {
  font-size: 30px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .zhiku-page .search input {
    max-width: 500px;
    padding: 12px 32px;
  }
  .zhiku-page .search button {
    padding: 12px 32px;
  }
  .zhiku-page .zk-item {
    padding: 20px;
    gap: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .zhiku-page {
    min-height: 50vh;
    padding: 4vw;
  }
  .zhiku-page .search {
    gap: 2vw;
    margin-bottom: 4vw;
  }
  .zhiku-page .search input {
    flex: 1;
    max-width: calc(100% - 22vw);
    width: 100%;
    padding: 3vw 4vw;
    font-size: 4vw;
    border-radius: 8px;
  }
  .zhiku-page .search button {
    width: 20vw;
    padding: 3vw 4vw;
    font-size: 4vw;
    border-radius: 8px;
  }
  .zhiku-page .pagination {
    margin-top: 6vw;
  }
  .zhiku-page .zk-item {
    padding: 3vw;
    gap: 3vw;
    position: relative;
    flex-wrap: wrap;
    margin-bottom: 3vw;
  }
  .zhiku-page .zk-item .date {
    display: flex;
    align-items: center;
    font-size: 3.5vw;
    width: auto;
    height: auto;
    padding: 1vw 2vw;
  }
  .zhiku-page .zk-item .date .day {
    font-size: 4vw;
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
  }
  .zhiku-page .zk-item .date .day::after {
    content: "";
    display: block;
    width: 1px;
    height: 4vw;
    background: linear-gradient(to bottom, transparent, #333, transparent);
    opacity: 0.3;
    margin: 0 1vw;
  }
  .zhiku-page .zk-item .content {
    width: calc(100% - 13vw);
  }
  .zhiku-page .zk-item .content .title {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
  .zhiku-page .zk-item .content .desc {
    font-size: 3.5vw;
  }
  .zhiku-page .zk-item .more {
    width: 8vw;
    height: 8vw;
  }
}/*# sourceMappingURL=zhiku.css.map */