/* Stilovero轮播主容器 */
.stilovero-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

/* 轮播包装器 - 确保相对定位 */
.stilovero-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 20px auto;
}

/* 轮播项样式 */
.stilovero-carousel-item {
    position: relative;
    outline: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.stilovero-carousel-item img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* 手机图片默认隐藏 - 使用更具体的选择器防止闪烁 */
.stilovero-carousel-item .mobile-image {
    display: none !important;
}

/* 桌面图片默认显示 */
.stilovero-carousel-item .desktop-image {
    display: block !important;
}

/* Slick库自定义样式 */
.stilovero-carousel .slick-list,
.stilovero-carousel .slick-track {
    height: 100%;
}

/* 自定义导航箭头样式 - 无圆圈版本 */
.stilovero-carousel .slick-prev,
.stilovero-carousel .slick-next {
    z-index: 100; /* 提高层级 */
    width: 40px; /* 减小宽度 */
    height: 40px; /* 减小高度 */
    background: transparent; /* 移除背景 */
    border-radius: 0; /* 移除圆角 */
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* 移除阴影 */
    position: absolute; /* 确保绝对定位 */
    top: 50%; /* 垂直居中 */
    transform: translateY(-50%); /* 垂直居中调整 */
}

.stilovero-carousel .slick-prev:hover,
.stilovero-carousel .slick-next:hover {
    background: transparent; /* 悬停时保持透明 */
    transform: translateY(-50%) scale(1.1); /* 保持垂直居中同时缩放 */
}

.stilovero-carousel .slick-prev {
    left: 15px; /* 调整位置 */
}

.stilovero-carousel .slick-next {
    right: 15px; /* 调整位置 */
}

/* 使用自定义箭头图标而不是默认字体图标 */
.stilovero-carousel .slick-prev:before,
.stilovero-carousel .slick-next:before {
    content: '';
    display: block;
    width: 25px; /* 调整箭头尺寸 */
    height: 25px; /* 调整箭头尺寸 */
    border-top: 3px solid #bb5644;
    border-right: 3px solid #bb5644;
    transition: all 0.3s ease;
}

/* 修复左箭头显示不全的问题 - 使用margin调整位置 */
.stilovero-carousel .slick-prev:before {
    transform: rotate(-135deg);
    margin-left: 3px; /* 使用margin向右移动 */
}

.stilovero-carousel .slick-next:before {
    transform: rotate(45deg);
}

/* 悬停时改变箭头颜色 */
.stilovero-carousel .slick-prev:hover:before,
.stilovero-carousel .slick-next:hover:before {
    border-color: #bb5644; /* 悬停时改变箭头颜色 */
}

/* 自定义dots样式 */
.stilovero-carousel .slick-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    z-index: 10;
}

.stilovero-carousel .slick-dots li {
    display: inline-block;
    margin: 0 4px;
}

.stilovero-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ccc;
    opacity: 0.5;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stilovero-carousel .slick-dots li.slick-active button {
    background: #bb5644;
    opacity: 0.9;
    transform: scale(1.2);
}

.stilovero-carousel .slick-dots li button:hover {
    background: #bb5644;
    opacity: 0.8;
}

/* 平板设备响应式设计 */
@media (max-width: 1024px) and (min-width: 769px) {
    /* 在手机上显示手机图片，隐藏桌面图片 */
    .stilovero-carousel-item .desktop-image {
        display: none !important;
    }
    
    .stilovero-carousel-item .mobile-image {
        display: block !important;
    }
    .stilovero-carousel .slick-prev,
    .stilovero-carousel .slick-next {
        width: 35px;
        height: 35px;
    }
    
    .stilovero-carousel .slick-prev {
        left: 10px;
    }
    
    .stilovero-carousel .slick-next {
        right: 10px;
    }
    
    .stilovero-carousel .slick-prev:before,
    .stilovero-carousel .slick-next:before {
        width: 20px;
        height: 20px;
    }
    
    /* 平板设备左箭头微调 */
    .stilovero-carousel .slick-prev:before {
        margin-left: 2px;
    }
    
    .stilovero-carousel .slick-dots {
        bottom: 15px;
    }
    /* 在手机端隐藏悬浮层 */
    .stilovero-fixed-layer {
        display: none !important;
    }
}

