/* 遇到问题链接样式 */
.problem-link {
    display: inline-block;
    color: #f44336; /* 红色 */
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px;
    text-decoration: none;
    transition: color 0.2s;
}

.problem-link:hover {
    color: #d32f2f; /* 深红色 */
    text-decoration: underline;
}

.dark-mode .problem-link {
    color: #ff5252; /* 暗色模式下更明亮的红色 */
}

.dark-mode .problem-link:hover {
    color: #ff8a80; /* 暗色模式下的悬停颜色 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .problem-link {
        display: block;
        margin: 10px 0 15px;
        text-align: left;
    }
} 