@charset "UTF-8";
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-stretch {
  align-self: stretch;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-auto {
  flex: auto;
}

.flex-initial {
  flex: 0 auto;
}

.flex-none {
  flex: none;
}

.select-none {
  user-select: none;
}

.bg-white {
  background-color: #ffffff;
}

.body-scroll-lock {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

.lt-container {
  width: 1400px;
  margin-inline: auto;
  height: 100%;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
}

.lt-mall-fixed {
  position: fixed;
  right: 0;
  bottom: 200px;
}
.lt-mall-fixed .lt-mall-fixed__appbar {
  width: 60px;
  height: fit-content;
  background: #ffffff;
  box-shadow: -4px 0px 10px 0px rgba(226, 227, 228, 0.5);
  border-radius: 8px 0px 0px 8px;
  user-select: none;
  z-index: 9990;
}
.lt-mall-fixed .lt-mall-fixed__appbar .lt-mall-fixed__appbar__bar {
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  display: block;
}
.lt-mall-fixed .lt-mall-fixed__appbar .lt-mall-fixed__appbar__bar:hover {
  background: rgba(0, 0, 0, 0.05);
}
.lt-mall-fixed .lt-mall-fixed__appbar .lt-mall-fixed__appbar__bar:hover .appbar__bar-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.lt-mall-fixed .lt-mall-fixed__appbar .lt-mall-fixed__appbar__bar img {
  width: 28px;
  height: 28px;
}
.lt-mall-fixed .lt-mall-fixed__appbar .lt-mall-fixed__appbar__bar .appbar__bar-popup {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  width: max-content;
  height: auto;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(0);
  transform-origin: right center;
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.25s ease;
}
.lt-mall-fixed .lt-mall-fixed__appbar .lt-mall-fixed__appbar__bar .appbar__bar-popup::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #ffffff;
  transform: translateY(-50%);
}
.lt-mall-fixed .lt-mall-fixed__logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #E33533 0%, #FEB953 100%);
  box-shadow: -4px 0px 10px 0px rgba(226, 227, 228, 0.5);
  border-radius: 8px 0px 0px 8px;
  padding: 5px;
  box-sizing: border-box;
  margin-top: 8px;
  cursor: pointer;
}
.lt-mall-fixed .lt-mall-fixed__logo img {
  width: 100%;
  height: 100%;
}

