/* 
 * 隐藏内容样式
 * 用于处理文章中[hide][/hide]标签内容的样式
 */

/* 隐藏内容容器 */
.hide-content-wrapper {
    margin: 20px 0;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

/* 隐藏内容通知 */
.hide-content-notice {
    padding: 10px;
}

.hide-content-notice .alert {
    margin-bottom: 0;
}

/* 隐藏内容表单 */
.hide-content-form {
    background-color: rgba(248, 249, 250, 0.9);
    padding: 15px;
    border-radius: 8px;
}

/* 隐藏内容实际内容区 */
.hide-content-actual {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
    position: relative;
}

/* 模糊效果 */
.blurred-content {
    filter: blur(8px);
    user-select: none;
    position: relative;
}

/* 二维码图片 */
.qrcode-image {
    max-width: 150px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 暗色模式适配 */
body[data-theme="dark"] .hide-content-form {
    background-color: rgba(45, 55, 72, 0.9);
}

body[data-theme="dark"] .hide-content-actual {
    background-color: #2d3748;
}

body[data-theme="dark"] .qrcode-image {
    border-color: #4b5563;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .blurred-content::before {
    background: rgba(45, 55, 72, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .qrcode-image {
        max-width: 120px;
        margin: 0 auto 15px auto;
        display: block;
    }
    
    .hide-content-form .row {
        flex-direction: column-reverse;
    }
    
    .hide-content-form .col-md-4 {
        margin-bottom: 15px;
        text-align: center;
    }
} 