无编辑摘要 标签:手工回退 |
无编辑摘要 标签:手工回退 |
||
(未显示同一用户的3个中间版本) | |||
第109行: | 第109行: | ||
.season-block li::before { content: "▸"; margin-right: 0.5em; } | .season-block li::before { content: "▸"; margin-right: 0.5em; } | ||
.season-block li li::before { content: "|"; color: #666; } | .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; | |||
} |