无编辑摘要 |
无编辑摘要 标签:手工回退 |
||
(未显示同一用户的23个中间版本) | |||
第22行: | 第22行: | ||
position: relative; | position: relative; | ||
padding: 15px 20px 15px 35px; | padding: 15px 20px 15px 35px; | ||
margin-bottom: | margin-bottom: 20px; | ||
border-radius: 4px; | border-radius: 4px; | ||
background: rgba(255,255,255,0.95); | background: rgba(255,255,255,0.95); | ||
第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; | |||
} | |||
/* ===== 爪类武器专用样式 ===== */ | |||
/* 网格容器 */ | |||
.claw-grid { | |||
display: grid; | |||
grid-template-columns: repeat(2, 1fr); | |||
gap: 0.5rem; | |||
margin: 1rem 0; | |||
} | |||
/* 武器卡片 */ | |||
.claw-card { | |||
display: flex; | |||
align-items: center; | |||
background: #1a1a1a; | |||
border-radius: 8px; | |||
padding: 12px; | |||
margin-bottom: 1rem; | |||
transition: transform 0.2s; | |||
} | |||
.claw-card:hover { | |||
transform: translateX(5px); | |||
} | |||
/* 图标样式 */ | |||
.claw-icon { | |||
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); | |||
margin-right: 20px; | |||
flex-shrink: 0; | |||
} | |||
/* 文字信息区 */ | |||
.claw-info { | |||
flex-grow: 1; | |||
} | |||
/* 武器名称 */ | |||
.claw-name { | |||
color: #ffffff; | |||
font-size: 1.3em; | |||
font-weight: 600; | |||
margin-bottom: 4px; | |||
} | |||
/* 需求信息 */ | |||
.claw-require { | |||
color: #8c8c8c; | |||
font-size: 0.9em; | |||
} | |||
/* 移动端适配 */ | |||
@media (max-width: 768px) { | |||
.claw-grid { | |||
grid-template-columns: 1fr; | |||
} | |||
.claw-card { | |||
flex-direction: column; | |||
text-align: center; | |||
} | |||
.claw-icon { | |||
margin-right: 0; | |||
margin-bottom: 10px; | |||
} | |||
} | |||
/* 星级 */ | |||
.mw-star-rating { | |||
color: #ffc53d; | |||
letter-spacing: 2px; | |||
font-size: 1.2em; | |||
unicode-bidi: bidi-override; /* 防止RTL语言导致符号反转 */ | |||
} | } |