/**
 * 益雅诗康 - 文章页面独立样式
 * 文件：maintenance-tips.css
 * 说明：保养技巧文章页面专用样式
 */

/* 技巧编号样式 */
.article-content ol {
    counter-reset: tip-counter;
}

.article-content ol > li {
    counter-increment: tip-counter;
    position: relative;
    padding-left: 10px;
    margin-bottom: 25px;
}

.article-content ol > li::before {
    content: counter(tip-counter);
    position: absolute;
    left: -35px;
    top: 0;
    width: 28px;
    height: 28px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}
