@charset "utf-8";

.tag{ padding:10px; min-height:300px; overflow:hidden;  } 

ol.circle-ol {
    list-style: none;
    padding-left: 0;
    counter-reset: mynum; /* 初始化计数器，从 0 开始 */
}


ol.circle-ol li {
    counter-increment: mynum; /* 每遇到一个 li，mynum +1 */
    margin: 12px 0;
    padding-left: 45px; /* 给大圆留出位置 */
    position: relative;
    font-size: 1rem;
}

/* 在大圆里显示编号 */
ol.circle-ol li::before {
    content: counter(mynum); /* 显示当前计数值 */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: #3498db;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50%; /* 圆形 */
    display: flex;
    align-items: center;
    justify-content: center;
}