wujingjing
2025-02-11 8c6fbc506e9a2c8cde56a794d8319cc55f4be666
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);
    }
}