.product-one {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(220, 220, 220, 1);
}

.shopCart-Label {
  width: 211px;
  position: relative;
  display: inline-block;
  margin-right: 6px;
  background-color: #fff;
}

.shopCart-LabelW {
  width: 209px;
  position: relative;
  display: inline-block;
  background-color: #fff;
}

.shopCart-card {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  z-index: 10;
  background-color: rgba(243, 243, 243, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.LabelCard {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 60px 0px 60px 0px;
}

.LabelCard-row {
  max-width: 1368px;
  width: 100%;
}

.hot-sale-fw {
  margin-top: 0px;
  margin-bottom: 0px;
  color: rgba(81, 136, 137, 1);
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 32px;
  text-align: center;
}

.ByGestoneContent {
  width: 100%;
  overflow: auto;
  white-space: nowrap;
}

.pad24 {
  padding-bottom: 24px;
}

.borderTran {
  border: 1px solid rgba(220, 220, 220, 1);
  text-align: right;
  border-top: 1px solid transparent;
  padding: 4px 8px;
}

#myTabContent {
  background-color: rgba(220, 235, 234, 1);
  padding: 32px 48px;
  width: 1368px;
}

@media screen and (max-width: 1600px) {
  .LabelCard-row {
    max-width: 1200px;
  }

  #myTabContent {
    max-width: 1200px;
  }

  .LabelCard-navigation {
    padding: 0 166px !important;
  }
}

@media screen and (max-width: 1400px) {
  .LabelCard-row {
    max-width: 1150px;
  }

  #myTabContent {
    max-width: 1150px;
  }

  .LabelCard-navigation {
    padding: 0 136px !important;
  }
}

@media screen and (max-width: 1300px) {
  .LabelCard-row {
    max-width: 1100px;
  }

  #myTabContent {
    max-width: 1100px;
  }

  .LabelCard-navigation {
    padding: 0 106px !important;
  }
}

@media screen and (max-width: 1200px) {
  .LabelCard-row {
    max-width: 1000px;
  }

  #myTabContent {
    max-width: 1000px;
  }

  .LabelCard-navigation {
    padding: 0 76px !important;
  }
}

@media screen and (max-width: 1100px) {
  .LabelCard-row {
    max-width: 900px;
  }

  #myTabContent {
    max-width: 900px;
  }

  .LabelCard-navigation {
    padding: 0 36px !important;
  }
}

/* 导航按钮容器 - 新增样式 */
.LabelCard-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 170px;
}

/* 导航按钮基础样式 */
.nav-btn {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(220, 220, 220, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: visible;
  transition: all 0.3s ease;
  box-shadow:
    0 1px 10px 0 rgba(0, 0, 0, 0.05),
    0 4px 5px 0 rgba(0, 0, 0, 0.08),
    0 2px 4px -1px rgba(0, 0, 0, 0.12);
}

.nav-btn:hover {
  background-color: #eeeeee;
  border-color: rgba(81, 136, 137, 0.5);
  scale: 1.05;
}

.nav-btn svg {
  color: rgba(81, 136, 137, 1);
  width: 24px;
  height: 24px;
}

/* Hover时显示按钮 */
.LabelCard:hover .nav-btn {
  opacity: 1;
  visibility: visible;
}

/* 调整LabelCard为相对定位，确保按钮定位正确 */
.LabelCard {
  position: relative;
}

/* 弹窗报错· */
/* 模板样式 - 初始隐藏 */
#errorTemplate {
  display: none;
}

/* 错误提示基础样式 */
.boxshaowCard {
  box-shadow:
    0px 8px 10px -5px rgba(0, 0, 0, 0.08),
    0px 16px 24px 2px rgba(0, 0, 0, 0.04),
    0px 6px 30px 5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 185, 176, 1);
  background-color: rgba(255, 240, 237, 1);
  color: rgba(173, 53, 47, 1);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  position: fixed;
  top: 152px;
  left: 50%;
  transform: translateX(-50%);
  padding: 13px 16px;
  z-index: 10010;
  border-radius: 8px;
  min-width: 200px;
  max-width: 400px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;

  display: none;
  opacity: 0;
  visibility: hidden;
}

/* 动态添加的样式 - 用于控制显示动画 */
.boxshaowCard.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  animation: slideIn 0.3s ease forwards;
}

/* 警告图标样式 */
.boxshaowCard .warning {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

/* 错误文本样式 */
.boxshaowCard .error-text {
  flex: 1;
  word-break: break-word;
  line-height: 1.4;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 动画效果 */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .boxshaowCard {
    top: 120px;
    max-width: 90%;
    margin: 0 16px;
    left: 50%;
    transform: translateX(-50%);
  }

  .boxshaowCard.show {
    animation: slideInMobile 0.3s ease forwards;
  }

  @keyframes slideInMobile {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
}

@media (max-width: 480px) {
  .boxshaowCard {
    top: 100px;
    font-size: 13px;
    padding: 10px 14px;
    gap: 10px;
  }
}

/* 点击可关闭的样式（可选） */
.boxshaowCard.clickable {
  cursor: pointer;
  pointer-events: auto;
}

.boxshaowCard.clickable:hover {
  background-color: rgba(255, 230, 227, 1);
  border-color: rgba(255, 165, 156, 1);
}

/* 不同类型提示的样式（可选扩展） */
.boxshaowCard.success {
  border-color: rgba(129, 199, 132, 1);
  background-color: rgba(237, 247, 237, 1);
  color: rgba(56, 142, 60, 1);
}

.boxshaowCard.warning {
  border-color: rgba(255, 183, 77, 1);
  background-color: rgba(255, 248, 225, 1);
  color: rgba(237, 108, 2, 1);
}

.boxshaowCard.info {
  border-color: rgba(100, 181, 246, 1);
  background-color: rgba(227, 242, 253, 1);
  color: rgba(25, 118, 210, 1);
}

/* 弹窗报错 */
@font-face {
  font-family: "Bulgari";
  src: url("/assets/fonts/Bulgari.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  /* 可选：提升性能 */
  font-display: swap;
  /* 避免文字闪现（FOIT） */
}

@media (min-width: 1400px) {
  .container {
    max-width: 1368px;
  }
}

.justCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  text-align: left;
}

.ViewAll {
  font-size: 16px;
  color: rgba(81, 136, 137, 1);
  margin-top: 32px;
  cursor: pointer;

  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(81, 136, 137, 1);
  width: 218px;
  border-radius: 8px 8px 8px 8px;
  padding: 7px 10px;
  text-align: center;
  font-weight: bold;
}

.ViewAllTop {
  margin-top: 10px;
}

.w100 {
  width: 100%;
}

.one-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: normal;
  height: 48px;
}

.two-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制显示2行 */
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  /* 设置行高，视觉效果更好 */
}

.hot-cart {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
}

.product_txt {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
}

