/* 进阶教程入口提示 */
.tutorial-tip {
    margin-top: 40px;
    padding: 15px;
    background-color: rgba(255, 105, 180, 0.1);
    border-radius: 8px;
    text-align: center;
}
.tip-text {
    color: var(--accent-color);
    font-size: 15px;
}
/* 快速上手页面内容样式 */
.page-title {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}
.page-desc {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}
.guide-section {
    margin-bottom: 50px;
}
.section-heading {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--accent-color);
}
.guide-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.guide-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.guide-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.guide-icon {
    font-size: 24px;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
}
.guide-title {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 5px;
}
.guide-desc {
    font-size: 14px;
    color: #666;
}
/* 深色模式适配 */
body.dark-mode .guide-item { background-color: #2d2d2d; }
body.dark-mode .page-desc, body.dark-mode .guide-desc { color: #ccc; }
body.dark-mode .tutorial-tip { background-color: rgba(255, 105, 180, 0.15); }
