/**
 * 这是个 less 变量、函数文件，不会被编译成 common.css
 */
.hover-color-primary:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.skeleton-wrapper {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.skeleton-wrapper:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  left: 0;
  top: 0;
  z-index: 20;
  -webkit-animation: skeletonLoading 2s ease-in-out infinite;
  animation: skeletonLoading 2s ease-in-out infinite;
  content: "";
}
@keyframes product-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.skeleton-element {
  animation: product-skeleton-loading 1.4s ease infinite;
  background-image: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-position: 100% 50%;
  background-size: 400% 100%;
  height: 0.8rem;
  list-style: none;
}
.skeleton-more-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
@-webkit-keyframes skeletonLoading {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  80%,
  to {
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes skeletonLoading {
  0% {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
  80%,
  to {
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
.skeleton-header {
  display: flex;
  justify-content: center;
  padding: 0 8px;
  height: 72px;
  align-items: center;
}
.skeleton-header .skeleton-title {
  width: 200px;
  height: 28px;
}
.skeleton-more {
  width: 131px;
  height: 32px;
}
.skeleton-product-card {
  width: 16%;
  float: left;
  margin-left: 15px;
}
/**
 * 响应式设计工具文件
 * 提供便捷的混入和工具类来简化响应式开发
 */
:root {
  --root-fs: 16;
}
@media (min-width: 1200px) {
  :root {
    --root-fs: 40;
  }
}
@media (min-width: 1100px) and (max-width: 1200px) {
  :root {
    --root-fs: 38;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  :root {
    --root-fs: 36;
  }
}
@media (min-width: 900px) and (max-width: 1000px) {
  :root {
    --root-fs: 34;
  }
}
@media (min-width: 800px) and (max-width: 900px) {
  :root {
    --root-fs: 32;
  }
}
@media (min-width: 700px) and (max-width: 800px) {
  :root {
    --root-fs: 30;
  }
}
@media (min-width: 675px) and (max-width: 700px) {
  :root {
    --root-fs: 28;
  }
}
@media (min-width: 650px) and (max-width: 674px) {
  :root {
    --root-fs: 27;
  }
}
@media (min-width: 625px) and (max-width: 649px) {
  :root {
    --root-fs: 26;
  }
}
@media (min-width: 600px) and (max-width: 624px) {
  :root {
    --root-fs: 25;
  }
}
@media (min-width: 575px) and (max-width: 599px) {
  :root {
    --root-fs: 24;
  }
}
@media (min-width: 550px) and (max-width: 574px) {
  :root {
    --root-fs: 23;
  }
}
@media (min-width: 525px) and (max-width: 549px) {
  :root {
    --root-fs: 22;
  }
}
@media (min-width: 500px) and (max-width: 524px) {
  :root {
    --root-fs: 21;
  }
}
@media (min-width: 475px) and (max-width: 499px) {
  :root {
    --root-fs: 20;
  }
}
@media (min-width: 450px) and (max-width: 474px) {
  :root {
    --root-fs: 19;
  }
}
@media (min-width: 425px) and (max-width: 449px) {
  :root {
    --root-fs: 18;
  }
}
@media (min-width: 400px) and (max-width: 424px) {
  :root {
    --root-fs: 17;
  }
}
@media (min-width: 375px) and (max-width: 399px) {
  :root {
    --root-fs: 16;
  }
}
@media (min-width: 350px) and (max-width: 374px) {
  :root {
    --root-fs: 15;
  }
}
@media (min-width: 325px) and (max-width: 349px) {
  :root {
    --root-fs: 14;
  }
}
@media (min-width: 300px) and (max-width: 324px) {
  :root {
    --root-fs: 13;
  }
}
@media (min-width: 275px) and (max-width: 299px) {
  :root {
    --root-fs: 12;
  }
}
@media (min-width: 250px) and (max-width: 274px) {
  :root {
    --root-fs: 11;
  }
}
@media (max-width: 249px) {
  :root {
    --root-fs: 11;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: PingFangSC, PingFang SC;
}
#cj-menu {
  display: none;
}
html {
  background: #F8EFE9;
}
@media (min-width: 701px) and (max-width: 1200px) {
  html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
}
@media (max-width: 700px) {
  html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
}
body {
  font-family: PingFangSC-Medium, PingFangSCSemibold;
  min-width: 1200px;
  min-height: 100vh;
  background-color: #F8EFE9;
}
@media (min-width: 701px) and (max-width: 1200px) {
  body {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
}
@media (max-width: 700px) {
  body {
    width: 100vw;
    min-width: 100vw !important;
    max-width: 100vw !important;
  }
}
.hero {
  background: #F8EFE9;
  color: white;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.hero .container {
  max-width: 1360px;
  margin: 0 auto;
  align-items: center;
  height: auto;
  padding: 48px 0 72px;
  display: flex;
  justify-content: space-between;
}
.hero .container .left {
  position: relative;
  width: 100%;
}
.hero .container .left .left-img-bg {
  display: block;
}
.hero .container .left .left-img-bg-ipad {
  display: none;
}
.hero .container .left .left-img-bg-mobile {
  display: none;
}
.hero .container .left .left-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
}
.hero .container .left .left-content .left-content-title {
  font-weight: bold;
  font-size: 52px;
  color: #333333;
  line-height: 64px;
  letter-spacing: 1px;
}
.hero .container .left .left-content .left-content-btn {
  display: block;
  width: 338px;
  height: 52px;
  background: #FF7700;
  border-radius: 24px;
  line-height: 52px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 20px;
  margin-top: 30px;
  position: relative;
}
.hero .container .left .left-content .left-content-btn:hover {
  background: #e56a00;
}
.hero .container .left .left-content .left-content-btn:hover .left-content-btn-icon {
  border-color: #e56a00;
}
.hero .container .left .left-content .left-content-btn:hover .left-content-btn-icon .iconfont {
  color: #e56a00;
}
.hero .container .left .left-content .left-content-btn .left-content-btn-icon {
  position: absolute;
  top: 0;
  right: -52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FF7700;
}
.hero .container .left .left-content .left-content-btn .left-content-btn-icon .iconfont {
  font-size: 20px;
  color: #FF7700;
}
.hero .container .right {
  width: 307px;
  position: relative;
}
.hero .container .right .right-img-bg-wrap {
  display: none;
}
.hero .container .right .right-title {
  width: 75%;
  position: absolute;
  top: 22px;
  left: 30px;
  font-weight: 500;
  font-size: 28px;
  color: #FF7700;
  line-height: 40px;
}
.hero .container .right img {
  width: 307px;
}
.hero .container .right .right-btn {
  width: 307px;
  height: 108px;
  background: #FF7700;
  border-radius: 24px;
  font-size: 28px;
  color: #FFFFFF;
  line-height: 108px;
  text-align: center;
  margin-top: 37px;
}
#vue-bulk-purchase {
  background: #fff;
}
#vue-bulk-purchase .part2 {
  width: 1360px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
}
#vue-bulk-purchase .part2 .part2-item {
  width: 304px;
  height: 400px;
  background: #F6F6F6;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
}
#vue-bulk-purchase .part2 .part2-item.diff {
  padding: 29px 32px;
}
#vue-bulk-purchase .part2 .part2-item.diff .part2-item-img-diff {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#vue-bulk-purchase .part2 .part2-item.diff .part2-item-img-diff-wrap {
  display: none;
}
#vue-bulk-purchase .part2 .part2-item.diff .part2-item-title {
  position: relative;
  font-weight: 600;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 48px;
}
#vue-bulk-purchase .part2 .part2-item .part2-item-title {
  font-weight: 500;
  font-size: 24px;
  color: #262729;
  line-height: 33px;
  margin-bottom: 6px;
}
#vue-bulk-purchase .part2 .part2-item .part2-item-text {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 23px;
  margin-bottom: 19px;
}
#vue-bulk-purchase .part2 .part2-item .part2-item-img {
  position: absolute;
  width: 260px;
  bottom: 0;
  left: 50%;
  margin-left: -130px;
}
#vue-bulk-purchase .step-container {
  min-width: 1360px;
  background: #F9F9F9;
  padding-top: 100px;
}
#vue-bulk-purchase .step-container .step {
  width: 1360px;
  margin: 0 auto;
}
#vue-bulk-purchase .step-container .step .step_title {
  font-weight: 600;
  font-size: 36px;
  color: #333333;
  line-height: 48px;
  text-align: center;
  margin-bottom: 80px;
}
#vue-bulk-purchase .step-container .step-item-container {
  padding-bottom: 100px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item {
  display: flex;
  align-items: center;
  margin-bottom: 90px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(even) {
  flex-direction: row-reverse;
}
#vue-bulk-purchase .step-container .step-item-container .step-item:first-child .step-item-img {
  width: 649px;
  height: 330px;
  margin-right: 81px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(2) {
  justify-content: flex-end;
}
#vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(2) .step-item-img {
  width: 563px;
  height: 353px;
  margin-left: 81px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(3) .step-item-img {
  width: 643px;
  height: 363px;
  margin-right: 90px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item:last-child {
  margin-bottom: 0;
}
#vue-bulk-purchase .step-container .step-item-container .step-item .step-item-right {
  width: 635px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon {
  position: relative;
  height: 57px;
  margin-bottom: 16px;
  line-height: 50px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon .iconqi {
  color: #FFE8D4;
  font-size: 50px;
  position: absolute;
  top: 0;
  left: 0;
}
#vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon .step-item-icon-title {
  position: absolute;
  top: 0;
  left: 4px;
  font-weight: 600;
  font-size: 18px;
  color: #FF7700;
  line-height: 28px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item .step-item-title {
  font-weight: 600;
  font-size: 28px;
  color: #1B1B1B;
  line-height: 40px;
  margin-bottom: 8px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item .step-item-text {
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 28px;
  margin-bottom: 24px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item .step-item-btn {
  font-weight: 500;
  font-size: 20px;
  color: #FF7700;
  line-height: 24px;
}
#vue-bulk-purchase .step-container .step-item-container .step-item .step-item-btn:hover {
  color: #e56a00;
}
#vue-bulk-purchase .part3 {
  width: 1360px;
  margin: 0 auto;
  padding: 100px 0 60px;
}
#vue-bulk-purchase .part3 .part3-desktop {
  display: flex;
  justify-content: space-between;
}
#vue-bulk-purchase .part3 .part3-carousel {
  display: none;
}
#vue-bulk-purchase .part3 .part3-item {
  width: 306px;
  height: 408px;
  background: #F6F6F6;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  flex-shrink: 0;
}
#vue-bulk-purchase .part3 .part3-item .part3-item-title {
  position: relative;
  font-weight: 600;
  font-size: 50px;
  color: #333333;
  line-height: 70px;
}
#vue-bulk-purchase .part3 .part3-item .part3-item-text {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  line-height: 28px;
  width: 200px;
}
#vue-bulk-purchase .part3 .part3-item .part3-item-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 306px;
  height: 408px;
}
#vue-bulk-purchase .part4 {
  width: 1360px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