.storeNew {
  color: rgba(0, 0, 0, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.storeOld {
  margin-right: 5px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  text-decoration: line-through;
}

.discount-display {
  color: rgba(0, 0, 0, 0.9);
  font-size: 14px;
}

.container-bom {
  padding: 30px 0rem;
}

.scenery-div {
  width: 100%;
  aspect-ratio: 1 / 0.3125;
}

.specialTitle {
  color: #fff;
  font-family: "Bulgari", Arial, sans-serif !important;
  font-size: 64px;
  text-align: center;
}

.specialContent {
  color: #fff;

  font-size: 16px;
  text-align: center;
  margin-top: 10px;

  /* max-height: 340px; */
  overflow: hidden;

  white-space: pre-line;
  word-break: break-word;
  overflow-wrap: break-word;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 15;
  /* 显示15行 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.homeColumn-top {
  margin-top: 30px;
}

.ByGestoneContent-item {
  width: 211px;
  display: inline-block;
}

.mtmt-0px {
  margin-top: 0px;
  font-weight: 600 !important;
  font-size: 18px !important;
}

.cart-total-mb {
  margin-bottom: 15px;
}

.ByGestoneContent::-webkit-scrollbar {
  height: 6px;
  cursor: pointer;
}

.ByGestoneContent::-webkit-scrollbar-track {
  background-color: rgba(238, 238, 238, 1);
  border-radius: 2px;
  /* border-left: 40px solid transparent;
    border-right: 40px solid transparent; */
  background-clip: padding-box;
  cursor: pointer;
}

.ByGestoneContent::-webkit-scrollbar-thumb {
  background-color: rgba(81, 136, 137, 1);
  border-radius: 2px;
  /* border-left: 40px solid transparent;
    border-right: 40px solid transparent; */
  background-clip: padding-box;
  min-width: 40px;
  cursor: pointer;
}

.ByGestoneContent::-webkit-scrollbar-thumb:hover {
  background-color: rgba(81, 136, 137, 1);
  cursor: pointer;
}

.ByGestoneContent-item {
  margin-right: 0px;
  margin-bottom: 0px;
  display: inline-block;
  margin-bottom: 15px;
}

.backRgba {
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  width: 120px;
  height: 38px;
  padding: 0px 5px;
}

.homeColumnCover {
  aspect-ratio: 1 / 0.6657;
  object-fit: cover;
  object-position: center;
}

.homeColumnTitle {
  color: rgba(81, 136, 137, 1);
  font-size: 18px;
  font-weight: 500;
  width: 584px;

  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.homeColumnTWO {
  overflow: hidden;
  max-height: 3em;
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
  margin-top: 8px;
  font-weight: bold;
}

.container-rowgap {
  width: 482px;
  background-color: #fff;
  height: 736px;
  padding: 8px 24px 50px 24px;
}

.container-rowfw {
  font-weight: 600;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 4px;
}

.homeColumnContent {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 设置为3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  /* 允许文本换行 */

  height: 67px;
}

.SpecialSWH {
  width: 632px;
  height: 736px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.SpecialClo1 {
    background-color: rgba(220, 235, 234, 1);
    width: 100%;
    height: 161px;
    padding: 16px 24px;
    position: relative;
}

.SpecialClo2 {
    background-color: #fff;
    width: 100%;
    height: 551px;
    padding: 23px 24px;
    position: relative;
}

.container-cT {
  max-width: 1600px !important;
}

.homeColumn-div {
  cursor: pointer;
}

.homeColumn-padd {
  padding: 16px 0px;
}

.homeColumn-top {
  margin-top: 40px;
}

.ZhuanLan {
  margin-top: 96px;
}

.title-Txt {
  font-family: "Bulgari", Arial, sans-serif !important;
  font-size: 28px;
  font-weight: 500;
}

.NowHw {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}

.NowHw-clom {
  flex-direction: column;
}

.tolearning {
  border-top: 1px solid rgba(81, 136, 137, 1);
  padding-top: 10px;
  margin-top: 10px;
}
.sectionDiv-w80 {
    width: 100%;
    padding-top: 24px;
}

.cpfooter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.field:after {
  border-color: rgba(220, 220, 220, 1);
}

.homeColumnTime {
  color: rgba(81, 136, 137, 1);
  font-size: 16px;
}

.copyright {
  font-size: 18px;
}

.footer-conact-link {
  font-size: 16px;
}

.footer-conact-block {
  display: flex;
  align-items: center;
}

.mt20px {
  margin-top: 20px;
}

.backRgba {
  cursor: pointer;
}

.backRgba:hover {
  transform: scale(1.05);
}

.price-filter-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.price-filter-container.collapsed {
  display: none !important;
}

.PriceSvg {
  transition: transform 0.3s ease;
}

.PriceSvg.rotated {
  transform: rotate(180deg);
}

.filter-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.price-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 15px;
}

.price-input-group {
  flex: 1;
}

.price-label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.price-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.price-input {
  width: 100%;
  padding: 5px 10px 5px 10px;
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 0px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

.flexcenter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.flexcenter-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(243, 243, 243, 1);
  width: 36px;
  height: 36px;
}

.FlexIocn {
  width: 20px;
  height: 20px;
}

.price-input:focus {
  /* border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); */
}

.currency-symbol {
  position: absolute;
  right: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  pointer-events: none;
}

.range-slider {
  position: relative;
  height: 40px;
  margin: 0px 25px 0px 0px;
}

.slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  transform: translateY(-50%);
}

.slider-range {
  position: absolute;
  height: 4px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
  /* background: linear-gradient(90deg, #3498db, #2ecc71); */
  border-radius: 3px;
  top: 16px;
}

.slider-thumb {
  position: absolute;
  top: 45%;
  width: 24px;
  height: 24px;
  background: white;
  /* border: 3px solid #3498db; */
  border: 1px solid rgba(0, 0, 0, 0.9);
  /* rgba(0, 0, 0, 0.90) */
  border-radius: 50%;
  transform: translate(0%, -50%);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  z-index: 2;
}

.slider-thumb:hover {
  transform: translate(0%, -50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-thumb.min {
  border: 1px solid rgba(0, 0, 0, 0.9);
}

.slider-thumb.max {
  transform: translate(0%, -50%);
  border: 1px solid rgba(0, 0, 0, 0.9);
}

.slider-value {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-value:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}

.slider-thumb:hover .slider-value {
  opacity: 1;
}

.price-range {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}

.bg-white-index {
  overflow: hidden;
}

.ByGestoneContent-item {
  overflow: hidden;
}

.NoUpImg {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.NoUpImg:hover {
  transform: scale(1.05);
}

.dynamic-imageD {
  transition: all 0.3s ease-in-out;
}

.dynamic-imageD:hover {
  transform: scale(1.02);
}

.homeColumnCover {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.homeColumnCover:hover {
  transform: scale(1.05);
}

.homeColumn-div {
  overflow: hidden;
}

.ZhuBaoCenter-img {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ZhuBaoCenter-img:hover {
  transform: scale(1.05);
}

.spe-flex-img {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spe-flex-img:hover {
  transform: scale(1.05);
}

.spe-flex-item {
  overflow: hidden;
}

@media (max-width: 768px) {
  .price-filter-container {
    padding: 12px 16px !important;
    margin: 0 16px;
  }

  .price-display {
    flex-direction: row;
    gap: 15px;
  }

  .price-input-group {
    width: 100%;
  }
  .SpecialSWH{
    width: 100vw;
    height: auto;
  }

  #myTabContent{
    max-width: 100%;
  }
  .container-rowgap{
    width: 100%;
  }
  .cuprow{
    flex-direction: column !important;
    padding: 0 16px;
  }
  .homeColumnTitle{
    width: 100%;
    white-space: wrap;
    font-size: 14px;
    font-weight: 400;
  }
  .homeColumnItemImg{
    max-width: 100%;
    width: 100%;
    height: 228px !important;
  }

  .SearchStore-icon{
    width: 20px !important;
    height: 20px !important;
  }
  .homeColumnTime{
    font-size: 14px !important;
  }
  .homeColumn-padd{
    padding: 32px 0 0 !important;
  }
  .SpecalTitile{
    font-size: 24px !important;
  }
  .SpecalContent{
    margin-top: 16px;
  }
}

.PriceSvg {
  width: 20px;
  height: 20px;
}

.PriceTxt {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
}

.PriceItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 14px;
}

.price-filter-Back {
  background-color: rgba(243, 243, 243, 1);
  padding: 10px 20px;
}

.price-filter-container.collapsed {
  display: none !important;
}

.price-filter-container-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.JanSuo {
  line-height: 42px;
  height: 42px;
  width: 68px;
  background-color: rgba(81, 136, 137, 1);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-left: 10px;

  cursor: pointer;
}

.price-filter-Wp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: rgba(243, 243, 243, 1);
}

.ZhuBaoCenter {
  width: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* align-items: center; */
  cursor: pointer;
}

.ZhuBaoCenter-flex {
  flex-direction: row;
  width: 100%;
  justify-content: flex-start;
}

.ZhuBaoCenter-txt {
  color: rgba(0, 0, 0, 0.9);
  font-size: 12px;

  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

/* 多选容器样式 */
.multi-select-container {
  width: 100%;
  /* margin: 0px auto; */
  padding: 0px;
  background-color: rgba(243, 243, 243, 1);
  /* border-radius: 12px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.multi-select-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* 多选项列表 */
.multi-select-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 单个选项样式 */
.multi-select-item {
  display: flex;
  align-items: center;
  padding: 12px 16px 12px 16px;
  background: transparent;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid rgba(220, 220, 220, 1);
}

.multi-select-item:hover {
  /* background: #e9ecef; */
  transform: translateX(1px);
}

.multi-select-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* 选中状态的勾选框 */
.multi-select-item input:checked ~ .checkmark {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 0, 0, 0.9);
}

/* 创建勾选标记 */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* 显示勾选标记 */
.multi-select-item input:checked ~ .checkmark:after {
  display: block;
}

/* 选项文本 */
.option-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 500;
  word-break: break-all;
  display: block;
  width: 180px;
}

/* 选中状态样式 */
.multi-select-item.selected {
  /* background: #e3f2fd; */
  /* border-left: 3px solid #2196f3; */
}

/* 选中计数区域 */
.selected-info {
  margin-top: 20px;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.selected-info span {
  font-weight: bold;
  color: #2196f3;
  margin: 0 5px;
}

/* 清空按钮 */
.btn-clear {
  padding: 6px 12px;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s;
}

.btn-clear:hover {
  background: #cc0000;
}

/* 全选按钮 */
.btn-select-all {
  padding: 8px 16px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.btn-select-all:hover {
  background: #45a049;
}

.multi-content-item {
  display: flex;
  align-items: center;
}

.multi-value-price {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  width: 30px;
  text-align: right;
}

.mk-product-item-mb0px {
  margin-bottom: 0px;
}

.titleProduct {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 500;

  display: flex;
  align-items: center;
  border-top: 1px solid rgba(220, 220, 220, 1);
}

.forGetPass {
    cursor: pointer;
}

.backContainer {
  background-color: rgba(244, 249, 249, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.backContainer-w80 {
  max-width: 1138px;
  padding: 80px 0px;
  overflow: hidden;
}

/* @media (min-width: 1200px) {
    .backContainer-w80 {
        max-width: 1140px;
    }
}

@media (min-width: 992px) {
    .backContainer-w80 {
        max-width: 960px;
    }
} */

.containermb {
  margin-bottom: 20px;
}

.col-Search {
  width: 20px;
  height: 20px;
}

.dropdown-content {
  min-height: 140px;
  overflow: auto;
}

.dropdown-content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* 滚动条轨道 - 整体背景 */
.dropdown-content::-webkit-scrollbar-track {
  background-color: rgba(189, 189, 189, 1);
  border-radius: 2px;
}

/* 滚动条滑块 - 可拖动部分 */
.dropdown-content::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 2px;
}

/* 滑块悬停状态 */
.dropdown-content::-webkit-scrollbar-thumb:hover {
  background-color: #000;
}

.selected-item {
  border: none;
  text-align: right;
  display: flex;
  align-items: center;
  border-radius: 0px;

  width: 100%;
  justify-content: space-between;
}

.custom-select-container {
  border-radius: 0px;
  margin-top: 10px;
  border: 1px solid rgba(220, 220, 220, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 432px;
}

.wokaopackageItems {
  margin-top: 5px;
  margin-bottom: 15px;
}

.wokaopackageItems-item {
  width: 80px;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(220, 220, 220, 1);
  margin-right: 0px;
  cursor: pointer;
  margin-bottom: 8px;
  padding: 4px 6px;
  text-align: center;
}

.widthGapitem .wokaopackageItems-item {
  height: 80px;
}

.wokaopackageItems-itemd {
  width: 80px;
  height: 80px;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(220, 220, 220, 1);
  margin-right: 0px;
  cursor: pointer;
  margin-bottom: 8px;
  padding: 4px 6px;
  text-align: center;
}

.tooltip-with-arrow {
  position: absolute;
  bottom: calc(100% + 10px);
  /* 悬浮在div上方10px处 */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* 箭头 - 指向下方 */
.tooltip-with-arrow::after {
  content: "";
  position: absolute;
  top: 100%;
  /* 箭头在tooltip底部 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* 悬浮时显示 */
.wokaopackageItems-item:hover .tooltip-with-arrow {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 15px);
  /* 悬浮时稍微上移，更明显 */
}

.wokaopackageItems-item-img {
  width: 50px !important;
  height: 50px !important;
}

.quanp {
  /* width: 16px; */
  /* height: 16px; */
  /* position: absolute; */
  /* bottom: 0px; */
  /* right: 0px; */
}

.isPerson {
  display: flex;
}

.NoPerson {
  display: none;
}

.mb-6Card {
  padding: 10px 15px;
}

.add-set-default {
  border: 1px solid #518889;
  padding: 7px 12px !important;
  font-size: 14px;
  border-radius: 8px;
  color: #518889 !important;
  font-weight: 600;
  background: #fff;
  height: 34px;
  line-height: 1;
  transition: all 0.3s ease;
}
.add-set-default:hover {
  background-color: #518889;
  color: #fff !important;
}
.add-set-default:hover svg path {
  fill: #fff !important;
}

.phoneAddress {
  border: 1px solid rgba(138, 110, 91, 1);
  padding: 10px 2px !important;
  font-size: 14px;
  border-radius: 8px;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border-color: transparent;
}

.FontWefht {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
}

.btn-mk-btn {
  border-radius: 8px;
  color: #fff !important;
  background-color: #b86d56 !important;
}

.btn-primaryCt {
  background-color: #518889;
  color: rgba(255, 255, 255, 0.9);
  width: 264px;
  height: 42px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.btn-primaryCt:hover {
  opacity: 0.8;
}

.btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.borderMb {
  border: 1px solid rgba(197, 197, 197, 1);
  padding: 0px 10px;
  background-color: #e9ecef;
}

.border-Mb {
  border: 1px solid rgba(197, 197, 197, 1);
  padding: 10px 0px;
}

.ln {
  display: inline-block;
}

.YourOrder-title {
  font-weight: bold;
  font-size: 32px;
  color: rgba(0, 0, 0, 0.9);
}

.flexAlign {
  display: flex;
  align-items: center;
}

.torecurrencyVal {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
  font-size: 18px;
}

.PositionStify {
  position: sticky;
  top: 180px;
  height: auto;
  padding: 24px 32px;
  box-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.12),
    /* 第一层：柔和阴影 */ 0px 4px 5px 0px rgba(0, 0, 0, 0.08),
    /* 第二层：主体阴影 */ 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
  /* 第三层：弥散阴影 */
}

.BackOrderBtn {
  border: 1px solid rgba(197, 197, 197, 1);
  background-color: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 0.6);
}

/* .phoneButtom:hover {
    border: 1px solid rgba(197, 197, 197, 1) !important;
    background-color: rgba(255, 255, 255, 1) !important;
    color: rgba(0, 0, 0, 0.6) !important;
} */

.cart-hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.9);
  outline: none;
  border: none;
  width: 100%;
  padding: 12px;
  margin-top: 0px;
}

.cart-hover:hover {
  background-color: #666666;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(220, 220, 220, 1);
}

.cart-title {
  font-weight: 600;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
}

.cart-close {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cart-items {
  height: calc(100% - 232px);
  overflow: auto;
  border-bottom: 1px solid rgba(220, 220, 220, 1);
  padding: 0px 32px;
}

.cart-items::-webkit-scrollbar {
  width: 4px;
  /* 垂直滚动条宽度 */
  height: 4px;
  /* 水平滚动条高度（如果有） */
}

/* 滚动条轨道 - 整体背景 */
.cart-items::-webkit-scrollbar-track {
  background-color: rgba(189, 189, 189, 1);
  /* 更柔和的背景 */
  border-radius: 2px;
}

/* 滚动条滑块 - 可拖动部分 */
.cart-items::-webkit-scrollbar-thumb {
  background-color: #333;
  /* 滑块颜色 */
  border-radius: 2px;
}

/* 滑块悬停状态 */
.cart-items::-webkit-scrollbar-thumb:hover {
  background-color: #000;
  /* 鼠标放上时更深 */
}

.cart-item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 24px;
  padding-top: 32px;
  border-bottom: 1px solid rgba(220, 220, 220, 1);
}

.cart-item-img {
  width: 100px;
  height: 100px;
}

.cart-item-info {
  width: 456px;
  margin-left: 32px;
}

.cart-item-name {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 2);
}

.cart-item-detail {
  font-size: 14px;
  margin-top: 8px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  color: rgba(0, 0, 0, 0.9);
  font-size: 18px;
  font-weight: 500;
}

.cart-item-remove {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: underline;
  cursor: pointer;
}

.cart-footer {
  padding: 32px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total-label {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
}

.total-amount {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
}

.cart-diolog {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.26);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 10001;
}

.cart-fixed {
  position: fixed;
  right: 0px;
  top: 0px;
  background-color: #fff;
  width: 644px;
  height: 100vh;
  z-index: 100002;

  animation: slideInRight 0.3s ease-out forwards;
  transform: translateX(100%);
  opacity: 0;
}

.quantity .qty-input {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}

.quantity .qty-input button.qty-count {
  background: none;
  border: 1px solid #ddd;
  color: #c2c4c5;
  font-size: 24px;
  padding: 5px 15px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}

.quantity .qty-input .product-qty {
  background: none;
  border: 1px solid #ddd;
  text-align: center;
  outline: none;
  color: #263e51;
  font-weight: 600;
  border-left: 0;
  border-right: 0;
  width: 60px;
  border-radius: 0;
}

.qty-count--minus {
  border: 1px solid rgba(220, 220, 220, 1) !important;
  border-right: 1px solid transparent !important;
}

.qty-count--add {
  border: 1px solid rgba(220, 220, 220, 1) !important;
  border-left: 1px solid transparent !important;
}

/* 导航项样式 */
.nav-item.dropdown {
  /* position: relative; */
}

#navTopd {
  /* max-height: 80vh; */
  overflow: auto;
}

#navTopd .nav-item {
  /* height: 50px; */
}

#navTopd-Two .nav-item {
  height: 50px;
}

#navTopd-Two .nav-link {
  /* display: flex;
  align-items: center; */
  height: auto;
}

#navTopd-Three .nav-link {
  display: flex;
  align-items: center;
}

#navTopd-Three .nav-item {
  height: 50px;
}