/* 手机设备响应式设计 - 切换图片 */
@media (max-width: 768px) {
    /* 在手机上显示手机图片，隐藏桌面图片 */
    .stilovero-carousel-item .desktop-image {
        display: none !important;
    }
    
    .stilovero-carousel-item .mobile-image {
        display: block !important;
    }
    
    .stilovero-carousel .slick-prev,
    .stilovero-carousel .slick-next {
        width: 30px;
        height: 30px;
    }
    
    .stilovero-carousel .slick-prev {
        left: 8px;
    }
    
    .stilovero-carousel .slick-next {
        right: 8px;
    }
    
    .stilovero-carousel .slick-prev:before,
    .stilovero-carousel .slick-next:before {
        width: 18px;
        height: 18px;
        border-width: 2px;
    }
    
    /* 手机设备左箭头微调 */
    .stilovero-carousel .slick-prev:before {
        margin-left: 1px;
    }
    
    .stilovero-carousel .slick-dots {
        bottom: 10px;
    }
    
    .stilovero-carousel .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    
    /* 在手机端隐藏悬浮层 */
    .stilovero-fixed-layer {
        display: none !important;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
    .stilovero-carousel .slick-prev,
    .stilovero-carousel .slick-next {
        width: 25px;
        height: 25px;
    }
    
    .stilovero-carousel .slick-prev {
        left: 5px;
    }
    
    .stilovero-carousel .slick-next {
        right: 5px;
    }
    
    .stilovero-carousel .slick-prev:before,
    .stilovero-carousel .slick-next:before {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }
    
    /* 小屏幕手机左箭头微调 */
    .stilovero-carousel .slick-prev:before {
        margin-left: 0;
    }
    
    .stilovero-carousel .slick-dots {
        bottom: 8px;
    }
    
    .stilovero-carousel .slick-dots li button {
        width: 8px;
        height: 8px;
    }
}

/* 加载状态 */
.stilovero-carousel.slick-initialized {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.stilovero-carousel:not(.slick-initialized) {
    opacity: 0;
}

/* 无障碍访问优化 */
.stilovero-carousel .slick-prev:focus,
.stilovero-carousel .slick-next:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .stilovero-carousel .slick-prev:before,
    .stilovero-carousel .slick-next:before {
        border-color: #000; /* 高对比度模式下使用黑色 */
    }
}

/* 轮播调试样式 - 确保轮播项可见 */
.stilovero-carousel .slick-slide {
    display: block;
    float: left;
    height: 100%;
    min-height: 1px;
}

/* 链接样式 */
.stilovero-carousel-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.stilovero-carousel-item a:hover {
    text-decoration: none;
}

/* 悬浮层样式 - 图标放在左侧，内容居中 */
.stilovero-fixed-layer {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none; /* 默认隐藏，只在第一张图显示 */
}

.stilovero-layer-list {
    display: flex;
    justify-content: space-between; /* 均分宽度 */
    align-items: center;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
}

.stilovero-layer-item {
    display: flex;
    align-items: center; /* 水平居中对齐 */
    justify-content: center; /* 内容居中 */
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #ffffff;
    text-align: center; /* 文字居中 */
    flex: 1; /* 每个项目均分宽度 */
    position: relative;
    padding: 10px 10px;
    overflow: hidden; /* 防止内容溢出 */
    white-space: nowrap; /* 防止文字换行 */
}

/* 图标样式 - 放在左侧 */
.stilovero-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 8px;
    box-sizing: border-box;
    flex-shrink: 0; /* 防止图标被压缩 */
}

/* 文本样式 - 内容居中 */
.stilovero-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* 文字居中 */
    text-align: center; /* 文字居中 */
    justify-content: center; /* 垂直居中 */
    overflow: hidden; /* 防止文本溢出 */
}

.stilovero-title {
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap; /* 标题不换行 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 显示省略号 */
    width: 100%; /* 占满容器宽度 */
}

.stilovero-desc {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap; /* 描述不换行 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 显示省略号 */
    width: 100%; /* 占满容器宽度 */
}

/* 分隔线样式 */
.stilovero-divider {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #fff;
    border-right: 1px dashed #ccc;
}

/* 最后一个项目没有分隔线 */
.stilovero-layer-item:last-child .stilovero-divider {
    display: none;
}

.stilovero-layer-item:hover {
    color: #bb5644;
}

.stilovero-layer-item:hover .stilovero-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* 信息面板样式 - 大幅提高z-index确保在最上层 */
.stilovero-info-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    background: white;
    border-radius: 15px;
    padding: 40px 30px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10002; /* 合理的z-index值 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    /* 创建新的层叠上下文 */
    isolation: isolate;
}

