.baosidun_home_news {
  padding-top: 7rem;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.00) 0%, rgba(245, 245, 245, 0.488) 100%);
}

.baosidun_home_news_title {
  text-align: center;
}

.baosidun_home_news_subTitle {
  text-align: center;
  margin-top: .625rem;
}

.baosidun_home_news_content {
  padding: 5.5rem 1.25rem 2rem;
}

.baosidun_home_news_content_wrap {
  position: relative;
}

.baosidun_home_news_prev,
.baosidun_home_news_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.baosidun_home_news_prev {
  left: -24px;
}

.baosidun_home_news_next {
  right: -24px;
}

.baosidun_home_news_prev.swiper-button-lock,
.baosidun_home_news_next.swiper-button-lock {
  display: none !important;
}

.baosidun_home_news_swiper {
  overflow: hidden;
  width: 100%;
}

.baosidun_home_news_item {
  height: auto;
}

.baosidun_home_news_item .item_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FFF;
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}

.baosidun_home_news_item .item-date {
  position: absolute;
  width: 5rem;
  aspect-ratio: 1/1;
  top: -1.25rem;
  right: 1.25rem;
  background-color: var(--color-second);
  color: #FFF;
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: .375rem;
  transition: all 0.3s ease;
}

.baosidun_home_news_item .item-date em {
  font-weight: 600;
  font-size: var(--font-36);
  line-height: 1.333;
}

.baosidun_home_news_item .item_inner:hover .item-date {
  background-color: var(--color-primary);
}

.baosidun_home_news_item .item_img {
  width: 100%;
  aspect-ratio: 42/26;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

.baosidun_home_news_item .item-content-box {
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}

.baosidun_home_news_item .item-tag {
  padding: .3125rem .9375rem;
  color: var(--title-text-color);
  border-radius: 50px;
  background-color: #F5F5F5;
  transition: all 0.3s ease;
}

.baosidun_home_news_item .item_inner:hover .item-tag {
  background-color: var(--color-primary);
  color: #fff;
}

.baosidun_home_news_item .item_title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.baosidun_home_news_item .item_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 1.5rem 1.875rem;
  border-top: 1px solid #DDD;
  font-size: var(--font-16);
  font-weight: 500;
  line-height: normal;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.baosidun_home_news_item .item_inner:hover .item_btn {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #FFF;
}

.baosidun_home_news_item .item_inner:hover .item_btn svg path {
  fill: #FFF;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {
  .baosidun_home_news_prev {
    left: -12px;
  }

  .baosidun_home_news_next {
    right: -12px;
  }
}

@media screen and (max-width: 576px) {}