.markdown-body :deep(ul) {
    padding-left: 1em;
    list-style-type: none;
}

.markdown-body :deep(ul > li) {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.markdown-body :deep(ul > li)::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4299e1;
    font-size: 1.2em;
}

.markdown-body :deep(ul ul) {
    padding-left: 2em;
}

.markdown-body :deep(ul ul > li)::before {
    content: "◦";
    color: #718096;
}


/* 有序列表样式 */
ol {
    padding-left: 40px;
    margin: 20px 0;
}

li {
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
    transition: all 0.3s ease;
}

/* 基础数字样式 */
.number-basic li::marker {
    color: #3498db;
    font-weight: bold;
    font-size: 1.2em;
}

/* 圆形数字 */
.number-circle li::marker {
    content: counter(list-item);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    margin-right: 10px;
}

/* 方块数字 */
.number-square li::marker {
    content: counter(list-item);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #9b59b6;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    margin-right: 10px;
}

/* 现代简约 */
.number-modern li {
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin-bottom: 25px;
}

.number-modern li::marker {
    content: counter(list-item);
    position: absolute;
    left: -35px;
    top: 0;
    width: 35px;
    height: 35px;
    background: white;
    border: 2px solid #3498db;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* 渐变效果 */
.number-gradient li::marker {
    content: counter(list-item);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    margin-right: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* 多级列表样式 */
.markdown-body  ol ol {
    padding-left: 30px;
}

.markdown-body  ol ol li::marker {
    color: #9b59b6;
    font-size: 1em;
}

.number-circle .markdown-body  ol ol li::marker {
    background: #9b59b6;
}

/* 动画效果 */
li {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
