35 lines
558 B
CSS
35 lines
558 B
CSS
.__PFX__-dm-root{
|
|
margin:20px 0;
|
|
display:grid;
|
|
grid-template-columns: 110px 1fr;
|
|
gap:14px;
|
|
align-items:start;
|
|
}
|
|
|
|
/* 所有模块默认在右侧 */
|
|
.__PFX__-dm-title,
|
|
.__PFX__-dm-title-box,
|
|
.__PFX__-dm-title-wrap,
|
|
.__PFX__-dm-meta,
|
|
.__PFX__-dm-desc,
|
|
.__PFX__-dm-action{
|
|
grid-column:2;
|
|
}
|
|
|
|
/* 封面永远左侧 */
|
|
.__PFX__-dm-cover{
|
|
grid-column:1;
|
|
grid-row:1 / span 8;
|
|
border-radius:10px;
|
|
overflow:hidden;
|
|
}
|
|
|
|
.__PFX__-dm-cover-img,
|
|
.__PFX__-dm-cover-bg{
|
|
width:100%;
|
|
aspect-ratio:2 / 3;
|
|
object-fit:cover;
|
|
}
|
|
|
|
|