.yuedong_hot_news {
  padding: 2rem 0 0rem;
}

.yuedong_hot_news_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.6875rem;
}

.yuedong_hot_news_header_left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.yuedong_hot_news_header_decorator {
  width: .28125rem;
  background: var(--color-primary);
  align-self: stretch;
  flex-shrink: 0;
}

.yuedong_hot_news_title {
  color: #000;
  font-size: var(--font-size-42);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.yuedong_hot_news_navigation {
  display: flex;
  align-items: center;
  gap: 7px;
}

.yuedong_hot_news_button {
  width: 120px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8E8E8E;

  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.yuedong_hot_news_button.prev span {
  transform: translateX(5px);
}

.yuedong_hot_news_button span {
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.yuedong_hot_news_button_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  aspect-ratio: 6/10;
  line-height: 0;
  transition: all 0.3s ease;
}

.yuedong_hot_news_button_icon svg {
  line-height: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.yuedong_hot_news_button.prev .yuedong_hot_news_button_icon {
  left: 14px;
}

.yuedong_hot_news_button.next .yuedong_hot_news_button_icon {
  right: 14px;
}

.yuedong_hot_news_button:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

.yuedong_hot_news_item_link {
  display: block;
  line-height: 0;
}

.yuedong_hot_news_item_img {
  width: 100%;
  height: auto;
}

.yuedong_hot_news_item_img img {
  width: 100%;
  aspect-ratio: 782 /434;
  object-fit: cover;
}

.yuedong_hot_news_item_content {
  background: #FBFBFB;
  padding: 1rem 1.25rem 1.15625rem;
  word-break: break-word;
  transition: all 0.3s ease;
}

.yuedong_hot_news_item_date {
  color: #6E6E6E;
  font-size: var(--font-size-16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.yuedong_hot_news_item_title {
  color: #000;
  font-size: var(--font-size-24);
  font-weight: 400;
  line-height: 1.2;
  margin-top: .3125rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease;
}

.yuedong_hot_news_item_desc {
  color: #737373;
  font-size: var(--font-size-16);
  font-weight: 400;
  line-height: 1.625;
  margin-top: .5625rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yuedong_hot_news_list.swiper {
  padding-bottom: 2rem;
}

.yuedong_hot_news_item_link:hover .yuedong_hot_news_item_content{
  background: rgba(235, 251, 255, 0.44);
}

.yuedong_hot_news_item_link:hover .yuedong_hot_news_item_title{
  color: var(--color-primary);
}

@media screen and (max-width: 992px) {
  .yuedong_hot_news_button{
    width: 90px;
    height: 30px;
  }

  .yuedong_hot_news_button.prev span{
    transform: none;
  }

  .yuedong_hot_news_button_icon{
    width: 5px;
  }

  .yuedong_hot_news_button.prev .yuedong_hot_news_button_icon{
    left: 10px;
  }

  .yuedong_hot_news_button.next .yuedong_hot_news_button_icon{
    right: 10px;
  }
}

.yuedong_hot_news_list .yuedong_hot_news_swiper_pagination {
  bottom: 0 !important;
  /* text-align: center;
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; */
}