.stilovero-info-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    display: block;
}

.stilovero-info-panel h2 {
    color: #000;
    margin-bottom: 15px;
    font-size: 24px;
    padding-bottom: 10px;
    padding-right: 30px;
    text-align: center;
    line-height: 1.4;
}

.stilovero-info-panel h3 {
    color: #0c4a7b;
    font-size: 20px;
    line-height: 1.4;
}

.stilovero-info-panel p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 15px;
}

.stilovero-info-panel ul {
    margin: 0;
    padding-left: 20px;
}

.stilovero-info-panel li {
    margin-bottom: 8px;
    color: #000;
}

/* 关闭按钮样式 */
.stilovero-close-div {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    user-select: none;
}

.stilovero-close-div:hover {
    color: #BB5644;
}
/* 遮罩层 - 大幅提高z-index确保在最上层，并确保覆盖所有内容 */
.stilovero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001; /* 比面板低1 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    /* 创建新的层叠上下文 */
    isolation: isolate;
}

.stilovero-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

/* 响应式调整 */
@media (max-width: 1024px) and (min-width: 769px) {
    .stilovero-fixed-layer {
        padding: 12px 0;
    }
    
    .stilovero-layer-list {
        padding: 0 15px;
    }
    
    .stilovero-layer-item {
        padding: 0 8px;
    }
    
    .stilovero-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
        padding: 6px;
    }
    
    .stilovero-title {
        font-size: 13px;
    }
    
    .stilovero-desc {
        font-size: 11px;
    }
    
    .stilovero-divider {
        height: 35px;
    }
}

/* 手机端隐藏悬浮层的规则已经在上面的@media (max-width: 768px)中添加 */

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .stilovero-layer-item {
        flex: 0 0 25%; /* 保持25%宽度 */
    }
    
    .stilovero-icon {
        width: 18px;
        height: 18px;
        margin-right: 2px;
    }
    
    .stilovero-title {
        font-size: 9px;
    }
    
    .stilovero-desc {
        font-size: 7px;
    }
}

/* 静态信息层样式 - 修复手机端换行问题 */
.stilovero-static-layer {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 20px 0;
    padding: 15px 0;
    background: transparent;
    box-sizing: border-box;
    position: relative; /* 确保可以被遮罩层覆盖 */
    z-index: 1; /* 正常层级 */
}
.stilovero-static-layer ul {
    margin: 0;
}

/* 当遮罩层激活时，静态层的样式 */
.stilovero-overlay.active ~ .stilovero-static-layer,
body.has-modal .stilovero-static-layer {
    position: relative;
    z-index: 1; /* 确保在遮罩层之下 */
}

.stilovero-static-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
}

.stilovero-static-item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; /* 恢复指针光标 */
    transition: all 0.3s ease; /* 恢复过渡效果 */
    font-size: 14px;
    color: #333333;
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 10px;
    overflow: hidden;
    /* 移除 white-space: nowrap; 允许换行 */
}

.stilovero-static-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    width: 100%; /* 确保文本容器宽度100% */
}

.stilovero-static-title {
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 18px;
    line-height: 1.2;
    /* 移除 white-space: nowrap; 允许标题换行 */
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    word-wrap: break-word; /* 允许单词换行 */
}

.stilovero-static-desc {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.2;
    /* 移除 white-space: nowrap; 允许描述换行 */
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    word-wrap: break-word; /* 允许单词换行 */
}

.stilovero-static-divider {
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: #e4e1e3;
}

.stilovero-static-item:last-child .stilovero-static-divider {
    display: none;
}

/* 恢复悬停效果 */
.stilovero-static-item:hover {
    color: #bb5644;
}

.stilovero-static-item:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* SVG图标样式 */
.stilovero-static-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 1024px) and (min-width: 769px) {
    .stilovero-static-layer {
        padding: 12px 0;
    }
    
    .stilovero-static-list {
        padding: 0 15px;
    }
    
    .stilovero-static-item {
        padding: 0 8px;
    }
       
    .stilovero-static-title {
        font-size: 16px;
    }
    
    .stilovero-static-desc {
        font-size: 14px;
    }
}