/* 下拉菜单默认隐藏 */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 85%;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  padding: 9px 12px;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

/* 悬停时显示下拉菜单 */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

/* 下拉菜单项样式 */
.dropdown-item {
  display: block;
  width: 132px;
  padding: 4px 12px;
  clear: both;
  font-weight: 400;
  color: #333;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 227, 219, 1);
  color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
}

.dropdown-item.active {
  background-color: #007bff;
  color: white;
}

/* 淡入动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-toggle::after {
  display: none;
}

.BilingDetails {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
}

.Deliverytitle {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
}

.address-body-left {
  /* border-right: 1px solid rgba(153, 153, 153, 1); */
  flex: 1;
  height: 50px;
}

.card-body {
  min-height: 80px;
  padding: 0px;
}

.address-body {
  /* border: 1px solid rgba(220, 220, 220, 1); */
}

.check-boxd {
  border-right: 1px solid rgba(220, 220, 220, 1);
  padding-right: 32px;
}

#goods .item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* border-top: 1px solid #eee; */
    /* border-left: 1px solid #eee; */
    /* border-right: 1px solid #eee; */
    border-bottom: 1px solid #eee;
    padding: 0px;
    /* padding-top: 24px; */
    padding-bottom: 24px;
}

#goods .item:first-child {
  padding-top: 0px;
}

#goods .item:last-child {
  border-bottom: 1px solid #eee;
}

.tow-title-line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 2);
}

.pay-item-title {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 500;
  margin-bottom: 0px;
}

.pay-time {
  padding-top: 5px;
  padding-bottom: 5px;
}

.pay-quantity {
  margin-top: 8px;
}

.text-ellipsis-wrapper {
  margin-top: 8px;
  width: 100%;
}

.total-amount .amount {
  font-weight: 400;
  font-size: 16px;
}

.set-btn {
  outline: none;
  border: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
  line-height: 48px;
  height: 48px;
  text-align: center;
  transition: all 0.3s ease;
}

.set-btn:hover {
  opacity: 0.8;
}

.btn-friend {
  color: #518889;
  background-color: #fff;
  border: 1px solid #518889;
  border-radius: 8px 8px 8px 8px;
}

.btn-Payment {
  color: #fff;
  background: #518889;
  border-radius: 8px 8px 8px 8px;
}

