wujingjing
2025-04-02 f3d6bb2013cc61fb62f4521bc97c40d97efebe2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.desc::before {
    /* --size: 21px;
    content: attr(data-index);
    margin-right: 8px;
    display: inline-block;
    width: var(--size);
    height: var(--size);
    background-color: #1a66ff;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: var(--size); */
}
 
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}