.kv {
  background-image: url("");
}
.news-head {
  display: flex;
  justify-content: center;
  width: 1230px;
  margin: 0 auto;
  padding: 100px 0 0 0;
}
.news-head .search {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.news-head .search input {
  border: 1px solid #EEE;
  padding: 14px 20px;
  font-size: 14px;
  width: 320px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.news-head .search .search-btn {
  background-color: var(--btn-color);
  color: white;
  cursor: pointer;
  transition: all 0.4s ease;
  height: 48px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.news-head .search .search-btn:hover {
  background-color: var(--primary-color);
  color: white;
}
@media screen and (max-width: 1025px) {
  .news-head {
    width: 90vw;
    margin: 0 auto;
    padding: 40px 0 0 0;
  }
  .news-head .search {
    margin-bottom: 0;
  }
  .news-head .search input {
    padding: 8px 12px;
    font-size: 12px;
    width: 200px;
  }
  .news-head .search .search-btn {
    height: 34px;
    width: 80px;
    font-size: 13px;
  }
}
.top-news {
  width: 1230px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1400px){
    .top-news {
      max-width: 90vw;
    }
}
.top-news .left{
  width: 38%;
}
.top-news .right {
  width: 58%;
}
.top-news .left .news-slides .news-item {
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  margin-right: 20px;
  height: 350px;
}
.top-news .left .news-slides .news-item img {
  height: 350px;
  object-fit: cover;
}
.top-news .left .news-slides .news-item:hover {
  opacity: 0.8;
}
.top-news .left  .news-item .news-detail .title {
  margin-top: 10px;
  font-size: 22px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.top-news .left  .news-item .desc {
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
}
.top-news .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.top-news .right .news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  border-bottom: 1px solid #EEE;
  padding-bottom: 16px;
}
.top-news .right .news-item:hover {
  opacity: 0.8;
}
.top-news .right .news-item .news-poster {
  width: 180px;
  min-width: 180px;
  height: 110px;
}
.top-news .right .news-item .news-poster img {
  width: 180px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
}
.top-news .right .news-item .news-detail .title {
  font-size: 18px;
  color: #444;
  cursor: pointer;
}
.top-news .right .news-item .news-detail .desc {
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
}
.slick-dots {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}
.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  border: none;
  outline: none;
  background-color: #ECF0FB;
  color: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.slick-dots li button:hover {
  background-color: #b5c3e0;
}
.slick-dots .slick-active button {
  background-color: #b4bbc9;
}
@media screen and (max-width: 1025px) {
  .top-news {
    width: 90vw;
    padding: 20px 0 30px 0;
    flex-direction: column;
    gap: 20px;
  }
  .top-news .left,
  .top-news .right {
    width: 100%;
  }
  .top-news .left .news-slides .news-item {
    cursor: pointer;
    margin-right: 0;
    height: 220px;
  }
  .top-news .left .news-slides .news-item img {
    height: 220px;
  }
  .top-news .left .news-slides .news-item .news-detail .title {
    cursor: pointer;
    font-size: 16px;
  }
  .top-news .right {
    gap: 14px;
  }
  .top-news .right .news-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
  }
  .top-news .right .news-item .news-poster {
    width: 120px;
    max-width: 120px;
    min-width: 120px;
    height: 18vw;
  }
  .top-news .right .news-item .news-poster img {
    width: 120px;
    max-width: 120px;
    height: 18vw;
    object-fit: cover;
  }
  .top-news .right .news-item .news-detail .title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
  .top-news .right .news-item .news-detail .desc {
    font-size: 12px;
  }
}
.news-list {
  width: 1230px;
  margin: 0 auto;
  padding: 0 0 100px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px){
    .news-list {
      max-width: 90vw;
    }
}
.news-list .news-item {
  width: 47%;
  display: flex;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #CCC;
  margin-top: 50px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.news-list .news-item:hover {
  opacity: 0.8;
}
.news-list .news-item .date {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
}
.news-list .news-item .date span {
  color: #444;
  font-size: 14px;
}
.news-list .news-item .date span:first-child {
  font-size: 28px;
  line-height: 32px;
}
.news-list .news-item .date::after {
  position: absolute;
  right: -25px;
  height: 50px;
  width: 1px;
  background-color: #EEE;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.news-list .news-item .news-detail .title {
  font-size: 18px;
  color: #444;
}
.news-list .news-item .news-detail .desc {
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 12px;
  line-height: 1.8;
  margin-top: 10px;
}
.pagination {
  margin-bottom: 120px;
}
.pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.pagination ul li {
  cursor: pointer;
}
.pagination ul li:hover {
  opacity: 0.7;
}
.pagination .page {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  /* border: 2px solid #CCC; */
}
.pagination .arrow {
  width: 18px;
  height: 18px;
  position: relative;
}
.pagination .prev {
  transform: rotateY(180deg);
  color: var(--primary-color);
  margin-right: 10px;
}
.pagination .next {
  color: var(--primary-color);
  margin-left: 10px;
}
.pagination .disabled {
  color: #CCC;
  cursor: not-allowed;
}
.pagination .active {
  color: var(--primary-color);
  border-color: var(--primary-color);
  /* background-color: #ebf0fb; */
}
@media screen and (max-width: 1025px) {
  .news-list {
    width: 90vw;
    padding: 0 0 40px 0;
  }
  .news-list .news-item {
    width: 100%;
    gap: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
  }
  .news-list .news-item .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
  .news-list .news-item .date span {
    font-size: 12px;
  }
  .news-list .news-item .date span:first-child {
    font-size: 20px;
    line-height: 26px;
  }
  .news-list .news-item .date::after {
    right: -11px;
    height: 26px;
    top: 6px;
  }
  .news-list .news-item .news-detail .title {
    font-size: 16px;
    color: #444;
  }
  .pagination {
    margin-bottom: 80px;
  }
  .pagination ul {
    gap: 13px;
  }
  .pagination .page {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .pagination .arrow {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 500px) {
    .top-news .left .news-item .news-detail .title{font-size:18px;}
}