.fw700-16 {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.save {
  background: #518889;
  color: #fff;
  height: 42px;
  line-height: 42px;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.save:hover {
    opacity: 0.8;
}

.modal-add-body {
  padding: 0px 32px !important;
  margin-top: 0px !important;
}

.modal-footer {
  padding: 16px 24px;
}

.input-item {
  position: relative;
}

.order-content {
    background-color: #F3F3F3;
    padding: 24px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.order-details {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 16px 20px 18px 20px;
}

.order-content .fw700-16 {
  color: rgba(0, 0, 0, 0.9);
}

.nw {
  white-space: nowrap;
}

.Copy-link {
  text-decoration: underline;
  color: rgba(184, 109, 86, 1);
  margin-left: 5px;
  cursor: pointer;
}

.pay-title-fr {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 500;

  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.fw700-b {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 500;
  font-size: 16px;
}

.cfdd {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
}

.order-detail-h4 {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
  padding-bottom: 10px;
}

.payMoney {
  font-size: 24px;
  color: rgba(184, 109, 86, 1);
  font-weight: 600;
}

#friends {
  z-index: 9999;
}

/* 从右侧滑入 */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 如果需要关闭动画 */
.cart-fixed.closing {
  animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.flex-column-nav {
  flex-direction: column;
  align-items: flex-start;
}

#addressList .card-body {
  height: inherit;
  margin-bottom: 16px;
}

#addressList .address-body-left {
  height: inherit;
}

#selectAddress .modal-body {
  padding: 0px 24px;
}

.default {
  display: inline-block;
  width: 60px;
  height: 20px;
  background: rgba(255, 227, 219, 1);
  border-radius: 4px;

  font-weight: bold;
  font-size: 12px;
  color: rgba(140, 68, 48, 1);
  text-align: center;
  line-height: 20px;
}

.OneWhileNowrap {
  margin-left: 5px;
}

.form-check-input:checked {
  background-color: rgba(81, 136, 137, 1);
  border-color: rgba(81, 136, 137, 1);
}

.clearAll {
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
  color: rgba(81, 136, 137, 1);
}

.ZhuBaoCenter-img {
  border-radius: 50%;
  border: 2px solid transparent;
}

.ZhuBaoCenter-imgactive {
  border: 2px solid rgba(0, 0, 0, 0.9);
}

.lable-item {
  background-color: rgba(243, 243, 243, 1);
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  padding: 6px 16px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.lable-item span {
  font-weight: 600;
  width: 80%;
}

#AppliedFilters-content {
  gap: 0px;
  flex-wrap: wrap;
  display: flex;
}

#AppliedFilters-content2 {
  gap: 5px;
  flex-wrap: wrap;
  display: flex;
}

.ZhuBaoCenter:hover .ZhuBaoCenter-img {
  /* border: 2px solid rgba(0, 0, 0, 0.90); */
}

.shutItemImg {
  width: 18px;
  height: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: rgba(231, 231, 231, 1);
}

.Discover {
  padding: 12px 32px;
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 0.9);
  font-size: 20px;
  width: 160px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}

#sameKind {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sameKind {
  color: rgba(255, 255, 255, 0.9);
  font-size: 52px;
  font-weight: 800;
  font-style: italic;
}

#verification {
  position: fixed;
  bottom: 180px;
  left: 0px;
  width: 100%;
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.Subtract {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
}

#msgView {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1001;
}

.sidebar-widget {
  border-bottom: 1px solid #4c4c4c;
  margin-bottom: 20px;
  width: 280px;
}

.form-btn-white {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.60);
  border: 1px solid rgba(197, 197, 197, 1) !important;
  width: 218px;
  padding: 13px 19px;
  height: auto;
  font-size: 24px;
}

.form-btn-yellow {
  background-color: rgba(81, 136, 137, 1)!important;
  color: rgba(255, 255, 255, 0.90) !important;
  border: 1px solid #fff !important;
  width: 218px;
  padding: 13px 19px;
  height: auto;
  font-size: 24px;
}

.age-verification-title {
  font-weight: 500;
  font-size: 32px;
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.9);
}

.actead img {
  border: 1px solid #000;
}

.wokaopackageItems-item-border {
  border: 1px solid #000;
}

.SearchStore {
  display: flex;
  align-items: center;
  justify-content: center;
}

.SearchStore-content {
  background-color: rgba(243, 243, 243, 1);
  padding: 10px 16px;

  display: flex;
  align-items: flex-end;
  width: 100%;
}

.SearchStore-input {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 18px;
  font-family: none;
}

.SearchStore-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.SearchStore-close {
  width: 24px;
  height: 24px;
  margin-left: 15px;
}

.absoluteContent {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.26);
  width: 100%;
  height: 100vh;

  display: none;
}

.zanwushuju {
  width: 200px;
  height: 150px;
}

.no-data-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.nodataBtn {
  cursor: pointer;
  width: 216px;
  height: 42px;
  background-color: #fff;
  margin-top: 32px;

  border-radius: 8px 8px 8px 8px;
  border: 1px solid #518889;

  font-weight: bold;
  font-size: 18px;
  color: #518889;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nodataBtn:hover {
  background-color: #518889;
  color: #fff;
}

.nodataBtn:hover svg path {
  fill: #fff;
}

.mt-100px {
  margin-top: 200px;
  width: 100%;
}

.listthree {
  min-height: 500px;
}

.swiper-wrapper {
  position: relative;
}

.banner-title {
  font-size: 76px;
  color: #fff;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;

  font-family: "Bulgari", Arial, sans-serif;
  white-space: pre-wrap;
}

.banner-txt {
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  font-weight: 300;
  font-family:
    PingFangSC,
    PingFang SC;

  white-space: pre-wrap;
}

#login-status {
  display: none;
}

.aligcenter {
  align-items: center !important;
}

.borderRed {
  border: 1px solid rgba(213, 73, 65, 1) !important;
}

.my-account-area input:focus {
  border-color: #518889;
  outline: none;
  box-shadow: none;
}

.c184 {
  color: rgba(184, 109, 86, 1);
}

.ifNew {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 22.15px;
  line-height: 22.15px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.9);
}

.nav-link-nav {
  cursor: pointer;
}

.ellipsis {
  border: none;
  background: transparent;
  cursor: default;
  min-width: auto;
  padding: 12px 20px;
}

.allGoodsTitle {
  font-size: 32px;
  margin-top: 0px;
  line-height: 32px;
  font-weight: 600;
}

.fw-6 {
  font-weight: 600;
  font-size: 16px;
}

.img-fluid {
  max-width: 888px;
}

.scenery-div {
  object-fit: cover;
  object-position: center;

  height: 600px;
  display: block;
}

/*三级分类*/
/* 三级分类悬停样式 */
.three-level-nav {
  position: relative;
}

/* 二级菜单 */
.three-level-nav .second-level {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: auto;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  z-index: 1000;
  animation: fadeInDown 0.3s ease;
}

.fontWt600 {
  font-weight: 600;
}

.three-level-nav:hover .second-level {
  display: block;
}

/* 二级菜单项 */
.three-level-nav .dropdown-submenu {
  position: relative;
}

.three-level-nav .dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.three-level-nav .dropdown-item:hover {
  /* background: #f8f9fa; */
  /* color: #007bff; */
}

/* 三级菜单 */
/* 三级分类样式 */
.hover-three-level {
  /* position: relative; */
}

.dropdown {
  position: inherit;
}

/* 二级菜单样式 */
.hover-three-level .level-2-menu {
  min-width: 160;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  margin-top: 5px;
}

/* 二级菜单项 */
.hover-three-level .level-2-item {
  position: relative;
}

.hover-three-level .dropdown-item {
  padding: 6px 12px;
  color: #333;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s;
  position: relative;
}

/* 选中样式 - 使用你指定的背景色 */
.hover-three-level .dropdown-item.active,
.hover-three-level .dropdown-item:hover {
  background: rgba(255, 227, 219, 1);
  border-radius: 6px;
}

/* 三级菜单容器 */
.hover-three-level .level-3-menu {
  position: absolute;
  top: -8px;
  /* 与二级菜单顶部对齐 */
  left: 100%;
  min-width: 160px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  /* 初始隐藏 */
  display: none;
}

