.bokai-news-list {
  padding: var(--section-padding) 0;
}
.bokai-news-tabs {
  display: flex;
  gap: 20px;
  overflow: scroll;
}
.bokai-news-tabs::-webkit-scrollbar {
  display: none;
}
.bokai-news-tabs .tabs-item {
  padding: 16px 55px;
  border-radius: 200px;
  border: 4px solid #f8f8f8;
  background: #fff;
  color: #9b9b9b;
  text-align: center;
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: var(--font-weight-base);
  line-height: 1.5; /* 150% */
  white-space: nowrap;
  transition: background 0.3s,border-color 0.3s;
}

.bokai-news-tabs .tabs-item.active,.bokai-news-tabs .tabs-item:hover{
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff!important;
}

.bokai-news-tabs .tabs-item:hover a {
    color: #fff!important;
}

.news-content {
  margin-top: 2.5rem;
}
.news-item {
  padding: 2.5rem 0;
  display: flex;
  gap: 2.5rem;
  border-bottom: 2px solid #ececec;
}
.news-item .news-left {
  flex: 1;
}
.news-left .news-date {
  color: var(--color-primary);
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: var(--font-weight-base);
  line-height: 1.5; /* 150% */
}
.news-left .news-title {
  color: var(--color-tips);
  font-size: 2.25rem;
  margin-top: 2.5rem;
}
.news-left .news-desc {
  color: #9b9b9b;
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: var(--font-weight-base);
  line-height: 1.5; /* 150% */
  margin-top: 1.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news-left .news-more {
  padding: 10px 40px;
  color: var(--color-primary);
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: var(--font-weight-base);
  line-height: 1.5; /* 150% */
  margin-top: 2.5rem;
  border-radius: 200px;
  background: rgba(121, 232, 163, 0.1);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: all 0.3s;
}

.news-left .news-more:hover {
  background-color: #36be6a;
  color: #fff;
}

.news-left .news-more:hover svg * {
  /* fill: #fff; */
  stroke: #fff;
  transition: all 0.3s;
}
.news-item .news-right {
  width: 480px;
}
.news-item .news-right img {
  width: 100%;
  aspect-ratio: 12/7;
  object-fit: cover;
  border-radius: 16px;
}
.news-right .video-mask {
  position: relative;
}
.news-right .video-mask .video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bokai-news-list #pagesize ul {
  gap: 2.5rem;
}
.bokai-news-list #pagesize ul li a {
  color: #9b9b9b;
  text-align: center;
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: var(--font-weight-base);
  line-height: 1.5; /* 150% */
  margin: 0;
  border: none !important;
  display: flex;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
}
.bokai-news-list #pagesize ul li a.active {
  background: #fff;
  color: var(--color-tips) !important;
}
.bokai-news-list #pagesize ul li a.disabled {
  color: #9b9b9b;
  background-color: #fff;
}
.bokai-news-list #pagesize ul li a:hover {
  background: #fff;
  color: var(--color-primary) !important;
}
.bokai-news-list #pagesize ul li:first-child a:hover svg path,
.bokai-news-list #pagesize ul li:last-child a:hover svg path {
  stroke: var(--color-primary);
}

@media screen and (max-width: 1500px) {
  .bokai-news-tabs .tabs-item {
    padding: 15px 30px;
  }
  .news-item .news-right {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .news-item {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }
  .news-item .news-right {
    width: 100%;
  }
  .news-left .news-title {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .bokai-news-list #pagesize ul {
    gap: 1.5rem;
  }
}
