/* 弹窗报错· */
/* 模板样式 - 初始隐藏 */
#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: 1800px;
    }
}

.bulgari-text {
    font-family: 'Bulgari', Arial, sans-serif;
}

.header {
    font-family: 'Bulgari', Arial, sans-serif !important;
}

.hot-sale {
    font-family: 'Bulgari', Arial, sans-serif !important;
    font-size: 40px;
    margin-top: 64px;
}

.justCenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left {
    text-align: left;
}

.ViewAll {
    font-size: 16px;
    color: rgba(140, 68, 48, 1);
    text-decoration: underline;
    text-decoration-color: rgba(140, 68, 48, 1);
    /* 红色下划线 */
    text-decoration-thickness: 2px;
    /* 可选：设置下划线粗细 */
    text-underline-offset: 3px;
    /* 可选：下划线与文字间距 */
    margin-bottom: 32px;
    cursor: pointer;
}

.one-ellipsis {
    white-space: nowrap;
    /* 强制不换行 */
    overflow: hidden;
    /* 隐藏溢出内容 */
    text-overflow: ellipsis;
    /* 溢出部分用省略号代替 */
}

.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: 14px;
    color: rgba(0, 0, 0, 0.90);
}

.product_txt {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.90);
}

.storeNew {
    color: rgba(140, 68, 48, 1);
    font-size: 14px;
}

.storeOld {
    margin-left: 10px;
    color: rgba(0, 0, 0, 0.60);
    font-size: 14px;
    text-decoration: line-through;
}

.discount-display {
    margin-left: 10px;
    color: rgba(0, 0, 0, 0.90);
    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: 28px;
    word-break: break-all;
}

.ByGestoneContent {
    /* white-space: nowrap; */
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scrollbar-gutter: stable;
}

.ByGestoneContent::-webkit-scrollbar {
    height: 4px;
    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: #A6A6A6;
    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: #A6A6A6;
    cursor: pointer;
}

.ByGestoneContent-item {
    margin-right: 5px;
    margin-bottom: 20px;
    display: inline-block;
}

.backRgba {
    margin-top: 20px;
    background-color: rgba(184, 109, 86, 1);
    color: #fff;
    width: 120px;
    height: 38px;
    padding: 0px 5px;
}

.homeColumnCover {
    aspect-ratio: 1 / 0.6657;
    object-fit: cover;
    object-position: center;
}

.homeColumnTitle {
    color: rgba(0, 0, 0, 0.90);
    font-size: 18px;
    font-weight: 500;

    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.homeColumnContent {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 设置为3行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    /* 允许文本换行 */

    height: 67px;
}

.homeColumnTime {
    margin-top: 10px;
}

.container-cT {
    max-width: 1600px !important;
}

.homeColumn-div {
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.12);
    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;
}

.sectionDiv-w80 {
    max-width: 1600px !important;
    width: 100%;
    padding-top: 48px;
}

.cpfooter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.field:after {
    border-color: rgba(220, 220, 220, 1);
}

.footer-link-div {
    text-decoration: underline;
}

.copyright {
    font-size: 18px;
}

.footer-conact-link {
    font-size: 16px;
}

.footer-conact-block {
    display: flex;
    align-items: center;
}

.mt20px {
    margin-top: 20px;
}

.mt94px {
    margin-top: 94px;
}

.backRgba {
    cursor: pointer;
}

.backRgba:hover {
    transform: scale(1.05);
}

.cup {
    cursor: pointer;
}

.homeColumn-padd-div {
    padding: 16px;
}



.price-filter-container {
    max-width: 800px;
    margin: 0 auto;
    /* background: white; */
    border-radius: 12px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.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: 30px;
    gap: 20px;
}

.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: 11.5px 46px 11.5px 16px;
    border: 2px solid rgba(0, 0, 0, 0.90);
    border-radius: 0px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.price-input:focus {
    /* border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); */
}

.currency-symbol {
    position: absolute;
    right: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    pointer-events: none;
}

.range-slider {
    position: relative;
    height: 40px;
    margin: 20px 0 40px;
}

.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: 6px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.60));
    /* background: linear-gradient(90deg, #3498db, #2ecc71); */
    border-radius: 3px;
    top: 16px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    background: white;
    /* border: 3px solid #3498db; */
    border: 1px solid rgba(0, 0, 0, 0.90);
    /* 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.90);
}

.slider-thumb.max {
    transform: translate(0%, -50%);
    border: 1px solid rgba(0, 0, 0, 0.90);
}

.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;
}

.dynamic-imageD{
  transition: all 0.3s ease-in-out;
}

.dynamic-imageD:hover {
    transform: scale(1.00);
}

@media (max-width: 768px) {
    .price-filter-container {
        padding: 20px;
    }

    .price-display {
        flex-direction: column;
        gap: 15px;
    }

    .price-input-group {
        width: 100%;
    }
}

.PriceSvg {
    width: 20px;
    height: 20px;
}

.PriceTxt {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.90);
}

.PriceItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    margin-bottom: 14px;
}

.price-filter-container {
    margin: 0 auto;
    /* background: white; */
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.price-filter-container.collapsed {
    display: none !important;
}