/* 悬浮在二级菜单项上时显示三级菜单 */
.hover-three-level .level-2-item.has-level-3:hover .level-3-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 三级菜单项 */
.hover-three-level .level-3-item {
  display: block;
  padding: 6px 12px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

/* 三级菜单选中样式 */
.hover-three-level .level-3-item.active,
.hover-three-level .level-3-item:hover {
  background: rgba(255, 227, 219, 1);
  border-radius: 6px;
}

.VIEWALL {
  text-decoration: underline;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .hover-three-level .level-3-menu {
    position: static;
    border: none;
    box-shadow: none;
    margin-left: 20px;
    padding-left: 10px;
    border-left: 2px solid #eee;
  }

  .hover-three-level .level-2-item.has-level-3:hover .level-3-menu {
    transform: none;
  }
}

/* 去掉所有箭头 */
.hover-three-level .dropdown-toggle::after {
  display: none !important;
}

/*三级分类*/

.main-title {
  font-size: 64px;
  color: #fff;
  font-family: "Bulgari", Arial, sans-serif;
  text-align: center;
}

.main-subtitle {
  font-family:
    PingFangSC,
    PingFang SC;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;

  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  text-overflow: ellipsis;
}

.TopMarn {
  height: 36px;
  background-color: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.centerTopImg {
  width: 300px;
  height: 50px;
}

.shopCart {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

#navTops {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ViewAllShow {
  color: rgba(140, 68, 48, 1);
  text-decoration: underline;
  margin-top: 20px;
  font-size: 14px;
  cursor: pointer;
}

.nowrap {
  word-break: break-all;
}

.pay-title-fr {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.NoHuanhan {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.left-all-body {
  width: 360px;
  margin-right: 50px;
  flex: 1;
}

.right-all-body {
  flex: 4;
  height: 100%;
}

.classPImg {
  width: inherit;
  /* aspect-ratio: 1/0.1875; */
  object-fit: cover;
  object-position: center;
  height: 360px;
}

.allgoods-svg {
  display: none;
}

.hotSalesCard {
  width: 19%;
  display: inline-block;
}

.YouMight {
  /* gap: 10px;
    display: flex;
    flex-wrap: wrap; */
}

.borderChoose {
    border: 1px solid #518889 !important;
    background: #F4F9F9 !important;
}

.fwt6 {
  font-weight: 600;
}

.mb60 {
  margin-bottom: 60px;
}

.sidebar-widget svg path {
  fill: #19191a;
}

.modal-footer-adre {
  border: none !important;
  display: block;
  padding: 16px 24px;
  padding-top: 0px;
  z-index: 1000;
}

.homeColumn-top {
  background-color: rgba(184, 109, 86, 1);
}

.rad0px {
  border-radius: 0px !important;
}

.swiper-container {
  position: relative;
}

.footNav-btn {
  display: none;
}

.offcanvas .nav-link {
  font-family: "Bulgari", Arial, sans-serif !important;
  font-size: 14px !important;
}

.lineHe15 {
  word-break: break-all;
}

.tooltipElee {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
}

.product-cart-btn-card .rad0px {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row !important;
}

#BuyNowPrice {
  margin-left: 10px;
}

#AppliedFilters {
  word-break: break-all;
  background-color: rgba(243, 243, 243, 1);
}

@media screen and (max-width: 767px) {
  #AppliedFilters2 {
    margin-bottom: 10px;
  }

  .header {
    position: sticky;
    top: 0px;
    left: 0px;
    /* height: 60px; */
  }

  .box {
    position: relative;
    height: auto;
  }

  .TopMarn {
    padding: 5px 10px;
    height: inherit;
  }

  .swiper-box {
    padding: 0px !important;
  }

  .SearchStore-content{
    padding: 6px 16px;
  }

  .brand-col-center {
    display: flex;
    padding-left: 20px;
  }

  .centerTopImg {
    width: 66px;
    height: auto;
  }

  .phonemaxwi {
    width: 100% !important;
  }

  .top60 {
    top: 2px;
  }

  .navbar-icons .bi {
    font-size: 1.5rem;
  }

  .shopCart {
    width: 24px;
    height: 24px;
  }

  .col-Search {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 10;
  } 
  .lable-item{
    padding: 3px 8px;
  }

  .SearchStore-input {
    width: 100% !important;
  }

  .shutItemImg{
    background-color: inherit;
  }

  .plRight {
    padding-right: 50px !important;
    left: 60%;
  }

  .product-one {
    /* margin: 5px; */
    border-radius: 0px;
  }

  .goods-img {
    border-radius: 0px;
  }

  .one-ellipsis {
    white-space: inherit;
    display: -webkit-box;
    /* 必须 */
    -webkit-box-orient: vertical;
    /* 必须 */
    -webkit-line-clamp: 3;
    /* 显示的行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    /* 推荐设置行高 */
    max-height: calc(1.4em * 3);
    /* 可选：计算最大高度 */
  }

  .lineHe15 {
    line-height: 20px;
  }

  .bg-white-index {
    margin: 5px;
  }

  .NoWhileRap {
    white-space: inherit;
  }

  .mat10 {
    margin-top: 10px !important;
  }

  .scenery-div {
    height: 500px;
  }

  .NoUpImg {
    width: 45vw !important;
    aspect-ratio: 1/1;
    object-fit: cover;
  }

  /* .ByGestoneContent::-webkit-scrollbar {
        height: 4px;
        cursor: pointer;
    }

    .ByGestoneContent::-webkit-scrollbar-track {
        background-color: rgba(238, 238, 238, 1);
        border-radius: 2px;
        border-left: 0px solid transparent;
        border-right: 0px solid transparent;
        background-clip: padding-box;
        cursor: pointer;
    }

    .ByGestoneContent::-webkit-scrollbar-thumb {
        background-color: #A6A6A6;
        border-radius: 2px;
        border-left: 0px solid transparent;
        border-right: 0px solid transparent;
        background-clip: padding-box;
        min-width: 40px;
        cursor: pointer;
    }

    .ByGestoneContent::-webkit-scrollbar-thumb:hover {
        background-color: #A6A6A6;
        cursor: pointer;
    } */

  .hot-sale {
    font-size: 28px;
  }

  .container-cT {
    white-space: nowrap;
  }

  .NowHw {
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow: auto;
  }

  .NowHwPd10 {
    padding-right: 10px;
  }

  .left-all-body {
    margin-right: 0px;
    /* display: none; */
    position: fixed;
    right: -100%;
    top: 0px;
    height: 100vh;
    z-index: 10011;
    width: 90%;
    background-color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .left-all-body.show{
    right: 0px;
  }

  .homeColumn-padd-div{
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .sidebar-widget-flex {
    padding: 8px 16px;
    border-bottom: 1px solid rgba(197, 197, 197, 1);
    justify-content: space-between;
    background: #fff !important;
  }

  #AppliedFilters {
    padding: 0px 16px;
  }

  .PriceItem {
    padding: 0px 16px;
  }

  .range-slider {
    margin: 10px 24px 0px 0px;
    height: 35px;
  }
  .slider-track{
    height: 0 !important;
  }

  .two-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 设置为3行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
  .slider-range{
    height: 2px !important;
  }

  .mk-product-item .mk-product-content {
    height: auto;
  }

  .classPImg {
    width: 100%;
    aspect-ratio: 375/200;
    object-fit: cover;
    object-position: center;
  }

  .allGoodsTitle {
    font-size: 24px !important;
  }

  .allgoods-svg svg path {
    fill: inherit;
  }

  .FilterAll {
    margin-left: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
  }

  .allgoods-svg-posi {
    position: fixed;
    bottom: 20px;
    width: 90%;
    left: 5%;
    z-index: 10;
    background-color: #518889;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 6px;
    cursor: pointer;
  }
  .custom-select-container {
    width: 100%;
  }

  .product-cart-btn-card {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    background-color: #fff;
    padding: 14px 16px 24px 16px;
    z-index: 10000;

    border-top: 1px solid rgba(220, 220, 220, 1);
  }

  .product-cart-btn-item {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
  }

  .product-cart-btn-item .btn {
    width: 48%;
    margin-bottom: 0px !important;
    border-radius: 0px !important;
  }

  .lockItem {
    border: none;
    background-color: transparent;
    padding: 0px 8px;
  }

  .backContainer {
    margin-top: 30px;
  }

  .hotSalesCard {
    width: 48%;
    display: inline-block;
  }

  .product-details
    .container
    .product-main
    .product-content
    .product-media
    .product-image
    #mainImg {
    width: 100%;
    height: 100%;
  }

  .backContainer-w80 {
    width: 90%;
    padding: 20px 0px;
  }

  .cart-fixed {
    width: 80%;
  }

  .cart-items {
    padding: 0px 16px;
  }

  .cart-item-detail {
    margin-top: 5px;
  }

  .cart-item-img {
    width: 64px;
    height: 64px;
  }

  .cart-item-info {
    margin-left: 12px;
  }

  .cart-item-price {
    font-size: 16px;
  }

  .cart-item {
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .cart-footer {
    padding: 8px 16px;
  }

  .cart-items {
    height: calc(100% - 190px);
  }

  .total-amount {
    margin-bottom: 10px;
    margin-top: 0px;
  }

  .total-label {
    margin-bottom: 10px;
  }

  .nodataBtn {
    width: 200px;
  }

  .Phoneheader-icon {
    width: 24px;
    height: 24px;
    display: inherit;
  }

  .Phoneheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background-color: #518889;

    width: 100%;
    position: sticky;
    height: auto;
    top: 0px;
    z-index: 10;
  }

  .Phoneheader-div {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }

  .d-flex-Payment {
    margin-bottom: 0px !important;
    border-top: 1px solid rgba(220, 220, 220, 1);
  }

  .TopMarn {
    /* display: none; */
  }

    #DeliveryAddS {
        padding: 0px !important;
        /* padding-bottom: 20px !important; */
        border-bottom: 1px solid rgba(197, 197, 197, 1);
        border-radius: 0px !important;
    }

    .Deliverytitle {
        margin-top: 0px;
        margin-bottom: 12px;
    }

  .address-body {
    background-color: rgba(243, 243, 243, 1);
    border: none;
  }

    .address-body-left {
        /* width: 80%; */
    }

  .backWihte {
    padding: 0px !important;
  }

  .check-box {
    background-color: #fff !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  #goods .item {
    border-bottom: none;
  }

  .alignCenter-card {
    width: 100% !important;
    border-bottom: 1px solid rgba(197, 197, 197, 1);
    padding-bottom: 10px;
  }

  .ViewAllShow {
    margin-top: 10px;
    margin-bottom: 10px;
  }

    .PDBD {
        /* padding-bottom: 10px; */
        /* border-bottom: 1px solid rgba(197, 197, 197, 1); */
        /* border-radius: 0px !important; */
        margin-bottom: 0;
    }

  .check-boxd {
    border: none;
  }

  .custom-select-container {
    border: none;
  }

  .svgColor svg path {
    fill: rgba(0, 0, 0, 0.9);
  }

  .title-mb0 {
    margin-bottom: 0px !important;
  }

  #selectAddress .modal-body {
    padding: 24px 16px;
  }

  #addressList .card-body {
    padding-bottom: 10px !important;
  }

  .mb-6Card .mb-3 {
    margin-bottom: 5px !important;
  }

  .set-default {
    bottom: 15px;
  }

  .set-as-default {
    margin-left: 3px;
  }

  .OneWhileNowrap {
    width: 100% !important;
  }

  .OneWhileNowrap-w220 {
    width: 100% !important;
  }

  .addreedetail {
    font-weight: 600;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.9);
    margin-top: 5px;
    margin-bottom: 5px;
  }

  #selectAddress .modal-body {
    overflow: auto;
  }

  .HomeAbSo {
    width: 80%;
    max-height: 100%;
    overflow: hidden;
  }

  .specialContent {
    margin-top: 0px;
    font-size: 14px;
    max-height: 340px;
    overflow: hidden;
  }

  .HomeAbSo .justCenter {
    margin-top: 15px;
  }

  .specialTitle {
    font-size: 28px;
    margin-top: 0px;
  }

  .homeColumn-top {
    margin-top: 0px;
  }

  .containermb {
    display: none;
  }

  .sectionDiv-w80 {
    padding-top: 0px;
    padding-left: 16px;
    padding-right: 16px;
  }

  #footer-login-before .ccb {
    text-align: center;
    font-size: 14px;
  }

  .footer-letter-form {
    margin-top: 15px;
  }

  .footerbankbg {
    padding: 12px 0;
  }

  .ongpageImg {
    height: 500px;
  }

  .pdt0 {
    /* padding-left: 0px; */
    padding-right: 0px;
  }

  .main-title {
    font-size: 28px;
  }

  .main-subtitle {
    font-size: 14px;
  }

  .containerH1 {
    font-family: "Bulgari", Arial, sans-serif;
  }

  .mtg-5 {
    margin-top: 15px !important;
  }

  .containerH1-mt {
    margin-top: 32px;
    margin-bottom: 25px;
  }

  .SearchStore-content {
    display: flex;
    align-items: center;
    position: absolute;
    width: 90%;
    left: 5%;
  }

  .SearchStore-input {
    width: auto;
  }

  #pageNation {
    margin-top: 15px;
    padding: 0px 0px 15px 0px !important;
  }

  .shop-area {
    padding: 20px 0px 0px 0px !important;
  }

  .allgoodsOver {
    overflow: auto;
    height: calc(100vh - 65px);
  }

  .Filter {
    margin-left: 8px;
    font-size: 16px;
  }
  #goodsCategorys{
    padding: 0 16px;
  }

  .popupWind {
    position: fixed;
    z-index: 10010;
    background-color: rgba(0, 0, 0, 0.26);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;

    display: none;
  }

  .VewResults-po {
    position: sticky;
    bottom: 0px;
    left: 0px;
    padding: 8px 16px;
    background-color: #fff;
    border-top: 1px solid rgba(197, 197, 197, 1);
  }

  .VewResults {
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    background: #518889;
  }

  .price-display {
    margin-bottom: 10px;
  }

  .PriceItem-left {
    padding: 0px;
  }

  .mt-100px {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .selected-item {
    border: 1px solid rgba(197, 197, 197, 1);
  }

  .modal-footer-adre {
    padding-top: 15px !important;
    border-top: 1px solid rgba(220, 220, 220, 1) !important;
  }

  .mt-mt20 {
    margin-top: 15px;
  }

  .fw16500 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .SpaveOver {
    word-break: break-all;
    white-space: inherit !important;
    background-color: #DCEBEA;
    padding: 12px 20px;
  }

  #friendPayLink {
    white-space: inherit !important;
    color: rgba(0, 0, 0, 0.9) !important;
    font-weight: 500;
    font-size: 14px !important;
  }

  #friends-pay-goods {
    padding: 0px !important;
  }

  .borderBtm {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 197, 197, 1);
    width: 100% !important;
    min-height: 100px;
  }

  .total-amountd {
    padding-left: 0px !important;
  }

  .order-details {
    border-bottom: 1px solid rgba(197, 197, 197, 1);
    border-radius: 0px;
  }

  .offcanvas-back {
    background-color: #518889;
  }

  .table-responsive-xxl {
    overflow: inherit !important;
  }

  .padOrder {
    padding: 15px;
  }

  .order-select {
    margin-left: 0px;
  }

  .serach-box {
    margin-left: 0px !important;
  }

  #content {
    margin-top: 0px !important;
  }

  .padOrder {
    padding: 0px 15px !important;
  }

  .mobile-order-list-item .product-items {
    padding-right: 0px;
    padding-left: 0px;
  }

  .product-card {
    padding: 16px 0px !important;
  }

  .to-pay {
    margin-right: 0px !important;
    width: auto !important;
    text-align: center;
  }

  .padOrder-pd0 {
    padding: 0px !important;
  }

  .mobile-order-list-item {
    padding: 0px;
    /* border-bottom: 1px solid rgba(197, 197, 197, 1); */
  }

  .product-item {
    border-bottom: none !important;
    /* border-bottom: 1px solid rgba(197, 197, 197, 1) !important; */
  }

  .product-card {
    padding: 0px 0px 16px 0px !important;
  }

  .CheckTheDetails {
    text-decoration: underline;
    font-size: 14px;
    color: rgba(140, 68, 48, 1);
    display: flex;
    align-items: center;
    justify-content: center !important;
  }

  .order-no-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: rgba(0, 0, 0, 0.6) !important;
    font-weight: 500 !important;
  }

  .product-item {
    display: flex;
    align-items: flex-start !important;
  }

  .goods-name {
    font-weight: 500 !important;
    font-size: 16px !important;
  }

  .productSkus div {
    color: rgba(0, 0, 0, 0.9) !important;
    margin-top: 5px;
  }

  .DocPrice {
    font-size: 16px !important;
  }

  .DocCount {
    color: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    font-weight: 400;
  }

  .offcanvas .nav-link:hover {
    color: rgba(0, 0, 0, 0.9) !important;
  }

  .Subtract {
    object-fit: cover;
    object-position: center;
    height: 45vh;
  }

  /* .box{
        display: none;
    } */
  #Person-Icon svg path {
    fill: #f3f3f3;
  }

  .nav-item .active {
    border-bottom: none !important;
  }

  .btn-close-btm svg path {
    fill: #19191a;
  }

  #navTopd svg path {
    /* fill: #19191a; */
  }

  .btn-close-btm {
    filter: inherit !important;
    background-image: url("data:image/svg+xml,%3csvg%20width%3d%2735%27%20height%3d%2735%27%20viewBox%3d%270%200%2024%2024%27%20fill%3d%27none%27%20xmlns%3d%27http%3a%2f%2fwww.w3.org%2f2000%2fsvg%27%3e%3cg%20id%3d%27menu-unfold%2020px%27%3e%3cg%20id%3d%27Union%27%3e%3cpath%20d%3d%27M21.0008%2018.0207L3.00173%2018L3%2019.5L20.9991%2019.5207L21.0008%2018.0207z%27%20fill%3d%27black%27%20fill-opacity%3d%270.9%27%2f%3e%3cpath%20d%3d%27M12.75%2011.25L3.00086%2011.25L3.00086%2012.75L12.75%2012.75V11.25z%27%20fill%3d%27black%27%20fill-opacity%3d%270.9%27%2f%3e%3cpath%20d%3d%27M21.0008%204.52071L3.00173%204.5L3%206L20.9991%206.02071L21.0008%204.52071z%27%20fill%3d%27black%27%20fill-opacity%3d%270.9%27%2f%3e%3cpath%20d%3d%27M15.05%2012.6104C14.65%2012.3104%2014.65%2011.7104%2015.05%2011.4104L19.8%207.8479C20.2944%207.47708%2021%207.82987%2021%208.4479L21%2015.5729C21%2016.1909%2020.2944%2016.5437%2019.8%2016.1729L15.05%2012.6104zM19.5%2014.0729L19.5%209.9479L16.75%2012.0104L19.5%2014.0729z%27%20fill%3d%27black%27%20fill-opacity%3d%270.9%27%2f%3e%3c%2fg%3e%3c%2fg%3e%3c%2fsvg%3e") !important;
    background-size: 26px 26px !important;
    /* 强制图标大小为35x35 */
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 40px !important;
    /* 按钮容器更大一些 */
    height: 40px !important;
    opacity: 1 !important;
  }

  #navTopd .nav-link {
    font-family: "Bulgari", Arial, sans-serif;
    font-size: 28px;
    padding: 0;
  }

  .storeNew {
    font-weight: 600;
  }

  #navTopd .nav-link {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
  }

  .center {
    justify-content: center !important;
    margin-top: 20px;
  }

  .modal-fullscreen-sm-down .modal-content {
    width: 90%;
    height: 70%;
  }

  #verification {
    position: fixed;
    bottom: 10%;
    left: 0px;
    width: 100%;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .mk_checkout-payment-method {
    margin-top: 0px;
  }

  .form-btn-white {
    width: 164px;
    padding: 10px 6px;
    margin-right: 8px;
    border-radius: 0px;
    font-size: 16px;
  }

  .form-btn-yellow {
    width: 164px;
    padding: 10px 6px;
    border: 1px solid rgba(0, 0, 0, 0.9) !important;
    margin-right: 0px;
    border-radius: 0px;
    font-size: 16px;
  }

  .age-verification-content {
    width: 90%;
  }

  .swiper-slide .container {
    width: 90% !important;
  }

  .classLEFTBD {
    width: 95% !important;
  }

  .NoDataOMg {
    width: 200px;
    height: 150px;
  }

  .txt-under {
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.9);
  }

  #DeliveryAddS svg path {
    fill: #19191a;
  }

  .nodataJustAddress {
    height: 65% !important;
  }

    .Pt15px {
        margin-bottom: 15px !important;
    }

    .Pt12px {
        margin-bottom: 12px !important;
    }

  #shipper-error-message {
    padding-bottom: 10px;
  }

  .modal-content-disalog {
    width: 90%;
    margin: 5%;

    top: 25%;
  }

  .fontSize16p {
    font-size: 16px !important;
  }

  #navTopd-Two .nav-link {
    padding: 0 !important;
    color: rgba(0, 0, 0, 0.9) !important;
  }

  #navTopd-Two svg path {
    fill: #19191a;
  }

  .SanHan {
    height: 80px;
  }

  .SearchStore-content {
    display: flex;
    align-items: center;
    position: absolute;
    width: 92%;
    left: 4%;
  }

  .banner-title {
    font-size: 28px;
    font-family: "Bulgari", Arial, sans-serif !important;
  }

  .banner-txt {
    font-size: 14px;
    font-family: none !important;
  }

  .Clearall-div {
    text-decoration: underline;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
    font-size: 400;
    margin-right: 10px;
    display: inline-block;
  }

  .classMt30 {
    margin-top: 30px !important;
  }

  .mtmt-0px {
    font-weight: 700;
  }

  .addAddress input {
    margin-top: 0px;
  }

  .ByGestoneContent {
    gap: inherit;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 15px;
  }
  .homeSpecialname{
    font-size: 24px !important;
  }

  .img-bg {
    height: inherit;
  }

  .wokaopackageItems-item {
    margin-bottom: 10px;
    height: 80px;
  }

  .wokaopackageItems-item-w {
    height: auto !important;
  }

  .PriceItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    margin-bottom: 8px;
  }

  .flexCOlmb {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px;
  }

  .footer__payment {
    display: flex;
  }
  .footer__payment img {
    width: 25px !important;
    height: 16px !important;
  }

  .SpaceBet {
    gap: 0% !important;
  }
  .hot-cart {
    height: 44px;
    font-size: 14px;
  }
  .product-one .card-body {
    min-height: 70px;
  }
  .copyright {
    font-size: 14px;
  }
  .cpfooter hr {
    opacity: 1;
    margin: 12px 0;
  }
  .field {
    margin-bottom: 12px;
  }
  .pay-item-title{
    font-size: 16px !important;
  }
  .container-rowgap{
    padding: 32px 16px !important;
    padding-bottom: 0px !important;
    height: auto !important;
  }
  .container-rowfw{
    margin-bottom: 12px;
    font-size: 18px;
  }
  .shopCart-LabelW{
    width: calc(50% - 6px) !important;
  }
  .SpecialClo1{
    width: auto;
    height: auto;
    padding: 12px 16px;
    margin:0 16px;
  }
  .CupRight-card{
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    justify-content: center;
    margin-top: 15px;
  }
  .CupRight-card svg{
    width: 16px;
    height: 16px;
  }
}