#vue-bulk-purchase .part4 .part4-title {
  font-weight: 600;
  font-size: 36px;
  color: #333333;
  line-height: 48px;
  text-align: center;
  margin-bottom: 60px;
}
#vue-bulk-purchase .part5-container {
  min-width: 1360px;
  background: #F9F9F9;
  padding-top: 100px;
  padding-bottom: 100px;
}
#vue-bulk-purchase .part5-container .part5 {
  width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
#vue-bulk-purchase .part5-container .part5 .part5-left {
  width: 567px;
  height: 363px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
}
#vue-bulk-purchase .part5-container .part5 .part5-left .part5-left-title {
  font-weight: 600;
  font-size: 32px;
  color: #333333;
  line-height: 48px;
}
#vue-bulk-purchase .part5-container .part5 .part5-right {
  width: 762px;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs {
  background-color: #f9f9f8;
  display: flex;
  height: 52px;
  border-top-left-radius: 16px;
  overflow: hidden;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab {
  cursor: default;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  margin-right: 36px;
  background: #f7f5f4;
  position: relative;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  color: #666666;
  background: #F7F5F4;
  box-shadow: 0px -6px 10px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::before,
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::after {
  content: '';
  display: block;
  background-image: url('/egg/image/bulkPurchase/tab-gray-2.svg');
  width: 48px;
  height: 63px;
  background-size: 48px 63px;
  position: absolute;
  bottom: 0;
  left: -46px;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::after {
  left: auto;
  right: -46px;
  background-image: url('/egg/image/bulkPurchase/tab-gray-2.svg');
  z-index: 1;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::before {
  transform: rotateY(180deg);
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab:first-child::before {
  display: none;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab:hover {
  color: #FF7700;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active {
  z-index: 2;
  background-color: #fff;
  font-weight: 600;
  font-size: 18px;
  color: #FF7700;
  cursor: default;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active::before {
  background-image: url('/egg/image/bulkPurchase/tab-white-2.svg');
}
#vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active::after {
  background-image: url('/egg/image/bulkPurchase/tab-white-2.svg');
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content {
  width: 762px;
  height: 311px;
  background: #FFFFFF;
  border-radius: 0px 16px 16px 16px;
  padding: 24px 24px 0px 24px;
  position: relative;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item {
  display: none;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-title {
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  margin-bottom: 24px;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success,
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666666;
  line-height: 26px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success .iconfont,
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail .iconfont {
  font-size: 16px;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success {
  color: #FF7700;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail {
  color: #999;
  margin-bottom: 42px;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn {
  width: 136px;
  height: 36px;
  border-radius: 24px;
  border: 1px solid #FF7700;
  font-weight: 500;
  font-size: 16px;
  color: #FF7700;
  line-height: 36px;
  text-align: center;
  position: relative;
  display: block;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn:hover {
  color: #e56a00;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn .iconfont-warp {
  width: 36px;
  height: 36px;
  border: 1px solid #FF7700;
  position: absolute;
  right: -36px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn .iconfont-warp .iconfont {
  font-size: 16px;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-img {
  position: absolute;
  right: 24px;
  bottom: 0px;
}
#vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item.active {
  display: block;
}
#vue-bulk-purchase .faq {
  min-width: 1360px;
  padding: 100px 0;
}
#vue-bulk-purchase .faq .container {
  width: 1360px !important;
  max-width: 1360px !important;
  margin: 0 auto;
}
#vue-bulk-purchase .faq .container h2 {
  font-weight: 600;
  font-size: 36px;
  color: #333333;
  line-height: 48px;
  text-align: center;
  margin-bottom: 60px;
}
#vue-bulk-purchase .faq .container .faq-item {
  background: #FCF4EF;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
#vue-bulk-purchase .faq .container .faq-item:last-child {
  margin-bottom: 0;
}
#vue-bulk-purchase .faq .container .faq-item .faq-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 20px;
  color: #333333;
  line-height: 32px;
}
#vue-bulk-purchase .faq .container .faq-item .faq-question:hover {
  color: #FF7700;
}
#vue-bulk-purchase .faq .container .faq-item .faq-answer {
  font-size: 16px;
  color: #666666;
  line-height: 22px;
  padding-top: 10px;
  display: none;
}
#vue-bulk-purchase .faq .container .faq-item .faq-arrow-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
#vue-bulk-purchase .faq .container .faq-item.active .faq-arrow-icon {
  transform: rotate(0deg);
}
#vue-bulk-purchase .faq .container .faq-item.active .faq-answer {
  display: block;
}
#vue-bulk-purchase .part6-container {
  min-width: 1360px;
  background: #FFFCF9;
  padding-top: 100px;
  padding-bottom: 100px;
}
#vue-bulk-purchase .part6-container .part6-title {
  font-weight: 600;
  font-size: 36px;
  color: #333333;
  line-height: 48px;
  text-align: center;
  margin-bottom: 60px;
}
#vue-bulk-purchase .part6-container .part6-content {
  width: 1360px;
  height: 263px;
  margin: 0 auto;
  background-image: url('/egg/image/bulkPurchase/part6_1.webp');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#vue-bulk-purchase .part6-container .part6-content .text {
  width: 60%;
  margin: 0 auto;
  padding-top: 60px;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 32px;
  text-align: center;
}
#vue-bulk-purchase .part6-container .part6-content .part6-btn {
  display: block;
  width: 320px;
  height: 52px;
  line-height: 52px;
  background: #FF7700;
  box-shadow: 0px 10px 20px 0px rgba(255, 119, 0, 0.3);
  border-radius: 26px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 20px;
  margin: 0 auto;
  margin-top: 24px;
}
#vue-bulk-purchase .part6-container .part6-content .part6-btn:hover {
  background: #e56a00;
}
@media (min-width: 701px) and (max-width: 1200px) {
  .hero .container {
    max-width: 100vw;
    height: max-content;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 6%;
    padding-top: calc(40 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 32 * var(--root-fs) * 1px);
  }
  .hero .container .left {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
  }
  .hero .container .left .left-img-bg {
    display: none;
  }
  .hero .container .left .left-img-bg-ipad {
    display: block;
    border-radius: calc(16 / 32 * var(--root-fs) * 1px);
  }
  .hero .container .left .left-img-bg-mobile {
    display: none;
  }
  .hero .container .left .left-content {
    position: static;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero .container .left .left-content .left-content-title {
    font-size: calc(32 / 32 * var(--root-fs) * 1px);
    line-height: calc(42 / 32 * var(--root-fs) * 1px);
  }
  .hero .container .left .left-content .left-content-btn {
    display: block;
    width: max-content;
    height: max-content;
    background: var(--color-primary);
    padding-top: calc(10 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(10 / 32 * var(--root-fs) * 1px);
    padding-left: calc(24 / 32 * var(--root-fs) * 1px);
    padding-right: calc(24 / 32 * var(--root-fs) * 1px);
    border-radius: calc(24 / 32 * var(--root-fs) * 1px);
    line-height: calc(24 / 32 * var(--root-fs) * 1px);
    font-size: calc(16 / 32 * var(--root-fs) * 1px);
    margin-top: calc(24 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(32 / 32 * var(--root-fs) * 1px);
  }
  .hero .container .left .left-content .left-content-btn:hover {
    background: var(--color-primary);
  }
  .hero .container .left .left-content .left-content-btn:hover .left-content-btn-icon {
    border-color: var(--color-primary);
  }
  .hero .container .left .left-content .left-content-btn:hover .left-content-btn-icon .iconfont {
    color: var(--color-primary);
  }
  .hero .container .left .left-content .left-content-btn .left-content-btn-icon {
    display: none;
  }
  .hero .container .right {
    width: 100%;
    position: relative;
    display: flex;
    margin-top: calc(20 / 32 * var(--root-fs) * 1px);
  }
  .hero .container .right img {
    display: none;
    width: calc(50% - 9px) !important;
    margin-right: 18px;
    height: calc(120 / 32 * var(--root-fs) * 1px);
    border-radius: calc(16 / 32 * var(--root-fs) * 1px);
  }
  .hero .container .right .right-img-bg-wrap {
    display: block;
    overflow: hidden;
    width: calc(50% - 9px) !important;
    margin-right: 18px;
    height: calc(120 / 32 * var(--root-fs) * 1px);
    border-radius: calc(16 / 32 * var(--root-fs) * 1px);
    position: relative;
    background: #fff;
  }
  .hero .container .right .right-img-bg-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/egg/image/bulkPurchase/ipad/cartonBox.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero .container .right .right-title {
    width: calc(200 / 32 * var(--root-fs) * 1px);
    margin-top: calc(0 / 32 * var(--root-fs) * 1px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(24 / 32 * var(--root-fs) * 1px);
    font-size: calc(18 / 32 * var(--root-fs) * 1px);
    line-height: calc(26 / 32 * var(--root-fs) * 1px);
    color: var(--color-primary);
  }
  .hero .container .right .right-title .right-title-hidden {
    display: none;
  }
  .hero .container .right .right-btn {
    width: calc(50% - 9px);
    height: calc(120 / 32 * var(--root-fs) * 1px);
    background: var(--color-primary);
    border-radius: calc(16 / 32 * var(--root-fs) * 1px);
    font-size: calc(18 / 32 * var(--root-fs) * 1px);
    line-height: calc(24 / 32 * var(--root-fs) * 1px);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #vue-bulk-purchase {
    background: #fff;
  }
  #vue-bulk-purchase .part2 {
    width: 100vw;
    padding: 0 6%;
    padding-top: calc(72 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(48 / 32 * var(--root-fs) * 1px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #vue-bulk-purchase .part2 .part2-item {
    width: calc(50% - 12px);
    height: auto;
    background: #F6F6F6;
    border-radius: calc(16 / 32 * var(--root-fs) * 1px);
    padding-top: calc(24 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(0 / 32 * var(--root-fs) * 1px);
    padding-left: calc(20 / 32 * var(--root-fs) * 1px);
    padding-right: calc(20 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(24 / 32 * var(--root-fs) * 1px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  #vue-bulk-purchase .part2 .part2-item.diff {
    background: var(--color-primary);
    padding-top: calc(32 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(32 / 32 * var(--root-fs) * 1px);
    padding-left: calc(24 / 32 * var(--root-fs) * 1px);
    padding-right: calc(24 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part2 .part2-item.diff .part2-item-img-diff {
    height: 100%;
    display: none;
  }
  #vue-bulk-purchase .part2 .part2-item.diff .part2-item-img-diff-wrap {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  #vue-bulk-purchase .part2 .part2-item.diff .part2-item-img-diff-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(24 / 32 * var(--root-fs) * 1px);
    width: 100%;
    height: 100%;
    background: url('/egg/image/bulkPurchase/ipad/part2_person.png');
    background-position: bottom right;
    --width: calc(48 / 32 * var(--root-fs) * 1px);
    --height: calc(86 / 32 * var(--root-fs) * 1px);
    background-size: auto var(--height);
    background-repeat: no-repeat;
  }
  #vue-bulk-purchase .part2 .part2-item.diff .part2-item-title {
    width: 80%;
    font-size: calc(28 / 32 * var(--root-fs) * 1px);
    line-height: calc(34 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part2 .part2-item .part2-item-title {
    font-size: calc(18 / 32 * var(--root-fs) * 1px);
    line-height: calc(25 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(8 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part2 .part2-item .part2-item-text {
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
    line-height: calc(20 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(16 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part2 .part2-item .part2-item-img {
    position: static;
    width: 100%;
    bottom: 0;
    left: 50%;
    margin-left: 0;
  }
  #vue-bulk-purchase .step-container {
    min-width: 100vw;
    width: 100vw;
    padding: 0 6%;
    padding-top: calc(72 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(72 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step {
    width: 100%;
  }
  #vue-bulk-purchase .step-container .step .step_title {
    font-size: calc(24 / 32 * var(--root-fs) * 1px);
    line-height: calc(34 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(40 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container {
    padding-bottom: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item {
    display: flex;
    align-items: center;
    margin-bottom: calc(72 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(even) .step-item-left {
    margin-left: 30px;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(odd) .step-item-right {
    margin-left: 30px;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:first-child .step-item-img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(2) {
    justify-content: flex-end;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(2) .step-item-img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(3) .step-item-img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:last-child {
    margin-bottom: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-left {
    width: calc(50% - 15px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-right {
    width: calc(50% - 15px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon {
    height: calc(36 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(4 / 32 * var(--root-fs) * 1px);
    line-height: calc(44 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon .iconqi {
    color: #FFE8D4;
    font-size: calc(40 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon .step-item-icon-title {
    font-size: calc(12 / 32 * var(--root-fs) * 1px);
    line-height: calc(27 / 32 * var(--root-fs) * 1px);
    padding-left: calc(2 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-title {
    font-size: calc(16 / 32 * var(--root-fs) * 1px);
    line-height: calc(24 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(8 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-text {
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
    line-height: calc(20 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(8 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-btn {
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
    line-height: calc(24 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-btn .icongengduo2 {
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-btn:hover {
    color: var(--color-primary);
  }
  #vue-bulk-purchase .part3 {
    width: 100vw;
    margin: 0 auto;
    padding-top: calc(72 / 32 * var(--root-fs) * 1px);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  #vue-bulk-purchase .part3 .part3-desktop {
    display: none;
  }
  #vue-bulk-purchase .part3 .part3-carousel {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  #vue-bulk-purchase .part3 .carousel-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: calc(360 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part3 .carousel-track {
    display: inline-block;
    white-space: nowrap;
  }
  #vue-bulk-purchase .part3 .right-to-left .carousel-track {
    animation: scroll-right-to-left 30s linear infinite;
  }
  #vue-bulk-purchase .part3 .part3-item {
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    width: calc(270 / 32 * var(--root-fs) * 1px);
    height: calc(360 / 32 * var(--root-fs) * 1px);
    border-radius: calc(16 / 32 * var(--root-fs) * 1px);
    padding-top: calc(32 / 32 * var(--root-fs) * 1px);
    padding-left: calc(32 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(24 / 32 * var(--root-fs) * 1px);
    padding-right: calc(24 / 32 * var(--root-fs) * 1px);
    margin-right: calc(24 / 32 * var(--root-fs) * 1px);
    flex-shrink: 0;
  }
  #vue-bulk-purchase .part3 .part3-item .part3-item-title {
    font-size: calc(40 / 32 * var(--root-fs) * 1px);
    line-height: calc(56 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(8 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part3 .part3-item .part3-item-text {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    font-size: calc(18 / 32 * var(--root-fs) * 1px);
    line-height: calc(26 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part3 .part3-item .part3-item-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #vue-bulk-purchase .part4 {
    width: 100vw;
    margin: 0 auto;
    padding: 0 6%;
    padding-top: calc(72 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(72 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part4 .part4-title {
    font-size: calc(24 / 32 * var(--root-fs) * 1px);
    line-height: calc(34 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(32 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .swiper-container .swiper-slide-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .prev,
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .next {
    width: calc(40 / 32 * var(--root-fs) * 1px) !important;
    height: calc(40 / 32 * var(--root-fs) * 1px) !important;
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .prev .iconfont,
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .next .iconfont {
    font-size: calc(16 / 32 * var(--root-fs) * 1px) !important;
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .prev:hover,
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .next:hover {
    background: #fff;
    color: #333;
  }
  #vue-bulk-purchase .part5-container {
    min-width: 100vw;
    width: 100vw;
    padding: 0 6%;
    padding-top: calc(72 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(72 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 {
    width: 100%;
    gap: calc(24 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-left {
    width: calc(270 / 32 * var(--root-fs) * 1px);
    height: auto;
    border-radius: calc(16 / 32 * var(--root-fs) * 1px);
    padding-top: calc(24 / 32 * var(--root-fs) * 1px);
    padding-left: calc(16 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(24 / 32 * var(--root-fs) * 1px);
    padding-right: calc(16 / 32 * var(--root-fs) * 1px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-left .part5-left-title {
    text-align: center;
    font-size: calc(22 / 32 * var(--root-fs) * 1px);
    line-height: calc(32 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(12 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-left .part5-left-img {
    width: calc(180 / 32 * var(--root-fs) * 1px) !important;
    height: calc(228 / 32 * var(--root-fs) * 1px) !important;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right {
    width: max-content;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs {
    background-color: #f9f9f8;
    display: flex;
    height: calc(44 / 32 * var(--root-fs) * 1px);
    border-top-left-radius: calc(16 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab {
    cursor: default;
    padding-left: calc(12 / 32 * var(--root-fs) * 1px);
    padding-right: calc(8 / 32 * var(--root-fs) * 1px);
    margin: 0;
    margin-right: calc(24 / 32 * var(--root-fs) * 1px);
    background: #f7f5f4;
    position: relative;
    height: calc(44 / 32 * var(--root-fs) * 1px);
    line-height: calc(44 / 32 * var(--root-fs) * 1px);
    font-size: calc(12 / 32 * var(--root-fs) * 1px);
    color: #666666;
    background: #F7F5F4;
    box-shadow: 0px -6px 10px 0px rgba(0, 0, 0, 0.05);
    cursor: pointer;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::before,
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::after {
    content: '';
    display: block;
    background-image: url('/egg/image/bulkPurchase/tab-gray-2.svg');
    --width: calc(40 / 32 * var(--root-fs) * 1px);
    --height: calc(54 / 32 * var(--root-fs) * 1px);
    width: calc(30 / 32 * var(--root-fs) * 1px);
    height: calc(53 / 32 * var(--root-fs) * 1px);
    background-size: var(--width) var(--height);
    position: absolute;
    bottom: 0;
    left: calc(-28 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::after {
    left: auto;
    right: calc(-28 / 32 * var(--root-fs) * 1px);
    background-image: url('/egg/image/bulkPurchase/tab-gray-2.svg');
    z-index: 1;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::before {
    transform: rotateY(180deg);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab:first-child::before {
    display: none;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab:hover {
    color: #FF7700;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active {
    z-index: 2;
    background-color: #fff;
    font-weight: 600;
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
    padding-left: calc(10 / 32 * var(--root-fs) * 1px);
    padding-right: calc(10 / 32 * var(--root-fs) * 1px);
    color: #FF7700;
    cursor: default;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active::before {
    background-image: url('/egg/image/bulkPurchase/tab-white-2.svg');
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active::after {
    background-image: url('/egg/image/bulkPurchase/tab-white-2.svg');
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content {
    width: 100%;
    height: auto;
    --tab-height: calc(44 / 32 * var(--root-fs) * 1px);
    height: calc(100% - var(--tab-height));
    background: #FFFFFF;
    border-radius: calc(16 / 32 * var(--root-fs) * 1px);
    border-top-left-radius: 0;
    padding-top: calc(16 / 32 * var(--root-fs) * 1px);
    padding-left: calc(16 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(0 / 32 * var(--root-fs) * 1px);
    padding-right: calc(16 / 32 * var(--root-fs) * 1px);
    position: relative;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item {
    display: none;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-title {
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
    line-height: calc(16 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(16 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success,
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail {
    display: flex;
    align-items: flex-start;
    gap: calc(8 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(10 / 32 * var(--root-fs) * 1px);
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
    color: #666666;
    line-height: calc(20 / 32 * var(--root-fs) * 1px);
    position: relative;
    z-index: 1;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success .iconfont,
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail .iconfont {
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success {
    color: #FF7700;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail {
    color: #999;
    margin-bottom: calc(64 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn {
    width: 136px;
    height: 36px;
    border-radius: 24px;
    border: 1px solid #FF7700;
    font-weight: 500;
    font-size: 16px;
    color: #FF7700;
    line-height: 36px;
    text-align: center;
    position: relative;
    display: block;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn:hover {
    color: #e56a00;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn .iconfont-warp {
    width: 36px;
    height: 36px;
    border: 1px solid #FF7700;
    position: absolute;
    right: -36px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn .iconfont-warp .iconfont {
    font-size: 16px;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-img {
    position: absolute;
    right: 24px;
    bottom: 0px;
    width: 20vw !important;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item.active {
    display: block;
  }
  #vue-bulk-purchase .faq {
    min-width: 100vw;
    padding: 0 6%;
    padding-top: calc(72 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(72 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .faq .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0;
  }
  #vue-bulk-purchase .faq .container h2 {
    font-size: calc(24 / 32 * var(--root-fs) * 1px);
    line-height: calc(34 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(32 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .faq .container .faq-item {
    border-radius: calc(8 / 32 * var(--root-fs) * 1px);
    padding-top: calc(16 / 32 * var(--root-fs) * 1px);
    padding-left: calc(12 / 32 * var(--root-fs) * 1px);
    padding-right: calc(12 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(16 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(12 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .faq .container .faq-item:last-child {
    margin-bottom: 0;
  }
  #vue-bulk-purchase .faq .container .faq-item .faq-question {
    cursor: pointer;
    font-size: calc(14 / 32 * var(--root-fs) * 1px);
    line-height: calc(20 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .faq .container .faq-item .faq-question:hover {
    color: #333;
  }
  #vue-bulk-purchase .faq .container .faq-item .faq-answer {
    font-size: calc(12 / 32 * var(--root-fs) * 1px);
    line-height: calc(18 / 32 * var(--root-fs) * 1px);
    padding-top: calc(8 / 32 * var(--root-fs) * 1px);
    display: none;
  }
  #vue-bulk-purchase .faq .container .faq-item .faq-arrow-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  #vue-bulk-purchase .faq .container .faq-item.active .faq-arrow-icon {
    transform: rotate(0deg);
  }
  #vue-bulk-purchase .faq .container .faq-item.active .faq-answer {
    display: block;
  }
  #vue-bulk-purchase .part6-container {
    min-width: 100vw;
    padding: 0 6%;
    padding-top: calc(72 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(72 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part6-container .part6-title {
    font-size: calc(24 / 32 * var(--root-fs) * 1px);
    line-height: calc(34 / 32 * var(--root-fs) * 1px);
    margin-bottom: calc(32 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part6-container .part6-content {
    width: 100%;
    height: auto;
    border-top-left-radius: calc(80 / 32 * var(--root-fs) * 1px);
    aspect-ratio: 2.31213873;
    margin: 0 auto;
    background-image: url('/egg/image/bulkPurchase/ipad/part6_1.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #vue-bulk-purchase .part6-container .part6-content .text {
    width: 86%;
    padding-top: 0;
    font-size: calc(16 / 32 * var(--root-fs) * 1px);
    line-height: calc(24 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part6-container .part6-content .part6-btn {
    display: block;
    width: max-content;
    height: auto;
    line-height: 52px;
    line-height: calc(24 / 32 * var(--root-fs) * 1px);
    border-radius: calc(26 / 32 * var(--root-fs) * 1px);
    font-size: calc(16 / 32 * var(--root-fs) * 1px);
    margin-top: calc(24 / 32 * var(--root-fs) * 1px);
    padding-top: calc(10 / 32 * var(--root-fs) * 1px);
    padding-bottom: calc(10 / 32 * var(--root-fs) * 1px);
    padding-left: calc(24 / 32 * var(--root-fs) * 1px);
    padding-right: calc(24 / 32 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part6-container .part6-content .part6-btn:hover {
    background: var(--color-primary);
  }
}
@media (max-width: 700px) {
  .hero .container {
    max-width: 100vw;
    height: max-content;
    flex-direction: column;
    align-items: flex-start;
    padding-top: calc(40 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .hero .container .left {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
  }
  .hero .container .left .left-img-bg {
    display: none;
  }
  .hero .container .left .left-img-bg-ipad {
    display: none;
  }
  .hero .container .left .left-img-bg-mobile {
    display: block;
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    width: 100%;
    height: auto;
  }
  .hero .container .left .left-content {
    position: static;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero .container .left .left-content .left-content-title {
    font-size: calc(32 / 16 * var(--root-fs) * 1px);
    line-height: calc(44 / 16 * var(--root-fs) * 1px);
  }
  .hero .container .left .left-content .left-content-btn {
    display: block;
    width: max-content;
    height: max-content;
    background: var(--color-primary);
    padding-top: calc(10 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(10 / 16 * var(--root-fs) * 1px);
    padding-left: calc(24 / 16 * var(--root-fs) * 1px);
    padding-right: calc(24 / 16 * var(--root-fs) * 1px);
    border-radius: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(24 / 16 * var(--root-fs) * 1px);
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    margin-top: calc(16 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  .hero .container .left .left-content .left-content-btn:hover {
    background: var(--color-primary);
  }
  .hero .container .left .left-content .left-content-btn:hover .left-content-btn-icon {
    border-color: var(--color-primary);
  }
  .hero .container .left .left-content .left-content-btn:hover .left-content-btn-icon .iconfont {
    color: var(--color-primary);
  }
  .hero .container .left .left-content .left-content-btn .left-content-btn-icon {
    display: none;
  }
  .hero .container .right {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .hero .container .right img {
    display: none;
    width: calc(147 / 16 * var(--root-fs) * 1px);
    margin-right: calc(16 / 16 * var(--root-fs) * 1px);
    height: calc(100 / 16 * var(--root-fs) * 1px);
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
  }
  .hero .container .right .right-img-bg-wrap {
    display: block;
    overflow: hidden;
    width: calc(196 / 16 * var(--root-fs) * 1px) !important;
    margin-right: calc(16 / 16 * var(--root-fs) * 1px);
    height: calc(100 / 16 * var(--root-fs) * 1px);
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    position: relative;
    background: #fff;
  }
  .hero .container .right .right-img-bg-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/egg/image/bulkPurchase/mobile/cartonBox.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero .container .right .right-title {
    width: calc(145 / 16 * var(--root-fs) * 1px);
    margin-top: calc(0 / 16 * var(--root-fs) * 1px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(16 / 16 * var(--root-fs) * 1px);
    font-size: calc(18 / 16 * var(--root-fs) * 1px);
    line-height: calc(24 / 16 * var(--root-fs) * 1px);
    color: var(--color-primary);
  }
  .hero .container .right .right-btn {
    width: calc(147 / 16 * var(--root-fs) * 1px) !important;
    height: calc(100 / 16 * var(--root-fs) * 1px);
    background: var(--color-primary);
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    font-size: calc(18 / 16 * var(--root-fs) * 1px);
    line-height: calc(24 / 16 * var(--root-fs) * 1px);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #vue-bulk-purchase {
    background: #fff;
  }
  #vue-bulk-purchase .part2 {
    width: 100vw;
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(40 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #vue-bulk-purchase .part2 .part2-item {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #F6F6F6;
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    padding-top: calc(24 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(0 / 16 * var(--root-fs) * 1px);
    padding-left: calc(20 / 16 * var(--root-fs) * 1px);
    padding-right: calc(20 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(16 / 16 * var(--root-fs) * 1px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  #vue-bulk-purchase .part2 .part2-item.diff {
    background: var(--color-primary);
    padding-top: calc(24 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(24 / 16 * var(--root-fs) * 1px);
    padding-left: calc(20 / 16 * var(--root-fs) * 1px);
    padding-right: calc(20 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part2 .part2-item.diff .part2-item-img-diff {
    height: 100%;
    display: none;
  }
  #vue-bulk-purchase .part2 .part2-item.diff .part2-item-img-diff-wrap {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  #vue-bulk-purchase .part2 .part2-item.diff .part2-item-img-diff-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: calc(20 / 16 * var(--root-fs) * 1px);
    width: 100%;
    height: 100%;
    background: url('/egg/image/bulkPurchase/ipad/part2_person.png');
    background-position: bottom right;
    --height: calc(70 / 16 * var(--root-fs) * 1px);
    background-size: auto var(--height);
    background-repeat: no-repeat;
  }
  #vue-bulk-purchase .part2 .part2-item.diff .part2-item-title {
    width: 80%;
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(34 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part2 .part2-item .part2-item-title {
    font-size: calc(18 / 16 * var(--root-fs) * 1px);
    line-height: calc(25 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(8 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part2 .part2-item .part2-item-text {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part2 .part2-item .part2-item-img {
    position: static;
    width: 100%;
    bottom: 0;
    left: 50%;
    margin-left: 0;
  }
  #vue-bulk-purchase .step-container {
    min-width: 100vw;
    width: 100vw;
    padding-top: calc(48 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(48 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step {
    width: 100%;
  }
  #vue-bulk-purchase .step-container .step .step_title {
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(34 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container {
    padding-bottom: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-bottom: calc(40 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(even) {
    flex-direction: column-reverse;
    justify-content: center;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(even) .step-item-left {
    margin-left: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(odd) .step-item-right {
    margin-left: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:first-child .step-item-img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(2) {
    justify-content: flex-end;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(2) .step-item-img {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:nth-child(3) .step-item-img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item:last-child {
    margin-bottom: 0;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-left {
    width: 100%;
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-right {
    width: 100%;
    text-align: center;
    margin-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon {
    width: 50%;
    --left: calc(26 / 16 * var(--root-fs) * 1px);
    left: calc(50% - var(--left));
    height: calc(42 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(4 / 16 * var(--root-fs) * 1px);
    line-height: calc(44 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon .iconqi {
    color: #FFE8D4;
    font-size: calc(40 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-icon .step-item-icon-title {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    line-height: calc(27 / 16 * var(--root-fs) * 1px);
    padding-left: calc(2 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-title {
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    line-height: calc(24 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(8 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-text {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(8 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-btn {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(24 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-btn .icongengduo2 {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .step-container .step-item-container .step-item .step-item-btn:hover {
    color: var(--color-primary);
  }
  #vue-bulk-purchase .part3 {
    width: 100vw;
    margin: 0 auto;
    padding-top: calc(48 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(32 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part3 .part3-desktop {
    display: none;
  }
  #vue-bulk-purchase .part3 .part3-carousel {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  #vue-bulk-purchase .part3 .carousel-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: calc(320 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part3 .carousel-track {
    display: inline-block;
    white-space: nowrap;
  }
  #vue-bulk-purchase .part3 .right-to-left .carousel-track {
    animation: scroll-right-to-left 30s linear infinite;
  }
  #vue-bulk-purchase .part3 .part3-item {
    display: inline-block;
    vertical-align: top;
    width: calc(240 / 16 * var(--root-fs) * 1px);
    height: calc(320 / 16 * var(--root-fs) * 1px);
    background: #F6F6F6;
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    padding: calc(20 / 16 * var(--root-fs) * 1px);
    padding-top: calc(37 / 16 * var(--root-fs) * 1px);
    position: relative;
    margin-right: calc(12 / 16 * var(--root-fs) * 1px);
    flex-shrink: 0;
  }
  #vue-bulk-purchase .part3 .part3-item .part3-item-title {
    position: relative;
    font-weight: 600;
    font-size: calc(44 / 16 * var(--root-fs) * 1px);
    line-height: calc(62 / 16 * var(--root-fs) * 1px);
    color: #333333;
  }
  #vue-bulk-purchase .part3 .part3-item .part3-item-text {
    position: relative;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    font-size: calc(18 / 16 * var(--root-fs) * 1px);
    line-height: calc(24 / 16 * var(--root-fs) * 1px);
    color: #333333;
    width: auto;
  }
  #vue-bulk-purchase .part3 .part3-item .part3-item-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #vue-bulk-purchase .part4 {
    width: 100vw;
    margin: 0 auto;
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(112 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part4 .part4-title {
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(34 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .swiper-container .swiper-slide-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .prev,
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .next {
    width: calc(40 / 16 * var(--root-fs) * 1px) !important;
    height: calc(40 / 16 * var(--root-fs) * 1px) !important;
    --top: calc(36 / 16 * var(--root-fs) * 1px) !important;
    top: calc(100% + var(--top)) !important;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .prev .iconfont,
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .next .iconfont {
    font-size: calc(16 / 16 * var(--root-fs) * 1px) !important;
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .prev:hover,
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .next:hover {
    background: #fff;
    color: #333;
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .prev {
    left: calc(120 / 16 * var(--root-fs) * 1px) !important;
  }
  #vue-bulk-purchase .part4 .swiper-container-recommendations-container .next {
    right: calc(120 / 16 * var(--root-fs) * 1px) !important;
  }
  #vue-bulk-purchase .part5-container {
    min-width: 100vw;
    width: 100vw;
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(24 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-left {
    width: 100%;
    height: auto;
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    padding-top: calc(24 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(24 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-left .part5-left-title {
    text-align: center;
    font-size: calc(22 / 16 * var(--root-fs) * 1px);
    line-height: calc(32 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(12 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-left .part5-left-img {
    width: calc(200 / 16 * var(--root-fs) * 1px) !important;
    height: calc(240 / 16 * var(--root-fs) * 1px) !important;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right {
    width: 100%;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs {
    background-color: #f9f9f8;
    display: flex;
    height: calc(44 / 16 * var(--root-fs) * 1px);
    border-top-left-radius: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab {
    cursor: default;
    padding-left: calc(12 / 16 * var(--root-fs) * 1px);
    padding-right: calc(8 / 16 * var(--root-fs) * 1px);
    margin: 0;
    margin-right: calc(20 / 16 * var(--root-fs) * 1px);
    background: #f7f5f4;
    position: relative;
    height: calc(44 / 16 * var(--root-fs) * 1px);
    line-height: calc(16 / 16 * var(--root-fs) * 1px);
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    color: #666666;
    background: #F7F5F4;
    box-shadow: 0px -6px 10px 0px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: calc(92 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::before,
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::after {
    content: '';
    display: block;
    background-image: url('/egg/image/bulkPurchase/tab-gray-2.svg');
    --width: calc(40 / 16 * var(--root-fs) * 1px);
    --height: calc(54 / 16 * var(--root-fs) * 1px);
    width: calc(30 / 16 * var(--root-fs) * 1px);
    height: calc(53 / 16 * var(--root-fs) * 1px);
    background-size: var(--width) var(--height);
    position: absolute;
    bottom: 0;
    left: calc(-28 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::after {
    left: auto;
    right: calc(-28 / 16 * var(--root-fs) * 1px);
    background-image: url('/egg/image/bulkPurchase/tab-gray-2.svg');
    z-index: 1;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab::before {
    transform: rotateY(180deg);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab:first-child::before {
    display: none;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab:hover {
    color: #FF7700;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active {
    z-index: 2;
    background-color: #fff;
    font-weight: 600;
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    padding-left: calc(12 / 16 * var(--root-fs) * 1px);
    padding-right: calc(12 / 16 * var(--root-fs) * 1px);
    color: #FF7700;
    cursor: default;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active::before {
    background-image: url('/egg/image/bulkPurchase/tab-white-2.svg');
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .tabs .tab.active::after {
    background-image: url('/egg/image/bulkPurchase/tab-white-2.svg');
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content {
    width: 100%;
    height: auto;
    --tab-height: calc(44 / 16 * var(--root-fs) * 1px);
    height: calc(100% - var(--tab-height));
    background: #FFFFFF;
    border-radius: calc(16 / 16 * var(--root-fs) * 1px);
    border-top-left-radius: 0;
    padding-top: calc(20 / 16 * var(--root-fs) * 1px);
    padding-left: calc(20 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(135 / 16 * var(--root-fs) * 1px);
    padding-right: calc(20 / 16 * var(--root-fs) * 1px);
    position: relative;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item {
    display: none;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-title {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success,
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail {
    display: flex;
    align-items: flex-start;
    gap: calc(8 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(10 / 16 * var(--root-fs) * 1px);
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    color: #666666;
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
    position: relative;
    z-index: 1;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success .iconfont,
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail .iconfont {
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-success {
    color: #FF7700;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-fail {
    color: #999;
    margin-bottom: calc(35 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn {
    min-width: calc(136 / 16 * var(--root-fs) * 1px);
    height: calc(36 / 16 * var(--root-fs) * 1px);
    width: max-content;
    border-radius: calc(24 / 16 * var(--root-fs) * 1px);
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    line-height: calc(36 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn:hover {
    color: var(--color-primary);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn .iconfont-warp {
    width: calc(36 / 16 * var(--root-fs) * 1px);
    height: calc(36 / 16 * var(--root-fs) * 1px);
    right: calc(-36 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-btn .iconfont-warp .iconfont {
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item .part5-right-content-item-img {
    position: absolute;
    right: 24px;
    bottom: 0px;
    width: calc(145 / 16 * var(--root-fs) * 1px) !important;
  }
  #vue-bulk-purchase .part5-container .part5 .part5-right .part5-right-content .part5-right-content-item.active {
    display: block;
  }
  #vue-bulk-purchase .faq {
    min-width: 100vw;
    padding-top: calc(56 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(56 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .faq .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0;
  }
  #vue-bulk-purchase .faq .container h2 {
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(32 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(24 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .faq .container .faq-item {
    border-radius: calc(8 / 16 * var(--root-fs) * 1px);
    padding-top: calc(16 / 16 * var(--root-fs) * 1px);
    padding-left: calc(12 / 16 * var(--root-fs) * 1px);
    padding-right: calc(12 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(16 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(12 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .faq .container .faq-item:last-child {
    margin-bottom: 0;
  }
  #vue-bulk-purchase .faq .container .faq-item .faq-question {
    cursor: pointer;
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(20 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .faq .container .faq-item .faq-question:hover {
    color: #333;
  }
  #vue-bulk-purchase .faq .container .faq-item .faq-answer {
    font-size: calc(12 / 16 * var(--root-fs) * 1px);
    line-height: calc(18 / 16 * var(--root-fs) * 1px);
    padding-top: calc(8 / 16 * var(--root-fs) * 1px);
    display: none;
  }
  #vue-bulk-purchase .faq .container .faq-item .faq-arrow-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  #vue-bulk-purchase .faq .container .faq-item.active .faq-arrow-icon {
    transform: rotate(0deg);
  }
  #vue-bulk-purchase .faq .container .faq-item.active .faq-answer {
    display: block;
  }
  #vue-bulk-purchase .part6-container {
    min-width: 100vw;
    padding: 0;
    background: #fff;
  }
  #vue-bulk-purchase .part6-container .part6 {
    background-image: url('/egg/image/bulkPurchase/mobile/part6_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: calc(70 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(70 / 16 * var(--root-fs) * 1px);
    padding-left: calc(16 / 16 * var(--root-fs) * 1px);
    padding-right: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part6-container .part6-title {
    color: #fff;
    font-size: calc(24 / 16 * var(--root-fs) * 1px);
    line-height: calc(32 / 16 * var(--root-fs) * 1px);
    margin-bottom: calc(16 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part6-container .part6-content {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #vue-bulk-purchase .part6-container .part6-content .text {
    width: 100%;
    padding-top: 0;
    font-size: calc(14 / 16 * var(--root-fs) * 1px);
    line-height: calc(22 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part6-container .part6-content .mobile-hidden {
    display: none;
  }
  #vue-bulk-purchase .part6-container .part6-content .part6-btn {
    display: block;
    width: max-content;
    height: auto;
    line-height: 52px;
    line-height: calc(24 / 16 * var(--root-fs) * 1px);
    border-radius: calc(26 / 16 * var(--root-fs) * 1px);
    font-size: calc(16 / 16 * var(--root-fs) * 1px);
    margin-top: calc(30 / 16 * var(--root-fs) * 1px);
    padding-top: calc(12 / 16 * var(--root-fs) * 1px);
    padding-bottom: calc(12 / 16 * var(--root-fs) * 1px);
    padding-left: calc(24 / 16 * var(--root-fs) * 1px);
    padding-right: calc(24 / 16 * var(--root-fs) * 1px);
  }
  #vue-bulk-purchase .part6-container .part6-content .part6-btn:hover {
    background: var(--color-primary);
  }
}
@keyframes scroll-right-to-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
