.kv {
  background-image: url("http://31286633.s61i.faiusr.com/2/AD0I6cr1DhACGAAg7L7JpAYojOGO4wEwgA84qAQ.jpg");
}
.news-head {
  display: flex;
  justify-content: center;
  width: 1230px;
  margin: 0 auto;
  padding: 120px 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: 46px;
  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: 1350px) {
  .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: 32px;
    width: 80px;
    font-size: 13px;
  }
}
.top-news {
  width: 1230px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
  display: flex;
  justify-content: space-between;
}
.top-news .left,
.top-news .right {
  width: 48%;
}
.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-slides .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 .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-news .right .news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.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;
}
.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: 1350px) {
  .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: 14px;
    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;
}
.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;
}
.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: 30px;
  width: 1px;
  background-color: #DDD;
  content: "";
  top: 10px;
}
.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: #444;
  cursor: pointer;
  border: 2px solid #CCC;
}
.pagination .arrow {
  width: 44px;
  height: 44px;
}
.pagination .prev {
  transform: rotate(180deg);
  color: var(--primary-color);
}
.pagination .next {
  color: var(--primary-color);
}
.pagination .disabled {
  color: #CCC;
  cursor: not-allowed;
}
.pagination .active {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
@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: 34px;
    height: 34px;
  }
}
.business-content-section {
  padding: 100px 0 50px 0;
}
.business-content-section .container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px){
    .business-content-section .container {
      max-width: 90vw;
    }
}
.business-content-section .container .title {
  font-size: 26px;
}
.business-content-section .container .date {
  color: #888;
  font-size: 16px;
  padding: 30px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
.business-content-section .container .content {
  color: #333;
  line-height: 1.8;
  font-size: 18px;
  color: #333333;
  line-height: 36px;
  text-align: justify;
}
.business-content-section .container .content img {
  margin: 10px 0;
  max-width: 100%;
  height: auto;
  width: auto;
}
@media screen and (max-width: 1025px) {
  .business-content-section {
    padding: 120px 0 60px 0;
  }
  .business-content-section .container {
    width: 90vw;
  }
  .business-content-section .container .title {
    font-size: 20px;
  }
}
.nav-article {
  display: flex;
  justify-content: center;
  gap: 40px;
        width: 90vw;
  margin: 0 auto;
  padding-bottom: 100px;
}

@media screen and (max-width: 1025px) {
    .nav-article{
        gap: 30px;
    }
}
.nav-article a {
  color: #333;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-article .disabled {
  color: #AAA;
  cursor: not-allowed;
}
.nav-article a:not(.disabled):hover {
  color: var(--primary-color);
}
.nav-article .next svg {
  transform: rotate(180deg);
}
.nav-article .disabled svg {
  opacity: 0.5;
}
@media screen and (max-width: 1025px) {
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