.NavContent {
  margin-top: 20px;
}

.NavPdTitle {
  padding-bottom: 20px;
  padding-right: 40px;
  padding-left: 40px;

  font-size: 24px;
  text-align: left;
}

.NavPdRight {
  margin-top: 0px;
  padding-right: 40px;
  padding-left: 40px;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 290px;

  gap: 12px 36px;
}

.NavPdRight div {
  color: #000;
}

.NavPdTitle a {
  color: #000;
}

.NavPdBoder {
  border-left: 1px solid rgba(231, 231, 231, 1);
}

.NavPdRight-item {
  padding-top: 0px;
  padding-right: 0px;

  font-size: 14px;
  min-height: 32px;
}

.video-block {
  aspect-ratio: 560/398;
}

.video-block img {
  aspect-ratio: 560/398;
}

.NavPdRight-item a {
  display: flex;
  align-items: center;
}

.NavPdRight-item img {
  width: 32px;
  height: 32px;
  margin-right: 15px;
}

.NavPdRight-item div {
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  /* 标准属性（部分浏览器支持） */
  display: -moz-box;
  -moz-box-orient: vertical;
  -moz-line-clamp: 2;

  display: box;
  box-orient: vertical;
  line-clamp: 2;

  /* 基础属性 */
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  width: 108px;

  font-family:
    PingFangSC,
    PingFang SC;
  white-space: normal;
  text-align: left;
}