.price-filter-container-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.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.90);
    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: #fff;
    /* 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: 0px 0px 12px 0px;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    width: 100%;
    justify-content: space-between;
}

.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.90);
    border-color: rgba(0, 0, 0, 0.90);
}

/* 创建勾选标记 */
.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.90);
    font-weight: 500;
}

/* 选中状态样式 */
.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.90);
}

.mk-product-item-mb0px {
    margin-bottom: 0px;
}

.titleProduct {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.90);
    font-weight: 500;
}

.backContainer {
    background-color: rgba(250, 250, 250, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.backContainer-w80 {
    width: 80%;
    padding: 80px 0px;
}

.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: 50px;
    display: inline-block;
    position: relative;
    border: 1px solid rgba(220, 220, 220, 1);
    margin-right: 5px;
    cursor: pointer;
}

.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 transparent;
    padding: 0px !important;
    font-size: 14px;
    border-radius: 8px;
    color: rgba(184, 109, 86, 1) !important;
    font-weight: 600;
}

.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.90);
}

.btn-mk-btn {
    border-radius: 8px;
    color: #fff !important;
    background-color: #B86D56 !important;
}

.btn-primaryCt {
    background-color: rgba(0, 0, 0, 0.90);
    color: rgba(255, 255, 255, 0.90);
    width: 264px;
    height: 48px;
}

.btn:hover {
    background-color: rgba(0, 0, 0, 0.90);
    color: rgba(255, 255, 255, 0.90);
}

.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-size: 18px;
    color: rgba(0, 0, 0, 0.90);
    font-weight: 500;
}

.flexAlign {
    display: flex;
    align-items: center;
}

.torecurrencyVal {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.90);
    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.60);
}

.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.60) !important;
}

.cart-hover {
    background-color: rgba(0, 0, 0, 0.90);
    color: rgba(255, 255, 255, 0.90);
    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.90);
}

.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.90);
    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.90);
    font-size: 18px;
    font-weight: 500;
}

.cart-item-remove {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.90);
    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.90);
    font-weight: 600;
}

.total-amount {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.90);
    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;
}

/* 下拉菜单默认隐藏 */
.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, .15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(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.90);
    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.90);
    font-weight: 600;
}

.Deliverytitle {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.90);
}

.address-body-left {
    border-right: 1px solid rgba(153, 153, 153, 1);
    flex: 1;
    height: 50px;
}

.card-body {
    min-height: 80px;
    padding: 8px 16px;
}

.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: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: 16px;
    color: rgba(0, 0, 0, 0.90);
    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;
}

.total-amount {
    font-weight: 400;
    font-size: 16px;
}

.total-amount .amount {
    font-weight: 400;
    font-size: 16px;
}

.set-btn {
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
    line-height: 48px;
    height: 48px;
    text-align: center;
}

.btn-friend {
    color: rgba(0, 0, 0, 0.90);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.90);
}

.btn-Payment {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.90);
    border: 1px solid rgba(0, 0, 0, 0.90);
}

.fw700-16 {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.60);
}

.save {
    background-color: rgba(0, 0, 0, 0.90);
    color: #fff;
    height: 42px;
    line-height: 42px;
    border: none;
    outline: none;
}

.modal-add-body {
    padding: 0px 32px !important;
    margin-top: 0px !important;
}

.modal-footer {
    padding: 24px 32px;
}

.input-item {
    position: relative;
}

.order-content {
    background-color: #F5F5F5;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.order-details {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 16px 20px 18px 20px;
}

.order-content .fw700-16 {
    color: rgba(0, 0, 0, 0.90);
}

.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.90);
    font-weight: 500;

    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.fw700-b {
    color: rgba(0, 0, 0, 0.90);
    font-weight: 500;
    font-size: 16px;
}

.cfdd {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.90);
    font-weight: 600;
}

.order-detail-h4 {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.90);
    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 32px;
}

.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: #B86D56;
    border-color: #B86D56;
}

.clearAll {
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.90);
}

.ZhuBaoCenter-img {
    border-radius: 50%;
    border: 2px solid transparent;
}

.ZhuBaoCenter-imgactive {
    border: 2px solid rgba(0, 0, 0, 0.90);
}

.lable-item {
    background-color: rgba(243, 243, 243, 1);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.90);
    padding: 3px 8px;
    border-radius: 4px;
}

#AppliedFilters-content {
    gap: 5px;
    flex-wrap: wrap;
    display: flex;
}

.ZhuBaoCenter:hover .ZhuBaoCenter-img {
    border: 2px solid rgba(0, 0, 0, 0.90);
}

.shutItemImg {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.Discover {
    padding: 12px 32px;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 0.90);
    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.90);
    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;
}