/* 手机端响应式 - 修复换行问题 */
@media (max-width: 768px) {
    .stilovero-static-layer {
        padding: 0;
        margin: 0;
    }
    
    .stilovero-static-list {
        padding: 0 10px;
    }
    
    .stilovero-static-item {
        flex: 0 0 50%;
        padding: 10px 5px;
        margin-bottom: 15px;
        /* 在手机端允许内容换行 */
        white-space: normal;
    }
    /* 新增：隐藏第三项及以后的项 */
    .stilovero-static-item:nth-child(n+3) {
        display: none;
    }

    /* 新增：隐藏第二个项的分隔线 */
    .stilovero-static-item:nth-child(2) .stilovero-static-divider {
        display: none;
    }
    .stilovero-static-text {
        /* 在手机端允许文本换行 */
        white-space: normal;
    }
    
    .stilovero-static-title {
        font-size: 14px;
        line-height: 1.3;
        /* 在手机端允许标题换行 */
        white-space: normal;
        height: auto; /* 自动高度 */
        min-height: 2.6em; /* 最小高度，确保两行文本 */
    }
    
    .stilovero-static-desc {
        font-size: 12px;
        line-height: 1.3;
        /* 在手机端允许描述换行 */
        white-space: normal;
        height: auto; /* 自动高度 */
        min-height: 2.6em; /* 最小高度，确保两行文本 */
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .stilovero-static-item {
        flex: 0 0 50%;
        padding: 8px 3px;
        margin: 0 5px;
    }
        
    .stilovero-static-title {
        font-size: 14px;
        min-height: 2.8em; /* 在超小屏幕上增加最小高度 */
    }
    
    .stilovero-static-desc {
        font-size: 12px;
        min-height: 2.8em; /* 在超小屏幕上增加最小高度 */
    }
}

/* 极小屏幕优化（如iPhone 5等） */
@media (max-width: 320px) {
    .stilovero-static-item {
        flex: 0 0 100%; /* 在极小屏幕上每行显示1个 */
        padding: 10px 5px;
    }
    
    .stilovero-static-title {
        font-size: 14px;
        min-height: auto; /* 移除最小高度限制 */
    }
    
    .stilovero-static-desc {
        font-size: 12px;
        min-height: auto; /* 移除最小高度限制 */
    }
}

/* 额外添加：确保body在有模态框时正确处理 */
body.has-modal {
    overflow: hidden;
    position: relative;
}

body.has-modal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998; /* 略低于遮罩层但高于其他内容 */
    display: block;
}

/* 横幅短代码样式 - 简化版 */
.stilovero-banner {
    display: flex;
    flex-direction: column;
    margin: 20px 0 50px 0;
    text-align: center;
}

.stilovero-banner-text {
     font-size: 18px;
    font-weight: 400;
    color: #4e4540;
    line-height: 2;
    white-space: pre-line;
}

.stilovero-banner-button {
    margin-top: 50px;
}


.stilovero-banner-btn {
    display: inline-block;
    padding: 25px 60px;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 2px solid #bb5644;
    cursor: pointer;
}


.stilovero-banner-btn:hover {
    background: #bb5644;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 86, 68, 0.3);
}

/* 响应式显示控制 */
.hide-on-pc {
    display: block;
}

.hide-on-tablet {
    display: block;
}

.hide-on-mobile {
    display: block;
}

/* PC设备 */
@media (min-width: 1025px) {
    .hide-on-pc {
        display: none !important;
    }
}

