.beilaide-hot-product {
  padding: var(--component-gap) 0;
  background-color: #fff;
}

.beilaide-hot-product .swiper-slide{
  height: auto;
}

.beilaide-hp__title {
  text-align: center;
  margin-bottom: calc(var(--component-gap) / 2);
}

.beilaide-hp__title h2 {
  font-size: var(--font-64);
  font-weight: 700;
  text-transform: uppercase;
}

.beilaide-hp__list {
  position: relative;
  padding-bottom: 67px;
}

.beilaide-hp__item {
  border-radius: 16px;
  background-color: #333333;
  transition: background-color 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.beilaide-hp__item-image {
  width: 100%;
}

.beilaide-hp__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 527 / 334;
}

.beilaide-hp__item-content {
  padding: 41px 30px 33px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.beilaide-hp__item-content h5 {
  color: #fff;
  font-size: var(--font-24);
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
}

.beilaide-hp__item-content p {
  margin-top: 8px;
  color: #fff;
  font-size: var(--font-16);
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 3em;
  flex: 1;
}

.beilaide-hp__item-content .beilaide-hp__item-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.beilaide-hp__item-button svg > * {
  transition: fill 0.3s ease;
}

.beilaide-hp__item:hover {
  background-color: var(--color-primary);
}

.beilaide-hp__item:hover .beilaide-hp__item-button svg circle {
  fill: #fff;
}

.beilaide-hp__item:hover .beilaide-hp__item-button svg rect {
  fill: #333333;
}

.beilaide-hp__button {
  margin: 33px auto 0;
  padding: 10px;
  width: 344px;
  height: 76px;
  gap: 10px;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
}

.beilaide-hp__button a {
  color: var(--color-primary);
  font-size: var(--font-20);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.beilaide-hp__button a span {
  width: 75%;
  text-align: center;
}

.beilaide-hp__button svg {
  width: calc(12 / 20 * 1em);
  height: calc(18 / 20 * 1em);
}

.beilaide-hp__button svg rect {
  fill: var(--color-primary);
  transition: fill 0.3s ease;
}

.beilaide-hp__button:hover {
  background-color: var(--color-primary);
}

.beilaide-hp__button:hover a {
  color: #fff;
}

.beilaide-hp__button:hover svg rect {
  fill: #fff;
}

@media (max-width: 1280px) {
  .beilaide-hp__item-content {
    padding: 36px 25px 28px;
  }
  .beilaide-hp__button {
    width: 300px;
    height: 66px;
  }
}

@media (max-width: 992px) {
  .beilaide-news-list {
    padding-top: 30px;
  }
  .beilaide-hp__item-content {
    padding: 30px 20px 23px;
  }
  .beilaide-hp__list {
    padding-bottom: 47px;
  }
  .beilaide-hp__button {
    width: 250px;
    height: 55px;
    margin-top: 20px;
    border-width: 1px;
  }
}

@media (max-width: 768px) {
  .beilaide-news-list {
    padding-top: 20px;
  }
  .beilaide-hp__item-content {
    padding: 25px 15px 18px;
  }
  .beilaide-hp__button {
    width: 200px;
    height: 44px;
  }
}

@media (max-width: 599px) {
  .beilaide-news-list {
    padding-top: 10px;
  }
  .beilaide-hp__item-content {
    padding: 20px 10px 13px;
  }
  .beilaide-hp__list {
    padding-bottom: 37px;
  }

  .beilaide-hp__item-content p{
    height: auto;
    -webkit-line-clamp: unset;
    line-clamp: unset;
  }
}