.NavPdRight-item:hover {
  text-decoration: underline;
  cursor: pointer;
}

.dropdownItem {
  background-color: rgba(244, 249, 249, 1);
  display: inline-block;
  /* padding: 9px 16px; */
  width: 19%;
  white-space: normal;
  border-radius: 8px;
  cursor: pointer;
}

.dropdownItem a {
  color: #000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;

  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.dropdownItem img{
    width: 102px !important;
    height: 68px !important;
}

.TwoElement {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80%;
}

.FlexWarp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 1368px;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 12px;
}

.dropdown-mega-menu {
  position: absolute;
  top: 119px;
  width: 100%;
  background-color: rgba(220, 235, 234, 0.7);
  left: 0;
  height: auto;
  font-family: none;
  display: flex;
  justify-content: center;

  /* 添加优化样式 */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-x: auto;

  /* opacity: 1;
    visibility: visible; */
  /* white-space: nowrap; */
  /* text-align: center; */
}

.NavContent {
  display: inline-block;
}

.hover-three-level:hover .dropdown-mega-menu {
  opacity: 1;
  visibility: visible;
}

.NavPdRight-dropdown-div {
  display: flex;
  align-items: center;
  width: 50%;
}

.NavPdRight-dropdown-div a {
  display: flex;
  align-items: center;
  width: 100%;
}

.NavPdRight-dropdown-div a img {
  width: 32px;
  height: 32px;
}

.NavPdRight-dropdown-div a div {
  color: #000;
  font-size: 14px;
  padding-left: 15px;
  font-family: none;
}

.itemgap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.offcanvas .nav-item-person {
  height: inherit !important;
}

.no-wrap-ft12 {
  font-size: 18px !important;
  color: rgba(81, 136, 137, 1);
  font-weight: 600;
}

.no-wrap-ft12 h1,
.no-wrap-ft12 h2,
.no-wrap-ft12 h3,
.no-wrap-ft12 h4,
.no-wrap-ft12 h5 {
  font-size: 12px !important;
}

.classW25 {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

.classW25 div {
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  text-align: center;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制显示行数 */
  -webkit-box-orient: vertical;
  /* 垂直方向排列 */
  overflow: hidden;
  /* 超出隐藏 */
  text-overflow: ellipsis;
  /* 超出显示省略号 */
  line-height: 1.5;
  /* 行高，根据字体调整 */
  max-height: calc(1.5em * 2);
}

.RingDetails {
  display: flex;
  align-items: center;
}

.RingDetails img {
  width: 20px;
  height: 20px !important;
}

/* 蒙版样式 */
.yunshu-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
}

/* 弹窗样式 */
.yunshu-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 584px;
  padding: 48px 32px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10002;
  text-align: center;
}

/* 显示状态 */
.yunshu-modal-overlay.active,
.yunshu-modal.active {
  opacity: 1;
  visibility: visible;
}

.yunshu-modal.active {
  transform: translate(-50%, -50%) scale(1);
}

/* 图标区域 */
.yunshu-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  /* background-color: #f0f0f0; */
  /* 临时颜色 */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

/* 标题 */
.yunshu-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  margin: 0 0 16px 0;
  line-height: 1.4;
  animation: fadeInUp 0.5s ease 0.2s both;
}

/* 内容 */
.yunshu-modal-content {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  margin: 0 0 32px 0;
  line-height: 1.6;
  animation: fadeInUp 0.5s ease 0.3s both;
}