/* 平板设备 */
@media (max-width: 1024px) and (min-width: 769px) {
    .hide-on-tablet {
        display: none !important;
    }
    
    .stilovero-banner {
        padding: 18px;
        margin: 12px 0;
    }
    
    .stilovero-banner-text {
        font-size: 16px;
    }
    
    .stilovero-banner-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

/* 手机设备 */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .stilovero-banner {
        padding: 15px;
        margin: 10px 0;
        flex-direction: column;
    }
    
    .stilovero-banner-text {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .stilovero-banner-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
    .stilovero-banner {
        padding: 12px;
        margin: 8px 0;
    }
    
    .stilovero-banner-text {
        font-size: 15px;
    }
    
    .stilovero-banner-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* 视频短代码样式 */
.stilovero-luxury-packaging {
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1700px;
}

.stilovero-luxury-title {
    color: #BB5644;
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
    text-align: center;
}

.stilovero-luxury-content {
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    max-width: 1300px;
}

.stilovero-luxury-text {
    flex: 2; /* 占2/5 */
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.stilovero-luxury-text p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.stilovero-luxury-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stilovero-luxury-text li {
    position: relative;
    font-size: 18px;
    color: #666;
}

.stilovero-luxury-video {
    flex: 2; 
    min-height: 477px; /* 调整为600px高度 */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.stilovero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 636px; /* 限制最大宽度为636px */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stilovero-video-wrapper iframe {
    width: 100%;
    height: 477px; /* 固定高度477px */
    border: none;
    display: block;
}

.stilovero-luxury-video video {
    /*width: 100%;
    height: auto;*/
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.stilovero-video-placeholder {
    width: 636px;
    height: 477px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    border: 2px dashed #ddd;
}

/* 平板设备响应式 */
@media (max-width: 1024px) and (min-width: 769px) {
    .stilovero-luxury-packaging {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .stilovero-luxury-title {
        font-size: 28px;
        margin-bottom: 0px;
    }
    
    .stilovero-luxury-content {
        padding-top: 30px;
    }
    
    .stilovero-luxury-text {
        display: none; /* 平板设备隐藏文本 */
    }
    
    .stilovero-luxury-video {
        flex: 1; /* 平板设备视频占满宽度 */
        min-height: 450px; /* 调整平板高度 */
    }
    
    .stilovero-video-wrapper iframe {
        height: 450px; /* 平板设备调整高度 */
    }
    
    .stilovero-video-placeholder {
        width: 100%;
        height: 450px;
    }
}

/* 手机设备响应式 */
@media (max-width: 768px) {
    .stilovero-luxury-packaging {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .stilovero-luxury-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .stilovero-luxury-content {
        flex-direction: column;
        padding-top: 30px;
    }
    
    .stilovero-luxury-text {
        display: none; /* 手机设备隐藏文本 */
    }
    
    .stilovero-luxury-video {
        width: 100%; /* 手机设备视频占满宽度 */
        min-height: 300px;
    }
    
    .stilovero-video-wrapper iframe {
        height: 300px; /* 手机设备调整高度 */
    }
    
    .stilovero-video-placeholder {
        width: 100%;
        height: 300px;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
    .stilovero-luxury-packaging {
        margin: 15px auto;
        padding: 0 10px;
    }
    
    .stilovero-luxury-title {
        font-size: 20px;
    }
    
    .stilovero-luxury-video {
        min-height: 250px;
    }
    
    .stilovero-video-wrapper iframe {
        height: 250px; /* 小屏幕手机调整高度 */
    }
    
    .stilovero-video-placeholder {
        height: 250px;
        font-size: 16px;
    }
}

/* 左侧图标静态信息层样式 */
.stilovero-static-layer-left {
    display: flex;
    justify-content: space-around;
    width: 100%;
    background: transparent;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.stilovero-static-layer-left ul {
    margin: 0;
}
.stilovero-static-layer-left ul li {
    margin-bottom: 0px;
}
.stilovero-static-list-left {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 使所有项目等高 */
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
}

.stilovero-static-item-left {
    display: flex;
    align-items: center; /* 水平居中对齐 */
    justify-content: center; /* 内容左对齐 */
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333333;
    text-align: center; /* 文字左对齐 */
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 70px; /* 设置最小高度确保一致性 */
}

.stilovero-static-icon-left {
    width: 30px;
    height: 30px;
    margin-right: 15px; /* 图标和文字之间的间距 */
    flex-shrink: 0; /* 防止图标被压缩 */
    transition: transform 0.3s ease;
}

.stilovero-static-text-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 文字左对齐 */
    text-align: left; /* 文字左对齐 */
    justify-content: center;
    overflow: hidden;
}

.stilovero-static-title-left {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    word-wrap: break-word;
}

.stilovero-static-desc-left {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    word-wrap: break-word;
}

.stilovero-static-divider-left {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%; /* 分隔线高度 */
    background-color: #e4e1e3;
}

.stilovero-static-item-left:last-child .stilovero-static-divider-left {
    display: none;
}

/* 悬停效果 */
.stilovero-static-item-left:hover {
    color: #bb5644;
}

.stilovero-static-item-left:hover .stilovero-static-icon-left {
    transform: scale(1.1);
}

/* 左侧图标层预加载状态样式 - 完全隐藏 */
.stilovero-static-layer-left.stilovero-preload {
    display: none !important;
}

/* 左侧图标层加载完成状态 */
.stilovero-static-layer-left.stilovero-loaded {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

/* 响应式调整 - 手机端隐藏 */
@media (max-width: 768px) {
    .stilovero-static-layer-left {
        display: none !important; /* 手机端隐藏 */
    }
    .stilovero-static-layer-left.stilovero-preload,
    .stilovero-static-layer-left.stilovero-loaded {
        display: none !important;
    }
}