/* 左右对称橄榄枝装饰效果 - 为选中的文章内容添加装饰元素 */

/* 为选中的文章内容添加左右橄榄枝装饰 */
.olive-decorated {
    position: relative;
    /* padding: 15px 50px;
    margin: 15px 0;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: visible;
    border: 1px solid #e0e0e0; */
}

/* 左侧橄榄枝装饰 */
.olive-decorated::before {
    content: '' !important;
    position: absolute !important;
    left: -10px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 25px;
    opacity: 0.8;
    background-image: url('/Public/home/images/gnl.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

/* 右侧橄榄枝装饰 */
.olive-decorated::after {
    content: '' !important;
    position: absolute !important;
    right: 2px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 25px;
    opacity: 0.8;
    background-image: url('/Public/home/images/glz.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

/* 针对列表项的特殊处理 */
.bottom2-text.olive-decorated {
    padding: 15px 45px;
    margin: 10px 0;
}

.bottom2-text.olive-decorated::before,
.bottom2-text.olive-decorated::after {
    width: 22px;
    height: 25px;
    opacity: 0.8;
}

/* 为 bottom2-text 列表项直接添加橄榄枝装饰 */
.bottom2-text {
    position: relative;
    padding: 10px 40px;
    margin: 8px 0;
}

.bottom2-text::before {
    content: '' !important;
    position: absolute !important;
    left: -10px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 25px;
    opacity: 0.8;
    background-image: url('/Public/home/images/gnl.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.bottom2-text::after {
    content: '' !important;
    position: absolute !important;
    right: 2px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 25px;
    opacity: 0.8;
    background-image: url('/Public/home/images/glz.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

/* 悬停效果增强 */
/* .olive-decorated:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border-color: #d0d0d0;
} */

/* 响应式设计 - 保持橄榄枝装饰效果明显 */
@media (max-width: 768px) {
    .olive-decorated {
        padding: 12px 40px;
        margin: 12px 0;
    }
    
    .olive-decorated::before,
    .olive-decorated::after {
        width: 30px;
        height: 25px;
        opacity: 0.85;
    }
    
    .bottom2-text {
        padding: 8px 35px;
    }
    
    .bottom2-text::before,
    .bottom2-text::after {
        width: 30px;
        height: 25px;
    }
    .bottom2-text::before {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .olive-decorated {
        padding: 10px 35px;
        margin: 8px 0;
    }
    
    .olive-decorated::before,
    .olive-decorated::after {
        width: 30px;
        height: 25px;
        opacity: 0.8;
    }
    
    .bottom2-text {
        padding: 6px 30px;
    }
    
    .bottom2-text::before,
    .bottom2-text::after {
        width: 30px;
        height: 25px;
    }
     .bottom2-text::before {
        left: 15px;
    }
}

/* 极小屏幕设备 - 保持基本橄榄枝装饰 */
@media (max-width: 320px) {
    .olive-decorated {
        padding: 8px 30px;
    }
    
    .olive-decorated::before,
    .olive-decorated::after {
        width: 30px;
        height: 25px;
        opacity: 0.7;
    }
    
    .bottom2-text {
        padding: 4px 25px;
    }
    
    .bottom2-text::before,
    .bottom2-text::after {
        width: 30px;
        height: 25px;
    }
}