/* FAQ页面样式 */
.faq-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #e0e0e0;
}

.faq-date {
    width: 100px;
    height: 100px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.date-year {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: bold;
}

.date-day {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.faq-content {
    flex: 1;
}

.faq-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.faq-content h3 a {
    color: #333;
    text-decoration: none;
}

.faq-content h3 a:hover {
    color: #e60012;
}

.faq-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.faq-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.faq-views {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.faq-btn {
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    color: #1890ff;
    background: #e8f4ff;
    border-color: #a3d3ff;
    border: 1px solid #dcdfe6;
}
/* 添加箭头图标 */
.faq-btn::after {
    content: "→";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-btn:hover {
    opacity: 1; /* 鼠标悬停时透明度加深（这里设为完全不透明） */
    color:  #fff; /* 鼠标悬停时的字体颜色（示例为黄色，可根据需要修改） */
    background: #1890ff;
}

/* 更具体的选择器 */
.faq-content .faq-btn:hover {
    color: #fff  !important; /* 使用!important强制覆盖 */
}
.faq_bt p{
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}
/* 响应式调整 */
@media (max-width: 768px) {
    .faq-item {
        flex-direction: column;
    }
    
    .faq-date {
        width: 100%;
        height: auto;
        padding: 10px;
        margin-right: 0;
        margin-bottom: 15px;
    }
}