/* start:::专题类型 */
.home-sections {
  margin: 0 auto;
  width: calc(100% - 200px);
}

.home-sections__padding h1 {
  text-align: center;
  font-size: 24px;
}

.home-sections__padding {
  padding: 36px 0 0;
}

.home-section {
  padding: 36px 0 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header button {
  color: #FEBD2B;
  font-size: 16px;
  padding-right: 20px;
  background: url('../../static/images/arrow-more.png') right center / 18px 18px no-repeat;
}

.section-content {
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 30px;
}

.section-content.section-item-big {
  grid-template-columns: repeat(3, 1fr);
}

.section-content.section-ranks {
  grid-template-columns: repeat(5, 1fr);
}

.section-content.section-item-big p {
  color: #fff;
}

.section-content button.toggle {
  position: absolute;
  top: 96px;
  width: 60px;
  height: 48px;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.20) 100%);
  display: flex;
  align-items: center;
}

.section-content button.prev {
  border-radius: 0 24px 24px 0;
}

.section-content button.next {
  border-radius: 24px 0 0 24px;
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.90) 100%);
}

.section-content button.prev::after,
.section-content button.next::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
}

.section-content button.prev::after {
  background: url('../../static/images/arrow-left.png') right center / contain no-repeat;
}

.section-content button.next::after {
  position: absolute;
  right: 10px;
  transform: rotate(180deg);
  background: url('../../static/images/arrow-left.png') right center / contain no-repeat;
}

.section-content .line-space {
  grid-column-start: 1;
  grid-column-end: 5;
  display: flex;
  justify-content: center;
}

.section-content button.more {
  color: #FEBD2B;
  font-size: 16px;
  padding-right: 18px;
  background: url('../../static/images/arrow-more-down.png') right center / 18px 18px no-repeat;
}

.section-content__item {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.section-content__item *[data-type="2"] .text-social {
  display: none;
}

.item-cover {
  aspect-ratio: 1.77;
}
.item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.item-texts {
  padding: 12px;
}

.item-texts h3 {
  color: #BDBDBD;
  font-size: 20px;
  font-weight: 500;
}

.item-texts .text-social {
  display: flex;
  justify-content: space-between;
  color: #fff9;
  margin-top: 6px;
  font-size: 16px;
  line-height: 24px;
}

.item-texts .text-subs {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff9;
}

.item-gy {
  width: 72px;
  height: 29px;
  background: url('../../static/images/home-gy.png') center / contain no-repeat;
}

.colorful-texts {
  margin-top: -73px;
}

.colorful-texts .item-texts {
  background-color: #521412;
  padding: 6px 10px 12px;
}

.colorful-texts .rank-title {
  padding: 25px 10px 0;
  background: linear-gradient(180deg, rgba(82, 20, 18, 0.00) 1%, #521412 100%);
  color: #FFF;
  font-size: 30px;
  font-weight: 1000;
}

.section-models {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.gl-cover {
  width: 100%;
  aspect-ratio: 0.67;
}

.gl-cover a {
  display: block;
  width: 100%;
  height: 100%;
}

.gl-cover a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.00) 100%);
}

.gl-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gl-infos {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 16px;
  text-align: center;
  z-index: 1;
}

.gl-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.gl-works {
  color: #7c7c7c;
  font-size: 16px;
  line-height: 22px;
  margin-top: 6px;
}

@media screen and (max-width: 1560px) {
  .section-content {
    gap: 15px;
  }

  .item-texts h3 {
    font-size: 16px;
  }

  .item-texts .text-social {
    font-size: 14px;
  }
}

@media screen and (max-width: 1280px) {
  h2 {
    font-size: 20px;
  }

  .section-content {
    padding: 12px 0 18px;
    grid-template-columns: repeat(4, 1fr);
  }

  .section-models {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 18px;
  }

  .item-texts {
    padding: 4px 6px;
  }

  .item-texts h3 {
    font-size: 12px;
  }

  .item-texts .text-social {
    font-size: 10px;
  }
}

@media screen and (max-width: 824px) {
  .home-sections__padding h1 {
    display: none;
  }

  .section-header button {
    font-size: 12px;
  }

  .home-sections {
    width: 100%;
  }

  .home-sections__padding {
    padding: 18px 0 0;
  }

  .home-section {
    padding: 0;
  }

  .section-header {
    padding: 0 16px;
  }

  .section-content {
    padding: 12px 16px 18px;
    grid-template-columns: 1fr 1fr;
    gap: 12px 7px;
  }

  .item-texts {
    padding: 4px 6px;
  }

  .item-texts h3 {
    font-size: 12px;
  }

  .item-texts .text-social {
    font-size: 10px;
  }

  .item-gy {
    display: none;
  }

  .section-content.section-ranks {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-content__item {
    border-radius: 5px;
  }

  .section-content__item.colorful {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
  }

  .section-content__item.colorful .item-cover {
    flex: 1;
  }

  .colorful-texts {
    flex: 1;
    margin-top: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .colorful-texts .rank-title {
    background: transparent;
    font-size: 16px;
    padding: 0;
  }

  .colorful-texts .item-texts {
    background: transparent;
    padding: 0;
  }

  .section-slide-small .section-content {
    overflow: scroll;
    display: flex;
    gap: 7px;
  }

  .section-slide-small .section-content .section-content__item {
    flex-shrink: 0;
    width: 40.8%;
  }

  .section-slide-small .line-space,
  .section-slide-small button.toggle {
    display: none;
  }

  .section-content.section-item-big {
    grid-template-columns: 1fr 1fr;
  }

  .section-models {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 6px;
  }

  .gl-infos {
    bottom: 8px;
  }

  .gl-text {
    font-size: 12px;
  }

  .gl-works {
    font-size: 10px;
    line-height: 16px;
    margin-top: 2px;
  }
}

/* end:::专题类型 */