/* 弹窗报错· */
/* 模板样式 - 初始隐藏 */
#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;
    margin-right: 5px;
}

.storeOld {
    margin-right: 5px;
    color: rgba(0, 0, 0, 0.60);
    font-size: 14px;
    text-decoration: line-through;
}

.discount-display {
    color: rgba(0, 0, 0, 0.90);
    font-size: 14px;
}

.container-bom {
    padding: 30px 0rem;
}

.scenery-div {
    width: 100%;
    aspect-ratio: 1 / 0.3125;
}

.img-absolute{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.specialTitle {
    color: #fff;
    font-family: 'Bulgari', Arial, sans-serif !important;
    font-size: 64px;
    text-align: center;
}

.specialContent {
    color: #fff;
    font-size: 16px;
    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行 */
    text-overflow: ellipsis;
}

.homeColumn-top {
    /* margin-top: 30px; */
}

.ByGestoneContent {
    /* white-space: nowrap; */
    /* overflow-x: auto; */
    /* overflow-y: hidden; */
    padding-bottom: 20px;
    /* scrollbar-gutter: stable; */
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.mtmt-0px {
    margin-top: 0px;
    font-weight: 600 !important;
    font-size: 18px !important;
}

.cart-total-mb {
    margin-bottom: 15px;
}

/* .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: 0px;
    margin-bottom: 0px;
    display: inline-block;
    margin-bottom: 15px;
}

.backRgba {
    /* margin-top: 20px; */
    background-color: rgba(0, 0, 0, 0.90);
    color: #fff;
    min-width: 120px;
    height: 38px;
    padding: 0px 5px;
}

.homeColumnCover {
    aspect-ratio: 1 / 0.6657;
    object-fit: cover;
    object-position: center;
}

.homeColumnTitle {
    color: oklch(27.8% .033 256.848);
    font-size: 16px;
    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: 1320px !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: 12px;
}

.footer-conact-link {
    font-size: 16px;
}

.footer-conact-block {
    display: flex;
    align-items: center;
}
.footer-conact-block svg{
    flex-shrink: 0;
}

.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 36px 11.5px 10px;
    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;
}

.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: 20px 25px 40px 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: 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;
}

.product-one {
    overflow: hidden;
}

.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;
} */

.cup {
    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: 0px 20px;
    }

    .price-display {
        flex-direction: row;
        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;

    display: flex;
    align-items: center;
}

.backContainer {
    background-color: rgba(250, 250, 250, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.backContainer-w80 {
    max-width: 1320px;
    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 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: 100010;
}

.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;
}

#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, .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: #dceafa;
    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;
    word-break: break-all;
}

.pay-time {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pay-quantity {
    margin-top: 8px;
}

.text-ellipsis-wrapper {
    margin-top: 8px;
    width: 100%;
}

.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;
}

#AppliedFilters-content2 {
    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;
    width: 280px;
}

.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: 20px;
    color: rgba(0, 0, 0, 0.90);
    font-family: 'Bulgari', Arial, sans-serif !important;
}

.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;
}

.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: 12px 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: 100%;
    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.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: 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;
    margin-bottom: 64px;
}

.borderChoose {
    border: 1px solid #000;
}

.fwt6 {
    font-weight: 600;
}

.mb60 {
    margin-bottom: 60px;
}

.sidebar-widget svg path {
    fill: #19191A;
}

.modal-footer-adre {
    border: none !important;
    display: block;
    padding: 24px 32px;
    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: 28px !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;
}

#AddCartPrice {
    /* margin-left: 10px; */
}