/* 按钮 */
.yunshu-modal-button {
  width: 100%;
  padding: 16px 0;
  background-color: rgba(81, 136, 137, 1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease 0.4s both;
}

.yunshu-modal-button:hover {
  background-color: rgba(0, 0, 0, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.yunshu-modal-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.yunshu-modal-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.yunshu-modal-button:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

.PositionRe a {
  width: 100%;
}

.PositionRe-img {
  width: 100%;
}

/* 动画关键帧 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(40, 40);
    opacity: 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .yunshu-modal {
    width: 90%;
    max-width: 400px;
    padding: 32px 24px;
  }
}

.overWord {
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .classW25 div {
    white-space: normal;
    word-break: break-all;
  }

  .titleProductphone {
    border-top: 1px solid rgba(197, 197, 197, 1) !important;
  }

  .PositionRe {
    /* gap: 1%; */
    width: 48%;
  }

  .SpaceBet {
    gap: 1%;
  }
  
}
@media screen and (min-width: 676px) {
  .container-CenterLove {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 736px;

    position: absolute;
    top: 570px;
    z-index: 10;
    left: 50%;
    transform: translate(-50%);
  }
}


.container-Love {
  display: flex;
  align-items: center;
  gap: 24px;
}

.scrollable-container {
  white-space: nowrap;
  overflow: auto;
}

.myTabList {
  white-space: nowrap;
  overflow: auto;
  display: block;
  padding-bottom: 20px;
}

.myTabList li {
  display: inline-block !important;
  margin-right: 16px;
  border-radius: 8px;
}

.myTabList .nav-link {
  border-radius: 8px;
  color: rgba(81, 136, 137, 1);
}

.myTabList::-webkit-scrollbar {
  height: 5px;
  cursor: pointer;
}

.myTabList::-webkit-scrollbar-track {
  background-color: rgba(238, 238, 238, 1);
  border-radius: 2px;
  background-clip: padding-box;
  cursor: pointer;
}

.myTabList::-webkit-scrollbar-thumb {
  background-color: rgba(81, 136, 137, 1);
  border-radius: 2px;
  background-clip: padding-box;
  min-width: 40px;
  cursor: pointer;
}

.myTabList::-webkit-scrollbar-thumb:hover {
  background-color: rgba(81, 136, 137, 1);
  cursor: pointer;
}

.GoodsImg {
  width: 333px;
  aspect-ratio: 333 / 209;
}

.LabelCard-row-C {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.LabelCard-back {
  background-color: #fff;
}

.MrGDimg {
  position: relative;
  display: flex;
  flex-direction: column;
}

.MrGDimg span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 20px;
}

.cuprow {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.homeColumnItemImg {
  height: 374px;
  max-width: 562px;
  aspect-ratio: 562 / 374;
}

.SpecalTitile {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.homeColumn-padd {
  padding: 0px 80px;
  width: 100%;
}

.SpecalContent {
  color: #fff;
}

.homeSpecialname {
  color: rgba(255, 255, 255, 0.9);
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.Botmtitle-Txt {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
}

.BotmColumnContent {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;

  background-color: transparent !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 20px !important;
  height: 20px !important;
  width: 100%;
  margin-top: 12px !important;
}

.BotmColumnContent p {
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.90) !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
}

.BotmColumnContent span {
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.90) !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
}

.learning {
  border-top: 1px solid rgba(255, 255, 255, 1);
  padding: 28px 0px;
  cursor: pointer;
}

.pad20px {
  padding-bottom: 20px;
}

.itemImgcover {
  width: 95%;
  aspect-ratio: 3 / 2;
}

.Home6Prant {
  width: 16.5%;
  display: inline-block;
}

.trackList {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.Home6Prant .cup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 19px 16px;
  border-radius: 8px;

  cursor: pointer;
}

.Home6Prant {
  border-radius: 8px;
}

.cupTxt {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: bold;
  margin-top: 12px;
  text-align: center;
}

.pdTop30px {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pdTop80px {
  padding-top: 80px;
}

.fixedCP {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 10010;
  box-shadow:
    0px 8px 10px -5px rgba(0, 0, 0, 0.08),
    0px 16px 24px 2px rgba(0, 0, 0, 0.04),
    0px 6px 30px 5px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* 添加默认隐藏和过渡效果 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.fixedCP.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sidebar-widget-Back {
  background-color: rgba(243, 243, 243, 1);
  padding: 12px 16px;
  font-weight: 600;
}

.placeholderFt {
  line-height: 42px;
  height: 42px;
  border-radius: 8px;
  padding: 9px 16px;
  width: 80%;
  border: 1px solid rgba(197, 197, 197, 1);
}

.PriceItem-left {
  background-color: rgba(243, 243, 243, 1);
}

.FlexSide {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.clearAll {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

.CategoryDetails {
  padding: 12px 16px;
  font-size: 16px;
  border-bottom: 1px solid rgba(220, 220, 220, 1);
  background-color: rgba(81, 136, 137, 1);
  cursor: pointer;
}

.CategoryDetail {
  padding: 12px 16px;
  font-size: 16px;
  border-bottom: 1px solid rgba(220, 220, 220, 1);
  background-color: rgba(244, 249, 249, 1);
  cursor: pointer;
}

.CategoryDetails:hover {
  transform: scale(1.03);
}

.CategoryDetail:hover {
  transform: scale(1.03);
}

.CategoryDetail a {
  font-size: 16px;
  width: 100%;
  color: rgba(81, 136, 137, 1) !important;
}

.CategoryDetails a {
  font-size: 16px;
  color: rgba(244, 249, 249, 1) !important;
  width: 100%;
}

.rightWhite {
  width: 16px;
  height: 16px;
}

.h5ItemWy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0rem;
}

.h5ItemLeft {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 0rem;
}

.mb0 {
  margin-bottom: 0px;
}

.mr15px {
  margin-right: 15px;
}

.badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: rgba(81, 136, 137, 1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
}

.LableItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 364px !important;
  height: 42px;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid rgba(197, 197, 197, 1);
}

.Catesname {
  word-break: break-all;
  padding: 10px 12px;
}

.CatesList {
  width: 364px !important;
  height: 246px;
  overflow: auto;
  border-radius: 8px;
  border: 1px solid rgba(197, 197, 197, 1);
  box-shadow: 0px 16px 24px 2px rgba(0, 0, 0, 0.04);
  padding: 9px 16px;

  position: absolute;
  top: 100%;
  z-index: 10011;
  background-color: #fff;
}

.Catesname:hover {
  background-color: rgba(244, 249, 249, 1);
}

.CatesList::-webkit-scrollbar {
  width: 4px;
  cursor: pointer;
}

.CatesList::-webkit-scrollbar-track {
  background-color: rgba(238, 238, 238, 1);
  border-radius: 2px;
  /* border-left: 40px solid transparent;
    border-right: 40px solid transparent; */
  background-clip: padding-box;
  cursor: pointer;
}

.CatesList::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  /* border-left: 40px solid transparent;
    border-right: 40px solid transparent; */
  background-clip: padding-box;
  min-width: 20px;
  cursor: pointer;
}

.CatesList::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.LabelCardItem {
    display: flex;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
}

.animated-list {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
    border: 1px solid transparent !important;
    /* 初始状态无边框 */
    box-shadow: none !important;
    /* 初始状态无阴影 */
}

.animated-list.expanded {
    max-height: 300px;
    /* 根据你的内容调整，大于实际高度即可 */
    opacity: 1;
    border: 1px solid rgba(197, 197, 197, 1) !important;
    box-shadow: 0px 16px 24px 2px rgba(0, 0, 0, 0.04) !important;
}

.LableItem {
    cursor: pointer;
    /* 添加手型光标表示可点击 */
    user-select: none;
    /* 防止文字被选中 */
}

.dropdown-icon {
    transition: transform 0.3s ease;
    /* 图标旋转动画 */
}

.loginleftCard {
    width: 50%;
    display: inline-block;
}

.loginRightCard {
    width: 50%;
    display: inline-block;
}

.two-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 限制为两行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Home6Prant {
    margin-bottom: 32px;
}

.CreteTime {
    display: flex;
    align-items: center;
}

.CreteTime_div {
    background-color: rgba(244, 249, 249, 1);
    border-radius: 8px 8px 8px 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    padding: 16px 20px;

  cursor: pointer;
}

.CreteTime_div div {
    /* display: block; */
}

.CupRight{
   margin-right: 8px; 
}

.CupRight-card{
    display: flex;align-items: center;position: absolute;top: 18px;right: 24px;color: rgba(81, 136, 137, 1);font-weight: 600;cursor: pointer;
}

@media screen and (max-width: 767px) {
    .container-Love {
        flex-direction: column;
        background: #fff;
    }

  /* .navbar-brand img{
        width: 96.86px;
        height: 77.06px;
    } */

  #container-pd0 {
    display: flex;
    flex-direction: column;
  }
  .SearchStore-content {
    background: #fff;
    border-radius: 6px 6px 6px 6px;
    border: 1px solid #c5c5c5;
    top: 48px;
  }
  .SearchStore-input {
    font-size: 14px;
  }

  .footer-conact-link{
    font-size: 12px;
  }
  .footer-link-div{
    text-decoration: underline;
  }

  .CupRight{
    text-decoration: underline;
    font-weight: 400;
  }
  .SpecialClo2{
    padding: 0 16px;
    height: auto;
    margin-bottom: 32px;
  }
  .spe-col2{
    width: calc(50% - 6px) !important;
  }
  .homeColumnTWO{
    font-size: 14px !important;
  }
  .byGestone-content{
    margin-top: 0 !important;
  }
  .trackList{
    flex-wrap: wrap;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 24px;
  }
  .Home6Prant{
    width: calc(50% - 6px);
    margin-bottom: 0;
  }
  .learning{
    margin: 0 16px;
    padding: 24px 0;
  }
  .learning:last-of-type{
    padding-bottom: 0;
  }

  .CreteTime_div{
    margin: 0 16px 16px;
    padding: 8px 12px;
    flex-direction: column;
    align-items: start;
  }
  .faq-index-title{
    margin-left: 0 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: normal;
  }
  .ViewAll{
    margin-top: 16px !important;
    width: 163px !important;
  }
  .Home6Prant .cup{
    padding: 10px 16px;
  }
  .Botmtitle-Txt{
    font-size: 18px;
  }
  .hot-sale-fw{
    font-size: 24px !important;
  }
  .GoodsImg{
    width: auto;
  }
  .LabelCard-row{
    max-height: fit-content !important;
    padding: 0 16px;
  }
  .MrGDimg{
    width: calc(50% - 6px);
  }
  .scrollable-container{
    padding-bottom: 8px;
  }
  .myTabList{
    margin: 0 -16px 0 0;
    padding-bottom: 16px !important;
    padding-left: 0 !important;
  }
  .shopCart-Label{
    width: 46% !important;
    margin-right: 2px !important;
    flex-shrink: 0;
  }
  .sidebar-widget{
    width: 100%;
    margin-bottom: 12px;
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
    .sectionDiv-w80 {
        width: 90%;
        max-width: 95%;
    }
}

@media screen and (min-width: 1550px) {
    .sectionDiv-w80 {
        max-width: 1536px;
    }
}

.padd10{
    padding: 9px 16px;
}

.padd10 img{
    width: 48px !important;
    height: 48px !important;
}

.pd115{
    padding: 0px 115px;
}

.accordion-body-div h1,
.accordion-body-div h2,
.accordion-body-div h3,
.accordion-body-div h4,
.accordion-body-div h5,
.accordion-body-div span,
.accordion-body-div p,
.accordion-body-div div {
  background-color: #F4F9F9 !important;  /* 替换为你想要的颜色 */
}

.padTop128{
  padding-top: 38px;
}