@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

a {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: var(--primary-color);
}

.pointer-none {
  overflow: hidden;
}

.block {
  display: block;
}

.cursor-pointer {
  cursor: pointer;
}

.flex {
  display: flex;
}

.flex-cc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-sc {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

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

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-warp {
  flex-wrap: wrap;
}

.flex-auto {
  flex: 1;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.hidden {
  display: none !important;
}

input,
input:hover {
  border: 0 none;
  outline: none;
}

iframe, button {
  border: 0 none;
}

.button {
  cursor: pointer;
  line-height: 1em;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  border-radius: 0.4rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.rounded-2 {
  border-radius: 0.4rem;
}

.text-dot {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.text-red {
  color: #ee0a24;
}

.bg-red {
  background-color: #ee0a24;
}

.text-green {
  color: #07c160;
}

.bg-green {
  background-color: #07c160;
}

.text-purple {
  color: #9947ff;
}

.bg-purple {
  background-color: #9947ff;
}

.text-blue {
  color: #1989fa;
}

.bg-blue {
  background-color: #1989fa;
}

.text-orange {
  color: #ff976a;
}

.bg-orange {
  background-color: #ff976a;
}

.text-orange-dark {
  color: #ed6a0c;
}

.bg-orange-dark {
  background-color: #ed6a0c;
}

.text-pick {
  color: pink;
}

.bg-pick {
  background-color: pink;
}

.text-pink-dark {
  color: #F56C6C;
}

.bg-pink-dark {
  background-color: #F56C6C;
}

.text-yellow {
  color: #faad14;
}

.bg-yellow {
  background-color: #faad14;
}

.text-gray-1 {
  color: #f7f8fa;
}

.bg-gray-1 {
  background-color: #f7f8fa;
}

.text-gray-2 {
  color: #f2f3f5;
}

.bg-gray-2 {
  background-color: #f2f3f5;
}

.text-gray-3 {
  color: #ebedf0;
}

.bg-gray-3 {
  background-color: #ebedf0;
}

.text-gray-4 {
  color: #dcdee0;
}

.bg-gray-4 {
  background-color: #dcdee0;
}

.text-gray-5 {
  color: #c8c9cc;
}

.bg-gray-5 {
  background-color: #c8c9cc;
}

.text-gray-6 {
  color: #969799;
}

.bg-gray-6 {
  background-color: #969799;
}

.text-gray-7 {
  color: #646566;
}

.bg-gray-7 {
  background-color: #646566;
}

.text-gray-8 {
  color: #323233;
}

.bg-gray-8 {
  background-color: #323233;
}

.text-primary {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.text-gold {
  color: #FFD700;
}

.bg-gold {
  background-color: #FFD700;
}

.text-silvery {
  color: #C5C8C9;
}

.bg-silvery {
  background-color: #C5C8C9;
}

.text-copper {
  color: #D98719;
}

.bg-copper {
  background-color: #D98719;
}

.font-icon {
  display: block;
  height: 18px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.font-icon.green {
  background-color: #07c160;
}
.font-icon.red {
  background-color: #ee0a24;
}
.font-icon.blue {
  background-color: #1989fa;
}
.font-icon.orange {
  background-color: #ff976a;
}

.global-tip-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ebedf0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global-tip-icon::before {
  content: "?";
  font-size: 12px;
}
.global-tip-icon.customisation {
  background-color: transparent;
}
.global-tip-icon.customisation::before {
  display: none;
}
.global-tip-icon:hover .global-tip-text {
  display: block;
}
.global-tip-icon > .global-tip-text {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translatey(10px);
  width: 200px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 12px;
  background-color: #fff;
  z-index: 10;
  transform-style: preserve-3d;
  padding: 0.4rem;
  border-radius: 0.4rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}
.global-tip-icon > .global-tip-text::before {
  content: "";
  font-size: 12px;
  border: 10px solid transparent;
  border-bottom-color: var(--primary-color);
  position: absolute;
  top: -16px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%) translateZ(-1px);
}
.global-tip-icon > .global-tip-text::after {
  content: "";
  font-size: 12px;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.global-testimonials {
  display: block;
  width: 100%;
}
.global-testimonials > img {
  display: block;
  width: 100%;
}

.p-1 {
  padding: 0.2rem;
}

.px-1 {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.py-1 {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.pt-1 {
  padding-top: 0.2rem;
}

.pr-1 {
  padding-right: 0.2rem;
}

.pb-1 {
  padding-bottom: 0.2rem;
}

.pl-1 {
  padding-left: 0.2rem;
}

.m-1 {
  margin: 0.2rem;
}

.mx-1 {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

.my-1 {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.mt-1 {
  margin-top: 0.2rem;
}

.mr-1 {
  margin-right: 0.2rem;
}

.mb-1 {
  margin-bottom: 0.2rem;
}

.ml-1 {
  margin-left: 0.2rem;
}

.gap-1 {
  gap: 0.2rem;
}

.rounded-1 {
  border-radius: 0.2rem;
}

.text-1 {
  font-size: 1px;
}

.p-2 {
  padding: 0.4rem;
}

.px-2 {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.py-2 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.pt-2 {
  padding-top: 0.4rem;
}

.pr-2 {
  padding-right: 0.4rem;
}

.pb-2 {
  padding-bottom: 0.4rem;
}

.pl-2 {
  padding-left: 0.4rem;
}

.m-2 {
  margin: 0.4rem;
}

.mx-2 {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.my-2 {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.mt-2 {
  margin-top: 0.4rem;
}

.mr-2 {
  margin-right: 0.4rem;
}

.mb-2 {
  margin-bottom: 0.4rem;
}

.ml-2 {
  margin-left: 0.4rem;
}

.gap-2 {
  gap: 0.4rem;
}

.rounded-2 {
  border-radius: 0.4rem;
}

.text-2 {
  font-size: 2px;
}

.p-3 {
  padding: 0.6rem;
}

.px-3 {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.py-3 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.pt-3 {
  padding-top: 0.6rem;
}

.pr-3 {
  padding-right: 0.6rem;
}

.pb-3 {
  padding-bottom: 0.6rem;
}

.pl-3 {
  padding-left: 0.6rem;
}

.m-3 {
  margin: 0.6rem;
}

.mx-3 {
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}

.my-3 {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.mt-3 {
  margin-top: 0.6rem;
}

.mr-3 {
  margin-right: 0.6rem;
}

.mb-3 {
  margin-bottom: 0.6rem;
}

.ml-3 {
  margin-left: 0.6rem;
}

.gap-3 {
  gap: 0.6rem;
}

.rounded-3 {
  border-radius: 0.6rem;
}

.text-3 {
  font-size: 3px;
}

.p-4 {
  padding: 0.8rem;
}

.px-4 {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.py-4 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.pt-4 {
  padding-top: 0.8rem;
}

.pr-4 {
  padding-right: 0.8rem;
}

.pb-4 {
  padding-bottom: 0.8rem;
}

.pl-4 {
  padding-left: 0.8rem;
}

.m-4 {
  margin: 0.8rem;
}

.mx-4 {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

.my-4 {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.mt-4 {
  margin-top: 0.8rem;
}

.mr-4 {
  margin-right: 0.8rem;
}

.mb-4 {
  margin-bottom: 0.8rem;
}

.ml-4 {
  margin-left: 0.8rem;
}

.gap-4 {
  gap: 0.8rem;
}

.rounded-4 {
  border-radius: 0.8rem;
}

.text-4 {
  font-size: 4px;
}

.p-5 {
  padding: 1rem;
}

.px-5 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-5 {
  padding-top: 1rem;
}

.pr-5 {
  padding-right: 1rem;
}

.pb-5 {
  padding-bottom: 1rem;
}

.pl-5 {
  padding-left: 1rem;
}

.m-5 {
  margin: 1rem;
}

.mx-5 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-5 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mt-5 {
  margin-top: 1rem;
}

.mr-5 {
  margin-right: 1rem;
}

.mb-5 {
  margin-bottom: 1rem;
}

.ml-5 {
  margin-left: 1rem;
}

.gap-5 {
  gap: 1rem;
}

.rounded-5 {
  border-radius: 1rem;
}

.text-5 {
  font-size: 5px;
}

.p-6 {
  padding: 1.2rem;
}

.px-6 {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.py-6 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.pt-6 {
  padding-top: 1.2rem;
}

.pr-6 {
  padding-right: 1.2rem;
}

.pb-6 {
  padding-bottom: 1.2rem;
}

.pl-6 {
  padding-left: 1.2rem;
}

.m-6 {
  margin: 1.2rem;
}

.mx-6 {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.my-6 {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.mt-6 {
  margin-top: 1.2rem;
}

.mr-6 {
  margin-right: 1.2rem;
}

.mb-6 {
  margin-bottom: 1.2rem;
}

.ml-6 {
  margin-left: 1.2rem;
}

.gap-6 {
  gap: 1.2rem;
}

.rounded-6 {
  border-radius: 1.2rem;
}

.text-6 {
  font-size: 6px;
}

.p-8 {
  padding: 1.6rem;
}

.px-8 {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.py-8 {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.pt-8 {
  padding-top: 1.6rem;
}

.pr-8 {
  padding-right: 1.6rem;
}

.pb-8 {
  padding-bottom: 1.6rem;
}

.pl-8 {
  padding-left: 1.6rem;
}

.m-8 {
  margin: 1.6rem;
}

.mx-8 {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}

.my-8 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.mt-8 {
  margin-top: 1.6rem;
}

.mr-8 {
  margin-right: 1.6rem;
}

.mb-8 {
  margin-bottom: 1.6rem;
}

.ml-8 {
  margin-left: 1.6rem;
}

.gap-8 {
  gap: 1.6rem;
}

.rounded-8 {
  border-radius: 1.6rem;
}

.text-8 {
  font-size: 8px;
}

.p-10 {
  padding: 2rem;
}

.px-10 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-10 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-10 {
  padding-top: 2rem;
}

.pr-10 {
  padding-right: 2rem;
}

.pb-10 {
  padding-bottom: 2rem;
}

.pl-10 {
  padding-left: 2rem;
}

.m-10 {
  margin: 2rem;
}

.mx-10 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-10 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt-10 {
  margin-top: 2rem;
}

.mr-10 {
  margin-right: 2rem;
}

.mb-10 {
  margin-bottom: 2rem;
}

.ml-10 {
  margin-left: 2rem;
}

.gap-10 {
  gap: 2rem;
}

.rounded-10 {
  border-radius: 2rem;
}

.text-10 {
  font-size: 10px;
}

.p-12 {
  padding: 2.4rem;
}

.px-12 {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.py-12 {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.pt-12 {
  padding-top: 2.4rem;
}

.pr-12 {
  padding-right: 2.4rem;
}

.pb-12 {
  padding-bottom: 2.4rem;
}

.pl-12 {
  padding-left: 2.4rem;
}

.m-12 {
  margin: 2.4rem;
}

.mx-12 {
  margin-left: 2.4rem;
  margin-right: 2.4rem;
}

.my-12 {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.mt-12 {
  margin-top: 2.4rem;
}

.mr-12 {
  margin-right: 2.4rem;
}

.mb-12 {
  margin-bottom: 2.4rem;
}

.ml-12 {
  margin-left: 2.4rem;
}

.gap-12 {
  gap: 2.4rem;
}

.rounded-12 {
  border-radius: 2.4rem;
}

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

.p-14 {
  padding: 2.8rem;
}

.px-14 {
  padding-left: 2.8rem;
  padding-right: 2.8rem;
}

.py-14 {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.pt-14 {
  padding-top: 2.8rem;
}

.pr-14 {
  padding-right: 2.8rem;
}

.pb-14 {
  padding-bottom: 2.8rem;
}

.pl-14 {
  padding-left: 2.8rem;
}

.m-14 {
  margin: 2.8rem;
}

.mx-14 {
  margin-left: 2.8rem;
  margin-right: 2.8rem;
}

.my-14 {
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
}

.mt-14 {
  margin-top: 2.8rem;
}

.mr-14 {
  margin-right: 2.8rem;
}

.mb-14 {
  margin-bottom: 2.8rem;
}

.ml-14 {
  margin-left: 2.8rem;
}

.gap-14 {
  gap: 2.8rem;
}

.rounded-14 {
  border-radius: 2.8rem;
}

.text-14 {
  font-size: 14px;
}

.p-16 {
  padding: 3.2rem;
}

.px-16 {
  padding-left: 3.2rem;
  padding-right: 3.2rem;
}

.py-16 {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.pt-16 {
  padding-top: 3.2rem;
}

.pr-16 {
  padding-right: 3.2rem;
}

.pb-16 {
  padding-bottom: 3.2rem;
}

.pl-16 {
  padding-left: 3.2rem;
}

.m-16 {
  margin: 3.2rem;
}

.mx-16 {
  margin-left: 3.2rem;
  margin-right: 3.2rem;
}

.my-16 {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}

.mt-16 {
  margin-top: 3.2rem;
}

.mr-16 {
  margin-right: 3.2rem;
}

.mb-16 {
  margin-bottom: 3.2rem;
}

.ml-16 {
  margin-left: 3.2rem;
}

.gap-16 {
  gap: 3.2rem;
}

.rounded-16 {
  border-radius: 3.2rem;
}

.text-16 {
  font-size: 16px;
}

.p-18 {
  padding: 3.6rem;
}

.px-18 {
  padding-left: 3.6rem;
  padding-right: 3.6rem;
}

.py-18 {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.pt-18 {
  padding-top: 3.6rem;
}

.pr-18 {
  padding-right: 3.6rem;
}

.pb-18 {
  padding-bottom: 3.6rem;
}

.pl-18 {
  padding-left: 3.6rem;
}

.m-18 {
  margin: 3.6rem;
}

.mx-18 {
  margin-left: 3.6rem;
  margin-right: 3.6rem;
}

.my-18 {
  margin-top: 3.6rem;
  margin-bottom: 3.6rem;
}

.mt-18 {
  margin-top: 3.6rem;
}

.mr-18 {
  margin-right: 3.6rem;
}

.mb-18 {
  margin-bottom: 3.6rem;
}

.ml-18 {
  margin-left: 3.6rem;
}

.gap-18 {
  gap: 3.6rem;
}

.rounded-18 {
  border-radius: 3.6rem;
}

.text-18 {
  font-size: 18px;
}

.p-20 {
  padding: 4rem;
}

.px-20 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-20 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pt-20 {
  padding-top: 4rem;
}

.pr-20 {
  padding-right: 4rem;
}

.pb-20 {
  padding-bottom: 4rem;
}

.pl-20 {
  padding-left: 4rem;
}

.m-20 {
  margin: 4rem;
}

.mx-20 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.my-20 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mt-20 {
  margin-top: 4rem;
}

.mr-20 {
  margin-right: 4rem;
}

.mb-20 {
  margin-bottom: 4rem;
}

.ml-20 {
  margin-left: 4rem;
}

.gap-20 {
  gap: 4rem;
}

.rounded-20 {
  border-radius: 4rem;
}

.text-20 {
  font-size: 20px;
}

.p-24 {
  padding: 4.8rem;
}

.px-24 {
  padding-left: 4.8rem;
  padding-right: 4.8rem;
}

.py-24 {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.pt-24 {
  padding-top: 4.8rem;
}

.pr-24 {
  padding-right: 4.8rem;
}

.pb-24 {
  padding-bottom: 4.8rem;
}

.pl-24 {
  padding-left: 4.8rem;
}

.m-24 {
  margin: 4.8rem;
}

.mx-24 {
  margin-left: 4.8rem;
  margin-right: 4.8rem;
}

.my-24 {
  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
}

.mt-24 {
  margin-top: 4.8rem;
}

.mr-24 {
  margin-right: 4.8rem;
}

.mb-24 {
  margin-bottom: 4.8rem;
}

.ml-24 {
  margin-left: 4.8rem;
}

.gap-24 {
  gap: 4.8rem;
}

.rounded-24 {
  border-radius: 4.8rem;
}

.text-24 {
  font-size: 24px;
}

.p-28 {
  padding: 5.6rem;
}

.px-28 {
  padding-left: 5.6rem;
  padding-right: 5.6rem;
}

.py-28 {
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
}

.pt-28 {
  padding-top: 5.6rem;
}

.pr-28 {
  padding-right: 5.6rem;
}

.pb-28 {
  padding-bottom: 5.6rem;
}

.pl-28 {
  padding-left: 5.6rem;
}

.m-28 {
  margin: 5.6rem;
}

.mx-28 {
  margin-left: 5.6rem;
  margin-right: 5.6rem;
}

.my-28 {
  margin-top: 5.6rem;
  margin-bottom: 5.6rem;
}

.mt-28 {
  margin-top: 5.6rem;
}

.mr-28 {
  margin-right: 5.6rem;
}

.mb-28 {
  margin-bottom: 5.6rem;
}

.ml-28 {
  margin-left: 5.6rem;
}

.gap-28 {
  gap: 5.6rem;
}

.rounded-28 {
  border-radius: 5.6rem;
}

.text-28 {
  font-size: 28px;
}

.p-32 {
  padding: 6.4rem;
}

.px-32 {
  padding-left: 6.4rem;
  padding-right: 6.4rem;
}

.py-32 {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}

.pt-32 {
  padding-top: 6.4rem;
}

.pr-32 {
  padding-right: 6.4rem;
}

.pb-32 {
  padding-bottom: 6.4rem;
}

.pl-32 {
  padding-left: 6.4rem;
}

.m-32 {
  margin: 6.4rem;
}

.mx-32 {
  margin-left: 6.4rem;
  margin-right: 6.4rem;
}

.my-32 {
  margin-top: 6.4rem;
  margin-bottom: 6.4rem;
}

.mt-32 {
  margin-top: 6.4rem;
}

.mr-32 {
  margin-right: 6.4rem;
}

.mb-32 {
  margin-bottom: 6.4rem;
}

.ml-32 {
  margin-left: 6.4rem;
}

.gap-32 {
  gap: 6.4rem;
}

.rounded-32 {
  border-radius: 6.4rem;
}

.text-32 {
  font-size: 32px;
}

.p-36 {
  padding: 7.2rem;
}

.px-36 {
  padding-left: 7.2rem;
  padding-right: 7.2rem;
}

.py-36 {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}

.pt-36 {
  padding-top: 7.2rem;
}

.pr-36 {
  padding-right: 7.2rem;
}

.pb-36 {
  padding-bottom: 7.2rem;
}

.pl-36 {
  padding-left: 7.2rem;
}

.m-36 {
  margin: 7.2rem;
}

.mx-36 {
  margin-left: 7.2rem;
  margin-right: 7.2rem;
}

.my-36 {
  margin-top: 7.2rem;
  margin-bottom: 7.2rem;
}

.mt-36 {
  margin-top: 7.2rem;
}

.mr-36 {
  margin-right: 7.2rem;
}

.mb-36 {
  margin-bottom: 7.2rem;
}

.ml-36 {
  margin-left: 7.2rem;
}

.gap-36 {
  gap: 7.2rem;
}

.rounded-36 {
  border-radius: 7.2rem;
}

.text-36 {
  font-size: 36px;
}

.p-40 {
  padding: 8rem;
}

.px-40 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-40 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-40 {
  padding-top: 8rem;
}

.pr-40 {
  padding-right: 8rem;
}

.pb-40 {
  padding-bottom: 8rem;
}

.pl-40 {
  padding-left: 8rem;
}

.m-40 {
  margin: 8rem;
}

.mx-40 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.my-40 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.mt-40 {
  margin-top: 8rem;
}

.mr-40 {
  margin-right: 8rem;
}

.mb-40 {
  margin-bottom: 8rem;
}

.ml-40 {
  margin-left: 8rem;
}

.gap-40 {
  gap: 8rem;
}

.rounded-40 {
  border-radius: 8rem;
}

.text-40 {
  font-size: 40px;
}

.p-44 {
  padding: 8.8rem;
}

.px-44 {
  padding-left: 8.8rem;
  padding-right: 8.8rem;
}

.py-44 {
  padding-top: 8.8rem;
  padding-bottom: 8.8rem;
}

.pt-44 {
  padding-top: 8.8rem;
}

.pr-44 {
  padding-right: 8.8rem;
}

.pb-44 {
  padding-bottom: 8.8rem;
}

.pl-44 {
  padding-left: 8.8rem;
}

.m-44 {
  margin: 8.8rem;
}

.mx-44 {
  margin-left: 8.8rem;
  margin-right: 8.8rem;
}

.my-44 {
  margin-top: 8.8rem;
  margin-bottom: 8.8rem;
}

.mt-44 {
  margin-top: 8.8rem;
}

.mr-44 {
  margin-right: 8.8rem;
}

.mb-44 {
  margin-bottom: 8.8rem;
}

.ml-44 {
  margin-left: 8.8rem;
}

.gap-44 {
  gap: 8.8rem;
}

.rounded-44 {
  border-radius: 8.8rem;
}

.text-44 {
  font-size: 44px;
}

.all {
  display: flex;
  flex-direction: column;
  height: auto;
  min-width: 1200px !important;
  min-height: 100vh;
  margin: 0 auto;
  font-size: 14px;
  background: #f5f7f9;
}

.page-content {
  flex: 1;
  position: relative;
}
.page-content .section {
  margin: 0 auto;
  width: 1200px;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
}
.page-content .couplet {
  position: absolute;
  top: 30px;
  display: block;
  width: 180px;
  height: 500px;
}
.page-content .couplet.left {
  left: 86px;
}
.page-content .couplet.right {
  right: 86px;
  background-position: 180px 0;
}

.global-layer-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global-layer-container .global-layer-content {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  border-radius: 0.4rem;
}
.global-layer-container .global-layer-content .global-layer-content-title {
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #c8c9cc;
}
.global-layer-container .global-layer-content .global-layer-content-title-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  line-height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global-layer-container .global-layer-content .global-layer-content-content {
  padding: 0.8rem;
}
.global-layer-container .global-layer-content .global-layer-content-content .global-layer-content-content-text + .global-layer-content-btn-group {
  margin-top: 0.8rem;
}
.global-layer-container .global-layer-content .global-layer-content-content .global-layer-content-btn-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
}
.global-layer-container .global-layer-content .global-layer-content-content .global-layer-content-btn-group .button {
  background-color: #f7f8fa;
  color: #333;
  cursor: pointer;
  border-radius: 0.4rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  border: 1px solid #dcdee0;
}
.global-layer-container .global-layer-content .global-layer-content-content .global-layer-content-btn-group .button:hover {
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

.global-layer-msg-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  z-index: 1002;
  max-width: 400px;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  border-radius: 0.4rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}

.global-layer-loading {
  flex-direction: column;
  color: #fff;
  font-size: 16px;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-bottom: 0.4rem;
  border-radius: 0.8rem;
}
.global-layer-loading img {
  width: 100px;
  height: 100px;
  object-fit: none;
  object-position: center;
}
.global-layer-loading .text {
  transform: translate(0px, -20px);
}

.global-layer-login-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1003;
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-setting-quantity {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.2rem;
}
.global-setting-quantity .global-setting-quantity-plus,
.global-setting-quantity .global-setting-quantity-diminish {
  width: 26px;
  height: 26px;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global-setting-quantity .global-setting-quantity-input {
  width: 40px;
  height: 26px;
  line-height: 26px;
  background-color: #fff;
  text-align: center;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-radius: 0.4rem;
}

.global-favorite .icon-star1 {
  display: none;
}
.global-favorite .icon-star2 {
  display: block;
}
.global-favorite.active .icon-star2 {
  display: none;
}
.global-favorite.active .icon-star1 {
  display: block;
}

.browser-outDate {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
}
.browser-outDate .browser-outDate-content {
  margin: 0 auto;
  width: 1200px;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.browser-outDate .browser-outDate-content .title {
  font-size: 16px;
  margin-bottom: 0.2rem;
  color: #ee0a24;
}
.browser-outDate .browser-outDate-content .title .iconfont {
  margin-right: 0.4rem;
}
.browser-outDate .browser-outDate-content a {
  color: #ee0a24;
  text-decoration: underline;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
}
*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}

.drop-down {
  position: relative;
}
.drop-down .drop-down-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  max-width: 100%;
  background-color: #fff;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  border-radius: 0.4rem;
  z-index: 999;
}
.drop-down:hover .drop-down-options {
  display: block;
}
.drop-down:hover .iconfont {
  transform: rotate(180deg);
}

[id^=think_page] {
  display: none;
}

.global-goods-tool {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(600px, 0);
}
.global-goods-tool .global-goods-tool-btn {
  color: #fff;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  font-size: 12px;
  text-align: center;
  flex-direction: column;
  cursor: pointer;
  border-radius: 0.4rem;
  margin-left: 0.8rem;
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.global-goods-tool .global-goods-tool-btn .iconfont {
  font-size: 20px;
}
.global-goods-tool .global-goods-tool-content {
  display: none;
}

.select-mode .global-goods-tool-btn {
  display: none;
}
.select-mode .global-goods-tool {
  transform: translate(-50%, 0);
  z-index: 10;
}
.select-mode .global-goods-tool .global-goods-tool-content {
  background-color: #fff;
  width: 1200px;
  letter-spacing: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  border-radius: 0.4rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}
.select-mode .global-goods-tool .global-goods-tool-content .select-all-goods-in-page {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.select-mode .global-goods-tool .global-goods-tool-content .select-all-goods-in-page.active:before {
  background-color: var(--primary-color);
}
.select-mode .global-goods-tool .global-goods-tool-content .select-all-goods-in-page:before {
  content: "✓";
  color: #fff;
  background-color: #dcdee0;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select-mode .global-goods-tool .global-goods-tool-content .btn {
  height: 30px;
  line-height: 1.2em;
  text-align: center;
  padding: 0.6rem;
  border-radius: 0.4rem;
}
.select-mode .global-goods-tool .global-goods-tool-content .btn.primary {
  background-color: var(--primary-color);
  color: #fff;
}

@keyframes moveUp {
  0% {
    top: 0;
  }
  18% {
    top: 0;
  }
  20% {
    top: -35px;
  }
  38% {
    top: -35px;
  }
  40% {
    top: -70px;
  }
  58% {
    top: -70px;
  }
  60% {
    top: -105px;
  }
  78% {
    top: -105px;
  }
  80% {
    top: -140px;
  }
  98% {
    top: -140px;
  }
}
@-webkit-keyframes moveUp {
  0% {
    top: 0;
  }
  18% {
    top: 0;
  }
  20% {
    top: -35px;
  }
  38% {
    top: -35px;
  }
  40% {
    top: -70px;
  }
  58% {
    top: -70px;
  }
  60% {
    top: -105px;
  }
  78% {
    top: -105px;
  }
  80% {
    top: -140px;
  }
  98% {
    top: -140px;
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 1; /* 开始和结束时的不透明度 */
  }
  50% {
    opacity: 0.3; /* 中间时的不透明度 */
  }
}
.page-top-recommend {
  width: 100%;
}
.page-top-recommend .item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-top-recommend .item img {
  display: block;
  width: 1200px;
}

.page-header {
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--primary-color);
  background-color: #fff;
}
.page-header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}
.page-header.header-fixed .header-hd,
.page-header.header-fixed .header-fd {
  display: none;
}
.page-header.header-fixed + div {
  margin-top: 143px;
}

.page-header.relative {
  background-image: repeating-linear-gradient(0deg, hsla(209, 48%, 96%, 0.05) 0px, hsla(209, 48%, 96%, 0.05) 1px, transparent 1px, transparent 11px, hsla(209, 48%, 96%, 0.05) 11px, hsla(209, 48%, 96%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(45deg, hsla(209, 48%, 96%, 0.05) 0px, hsla(209, 48%, 96%, 0.05) 1px, transparent 1px, transparent 11px, hsla(209, 48%, 96%, 0.05) 11px, hsla(209, 48%, 96%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(90deg, hsla(209, 48%, 96%, 0.05) 0px, hsla(209, 48%, 96%, 0.05) 1px, transparent 1px, transparent 11px, hsla(209, 48%, 96%, 0.05) 11px, hsla(209, 48%, 96%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(45deg, hsla(209, 48%, 96%, 0.05) 0px, hsla(209, 48%, 96%, 0.05) 1px, transparent 1px, transparent 11px, hsla(209, 48%, 96%, 0.05) 11px, hsla(209, 48%, 96%, 0.05) 12px, transparent 12px, transparent 32px), linear-gradient(90deg, rgb(86, 47, 241), rgb(58, 148, 195));
}
.page-header.relative .header-bd {
  padding: 0;
}
.page-header.relative .header-bd > a {
  display: flex;
  height: 120px;
  align-items: center;
  font-size: 24px;
  color: #fff;
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.3);
}
.page-header.relative .header-bd .logo-box {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}
.page-header.relative .header-bd .logo-box .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 82px;
  height: 82px;
  border-radius: 4px;
}
.page-header.relative .header-bd .shop-name {
  font-size: 24px;
  color: #fff;
}
.page-header.relative .header-bd .main-business {
  font-size: 14px;
}
.page-header.relative .header-bd .motto {
  font-size: 14px;
  color: #fff;
  padding: 0 20px;
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.3);
}
.page-header.relative .header-bd .motto .big {
  font-size: 32px;
  line-height: 1em;
  margin-bottom: 10px;
}
.page-header.relative .header-bd .good-box {
  position: relative;
  width: 70px;
  height: 70px;
}
.page-header.relative .header-bd .good-box img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
}
.page-header.relative .header-fd {
  background-color: var(--primary-color);
}
.page-header.relative .header-fd .main-nav {
  display: flex;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.page-header.relative .header-fd .main-nav a {
  color: #fff;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-radius: 0.4rem;
}
.page-header.relative .header-fd .main-nav a.active {
  background-color: #fff;
  color: var(--primary-color);
}

.header-hd {
  background-color: #f5f7f9;
}
.header-hd .content {
  width: 1200px;
  height: 35px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-hd .header-hd-user {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
}
.header-hd .header-hd-user .user-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-hd .header-hd-notice {
  display: flex;
}
.header-hd .header-hd-notice .notice-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.4rem;
}
.header-hd .header-hd-notice .notice-title .iconfont {
  color: #faad14;
  font-size: 16px;
}
.header-hd .header-hd-notice .notice-title a {
  height: 35px;
  line-height: 35px;
}
.header-hd .header-hd-notice .notice-list {
  height: 35px;
  overflow: hidden;
}
.header-hd .header-hd-notice .notice-list .notice-scroll-box {
  position: relative;
  display: flex;
  flex-direction: column;
  animation: moveUp 8s 0.6s infinite;
  -webkit-animation: moveUp 8s 0.6s infinite;
}
.header-hd .header-hd-notice .notice-list .notice-item {
  width: 200px;
  height: 35px;
}
.header-hd .header-hd-notice .notice-list .notice-item a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 35px;
  color: var(--primary-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-hd .header-hd-menu {
  display: flex;
  gap: 10px;
  height: 100%;
  font-size: 13px;
}
.header-hd .header-hd-menu .menu-link {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
}
.header-hd .header-hd-menu .menu-link .iconfont:nth-child(1) {
  margin-right: 4px;
}
.header-hd .header-hd-menu .menu-link:hover {
  color: var(--primary-color);
}
.header-hd .header-hd-menu .menu-link:hover .menu-dropdown {
  display: flex;
}
.header-hd .header-hd-menu .menu-link:hover .icon-bottom {
  transform: rotate(180deg);
}
.header-hd .header-hd-menu .menu-link .menu-dropdown {
  display: none;
  position: absolute;
  flex-direction: column;
  top: 100%;
  left: 0;
  z-index: 20;
  background-color: #fff;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border-radius: 0.4rem;
}
.header-hd .header-hd-menu .menu-link .menu-dropdown a {
  display: block;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.header-hd .header-hd-menu .menu-link .menu-dropdown a:hover {
  color: var(--primary-color);
}
.header-hd .header-hd-menu .menu-link .menu-dropdown .menu-dropdown-img, .header-hd .header-hd-menu .menu-link .menu-dropdown .menu-dropdown-advertising {
  display: none;
}
.header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音代发], .header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音上货] {
  position: relative;
}
.header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音代发] .menu-dropdown-img, .header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音上货] .menu-dropdown-img {
  display: block;
  position: absolute;
  left: 55px;
  top: -3px;
  width: 63px;
  animation: bounce 1s infinite;
}
.header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音代发] .menu-dropdown-img:hover .menu-dropdown-advertising, .header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音上货] .menu-dropdown-img:hover .menu-dropdown-advertising {
  display: block;
  padding: 10px;
  background-color: #fff;
  text-align: center;
}
.header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音代发] .menu-dropdown-img:hover .menu-dropdown-advertising img, .header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音上货] .menu-dropdown-img:hover .menu-dropdown-advertising img {
  width: 100px;
}
.header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音代发] .menu-dropdown-img:hover .jump-coupon, .header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音上货] .menu-dropdown-img:hover .jump-coupon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-decoration: underline;
  margin-left: 50px;
}
.header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音代发] .menu-dropdown-img:hover .jump-coupon:hover, .header-hd .header-hd-menu .menu-link .menu-dropdown [data-text=抖音上货] .menu-dropdown-img:hover .jump-coupon:hover {
  color: #e4393c;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.header-hd .header-hd-menu .booth-quick-link + .booth-apply {
  display: none;
}
.header-hd .header-hd-menu .site-map .site-map-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
}
.header-hd .header-hd-menu .site-map .site-map-item .name {
  font-weight: 400;
}
.header-hd .header-hd-menu .site-map .site-map-item .site-map-links {
  display: flex;
  gap: 0.8rem;
}

.jump-coupon {
  margin-left: 50px;
}

.header-bd {
  margin: auto;
  height: inherit !important;
  width: 1200px !important;
  flex-direction: row !important;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-bd .logo {
  display: block;
  width: inherit;
  height: 60px;
}
.header-bd .site {
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.header-bd .site .site-name {
  font-size: 18px;
  color: var(--primary-color);
}
.header-bd .site .site-name .iconfont {
  font-size: 20px;
}
.header-bd .switch-site {
  position: relative;
  cursor: pointer;
}
.header-bd .switch-site:after {
  content: "";
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
}
.header-bd .switch-site:hover .site-menu {
  display: block;
}
.header-bd .switch-site .site-menu {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 13;
  transform: translate(-50%, 8px);
  border: 1px solid var(--primary-color);
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  border-radius: 0.4rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.header-bd .switch-site .site-menu:after, .header-bd .switch-site .site-menu:before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom: 8px solid var(--primary-color);
  right: 50%;
  top: -14px;
  transform: translateX(50%);
}
.header-bd .switch-site .site-menu:before {
  border-bottom: 8px solid #fff;
  top: -12px;
  z-index: 2;
}
.header-bd .switch-site .site-tab .tab-component-item {
  display: flex;
  flex-wrap: nowrap;
}
.header-bd .switch-site .site-tab .tab-component-item .tab-component-item-name {
  white-space: nowrap;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.header-bd .switch-site .site-tab .tab-component-item .tab-component-item-name.active {
  color: var(--primary-color);
}
.header-bd .switch-site .site-tab .tab-component-item-content {
  display: none;
  padding: 0.4rem;
}
.header-bd .switch-site .site-tab .tab-component-item-content.active {
  display: block;
}
.header-bd .switch-site .site-tab .tab-component-item-content .size-list {
  width: 380px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.header-bd .switch-site .site-tab .tab-component-item-content .size-list .site-btn {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  white-space: nowrap;
  line-height: 1.1em;
  text-align: center;
}
.header-bd .switch-site .site-tab .tab-component-item-content .size-list .site-btn.active, .header-bd .switch-site .site-tab .tab-component-item-content .size-list .site-btn.active:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.header-bd .switch-site .site-tab .tab-component-item-content .size-list .site-btn:hover {
  color: var(--primary-color);
}
.header-bd .search-box .search-type-tab {
  display: flex;
  margin-left: 0.4rem;
  gap: 0.4rem;
}
.header-bd .search-box .search-type-tab .tab-item {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  line-height: 1em;
  font-size: 12px;
  cursor: pointer;
}
.header-bd .search-box .search-type-tab .tab-item.active {
  background-color: var(--primary-color);
  color: #fff !important;
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.3);
}
.header-bd .search-box .search-input {
  display: flex;
  border: 2px solid var(--primary-color);
  height: 35px;
  position: relative;
  z-index: 10;
  background-color: #fff;
  border-radius: 0.4rem;
  margin-top: -2px;
}
.header-bd .search-box .search-input .search-input-box {
  width: 467px;
  overflow: hidden;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-bd .search-box .search-input .search-input-box .input-item {
  display: none;
  width: 400px;
  border: 0 none;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.header-bd .search-box .search-input .search-input-box .input-item.active {
  display: block;
}
.header-bd .search-box .search-input .search-input-box .iconfont {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}
.header-bd .search-box .search-input .booths-search-result-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 440px;
  border: 2px solid var(--primary-color);
  transform: translate(-2px, 4px);
  background-color: #fff;
  padding: 0.8rem;
  border-radius: 0.4rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}
.header-bd .search-box .search-input .booths-search-result-list .booths-list {
  display: flex;
  flex-direction: column;
  max-height: 400px;
  overflow-y: scroll;
  gap: 0.4rem;
}
.header-bd .search-box .search-input .booths-search-result-list .booths-list .active {
  color: var(--primary-color);
}
.header-bd .search-box .search-button {
  width: 100px;
  height: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-bd .search-box .search-button .iconfont {
  color: #fff;
  font-size: 18px;
}
.header-bd .search-box .search-with-picture {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 14;
  background-color: #fff;
  padding: 0.4rem;
  transform: translatey(10px);
}
.header-bd .search-box .search-with-picture .search-with-picture-content {
  position: relative;
  border: 2px dashed var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 120px;
  margin: auto;
}
.header-bd .search-box .search-with-picture .search-with-picture-content .iconfont {
  font-size: 40px;
}
.header-bd .search-box .search-with-picture .search-with-picture-content .search-with-picture-input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.header-bd .top-booths {
  display: flex;
  margin-top: 0.2rem;
  gap: 0.8rem;
}
.header-bd .top-booths a {
  color: #999;
}
.header-bd .my-cart {
  width: 160px;
  height: 35px;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.4rem;
  gap: 0.4rem;
}

.main-nav {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.8rem;
}
.main-nav .main-nav-item {
  position: relative;
  white-space: nowrap;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.main-nav .main-nav-item.active {
  position: relative;
  background-color: var(--primary-color);
  color: #fff;
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
}
.main-nav .main-nav-item.active.new:before {
  display: none;
}
.main-nav .main-nav-item.active:after {
  content: "";
  position: absolute;
  transform: translateY(6px);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 94%;
  z-index: -1;
  box-shadow: 2px -6px 6px 0 rgba(0, 0, 0, 0.3);
}
.main-nav .main-nav-item.active:hover {
  color: #fff !important;
}
.main-nav .main-nav-item.new:before {
  content: "[新]";
  display: inline-block;
  font-size: 14px;
  height: 16px;
  color: var(--primary-color);
  font-weight: bold;
  animation: flash 1.3s ease-in-out infinite;
}
.main-nav .main-nav-item.quick-send:before {
  position: absolute;
  top: -10px;
  left: 50%;
  content: "48小时发货";
  display: inline-block;
  font-size: 10px;
  height: 16px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  animation: flash 1.3s ease-in-out infinite;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  border-radius: 0.2rem;
}
.main-nav .main-nav-item.quick-send:after {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(5px);
  content: "";
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  animation: flash 1.3s ease-in-out infinite;
}
.main-nav a.main-nav-item.active {
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.3);
}
.main-nav .site-sort {
  position: relative;
  width: 240px;
}
.main-nav .site-sort:hover .sort-list {
  display: block;
}
.main-nav .site-sort .sort-list {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid var(--primary-color);
  display: none;
  min-height: 354px;
  line-height: 1em;
  flex-direction: column;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.main-nav .site-sort .sort-list .sort-list-item {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.main-nav .site-sort .sort-list .sort-list-item:hover .sort-list-item-more {
  display: flex;
}
.main-nav .site-sort .sort-list .sort-list-item + .sort-list-item {
  margin-top: 0.8rem;
}
.main-nav .site-sort .sort-list .sort-list-item-abbreviate {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.main-nav .site-sort .sort-list .sort-list-item-abbreviate .sort-list-item-title {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--primary-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main-nav .site-sort .sort-list .sort-list-item-abbreviate .sort-list-item-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}
.main-nav .site-sort .sort-list .sort-list-item-abbreviate .sort-list-item-content > .sort-list-item-link {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main-nav .site-sort .sort-list .sort-list-item-more {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateY(-2px);
  height: calc(100% + 4px);
  background-color: #fff;
  border: 2px solid var(--primary-color);
  box-sizing: border-box;
  display: none;
  flex-direction: row;
  padding: 0.8rem;
  gap: 0.8rem;
  overflow: hidden;
}
.main-nav .site-sort .sort-list .sort-list-item-more > div {
  max-height: 340px;
}
.main-nav .site-sort .sort-list .sort-list-item-more .sort-list-item-all {
  width: 594px;
  flex-direction: column;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.8rem;
}
.main-nav .site-sort .sort-list .sort-list-item-more .sort-list-item-all .item-title {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}
.main-nav .site-sort .sort-list .sort-list-item-more .sort-list-item-all .item-link-list {
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
  gap: 1.6rem;
}
.main-nav .site-sort .sort-list .sort-list-item-more .booths-testimonials,
.main-nav .site-sort .sort-list .sort-list-item-more .goods-testimonials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: 374px;
}
.main-nav .site-sort .sort-list .sort-list-item-more .booths-testimonials .testimonials-title,
.main-nav .site-sort .sort-list .sort-list-item-more .goods-testimonials .testimonials-title {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}
.main-nav .site-sort .sort-list .sort-list-item-more .booths-testimonials .testimonials-item,
.main-nav .site-sort .sort-list .sort-list-item-more .goods-testimonials .testimonials-item {
  flex: 1;
  position: relative;
}
.main-nav .site-sort .sort-list .sort-list-item-more .booths-testimonials .testimonials-item .testimonials-item-image,
.main-nav .site-sort .sort-list .sort-list-item-more .goods-testimonials .testimonials-item .testimonials-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-nav .site-sort .sort-list .sort-list-item-more .booths-testimonials .testimonials-item .booth-enter,
.main-nav .site-sort .sort-list .sort-list-item-more .goods-testimonials .testimonials-item .booth-enter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.main-nav .site-sort .sort-list .sort-list-item-more .booths-testimonials .testimonials-item {
  width: 270px;
  height: 140px;
}
.main-nav .site-sort .sort-list .sort-list-item-more .goods-testimonials .testimonials-item {
  position: relative;
  width: 90px;
  height: 90px;
}
.main-nav .site-sort .sort-list .sort-list-item-more .goods-testimonials .testimonials-item .goods-money {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  text-align: center;
}

.quick-link-right {
  position: fixed;
  top: 20.5%;
  right: 10px;
  height: auto;
  z-index: 130;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.quick-link-right .item {
  position: relative;
  flex-direction: column;
  background-color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
  padding: 0.4rem;
  border-radius: 0.4rem;
}
.quick-link-right .item > .iconfont {
  font-size: 22px;
}
.quick-link-right .item > .chat-unRead-num {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--primary-color);
  padding: 0 6px;
  color: #fff;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
}
.quick-link-right .item > p {
  font-size: 12px;
  white-space: nowrap;
}
.quick-link-right .item:hover .tip {
  display: block;
}
.quick-link-right .item .tip {
  display: none;
  position: absolute;
  top: 50%;
  right: 110%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid var(--primary-color);
  padding: 0.8rem;
  border-radius: 0.4rem;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
}
.quick-link-right .item .tip:after, .quick-link-right .item .tip:before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left: 8px solid var(--primary-color);
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
}
.quick-link-right .item .tip:before {
  border-left: 8px solid #fff;
  right: -12px;
  z-index: 2;
}
.quick-link-right .item .tip .ewm-list {
  gap: 0.8rem;
}
.quick-link-right .item .tip .ewm {
  display: block;
  width: 100px;
  height: 100px;
  margin-bottom: 8px;
}
.quick-link-right .seller-item {
  color: #e4393c;
}
.quick-link-right .seller-item .iconfont {
  font-size: 26px;
}
.quick-link-right .seller-item .text {
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 1360px) {
  .all .quick-link-right .item > p {
    display: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
.page-header:hover .rainbow::before {
  animation: rotate 4s linear infinite;
}

.rainbow {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #ffffcc;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#ffffcc, #ffffcc), linear-gradient(#ccffff, #ccffff), linear-gradient(#ffcccc, #ffcccc), linear-gradient(#ccccff, #ccccff);
}
.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: white;
  border-radius: 4px;
}

.type219 {
  display: none;
}

.site-219 .type1 {
  display: none !important;
}
.site-219 .type219 {
  display: block !important;
}
.site-219 .header-bd .site {
  display: none !important;
}

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