Files
SEONexus/code/public/static/css/modules/detail/detail_03.css
2025-12-31 00:49:32 +08:00

105 lines
1.9 KiB
CSS

/* detail_03.css */
.__PFX__-d3-page { padding: 12px; }
/* 顶部区域 */
.__PFX__-d3-top {
display: flex;
gap: 14px;
}
@media(max-width:768px){
.__PFX__-d3-top { flex-direction: column; }
}
.__PFX__-d3-pic {
width: 150px;
aspect-ratio: 2/3;
border-radius: 12px;
object-fit: cover;
}
.__PFX__-d3-meta h1 {
font-size: 22px;
color: var(--primary-color);
margin-bottom: 6px;
}
.__PFX__-d3-meta p {
font-size: 13px;
margin-bottom: 4px;
}
/* 线路 chips */
.__PFX__-d3-linesel {
margin-top: 16px;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.__PFX__-d3-chip {
font-size: 12px;
padding: 4px 10px;
border-radius: 999px;
background: #f3f3f3;
}
.__PFX__-d3-chip.active {
background: var(--primary-color);
color: #fff;
}
/* 集数块 */
.__PFX__-d3-epwrap {
margin-top: 10px;
}
.__PFX__-d3-epbox {
display: none;
flex-wrap: wrap;
gap: 8px;
}
.__PFX__-d3-epbox.active { display: flex; }
.__PFX__-d3-epitem {
padding: 6px 12px;
font-size: 12px;
border-radius: 8px;
background: #fafafa;
border: 1px solid rgba(0,0,0,.05);
}
.__PFX__-d3-epitem.active {
background: var(--primary-color);
color: #fff;
}
/* 简介 */
.__PFX__-d3-desc h2 {
margin-top: 18px;
font-size: 16px;
color: var(--primary-color);
}
.__PFX__-d3-desc p {
margin-top: 6px;
font-size: 14px;
line-height: 1.7;
}
/* 同主演推荐 */
.__PFX__-d3-rel h3 {
margin-top: 18px;
font-size: 16px;
color: var(--primary-color);
}
.__PFX__-d3-grid {
margin-top: 8px;
display: grid;
gap: 12px;
grid-template-columns: repeat(2,1fr);
}
@media(min-width:768px){
.__PFX__-d3-grid { grid-template-columns: repeat(3,1fr); }
}
.__PFX__-d3-card img {
width: 100%;
aspect-ratio: 2/3;
border-radius: 10px;
object-fit: cover;
}
.__PFX__-d3-card p {
font-size: 12px;
margin-top: 4px;
}