.homeBanner {
  position: relative;
}

.homeBanner .--listImg .--item {
  position    : relative;
  aspect-ratio: 2.8/1;
}

.homeBanner .--listImg .--img {
  width : 100%;
  height: 100%;
}

.homeBanner .--listImg .--img img {
  width : 100%;
  height: 100%;
}

.homeBanner .--listImg .--txt {
  position : absolute;
  width    : var(--container-width);
  left     : 50%;
  top      : 90px;
  z-index  : 1;
  transform: translate(-50%, 0);
}

.homeBanner .--listImg .--title {
  color        : #fff;
  font-weight  : 700;
  margin-bottom: 0;
}

.homeBanner .--listImg .--viewDetail {
  margin-top    : 16px;
  background    : var(--color-1);
  height        : 48px;
  display       : flex;
  align-items   : center;
  padding       : 0 32px;
  text-transform: uppercase;
  color         : #fff;
  width         : -moz-max-content;
  width         : max-content;
  border-radius : 24px;
  font-size     : 12px;
  font-weight   : bold;
}

.homeBanner .--listImg .--play {
  background     : var(--color-1);
  width          : 60px;
  aspect-ratio   : 1;
  color          : #fff;
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-size      : 24px;
  margin-top     : 16px;
  border-radius  : 50%;
}

.homeBanner .--bottom {
  position: absolute;
  bottom  : 0;
  left    : 0;
  width   : 100%;
}

.homeBanner .--bottom .container-fluid {
  display: flex;
}

.homeBanner .--bottom .--listInfo {
  flex-grow            : 1;
  height               : 140px;
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap             : 60px;
  border-top           : 1px solid #fff;
}

.homeBanner .--bottom .--listInfo .--item {
  padding-top: 20px;
}

.homeBanner .--bottom .--listInfo .--cate {
  font-size     : 12px;
  color         : var(--color-1);
  text-transform: uppercase;
  font-weight   : 700;
}

.homeBanner .--bottom .--listInfo .--titleSmall {
  font-size : 20px;
  color     : #fff;
  margin-top: 8px;
}

.homeBanner .--bottom .--scroll {
  width          : 110px;
  border-left    : 1px solid #fff;
  border-top     : 1px solid #fff;
  display        : flex;
  align-items    : center;
  justify-content: center;
  aspect-ratio   : 1;
  flex           : 0 0 auto;
  cursor         : pointer;
}

@media (max-width: 769px) {
  .homeBanner .--listImg .--item {
    aspect-ratio: 2/3;
  }

  .homeBanner .--listImg .--txt {
    bottom: 40px;
    top   : unset;
  }

  .homeBanner .--listImg .--cate {
    font-size     : 12px;
    color         : var(--color-1);
    text-transform: uppercase;
    font-weight   : 700;
  }

  .homeBanner .slick-dots {
    position       : absolute;
    bottom         : 20px;
    left           : 50%;
    transform      : translate(-50%, 0);
    width          : -moz-max-content;
    width          : max-content;
    max-width      : 100%;
    display        : flex;
    align-items    : center;
    gap            : 8px;
    padding-left   : 0;
    list-style     : none;
    margin-bottom  : 0;
    justify-content: center;
  }

  .homeBanner .slick-dots li {
    width        : 8px;
    aspect-ratio : 1;
    overflow     : hidden;
    border-radius: 50%;
    background   : #4e4e4e;
  }

  .homeBanner .slick-dots li.slick-active {
    background: #fff;
  }

  .homeBanner .slick-dots li button {
    width  : 100%;
    height : 100%;
    opacity: 0;
  }

  .homeBanner .--bottom {
    display: none;
  }
}

.homeLocation .--listLocation {
  display              : grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap             : 8px;
}

.homeLocation .--listLocation .itemBlock:first-child {
  grid-column: 1;
  grid-row   : 1/span 2;
}

.homeLocation .--listLocation .itemBlock:first-child .--img {
  height: 568px;
}

.homeLocation .--listLocation .itemBlock:nth-child(n+2) .--img {
  height: 280px;
}

@media (max-width: 769px) {
  .homeLocation {
    overflow: hidden;
  }

  .homeLocation .slick-list {
    overflow: visible;
    margin  : 0 -4px;
  }

  .homeLocation .--listLocation {
    display: block;
    padding: 0 24px;
  }

  .homeLocation .--listLocation .itemBlock {
    height: 280px !important;
    margin: 0 4px;
  }
}

.homeInfo {
  padding: 40px 0;
}

.homeInfo .--listInfo {
  display              : grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap             : 12px;
}

.homeInfo .--item {
  aspect-ratio   : 3/2;
  display        : flex;
  color          : #000;
  flex-flow      : column;
  justify-content: center;
  align-items    : center;
  text-align     : center;
  background     : #eee;
  padding        : 12px;
  gap            : 12px;
}

.homeInfo .--item img {
  max-width    : 100%;
  -o-object-fit: contain;
  object-fit   : contain;
  height       : 60px;
}

@media (max-width: 769px) {
  .homeInfo .--listInfo {
    display  : flex;
    flex-wrap: wrap;
    gap      : 8px;
  }

  .homeInfo .--listInfo .--item {
    flex     : 0 0 calc(50% - 4px);
    font-size: 14px;
  }
}

.homeNews {
  padding: 40px 0 110px;
}

.homeNews .container-fluid {
  display              : grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap             : 60px;
}

.homeNews .--item {
  display        : flex;
  justify-content: space-between;
  align-items    : center;
  font-size      : 16px;
  color          : #000;
  padding        : 12px 0;
  gap            : 8px;
  border-bottom  : 1px solid #e9e9e9;
}

.homeNews .--item i {
  transition: var(--transition-all);
}

.homeNews .--item:hover i {
  transform: translate(-4px, 0);
}

@media (max-width: 769px) {
  .homeNews {
    padding: 40px 0;
  }

  .homeNews .container-fluid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap             : 24px;
  }
}

/*# sourceMappingURL=home.css.map */