.lt-wrapper {
  width: 100%;
}
.lt-wrapper.lt-mall-top {
  width: 100%;
  height: 88px;
  background-color: #BC2E20;
  position: relative;
  box-sizing: border-box;
  z-index: 1;
}
.lt-wrapper.lt-mall-top .lt-mall-top__logo {
  height: 56px;
  display: flex;
  align-items: center;
}
.lt-wrapper.lt-mall-top .lt-mall-top__logo span {
  color: #fff !important;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
}
.lt-wrapper.lt-mall-top .lt-mall-top__logo img {
  height: 56px;
  margin-right: 6px;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search {
  width: 648px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 100px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown {
  position: relative;
  flex: 0 0 80px;
  width: fit-content;
  height: 100%;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown .lt-dropdown__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 28px 0 16px;
  color: #333333;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown .lt-dropdown__trigger::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #666666;
  border-bottom: 1px solid #666666;
  transform: translateY(-65%) rotate(45deg);
  content: "";
  transition: all 0.2s ease-in-out;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown.is-open .lt-dropdown__trigger::after {
  transform: translateY(-25%) rotate(225deg);
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown .lt-dropdown__menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  z-index: 9999;
  min-width: 80px;
  width: max-content;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  /* 下向展开动画相关设置 */
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.8) translateY(-10px);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown.is-open .lt-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateY(0);
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown .lt-dropdown__item {
  display: flex;
  align-items: center;
  height: 36px;
  /* 左右 16px padding 结合 white-space: nowrap 将菜单宽度自然撑开 */
  padding: 0 16px;
  color: #333333;
  font-size: 14px;
  line-height: 36px;
  cursor: pointer;
  white-space: nowrap;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown .lt-dropdown__item:hover {
  color: #BC2E20;
  background: #f5f5f5;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search-dropdown .lt-dropdown__item.is-selected {
  color: #BC2E20;
  background: #f5f5f5;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search_input {
  width: 100%;
  min-width: 0;
  flex: 1;
  height: 100%;
  border-left: 1px solid #EAEAEA;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search_input input {
  height: 100%;
  width: 100%;
  font-size: 16px;
  padding-left: 12px;
  outline: none;
  border: none;
  box-sizing: border-box;
  line-height: 1;
  color: #222222;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search_button {
  width: 56px;
  margin-left: 6px;
  height: calc(100% - 6px);
  flex-shrink: 0;
  margin-right: 3px;
  background: #DF982D;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search_button:active {
  filter: brightness(1.05);
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search_button:hover {
  filter: brightness(1.05);
}
.lt-wrapper.lt-mall-top .lt-mall-top__search .lt-mall-top__search_button img {
  width: 24px;
  height: 24px;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth {
  display: flex;
  align-items: center;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang {
  position: relative;
  width: fit-content;
  height: fit-content;
  border-radius: 4px;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang:active {
  background: rgba(0, 0, 0, 0.1);
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang:hover {
  background: rgba(0, 0, 0, 0.1);
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang .lt-dropdown__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  height: 28px;
  border-radius: 4px;
  width: fit-content;
  padding-inline: 8px;
  color: #fff;
  gap: 4px;
  transition: background 0.2s ease-in-out;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang .lt-dropdown__trigger svg {
  width: 20px;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang .lt-dropdown__trigger::after {
  width: 16px;
  height: 16px;
  background: url("/static/home/image/arrow_caret_down.png");
  background-size: contain;
  transform-origin: center;
  content: "";
  transition: all 0.2s ease-in-out;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang.is-open .lt-dropdown__trigger::after {
  transform: rotate(180deg);
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang .lt-dropdown__menu {
  position: absolute;
  top: calc(100% + 0px);
  right: 0;
  z-index: 9999;
  width: max-content;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  /* 下向展开动画相关设置 */
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.8) translateY(-10px);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang.is-open .lt-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateY(0);
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang .lt-dropdown__item {
  display: flex;
  align-items: center;
  height: 28px;
  /* 左右 16px padding 结合 white-space: nowrap 将菜单宽度自然撑开 */
  padding: 0 12px;
  color: #333333;
  font-size: 14px;
  line-height: 36px;
  cursor: pointer;
  white-space: nowrap;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang .lt-dropdown__item svg {
  width: 20px;
  margin-right: 8px;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang .lt-dropdown__item:hover {
  color: #BC2E20;
  background: #f5f5f5;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth-lang .lt-dropdown__item.is-selected {
  color: #BC2E20;
  background: #f5f5f5;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth_item {
  height: 28px;
  border-radius: 4px 4px 4px 4px;
  width: fit-content;
  padding-inline: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease-in-out;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth_item img {
  width: 20px;
  height: 20px;
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth_item:active {
  background: rgba(0, 0, 0, 0.1);
}
.lt-wrapper.lt-mall-top .lt-mall-top__auth .lt-mall-top__auth_item:hover {
  background: rgba(0, 0, 0, 0.1);
}
.lt-wrapper.lt-mall-header {
  background: #F6F2F2;
  height: 54px;
  position: relative;
}
.lt-wrapper.lt-mall-header .lt-mall-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.lt-wrapper.lt-mall-header .lt-mall-header__nav .lt-mall-header__nav-category {
  width: fit-content;
  height: 22px;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 1px;
  margin-right: 24px;
  cursor: pointer;
}
.lt-wrapper.lt-mall-header .lt-mall-header__nav .lt-mall-header__nav-category img {
  width: 20px;
  height: 20px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__nav .lt-mall-header__nav_gap {
  width: 20px;
  height: 16px;
  border-left: 1px solid #333333;
}
.lt-wrapper.lt-mall-header .lt-mall-header__nav .lt-mall-header__nav-tabs {
  width: fit-content;
  height: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  display: flex;
  gap: 40px;
  align-items: center;
}
.lt-wrapper.lt-mall-header .lt-mall-header__nav .lt-mall-header__nav-tabs .lt-mall-header__nav-tab {
  cursor: pointer;
}
.lt-wrapper.lt-mall-header .lt-mall-header__nav .lt-mall-header__nav-tabs .lt-mall-header__nav-tab:hover {
  color: #BC2E20;
}
.lt-wrapper.lt-mall-header .lt-mall-header__nav .lt-mall-header__nav-tabs .lt-mall-header__nav-tab.active {
  font-weight: 600;
  text-decoration: underline;
  color: #BC2E20;
  text-decoration-color: #BC2E20;
  text-decoration-thickness: 3px;
  text-underline-offset: 18px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__cart {
  width: fit-content;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #BC2E20;
  font-weight: 400;
  font-size: 14px;
  color: #BC2E20;
  padding-inline: 12px;
  cursor: pointer;
}
.lt-wrapper.lt-mall-header .lt-mall-header__cart img {
  width: 20px;
  height: 20px;
}
.lt-wrapper.lt-mall-header #category-trigger {
  height: 100%;
}
.lt-wrapper.lt-mall-header #category-trigger:hover .lt-mall-header__category {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s 0.3 ease-in-out;
}
.lt-wrapper.lt-mall-header #category-trigger:hover .lt-mall-header__category .category__panel {
  height: 660px;
}
.lt-wrapper.lt-mall-header #category-trigger.active .lt-mall-header__category {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s 0.3 ease-in-out;
}
.lt-wrapper.lt-mall-header #category-trigger.active .lt-mall-header__category .category__panel {
  height: 660px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category {
  position: absolute;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  opacity: 0;
  top: 54px;
  visibility: hidden;
  cursor: default;
  z-index: 9990;
  transition: all 0.2s ease-in-out;
  will-change: transform, opacity;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel {
  width: 100%;
  padding-top: 28px;
  background: #ffffff;
  box-sizing: border-box;
  display: flex;
  height: 0px;
  overflow: hidden;
  justify-content: space-between;
  transition: all 0.2s ease-in-out;
  will-change: transform, opacity;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label {
  width: 245px;
  height: fit-content;
  flex-shrink: 0;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  position: relative;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item {
  width: 100%;
  height: 46px;
  background: transparent;
  box-sizing: border-box;
  color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.1 ease-in-out;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item:hover .category__panel_label-popup {
  z-index: 2 !important;
  display: flex;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item:hover .item-icon {
  display: none !important;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item:hover .item-icon-active {
  display: block !important;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item a {
  width: 100%;
  height: 46px;
  background: transparent;
  box-sizing: border-box;
  color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.1 ease-in-out;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item .category__panel_label-item-tag {
  width: 3px;
  height: 100%;
  background: transparent;
  margin-right: 10px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item .category__panel_label-item-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item .category__panel_label-item-icon .item-icon-active {
  display: none;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item .category__panel_label-item-icon img {
  width: 20px;
  height: 20px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item .category__panel_label-item-text {
  width: 160px;
  line-height: 20px;
  height: 20px;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item .category__panel_label-item-arrow {
  margin-inline: 8px;
  flex-shrink: 0;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item .category__panel_label-item-arrow img {
  width: 16px;
  height: 16px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item a:hover {
  background: #FFFFFF;
  color: #BC2E20;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-item a:hover .category__panel_label-item-tag {
  background: #BC2E20;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup {
  position: absolute;
  width: 1135px;
  height: 600px;
  left: 265px;
  top: 0;
  z-index: 0;
  background: transparent;
  cursor: default;
  display: none;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup.active {
  z-index: 1;
  display: flex;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content {
  width: 900px;
  height: 632px;
  overflow-y: auto;
  background-color: #ffffff;
  --sb-track-color: transparent;
  --sb-thumb-color: #D9D9D9;
  --sb-size: 4px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content::-webkit-scrollbar {
  width: var(--sb-size);
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content .category__popup_content-item {
  display: flex;
  gap: 20px;
  box-sizing: border-box;
  padding-bottom: 24px;
  margin-bottom: 24px;
  min-height: 124px;
  border-bottom: 1px solid #BC2E20;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content .category__popup_content-item .category__popup_content-item-left {
  width: 170px;
  height: 100px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content .category__popup_content-item .category__popup_content-item-left span {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 170px;
  height: 26px;
  color: #fff;
  background: #BC2E20;
  border-radius: 0px 0px 8px 8px;
  line-height: 26px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-size: 16px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content .category__popup_content-item .category__popup_content-item-left img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content .category__popup_content-item .category__popup_content-item-right {
  display: grid;
  flex: 1;
  min-width: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: fit-content;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content .category__popup_content-item .category__popup_content-item-right a {
  display: block;
  width: 100%;
  height: 20px;
  line-height: 20px;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_content .category__popup_content-item .category__popup_content-item-right a:hover {
  color: #BC2E20;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_brands {
  margin-left: 8px;
  width: 227px;
  height: 632px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  --sb-track-color: transparent;
  --sb-thumb-color: #D9D9D9;
  --sb-size: 4px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_brands::-webkit-scrollbar {
  width: var(--sb-size);
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_brands::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_brands::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_brands .category__popup_brands-item {
  width: 217px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lt-wrapper.lt-mall-header .lt-mall-header__category .category__panel .category__panel_label .category__panel_label-popup .category__popup_brands .category__popup_brands-item img {
  max-width: 100%;
  max-height: 100%;
}
.lt-wrapper.lt-mall-server {
  background: #F4F4F4;
  width: 100%;
  height: fit-content;
}
.lt-wrapper.lt-mall-server .lt-mall-server_container {
  padding-top: 64px;
  gap: 64px;
}
.lt-wrapper.lt-mall-server .lt-mall-server__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.lt-wrapper.lt-mall-server .lt-mall-server__top .lt-mall-server__top-title {
  height: 72px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  font-size: 48px;
  color: #333333;
  margin: 0;
  line-height: 72px;
}
.lt-wrapper.lt-mall-server .lt-mall-server__top .lt-mall-server__top-sub {
  height: 30px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  margin: 0;
  line-height: 30px;
}
.lt-wrapper.lt-mall-server .lt-mall-server__bottom {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 100px;
  padding-inline: 90px;
  box-sizing: border-box;
  margin-bottom: 91px;
}
.lt-wrapper.lt-mall-server .lt-mall-server__bottom .lt-mall-server__bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
}
.lt-wrapper.lt-mall-server .lt-mall-server__bottom .lt-mall-server__bottom-item img {
  width: 100px;
  height: 100px;
}
.lt-wrapper.lt-mall-footer {
  background: #1E1E1E;
  color: #ffffff;
  padding-top: 64px;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__top {
  display: flex;
  justify-content: space-between;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__top .lt-mall-footer__top-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__top .lt-mall-footer__top-item .lt-mall-footer__item-label {
  height: 22px;
  line-height: 22px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  user-select: none;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__top .lt-mall-footer__top-item .lt-mall-footer__item-link {
  height: 20px;
  line-height: 20px;
  font-weight: 400;
  font-size: 14px;
  color: #D9D9D9;
  cursor: pointer;
  user-select: none;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__top .lt-mall-footer__top-item .lt-mall-footer__item-link:not(.disabled):hover {
  color: #ffffff;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__top .lt-mall-footer__top-item .lt-mall-footer__item-link.disabled {
  user-select: auto;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__center {
  margin-top: 20px;
  display: flex;
  gap: 120px;
  justify-content: center;
  align-items: center;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__center .lt-mall-footer__center-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__center .lt-mall-footer__center-qrcode .lt-mall-footer__center-qrcode-img {
  width: 90px;
  height: 90px;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__center .lt-mall-footer__center-qrcode .lt-mall-footer__center-qrcode-img img {
  width: 100%;
  height: 100%;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__center .lt-mall-footer__center-qrcode .lt-mall-footer__center-qrcode-desc {
  height: 17px;
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 17px;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__bottom {
  margin-top: 39px;
  padding-block: 16px;
  border-top: 1px solid #363636;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__bottom .lt-mall-footer__bottom_top {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__bottom .lt-mall-footer__bottom_top .lt-mall-footer__bottom_top-item {
  height: 17px;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 17px;
  user-select: none;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__bottom .lt-mall-footer__bottom_top .lt-mall-footer__bottom_top-divider {
  height: 17px;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 17px;
  user-select: none;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__bottom .lt-mall-footer__bottom_bottom {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__bottom .lt-mall-footer__bottom_bottom .lt-mall-footer__bottom_bottom-item {
  height: 17px;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 17px;
  user-select: none;
}
.lt-wrapper.lt-mall-footer .lt-mall-footer__bottom .lt-mall-footer__bottom_bottom .lt-mall-footer__bottom_bottom-divider {
  height: 17px;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 17px;
  user-select: none;
}

/*# sourceMappingURL=main.css.map */