#BuyNowPrice {
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    #AppliedFilters2 {
        margin-bottom: 10px;
    }

    .header {
        position: sticky;
        top: 0px;
        left: 0px;
        /* height: 70px; */
    }

    .box {
        position: relative;
        height: auto;
    }

    .TopMarn {
        padding: 5px 10px;
        height: inherit;
    }

    .swiper-box {
        padding: 0px !important;
    }

    .header-brand-row {
        /* height: 70px; */
    }

    .brand-col-center {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
    }

    /* .centerTopImg {
        width: 66px;
        height: auto;
        margin: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;
        position: relative;
        z-index: 10;
    }

    #AppliedFilters2 {
        padding: 0px 6px;
    }

    .SearchStore-input {
        width: 100% !important;
    }

    .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;
    }

    .NoUpImg {
        width: 45vw !important;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    .ByGestoneContent {
        gap: 20px 15px;
    }

    /* .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;
        padding-bottom: 20px;
        padding-top: 20px;
        /* gap: 16px; */
    }

    .NowHwPd10 {
        padding-right: 10px;
    }

    .left-all-body {
        margin-right: 0px;
        /* display: none; */
        position: fixed;
        left: 0px;
        top: 0px;
        height: 100vh;
        z-index: 10011;
        width: 85%;
        background-color: #fff;

        display: none;
    }

    .sidebar-widget-flex {
        padding: 8px 16px;
        border-bottom: 1px solid rgba(197, 197, 197, 1);
        justify-content: space-between;
    }

    #AppliedFilters {
        padding: 0px 16px;
    }

    .PriceItem {
        padding: 0px 16px;
    }

    .range-slider {
        margin: 10px 25px 10px 0px;
    }

    .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: 10;
        background-color: rgba(0, 0, 0, 0.90);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 11px;

        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;
    }

    .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;
    }

    .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;
    }

    .mt94px {
        margin-top: 48px;
    }

    .containermb {
        display: none;
    }

    .sectionDiv-w80 {
        padding-top: 0px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-login-before .ccb {
        text-align: center;
    }

    .footer-letter-form {
        margin-top: 15px;
    }

    .footerbankbg {}

    .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 - 120px);
    }

    .Filter {
        margin-left: 0px;
        font-size: 18px;
    }

    .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 16px 16px;
        background-color: #fff;
        border-top: 1px solid rgba(197, 197, 197, 1);
    }

    .VewResults {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.90);
        color: rgba(255, 255, 255, 0.90);
        font-weight: 500;
        padding: 10px;
        text-align: center;
    }

    .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: rgba(255, 227, 219, 1);
        padding: 12px 20px;
    }

    #friendPayLink {
        white-space: inherit !important;
        color: rgba(0, 0, 0, 0.90) !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: rgba(255, 255, 255, 1);
    }

    .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.60) !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.90) !important;
        margin-top: 5px;
    }

    .DocPrice {
        font-size: 16px !important;
    }

    .DocCount {
        color: rgba(0, 0, 0, 0.90);
        font-size: 14px;
        font-weight: 400;
    }

    .offcanvas .nav-link:hover {
        color: rgba(0, 0, 0, 0.90) !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;
    }


    /* menu-unfold_20px@2x */

    .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: 8px 0px;
    }

    .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.90) !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.90);
    }

    #DeliveryAddS svg path {
        fill: #19191A;
    }

    .nodataJustAddress {
        height: 65% !important;
    }

    .Pt15px {
        margin-bottom: 15px !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: .75rem 0 .75rem 0 !important;
        color: rgba(0, 0, 0, 0.90) !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.90);
        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;
    }

    .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: 6px;
        margin-bottom: 14px;
    }

    .flexCOlmb {
        display: flex !important;
        flex-direction: column !important;
    }

    .footer__payment {
        display: flex;
    }

    .SpaceBet{
        gap: 0% !important;
    }
}

@media screen and (max-width: 400px) {
    /* .NoUpImg{
        width: 44vw !important;
    } */
}

.NavContent {
    margin-top: 20px;
}

.NavPdTitle {
    padding-bottom: 20px;
    padding-right: 40px;
    padding-left: 40px;

    font-size: 24px;
    font-family: 'Bulgari', Arial, sans-serif !important;
    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;
}

.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;
}

.dropdown-mega-menu {
    position: absolute;
    /* top: 152px; */
    width: 100%;
    background-color: #fff;
    left: 0;
    height: 386px;
    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: 12px !important;
}

.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.90);
    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.90);
    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(0, 0, 0, 0.90);
    color: rgba(255, 255, 255, 0.90);
    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%;
    }
}
