* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header .content-box {
  justify-content: flex-start;
}
header .header-info {
  display: none;
}
.banner {
  position: relative;
  z-index: 2;
  padding: 60px 0 300px;
}
.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(97deg, #fde9ff 22%, #e8fbff 51.32%, #cddeff 100%);
  filter: blur(98px);
}
.banner-title {
  font-size: 36px;
  text-align: center;
  color: #212121;
  margin-bottom: 20px;
  padding: 0 230px;
}
.banner-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.banner-desc {
  font-size: 18px;
  color: #595959;
}
.banner-link {
  font-size: 18px;
  color: #70acd8;
  text-decoration: none;
}
.banner-link::after {
  content: ">>";
  display: inline-block;
  transition: all 300ms;
}
.banner-link:hover::after {
  transform: translateX(5px);
}
.product-wrap {
  position: relative;
  z-index: 2;
  margin: -220px 0 80px;
}
.product-wrap .content-box {
  position: relative;
  display: flex;
  background-color: #fff;
  box-shadow: 0px 32px 54px -12px rgba(158, 182, 203, 0.28);
}
.product-wrap .content-box::before {
  content: "";
  position: absolute;
  top: -215px;
  right: 0;
  width: 164px;
  height: 232px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/product-wrap-img.svg);
  background-size: 100% 100%;
}
.product-wrap .platform {
  width: 200px;
  height: 100%;
}
.product-wrap .platform-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 200px;
  height: 130px;
  border: 2px solid #fff;
  background: #f7f5f4;
  cursor: pointer;
  transition: all 300ms;
}
.product-wrap .platform-item_title {
  font-size: 14px;
  color: #212121;
  text-align: center;
  max-width: 140px;
}
.product-wrap .platform-item.active {
  background-color: #fff;
}
.product-wrap .meal {
  flex: 1;
}
.product-wrap .meal-item {
  display: none;
  width: 100%;
  height: 100%;
  padding: 40px 40px 0;
}
.product-wrap .meal-item_title {
  display: block;
  width: fit-content;
  position: relative;
  font-size: 24px;
  text-align: center;
  color: #222;
  margin: 0 auto 12px;
}
.product-wrap .meal-item_title::before,
.product-wrap .meal-item_title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 80%;
  border-radius: 10px;
  background-color: #212121;
}
.product-wrap .meal-item_title::before {
  left: -25px;
  transform: translateY(-50%) rotate(-15deg);
}
.product-wrap .meal-item_title::after {
  right: -25px;
  transform: translateY(-50%) rotate(15deg);
}
.product-wrap .meal-item_desc {
  font-size: 16px;
  text-align: center;
  color: #3c3c3c;
  margin-bottom: 30px;
}
.product-wrap .meal-item_tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 58px;
  margin-top: -5px;
}
.product-wrap .meal-item_tab {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 168px;
  height: 52px;
  font-size: 16px;
  line-height: 1.25;
  color: #000;
  border-radius: 50px;
  background: #f1f1f1;
  border: 2px solid #f1f1f1;
  cursor: pointer;
}
.product-wrap .meal-item_tab::before {
  content: "";
  position: absolute;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  border: 1px dashed #000;
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: all 300ms;
}
.product-wrap .meal-item_tab.active {
  font-weight: bold;
  border-color: #000;
  background: #ffab7b;
}
.product-wrap .meal-item_tab.active::before {
  opacity: 1;
}
.product-wrap .meal-item_area {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.product-wrap .meal-item_area.tab-area {
  display: none;
}
.product-wrap .meal-item_area.tab-area.active {
  display: flex;
}
.product-wrap .meal-item_area.tab-area:last-of-type {
  gap: 45px;
}
.product-wrap .meal-item_area.tab-area:last-of-type .recommend .box-info {
  margin-bottom: 15px;
}
.product-wrap .meal-item_box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 244px;
  border: 1px solid #ffeadd;
  background: #fff7f2;
  padding-top: 45px;
  padding-bottom: 30px;
}
.product-wrap .meal-item_box.box-bundle {
  padding-bottom: 33px;
  width: 330px;
}
.product-wrap .meal-item_box.box-bundle .box-header {
  height: auto;
}
.product-wrap .meal-item_box.box-bundle .box-header .box-header_title {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  padding: 0 10px;
}
.product-wrap .meal-item_box.box-bundle .box-header .box-header_title .icon-add {
  width: 21px;
  height: 21px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-add-meal.svg);
}
.product-wrap .meal-item_box.box-bundle .box-buy {
  margin-bottom: 0;
}
.product-wrap .meal-item_box.box-bundle .box-price {
  margin-bottom: 14px;
}
.product-wrap .meal-item_box.recommend {
  border: 2px solid #ffb281;
  background: #fdefe6;
}
.product-wrap .meal-item_box.recommend .box-tag {
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/meal-tag-1.svg);
}
.product-wrap .meal-item_box .box-tag {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 178px;
  height: 34px;
  line-height: 30px;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
  font-size: 16px;
  color: #fff;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/meal-tag-2.svg);
  background-size: cover;
}
.product-wrap .meal-item_box .box-tag.max-tag {
  width: 224px;
  background-position: center;
}
.product-wrap .meal-item_box .box-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.product-wrap .meal-item_box .box-sale {
  position: absolute;
  top: -25px;
  font-weight: bold;
  font-size: 18px;
  color: #ef7632;
  text-align: center;
}
.product-wrap .meal-item_box .box-header {
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.product-wrap .meal-item_box .box-header_title {
  font-size: 26px;
  color: #212121;
}
.product-wrap .meal-item_box .box-header_sale {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 34px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background: #ef7632;
}
.product-wrap .meal-item_box .box-desc {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-wrap .meal-item_box .box-desc_text {
  font-size: 12px;
  color: #484848;
}
.product-wrap .meal-item_box .box-desc_more {
  position: relative;
}
.product-wrap .meal-item_box .box-desc_more .more-icon {
  display: block;
  width: 14px;
  height: 13px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-more.svg);
  background-size: 100% 100%;
  cursor: pointer;
}
.product-wrap .meal-item_box .box-desc_more .more-text {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
  z-index: 99;
  width: 250px;
  height: auto;
  font-size: 12px;
  line-height: 1.5;
  color: #5c5c5c;
  background-color: #fff;
  border-radius: 10px;
  filter: drop-shadow(0px 32px 54px rgba(150, 150, 150, 0.28));
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms;
}
.product-wrap .meal-item_box .box-desc_more .more-text::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: #fff;
}
.product-wrap .meal-item_box .box-desc_more:hover .more-text {
  visibility: visible;
  opacity: 1;
}
.product-wrap .meal-item_box .box-pic {
  margin-bottom: 20px;
}
.product-wrap .meal-item_box .box-pic.all-in-one {
  margin-bottom: 12px;
}
.product-wrap .meal-item_box .box-price {
  margin-bottom: 30px;
}
.product-wrap .meal-item_box .box-price_new {
  font-size: 16px;
  color: #212121;
  text-align: center;
  margin-bottom: 5px;
}
.product-wrap .meal-item_box .box-price_new .price-num {
  font-size: 26px;
}
.product-wrap .meal-item_box .box-price_intro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.product-wrap .meal-item_box .box-price_intro span {
  font-size: 14px;
  color: #686868;
}
.product-wrap .meal-item_box .box-price_intro span:first-child {
  position: relative;
  text-decoration: line-through;
}
.product-wrap .meal-item_box .box-price_intro span:first-child::before {
  content: "";
  width: 1px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  background-color: #686868;
}
.product-wrap .meal-item_box .box-price_intro span:first-child.no-line {
  text-decoration: none;
}
.product-wrap .meal-item_box .box-price_intro span:first-child.no-line span {
  text-decoration: none;
}
.product-wrap .meal-item_box .box-buy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  width: 214px;
  height: 38px;
  border-radius: 4px;
  background-color: #ef7632;
  transition: all 300ms;
  margin-bottom: 30px;
}
.product-wrap .meal-item_box .box-buy::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-buy.svg);
}
.product-wrap .meal-item_box .box-buy:hover {
  background-color: #f65900;
}
.product-wrap .meal-item_box .box-list {
  width: 214px;
  border-top: 1px solid #f4e6df;
  padding: 20px 15px 0;
}
.product-wrap .meal-item_box .box-list_li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 2;
  color: #212121;
  list-style: none;
}
.product-wrap .meal-item_box .box-list_li::before {
  content: "";
  width: 12px;
  height: 11px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/box-list-li.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.product-wrap .meal-item.active {
  display: block;
}
.payment-method {
  margin-bottom: 120px;
}
.payment-method .content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  background: #f4f4f4;
  padding: 18px 30px;
}
.payment-method_title {
  font-size: 18px;
  color: #212121;
}
.points-to-note {
  margin-bottom: 120px;
}
.points-to-note .content-box {
  padding: 30px 0 20px 42px;
  background: #f4f4f4;
  border-radius: 10px;
  width: 900px;
}
.points-to-note .note-title {
  display: block;
  font-size: 20px;
  color: #080f30;
  margin-bottom: 12px;
}
.points-to-note .note-list {
  padding-left: 20px;
}
.points-to-note .note-list_item {
  margin-bottom: 12px;
  font-size: 14px;
  color: #525252;
}
.points-to-note .note-list_item::marker {
  color: #4690e5;
}
.questions-and-answers {
  margin-bottom: 120px;
}
.questions-and-answers .questions-category {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 100px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 40px;
}
.questions-and-answers .questions-category_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  color: #9497a4;
  cursor: pointer;
  padding: 10px 5px;
  border-bottom: 3px solid transparent;
  transition: all 300ms;
}
.questions-and-answers .questions-category_item::before {
  content: "";
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.questions-and-answers .questions-category_item.order::before {
  width: 24px;
  height: 24px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-buy-cart.svg);
}
.questions-and-answers .questions-category_item.register::before {
  width: 28px;
  height: 28px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-yuechi.svg);
}
.questions-and-answers .questions-category_item.update::before {
  width: 28px;
  height: 28px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-update.svg);
}
.questions-and-answers .questions-category_item.active {
  color: #080f30;
  border-bottom-color: #35a654;
}
.questions-and-answers .questions-category_item.active.order::before {
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-buy-cart-active.svg);
}
.questions-and-answers .questions-category_item.active.register::before {
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-yuechi-active.svg);
}
.questions-and-answers .questions-category_item.active.update::before {
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-update-active.svg);
}
.questions-and-answers .questions-wrap {
  overflow: hidden;
}
.questions-and-answers .questions-wrap_item {
  height: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  opacity: 0;
  transition: all 300ms;
}
.questions-and-answers .questions-wrap_item.active {
  height: auto;
  visibility: visible;
  opacity: 1;
}
.questions-and-answers .questions-wrap .qa-item {
  margin-bottom: 10px;
}
.questions-and-answers .questions-wrap .qa-item_title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: #f8f9fb;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  color: #080f30;
  cursor: pointer;
  transition: all 300ms;
}
.questions-and-answers .questions-wrap .qa-item_title::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-add.svg);
  background-size: 100% 100%;
}
.questions-and-answers .questions-wrap .qa-item_desc {
  height: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.8;
  color: #080f30;
  transition: all 300ms;
  padding: 0 60px 0 50px;
}
.questions-and-answers .questions-wrap .qa-item_desc p {
  margin-bottom: 12px;
}
.questions-and-answers .questions-wrap .qa-item_desc p:last-child {
  margin-bottom: 0;
}
.questions-and-answers .questions-wrap .qa-item.active .qa-item_title {
  margin-bottom: 20px;
}
.questions-and-answers .questions-wrap .qa-item.active .qa-item_title::before {
  background-image: url(https://img.videone.ai/uploads/pages/ja/buy/icon-minus.svg);
}
.questions-and-answers .questions-wrap .qa-item.active .qa-item_desc {
  margin-bottom: 20px;
}
.area-title {
  width: fit-content;
  position: relative;
  font-size: 32px;
  text-align: center;
  color: #222;
  margin: 0 auto 45px;
}
.area-title::before,
.area-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 80%;
  border-radius: 10px;
  background-color: #212121;
}
.area-title::before {
  left: -25px;
  transform: translateY(-50%) rotate(-15deg);
}
.area-title::after {
  right: -25px;
  transform: translateY(-50%) rotate(15deg);
}
.reasons-for-choice {
  padding-bottom: 100px;
}
.reasons-for-choice .area-title {
  margin-bottom: 75px;
}
.reasons-for-choice .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
.reasons-for-choice .swiper-slide {
  width: 288px;
  height: 210px;
}
.reasons-for-choice .swiper-slide_icon {
  display: block;
  margin-bottom: 20px;
}
.reasons-for-choice .swiper-slide_title {
  font-weight: normal;
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
}
.reasons-for-choice .swiper-slide_desc {
  font-size: 16px;
  line-height: 1.8;
  color: #565656;
}
.reasons-for-choice .swiper-slide:first-child {
  position: relative;
}
.reasons-for-choice .swiper-slide:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  width: 1px;
  height: 180px;
  background: #e0e0e0;
}
.reasons-for-choice .swiper-slide:last-child {
  position: relative;
}
.reasons-for-choice .swiper-slide:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
  width: 1px;
  height: 180px;
  background: #e0e0e0;
}
.reasons-for-choice .swiper-pagination {
  display: none;
}
.content-box {
  max-width: var(--page-width);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-box {
    max-width: var(--page-width);
    padding-inline: var(--page-padding-x);
  }
  .banner {
    padding: 50px 0 120px;
    background: #eaf2ff;
  }
  .banner::after {
    display: none;
  }
  .banner-title {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding: unset;
  }
  .banner-info {
    flex-direction: column;
    gap: 15px;
  }
  .banner-desc {
    font-size: 14px;
  }
  .banner-link {
    font-size: 18px;
  }
  .banner-link:hover::after {
    transform: translateX(0);
  }
  .product-wrap .platform-item:first-of-type .platform-item_title {
    font-size: 10px;
  }
  .product-wrap {
    margin: -80px 0 80px;
  }
  .product-wrap .content-box {
    width: auto;
    flex-direction: column;
    margin: 0 15px;
    padding: 0;
    background-color: transparent;
  }
  .product-wrap .content-box::before {
    display: none;
  }
  .product-wrap .platform {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 70px;
    background-color: transparent;
  }
  .product-wrap .platform-item {
    justify-content: center;
    gap: 5px;
    width: auto;
    flex: 1;
    height: 56px;
  }
  .product-wrap .platform-item_logo {
    width: 24px;
    height: 24px;
  }
  .product-wrap .platform-item_title {
    font-size: 10px;
    text-align: center;
    display: none;
  }
  .product-wrap .platform-item.active {
    height: 70px;
    background-color: #fff;
  }
  .product-wrap .platform-item.active .platform-item_title {
    display: block;
  }
  .product-wrap .meal {
    flex: 1;
    background-color: #fff;
  }
  .product-wrap .meal-item {
    display: none;
    width: 100%;
    height: 100%;
    padding: 40px 40px 0;
  }
  .product-wrap .meal-item_title {
    font-size: 18px;
    margin: 0 auto 15px;
  }
  .product-wrap .meal-item_title::before,
  .product-wrap .meal-item_title::after {
    display: none;
  }
  .product-wrap .meal-item_desc {
    font-size: 12px;
    margin-bottom: 40px;
  }
  .product-wrap .meal-item_tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    margin-top: -5px;
  }
  .product-wrap .meal-item_tab {
    font-size: 14px;
  }
  .product-wrap .meal-item_area {
    flex-direction: column;
    align-items: center;
    gap: 55px;
    padding-bottom: 40px;
  }
  .product-wrap .meal-item_box {
    padding-top: 45px;
    padding-bottom: 20px;
  }
  .product-wrap .meal-item_box.box-bundle .box-header .box-header_title {
    font-size: 22px;
  }
  .area-title {
    font-size: 24px;
    margin: 0 auto 35px;
  }
  .area-title::before,
  .area-title::after {
    height: 70%;
    border-radius: 10px;
    background-color: #212121;
  }
  .area-title::before {
    left: -25px;
    transform: translateY(-50%) rotate(-15deg);
  }
  .area-title::after {
    right: -25px;
    transform: translateY(-50%) rotate(15deg);
  }
  .payment-method {
    margin-bottom: 60px;
  }
  .payment-method .content-box {
    width: auto;
    justify-content: flex-start;
    flex-flow: row wrap;
    column-gap: 12px;
    row-gap: 20px;
    padding: 20px;
    margin: 0 15px;
  }
  .payment-method_title {
    width: 100%;
    font-size: 16px;
  }
  .payment-method_icon {
    width: 50px;
    height: 30px;
  }
  .points-to-note {
    margin-bottom: 60px;
  }
  .points-to-note .content-box {
    margin: 0 15px;
    padding: 20px;
    width: auto;
  }
  .points-to-note .note-title {
    font-size: 18px;
  }
  .points-to-note .note-list {
    padding-left: 15px;
  }
  .points-to-note .note-list_item {
    font-size: 12px;
    line-height: 2;
  }
  .questions-and-answers {
    margin-bottom: 60px;
  }
  .questions-and-answers .questions-category {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 30px;
  }
  .questions-and-answers .questions-category_item {
    height: 52px;
    gap: 6px;
    font-size: 18px;
  }
  .questions-and-answers .questions-category_item.order::before {
    width: 22px;
    height: 22px;
  }
  .questions-and-answers .questions-category_item.register::before,
  .questions-and-answers .questions-category_item.update::before {
    width: 28px;
    height: 28px;
  }
  .questions-and-answers .questions-wrap .qa-item_desc {
    padding: 0 30px;
  }
  .questions-and-answers .questions-wrap .qa-item_desc p {
    margin-bottom: 12px;
  }
  .questions-and-answers .questions-wrap .qa-item_desc p:last-child {
    margin-bottom: 0;
  }
  .reasons-for-choice {
    padding-bottom: 50px;
    overflow: hidden;
  }
  .reasons-for-choice .area-title {
    margin-bottom: 35px;
  }
  .reasons-for-choice .swiper-content-box {
    position: relative;
    padding-bottom: 50px;
  }
  .reasons-for-choice .swiper-slide {
    height: auto;
    background-color: #f9f9f9;
    padding: 30px 25px;
  }
  .reasons-for-choice .swiper-slide:first-child::after,
  .reasons-for-choice .swiper-slide:last-child::after {
    display: none;
  }
  .reasons-for-choice .swiper-pagination {
    display: block;
  }
  .reasons-for-choice .swiper-pagination-bullet {
    background: #e3e3e3;
    opacity: 1;
  }
  .reasons-for-choice .swiper-pagination-bullet-active {
    background: #007bff;
    opacity: 1;
  }
}
