.xu5-faq-priority {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
}
.xu5-faq-priority.high {
    background: #ffebee;
    color: #f44336;
}
.xu5-faq-priority.normal {
    background: #ecf5ff;
    color: #409eff;
}
.xu5-faq-priority.low {
    background: #f5f5f5;
    color: #999;
}

/* 问题区域 - 暖灰色调 */
.xu5-faq-question-card {
    background: #fafafa;
    border-left: 3px solid #e0e0e0;
}
.xu5-faq-question-card h2 {
    color: #666;
    border-bottom-color: #e8e8e8;
}

/* 解决方案区域 - 蓝色调突出 */
.xu5-faq-answer-card {
    background: #f8fbff;
    border-left: 3px solid #409eff;
}
.xu5-faq-answer-card h2 {
    color: #409eff;
    border-bottom-color: #d9ecff;
}

.xu5-faq-content,
.xu5-solution-content {
    line-height: 1.8;
    color: #444;
    max-width: 100%;
    overflow-x: hidden;
}
.xu5-faq-content a,
.xu5-solution-content a {
    display: inline-block;
    max-width: 100%;
}
.xu5-faq-content p,
.xu5-solution-content p {
    margin: 10px 0;
}
.xu5-faq-content pre,
.xu5-faq-content code,
.xu5-solution-content pre,
.xu5-solution-content code {
    white-space: pre-wrap;
    max-width: 100%;
    overflow-x: auto;
}

.xu5-solution-item {
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #d9ecff;
    border-radius: 8px;
    background: #fff;
}
.xu5-solution-item:last-child {
    margin-bottom: 0;
}
.xu5-solution-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #409eff;
}

/* 点赞+打赏按钮区域 */
.xu5-feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.xu5-feedback-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.xu5-btn-donate {
    background: linear-gradient(135deg, #409eff, #337ecc);
    color: white;
    box-shadow: 0 3px 10px rgba(64, 158, 255, 0.3);
}
.xu5-btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 158, 255, 0.4);
}

/* 🔧 移动端修复 */
@media screen and (max-width: 768px) {
    /* 禁止页面横向滚动 */
    html, body {
        overflow-x: hidden;
    }
    
    /* 解决方案卡片 */
    .xu5-solution-item {
        padding: 15px;
    }
    
    /* 移动端按钮 */
    .xu5-feedback-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
