Admin留言 | 贡献
无编辑摘要
Admin留言 | 贡献
无编辑摘要
标签手工回退
 
(未显示同一用户的6个中间版本)
第104行: 第104行:
     0% { background-position: 0 0; }
     0% { background-position: 0 0; }
     100% { background-position: 0 200%; }
     100% { background-position: 0 200%; }
}
/* 列表 */
.season-block li { list-style: none; }
.season-block li::before { content: "▸"; margin-right: 0.5em; }
.season-block li li::before { content: "|"; color: #666; }
/* 列表项悬停效果 */
.season-block li {
    position: relative;
    padding-left: 12px;
    transition: transform 0.2s;
}
.season-block li::before {
    content: "▶";
    position: absolute;
    left: -15px;
    color: currentColor;
    opacity: 0;
    transition: all 0.3s;
}
/* 悬停时项目符号显现与位移 */
.season-block li:hover {
    transform: translateX(8px);
}
.season-block li:hover::before {
    opacity: 0.6;
    left: -12px;
}
}