/* color */
/* font */
/* transition */
.giftBox .giftItem, .giftBox .giftItem .title, .giftBox .giftItem .tag:before, .towerBox .towerItem, .towerBox .towerItem .tag:before, .newsBox .newsItem .imgBox img, .dessertBox .dessertItem2 .imgBox:after, .treatBox .treatList .smallImg img, .treatBox .treatBottomList .imgBox img {
  transition: all 0.5s ease-in-out; }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.bannerBox {
  --swiper-navigation-sides-offset: 5%;
  --swiper-navigation-color: #fff;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bottom: 10%;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: #c19574; }
  .bannerBox .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    position: relative;
    background-color: transparent;
    border: 3px solid #fff; }
  .bannerBox .swiper-slide {
    font-size: 0; }
  .bannerBox .swiper-pagination {
    max-width: 1340px;
    text-align: right; }

.titleBox {
  position: relative;
  padding-top: 60px;
  text-align: center;
  z-index: 2;
  width: fit-content;
  margin: 0 auto 45px; }
  .titleBox:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url("../assets/images/small-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    transform: translateX(-50%); }
  .titleBox:after {
    content: "";
    position: absolute;
    width: 210px;
    height: 70px;
    background-image: url("../assets/images/title-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    left: -60px;
    bottom: 0;
    z-index: 1; }
  .titleBox .title {
    font-size: 36px;
    font-weight: 700;
    color: #ffd76a;
    position: relative;
    z-index: 2; }
    .titleBox .title span {
      position: relative;
      margin: 0 20px; }
      .titleBox .title span:before {
        content: "";
        position: absolute;
        height: 95px;
        width: 95px;
        background-color: #d7682e;
        left: -30px;
        top: -20px;
        z-index: -1;
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
      .titleBox .title span:after {
        content: "";
        position: absolute;
        position: absolute;
        height: 60px;
        width: 60px;
        left: -15px;
        border: 2px solid #d7682e;
        bottom: -25px;
        z-index: -1;
        rotate: 45deg; }
  .titleBox .subtitle {
    color: #a30d16;
    font-weight: 600;
    font-family: "Libre Baskerville", Noto Serif TC, sans-serif;
    font-size: 20px;
    letter-spacing: 1.6px;
    padding-top: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 30px; }
  .titleBox .other {
    color: #56220a;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 11.718px;
    text-align: center;
    padding: 7.5px 120px;
    border: 2px dashed #56220a; }
    @media (max-width: 640px) {
      .titleBox .other {
        font-size: 16px;
        padding: 7.5px 20px;
        letter-spacing: 2.4px; } }

.mainBox {
  background-color: #f5f1e7;
  background-image: url("../assets/images/homeBg.jpg");
  background-position: center top;
  background-repeat: no-repeat; }

.giftBox {
  padding: 90px 0; }
  .giftBox .giftList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 70px;
    row-gap: 30px;
    margin: 0 50px; }
    @media (max-width: 1180px) {
      .giftBox .giftList {
        column-gap: 30px;
        margin: 0; } }
    @media (max-width: 640px) {
      .giftBox .giftList {
        column-gap: 20px; } }
  .giftBox .giftItem {
    color: #56220a;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    background-color: #d7b78a;
    padding: 40px 20px;
    border-radius: 100px;
    overflow: hidden; }
    @media (max-width: 1180px) {
      .giftBox .giftItem {
        border-radius: 50px; } }
    @media (max-width: 640px) {
      .giftBox .giftItem {
        border-radius: 20px; } }
    @media (min-width: 1181px) {
      .giftBox .giftItem:hover {
        background-color: #8b5424;
        filter: drop-shadow(0 0 10px #000); }
        .giftBox .giftItem:hover .textBox {
          color: #fff; }
        .giftBox .giftItem:hover .tag:before {
          content: "";
          position: absolute;
          background-color: #fff; }
        .giftBox .giftItem:hover .btn {
          color: #6f2517;
          border: 1px solid #000;
          background-image: linear-gradient(12deg, #ffdeb3 0%, #d8ad77 60%, #c19574 100%); } }
    .giftBox .giftItem:before {
      content: "";
      position: absolute;
      width: 150%;
      height: 60%;
      border-bottom-left-radius: 50%;
      border-bottom-right-radius: 50%;
      background-color: #830f0f;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1; }
      @media (max-width: 640px) {
        .giftBox .giftItem:before {
          height: 65%; } }
    .giftBox .giftItem:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background-image: url("../assets/images/product-bg.png");
      opacity: 0.15;
      z-index: 0; }
    .giftBox .giftItem .link {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 3; }
    .giftBox .giftItem .imgBox {
      position: relative;
      z-index: 2;
      max-width: 260px; }
      .giftBox .giftItem .imgBox img {
        max-width: 100%;
        height: auto; }
    .giftBox .giftItem .textBox {
      position: relative;
      z-index: 2;
      text-align: center;
      font-weight: 700; }
    .giftBox .giftItem .title {
      font-size: 22px;
      font-weight: 700;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      letter-spacing: 3.624px;
      margin-bottom: 20px; }
      @media (max-width: 640px) {
        .giftBox .giftItem .title {
          font-size: 20px;
          color: #fff; } }
    .giftBox .giftItem .tagList {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 28px;
      margin-bottom: 30px; }
      @media (max-width: 640px) {
        .giftBox .giftItem .tagList {
          flex-direction: row;
          gap: 5px; } }
    .giftBox .giftItem .tag {
      position: relative; }
      .giftBox .giftItem .tag:before {
        content: "";
        position: absolute;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background-color: #56220a;
        top: 50%;
        left: -8px;
        transform: translateY(-50%); }

.towerBox {
  position: relative;
  padding-bottom: 160px;
  background-image: url("../assets/images/content-bg.jpg"); }
  @media (max-width: 640px) {
    .towerBox {
      padding-bottom: 50px; } }
  .towerBox .bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-image: url("../assets/images/tower-bottom.png");
    background-position: center;
    background-size: 120%;
    pointer-events: none; }
    @media (max-width: 1680px) {
      .towerBox .bg {
        background-size: 140%; } }
    @media (max-width: 1440px) {
      .towerBox .bg {
        background-size: 160%; } }
    @media (max-width: 1024px) {
      .towerBox .bg {
        background-size: 180%; } }
    @media (max-width: 640px) {
      .towerBox .bg {
        background-image: none; } }
  .towerBox:before {
    content: "";
    position: absolute;
    top: 20%;
    left: 15%;
    background-image: url("../assets/images/tower-deco.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; }
  .towerBox:after {
    content: "";
    position: absolute;
    bottom: 1.5%;
    left: 0;
    background-image: url("../assets/images/tower-deco2.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; }
  .towerBox .towerList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 92px;
    row-gap: 52px;
    margin: 0 50px;
    position: relative;
    z-index: 2; }
    @media (max-width: 1024px) {
      .towerBox .towerList {
        column-gap: 20px;
        margin: 0; } }
    @media (max-width: 640px) {
      .towerBox .towerList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 20px; } }
  .towerBox .towerItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 12px;
    position: relative; }
    @media (min-width: 1181px) {
      .towerBox .towerItem:hover {
        filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5)); }
        .towerBox .towerItem:hover .btn {
          color: #6f2517;
          border: 1px solid #000;
          background-image: linear-gradient(12deg, #ffdeb3 0%, #d8ad77 60%, #c19574 100%); } }
    .towerBox .towerItem:before {
      content: "";
      position: absolute;
      width: calc(100% + 12px);
      height: calc(100% + 12px);
      left: -6px;
      top: -6px;
      background-image: linear-gradient(to top, #ffdeb3 0%, #d8ad77 60%, #c19574 100%);
      z-index: 0;
      border-radius: 30px; }
    .towerBox .towerItem:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 150px;
      left: 0;
      top: 0;
      background-image: url("../assets/images/tower-bg.png");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center top;
      z-index: 1; }
    .towerBox .towerItem .bg {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-color: #fff;
      border-radius: 30px;
      z-index: 1; }
    .towerBox .towerItem .link {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 3; }
    .towerBox .towerItem .imgBox {
      max-width: 200px;
      position: relative;
      z-index: 2; }
      .towerBox .towerItem .imgBox img {
        max-width: 100%;
        height: auto; }
    .towerBox .towerItem .textBox {
      color: #56220a;
      padding: 10px 45px;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center; }
      @media (max-width: 1024px) {
        .towerBox .towerItem .textBox {
          padding: 10px 20px; } }
    .towerBox .towerItem .title {
      font-size: clamp(20px, 24px, 32px);
      font-weight: 700;
      letter-spacing: 3.84px;
      line-height: 1.3125;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 20px; }
      @media (max-width: 640px) {
        .towerBox .towerItem .title {
          font-size: 20px;
          margin-bottom: 10px; } }
    .towerBox .towerItem .tagList {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      row-gap: 5px;
      margin-bottom: 30px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 2.16px;
      line-height: 1.66667; }
      @media (max-width: 640px) {
        .towerBox .towerItem .tagList {
          gap: 5px;
          font-size: 16px;
          flex-direction: row;
          margin-bottom: 10px; } }
    .towerBox .towerItem .tag {
      position: relative; }
      .towerBox .towerItem .tag:before {
        content: "";
        position: absolute;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background-color: #56220a;
        top: 50%;
        left: -8px;
        transform: translateY(-50%); }

.newsBox {
  background-image: url("../assets/images/news-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 160px 0; }
  @media (max-width: 1024px) {
    .newsBox {
      padding: 100px 0; } }
  @media (max-width: 640px) {
    .newsBox {
      padding: 50px 0;
      background-image: none;
      background-color: #dfbca2; } }
  .newsBox .newsList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px; }
    @media (max-width: 640px) {
      .newsBox .newsList {
        grid-template-columns: 1fr; } }
  .newsBox .newsItem {
    position: relative; }
    .newsBox .newsItem .link {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 3; }
    @media (min-width: 1181px) {
      .newsBox .newsItem:hover .imgBox img {
        scale: 1.1; } }
    .newsBox .newsItem .imgBox {
      font-size: 0;
      overflow: hidden; }
      .newsBox .newsItem .imgBox img {
        width: 100%;
        height: auto; }
    .newsBox .newsItem .textBox {
      padding: 25px 25px 0;
      position: relative; }
      .newsBox .newsItem .textBox:before {
        content: "";
        position: absolute;
        width: 1px;
        height: 100%;
        background-color: #fff;
        top: 0;
        left: 0; }
    .newsBox .newsItem .title {
      color: #56220a;
      font-size: 19px;
      font-weight: 700;
      letter-spacing: 2.28px;
      line-height: 1.73684;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 5px; }
    .newsBox .newsItem .desc {
      color: #56220a;
      letter-spacing: 0.96px;
      line-height: 1.875;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
    .newsBox .newsItem .btn {
      display: block;
      width: fit-content;
      margin-top: 40px; }

.dessertBox {
  position: relative;
  background-image: url("../assets/images/content-bg.jpg");
  padding: 80px 0; }
  .dessertBox:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url("../assets/images/dessert-deco2.png");
    background-position: center 80%;
    background-repeat: no-repeat; }
  .dessertBox .titleBox:after {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 30%; }
  .dessertBox .decoBg {
    position: absolute;
    left: 50%;
    top: 10%;
    opacity: 0.25;
    user-select: none;
    pointer-events: none; }
    @media (max-width: 640px) {
      .dessertBox .decoBg {
        display: none; } }
  .dessertBox .container {
    position: relative; }
    .dessertBox .container:before {
      content: "";
      position: absolute;
      width: 112px;
      height: 200px;
      background-image: url("../assets/images/dessert-deco.png");
      top: -130px;
      left: 5%; }
  .dessertBox .dessertList {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 70px;
    row-gap: 50px; }
    @media (max-width: 1024px) {
      .dessertBox .dessertList {
        column-gap: 20px; } }
  .dessertBox .dessertItem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #56220a; }
    .dessertBox .dessertItem1, .dessertBox .dessertItem2, .dessertBox .dessertItem3 {
      grid-column: span 4;
      align-self: flex-end; }
      .dessertBox .dessertItem1 .imgBox, .dessertBox .dessertItem2 .imgBox, .dessertBox .dessertItem3 .imgBox {
        max-width: 250px; }
    .dessertBox .dessertItem4, .dessertBox .dessertItem5, .dessertBox .dessertItem6, .dessertBox .dessertItem7 {
      grid-column: span 3; }
      @media (max-width: 640px) {
        .dessertBox .dessertItem4, .dessertBox .dessertItem5, .dessertBox .dessertItem6, .dessertBox .dessertItem7 {
          grid-column: span 4; } }
      @media (max-width: 640px) {
        .dessertBox .dessertItem4 .imgBox, .dessertBox .dessertItem5 .imgBox, .dessertBox .dessertItem6 .imgBox, .dessertBox .dessertItem7 .imgBox {
          max-width: 250px; } }
    @media (max-width: 640px) {
      .dessertBox .dessertItem1, .dessertBox .dessertItem3, .dessertBox .dessertItem4, .dessertBox .dessertItem5, .dessertBox .dessertItem6, .dessertBox .dessertItem7 {
        order: 1;
        grid-column: span 6; } }
    .dessertBox .dessertItem1 .btn, .dessertBox .dessertItem3 .btn, .dessertBox .dessertItem4 .btn, .dessertBox .dessertItem5 .btn, .dessertBox .dessertItem6 .btn, .dessertBox .dessertItem7 .btn {
      display: none; }
    .dessertBox .dessertItem .imgBox {
      position: relative; }
      .dessertBox .dessertItem .imgBox img {
        max-width: 100%;
        height: auto; }
    .dessertBox .dessertItem .textBox {
      display: flex;
      flex-direction: column;
      align-items: center; }
    .dessertBox .dessertItem .link {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 3; }
    .dessertBox .dessertItem .title {
      font-size: clamp(20px, 22px, 24px);
      font-weight: 700;
      text-align: center;
      letter-spacing: 4.8px; }
    .dessertBox .dessertItem .desc {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.5;
      letter-spacing: 2.16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
    .dessertBox .dessertItem2 {
      width: calc(100% + 140px);
      margin-left: -70px; }
      @media (max-width: 640px) {
        .dessertBox .dessertItem2 {
          width: 100%;
          margin-left: 0;
          grid-column: span 12;
          order: 0; } }
      @media (min-width: 1181px) {
        .dessertBox .dessertItem2:hover .imgBox:after {
          content: "";
          position: absolute;
          opacity: 1; }
        .dessertBox .dessertItem2:hover .btn {
          color: #6f2517;
          border: 1px solid #000;
          background-image: linear-gradient(12deg, #ffdeb3 0%, #d8ad77 60%, #c19574 100%); } }
      .dessertBox .dessertItem2 .imgBox {
        width: 100%;
        max-width: unset;
        text-align: center;
        position: relative;
        overflow: visible;
        transform: translateY(-40px); }
        .dessertBox .dessertItem2 .imgBox:after {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 10%;
          background-image: url("../assets/images/dessert-main.png");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center bottom;
          z-index: 0;
          opacity: 0; }
          @media (max-width: 1024px) {
            .dessertBox .dessertItem2 .imgBox:after {
              opacity: 1; } }
        .dessertBox .dessertItem2 .imgBox img {
          position: relative;
          z-index: 1; }
      .dessertBox .dessertItem2 .desc {
        display: none; }
      .dessertBox .dessertItem2 .btn {
        margin-top: 20px; }
  .dessertBox .viewAll {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2; }

.treatBox {
  padding-bottom: 240px;
  background-image: url("../assets/images/content-bg.jpg");
  position: relative; }
  @media (max-width: 640px) {
    .treatBox {
      padding-bottom: 100px; } }
  .treatBox:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: -7%;
    background-image: url("../assets/images/treat-bg.png");
    background-position: right 0;
    background-repeat: no-repeat;
    opacity: 0.45;
    z-index: 1; }
    @media (max-width: 640px) {
      .treatBox:before {
        display: none; } }
  .treatBox:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url("../assets/images/treat-bottom.png");
    background-position: left bottom;
    background-repeat: no-repeat;
    opacity: 0.45;
    z-index: 1; }
    @media (max-width: 640px) {
      .treatBox:after {
        display: none; } }
  .treatBox .titleBox {
    margin-bottom: 60px; }
  .treatBox .treatList {
    margin-bottom: 60px;
    position: relative;
    z-index: 2; }
    .treatBox .treatList .treatItem {
      align-items: center;
      display: grid;
      grid-template-columns: 3fr 2fr;
      grid-template-areas: "large small";
      justify-content: space-between;
      position: relative; }
      @media (max-width: 820px) {
        .treatBox .treatList .treatItem {
          margin-bottom: 40px; } }
      @media (max-width: 640px) {
        .treatBox .treatList .treatItem {
          grid-template-columns: 1fr;
          grid-template-areas: "large" "small";
          margin-bottom: 60px; } }
      .treatBox .treatList .treatItem .link {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 5; }
      @media (min-width: 1181px) {
        .treatBox .treatList .treatItem:hover .btn {
          color: #6f2517;
          border: 1px solid #000;
          background-image: linear-gradient(12deg, #ffdeb3 0%, #d8ad77 60%, #c19574 100%); } }
      .treatBox .treatList .treatItem:nth-child(even) {
        grid-template-columns: 2fr 3fr;
        grid-template-areas: "small large"; }
        @media (max-width: 640px) {
          .treatBox .treatList .treatItem:nth-child(even) {
            grid-template-columns: 1fr;
            grid-template-areas: "large" "small"; } }
        .treatBox .treatList .treatItem:nth-child(even):before {
          content: "";
          position: absolute;
          left: auto;
          right: 0; }
        .treatBox .treatList .treatItem:nth-child(even):after {
          content: "";
          position: absolute;
          left: auto;
          right: 0; }
        .treatBox .treatList .treatItem:nth-child(even) .largeImg {
          text-align: right; }
        .treatBox .treatList .treatItem:nth-child(even) .smallImg {
          transform: translateX(10%); }
          @media (max-width: 640px) {
            .treatBox .treatList .treatItem:nth-child(even) .smallImg {
              transform: none; } }
      .treatBox .treatList .treatItem:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 90%;
        border: 7px solid #d09f36;
        border-radius: 140px;
        z-index: 1;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none; }
        @media (max-width: 640px) {
          .treatBox .treatList .treatItem:before {
            display: none; } }
      .treatBox .treatList .treatItem:after {
        content: "";
        position: absolute;
        width: 98%;
        height: 80%;
        background-color: #d7682e;
        border-radius: 120px;
        z-index: 1;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none; }
        @media (max-width: 640px) {
          .treatBox .treatList .treatItem:after {
            height: 90%;
            width: 100%;
            border-radius: 50px; } }
    .treatBox .treatList .largeImg {
      position: relative;
      z-index: 3;
      grid-area: large;
      text-align: left; }
    .treatBox .treatList .smallImg {
      position: relative;
      z-index: 2;
      grid-area: small;
      display: flex;
      align-items: center;
      flex-direction: column;
      transform: translateX(-10%); }
      @media (max-width: 820px) {
        .treatBox .treatList .smallImg {
          max-width: 200px;
          margin: 0 auto; } }
      @media (max-width: 640px) {
        .treatBox .treatList .smallImg {
          transform: none; } }
    .treatBox .treatList .title {
      color: #fff;
      font-size: 18px;
      font-weight: 700; }
    .treatBox .treatList .btn {
      transform: translateY(120%); }
  .treatBox .treatBottomList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    align-items: center;
    position: relative; }
    @media (max-width: 640px) {
      .treatBox .treatBottomList {
        margin-top: 80px; } }
    .treatBox .treatBottomList:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 85%;
      background-color: #e7b348;
      border-radius: 140px;
      left: 0;
      top: -15%;
      z-index: 1;
      pointer-events: none; }
    .treatBox .treatBottomList:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 85%;
      background-color: #d7682e;
      border-radius: 140px;
      left: 0;
      top: 50%;
      z-index: 2;
      pointer-events: none; }
    .treatBox .treatBottomList .treatItem {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center; }
      @media (min-width: 1181px) {
        .treatBox .treatBottomList .treatItem:hover .imgBox img {
          scale: 1.05; } }
    .treatBox .treatBottomList .imgBox {
      max-width: 200px;
      overflow: hidden; }
      .treatBox .treatBottomList .imgBox img {
        max-width: 100%;
        height: auto; }
    .treatBox .treatBottomList .title {
      color: #fff;
      font-size: 18px;
      font-weight: 700; }