.form-btn-white {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.90);
    border: 1px solid rgba(0, 0, 0, 0.90) !important;
    width: 235px;
    padding: 19px;
    height: auto;
    font-size: 20px;
}

.form-btn-yellow {
    background-color: rgba(0, 0, 0, 0.90) !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    width: 235px;
    padding: 19px;
    height: auto;
    font-size: 20px;
}

.age-verification-title {
    font-weight: 500;
    font-size: 40px;
    margin-top: 50px;
    color: rgba(0, 0, 0, 0.90);
    font-family: 'Bulgari', Arial, sans-serif !important;
}

.actead img {
    border: 1px solid #000;
}

.wokaopackageItems-item-border {
    border: 2px solid #000;
}

.SearchStore {
    display: flex;
    align-items: center;
    justify-content: center;
}

.SearchStore-content {
    background-color: rgba(243, 243, 243, 1);
    padding: 10px 16px;
}

.SearchStore-input {
    width: 500px;
    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;
    top: 20%;
}

.nodataBtn {
    cursor: pointer;
    width: 300px;
    font-size: 16px;
    padding: 12px;
    color: #fff;
    background-color: rgba(184, 109, 86, 1);
    text-align: center;
    margin-top: 50px;
}

.nodataBtn:hover {
    background-color: rgba(204, 126, 102, 1);
}

.mt-100px {
    margin-top: 200px;
}

.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.90);
    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 {
    outline: none;
    border-color: rgba(0, 0, 0, 0.90);
    /* box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3); */
}

.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.90);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.90);
}

.nav-link-nav {
    cursor: pointer;
}

.ellipsis {
    border: none;
    background: transparent;
    cursor: default;
    min-width: auto;
    padding: 20px;
}

.allGoodsTitle {
    font-family: 'Bulgari', Arial, sans-serif;
    font-size: 40px;
    margin-top: 48px;
}

.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;
}

.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;
}

/* 二级菜单样式 */
.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;
}

/* 响应式设计 */
@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.90);
    color: rgba(255, 255, 255, 0.90);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.centerTopImg {
    width: 420px;
    height: 70px;
}

.shopCart {
    width: 20px;
    height: 20px;
    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: 330px;
    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 #000;
}

.fwt6{
    font-weight: 600;
}

.NoUpImg{
    cursor: pointer;
}

.mb60{
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .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;
    }

    .header-brand-row {
        height: 60px;
    }

    .brand-col-center {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
    }

    .centerTopImg {
        width: 66px;
        height: auto;
    }

    .phonemaxwi {
        width: 100% !important;
    }

    .top60 {
        top: 58%;
    }

    .navbar-icons .bi {
        font-size: 1.5rem;
    }

    .shopCart {
        width: 24px;
        height: 24px;
    }

    .col-Search {
        width: 24px;
        height: 24px;
    }

    .plRight {
        padding-right: 50px;
        left: 60%;
    }

    .navbar-icons {
        right: 1rem;
    }

    .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: 158px !important;
        aspect-ratio: 1/1;
    }

    .ByGestoneContent {
        margin: 0px 16px;
    }

    /* 滚动条整体高度（水平滚动条用 height） */
    .ByGestoneContent::-webkit-scrollbar {
        height: 4px;
        cursor: pointer;
        /* 水平滚动条用 height */
    }

    /* 滚动条轨道：用 border 模拟左右 20px 留白 */
    .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;
        /* 背景不绘制在 border 区域 */
        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;
        padding-bottom: 20px;
        padding-top: 20px;
        gap: 8px;
    }

    .NowHwPd10 {
        padding-right: 10px;
    }

    .left-all-body {
        margin-right: 0px;
        display: none;
    }

    .two-ellipsis {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* 设置为3行 */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }

    .mk-product-item .mk-product-content {
        height: auto;
    }

    .classPImg {
        width: 100%;
        aspect-ratio: 375/200;
        object-fit: cover;
        object-position: center;
    }

    .allGoodsTitle {
        margin-top: 32px;
    }

    .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: 10010;
        background-color: rgba(0, 0, 0, 0.90);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 11px;
    }

    .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;
    }

    .YouMight{
        gap: 11px;
    }

    .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: 50px;height: 50px;
    }

    .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: rgba(0, 0, 0, 0.90);

        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.90);
    }

    .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: 0px;
    }

    .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;
    }

    .check-boxd{
        border: none;
    }

    .custom-select-container{
        border: none;
    }

    .svgColor svg path {
        fill: rgba(0, 0, 0, 0.90);
    }

    .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: 10px;
    }

    .OneWhileNowrap{
        width: 100% !important;
    }

    .OneWhileNowrap-w220{
        width: 100% !important;
    }

    .addreedetail{
        font-weight: 600;
        font-size: 16px;
        color: rgba(0, 0, 0, 0.90);
        margin-top: 5px;
        margin-bottom: 5px;
    }

    #selectAddress .modal-body{
        overflow: auto;
    }
}

