This commit is contained in:
make
2025-12-31 00:49:32 +08:00
parent ae57b68f99
commit eb8c097777
709 changed files with 39727 additions and 1041 deletions

View File

@@ -0,0 +1,96 @@
/* detail_01.css */
.__PFX__-d1-wrap { padding: 12px; }
/* 顶部基础信息 */
.__PFX__-d1-hd { display: flex; gap: 14px; }
@media(max-width:768px){
.__PFX__-d1-hd { flex-direction: column; }
}
.__PFX__-d1-cover {
width: 160px;
border-radius: 12px;
aspect-ratio: 2/3;
object-fit: cover;
}
.__PFX__-d1-info h1 {
font-size: 22px;
color: var(--primary-color);
margin-bottom: 10px;
}
.__PFX__-d1-info p {
margin-bottom: 4px;
font-size: 13px;
}
/* TAB 线路切换 */
.__PFX__-d1-tabs {
margin-top: 20px;
display: flex;
gap: 10px;
overflow-x: auto;
}
.__PFX__-d1-tab {
padding: 6px 12px;
background: #f4f4f4;
border-radius: 8px;
font-size: 13px;
white-space: nowrap;
}
.__PFX__-d1-tab.active {
background: var(--primary-color);
color: #fff;
}
/* 集数列表 */
.__PFX__-d1-list { display: none; margin: 14px 0; }
.__PFX__-d1-list.active { display: flex; flex-wrap: wrap; gap: 10px; }
.__PFX__-d1-list li a {
display: block;
padding: 6px 14px;
background: #fafafa;
border-radius: 6px;
font-size: 12px;
border: 1px solid rgba(0,0,0,.06);
}
.__PFX__-d1-list li a.active {
background: var(--primary-color);
color: #fff;
}
/* 简介 */
.__PFX__-d1-desc h2 {
margin-top: 16px;
font-size: 18px;
color: var(--primary-color);
}
.__PFX__-d1-desc p {
line-height: 1.7;
margin-top: 6px;
}
/* 相关推荐 */
.__PFX__-d1-rel h3 {
margin-top: 20px;
font-size: 16px;
color: var(--primary-color);
}
.__PFX__-d1-relgrid {
display: grid;
gap: 14px;
grid-template-columns: repeat(2,1fr);
}
@media(min-width:768px){
.__PFX__-d1-relgrid {
grid-template-columns: repeat(4,1fr);
}
}
.__PFX__-d1-relcard img {
width: 100%;
aspect-ratio: 2/3;
object-fit: cover;
border-radius: 10px;
}
.__PFX__-d1-relcard p {
margin-top: 4px;
font-size: 12px;
}

View File

@@ -0,0 +1,125 @@
/* detail_02.css */
.__PFX__-d2-page { padding-bottom: 20px; }
/* 顶部大横图 */
.__PFX__-d2-hero {
position: relative;
height: 200px;
overflow: hidden;
}
@media(min-width:768px){
.__PFX__-d2-hero { height: 260px; }
}
.__PFX__-d2-heroimg {
width: 100%;
height: 100%;
object-fit: cover;
}
.__PFX__-d2-heromask {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
.__PFX__-d2-heroinfo {
position: absolute;
left: 12px;
right: 12px;
bottom: 12px;
color: #fff;
}
.__PFX__-d2-heroinfo h1 {
font-size: 20px;
margin-bottom: 4px;
}
/* 基本信息 */
.__PFX__-d2-info {
padding: 12px;
font-size: 13px;
}
.__PFX__-d2-info p { margin-bottom: 4px; }
/* 线路 tabs */
.__PFX__-d2-tabs {
padding: 0 12px;
margin-top: 10px;
display: flex;
gap: 8px;
overflow-x: auto;
}
.__PFX__-d2-tabbtn {
padding: 6px 12px;
border-radius: 14px;
border: 1px solid rgba(0,0,0,.08);
background: #f6f6f6;
font-size: 12px;
white-space: nowrap;
}
.__PFX__-d2-tabbtn.active {
background: var(--primary-color);
border-color: var(--primary-color);
color: #fff;
}
/* 集数列表 */
.__PFX__-d2-lines { padding: 10px 12px 0; }
.__PFX__-d2-epis {
display: none;
flex-wrap: wrap;
gap: 8px;
}
.__PFX__-d2-epis.active { display: flex; }
.__PFX__-d2-epis li a {
display: block;
padding: 6px 10px;
font-size: 12px;
border-radius: 6px;
background: #fafafa;
border: 1px solid rgba(0,0,0,.06);
}
.__PFX__-d2-epis li a.active {
background: var(--primary-color);
color: #fff;
}
/* 简介 */
.__PFX__-d2-desc {
padding: 14px 12px 0;
}
.__PFX__-d2-desc h2 {
font-size: 16px;
color: var(--primary-color);
margin-bottom: 6px;
}
.__PFX__-d2-desc p {
font-size: 14px;
line-height: 1.7;
}
/* 相关推荐 */
.__PFX__-d2-rel {
padding: 16px 12px 0;
}
.__PFX__-d2-rel h3 {
font-size: 16px;
color: var(--primary-color);
margin-bottom: 8px;
}
.__PFX__-d2-relgrid {
display: grid;
gap: 12px;
grid-template-columns: repeat(2,1fr);
}
@media(min-width:768px){
.__PFX__-d2-relgrid { grid-template-columns: repeat(4,1fr); }
}
.__PFX__-d2-relcard img {
width: 100%;
aspect-ratio: 2/3;
border-radius: 10px;
object-fit: cover;
}
.__PFX__-d2-relcard p {
font-size: 12px;
margin-top: 4px;
}

View File

@@ -0,0 +1,104 @@
/* 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;
}

View File

@@ -0,0 +1,98 @@
/* detail_04.css */
.__PFX__-d4-page { padding: 12px; }
.__PFX__-d4-head h1 {
font-size: 22px;
color: var(--primary-color);
margin-bottom: 10px;
}
/* 封面 + 表格 meta */
.__PFX__-d4-meta {
display: flex;
gap: 10px;
}
@media(max-width:768px){
.__PFX__-d4-meta { flex-direction: column; }
}
.__PFX__-d4-img {
width: 150px;
aspect-ratio: 2/3;
border-radius: 10px;
object-fit: cover;
}
.__PFX__-d4-table p {
display: flex;
justify-content: space-between;
font-size: 13px;
padding: 4px 0;
}
.__PFX__-d4-table span:first-child {
color: #666;
}
/* 线路选择 */
.__PFX__-d4-linebox {
margin-top: 14px;
font-size: 13px;
}
.__PFX__-d4-linebox select {
margin-left: 6px;
padding: 4px 8px;
font-size: 13px;
}
/* 集数列表 */
.__PFX__-d4-eplist { margin-top: 10px; }
.__PFX__-d4-ol {
display: none;
padding-left: 18px;
}
.__PFX__-d4-ol.active { display: block; }
.__PFX__-d4-ol li {
margin-bottom: 6px;
}
.__PFX__-d4-ol a {
font-size: 13px;
}
.__PFX__-d4-ol a.active {
color: var(--primary-color);
}
/* 简介 */
.__PFX__-d4-desc h2 {
margin-top: 18px;
font-size: 16px;
color: var(--primary-color);
}
.__PFX__-d4-desc p {
margin-top: 6px;
font-size: 14px;
line-height: 1.7;
}
/* 同年推荐 */
.__PFX__-d4-rel h3 {
margin-top: 18px;
font-size: 16px;
color: var(--primary-color);
}
.__PFX__-d4-grid {
margin-top: 8px;
display: grid;
gap: 12px;
grid-template-columns: repeat(2,1fr);
}
@media(min-width:768px){
.__PFX__-d4-grid { grid-template-columns: repeat(3,1fr); }
}
.__PFX__-d4-card img {
width: 100%;
aspect-ratio: 2/3;
border-radius: 10px;
object-fit: cover;
}
.__PFX__-d4-card p {
font-size: 12px;
margin-top: 4px;
}

View File

@@ -0,0 +1,107 @@
/* detail_05.css */
.__PFX__-d5-page { padding: 12px; }
/* 头部 */
.__PFX__-d5-head h1 {
font-size: 22px;
color: var(--primary-color);
}
.__PFX__-d5-head p {
font-size: 13px;
color: #666;
margin-top: 4px;
}
/* 海报 */
.__PFX__-d5-fig {
margin-top: 12px;
}
.__PFX__-d5-poster {
width: 100%;
max-width: 260px;
border-radius: 14px;
aspect-ratio: 2/3;
object-fit: cover;
}
/* 线路 + 集数 */
.__PFX__-d5-lines {
margin-top: 14px;
}
.__PFX__-d5-linechips {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.__PFX__-d5-chip {
padding: 5px 10px;
border-radius: 999px;
border: 1px solid rgba(0,0,0,.06);
background: #f7f7f7;
font-size: 12px;
}
.__PFX__-d5-chip.active {
background: var(--primary-color);
color: #fff;
}
.__PFX__-d5-epswrap {
margin-top: 10px;
}
.__PFX__-d5-eps {
display: none;
display: none;
flex-wrap: wrap;
gap: 8px;
}
.__PFX__-d5-eps.active {
display: flex;
}
.__PFX__-d5-epbtn {
padding: 6px 12px;
font-size: 12px;
border-radius: 8px;
background: #fafafa;
border: 1px solid rgba(0,0,0,.05);
}
.__PFX__-d5-epbtn.active {
background: var(--primary-color);
color: #fff;
}
/* 简介 */
.__PFX__-d5-info h2 {
margin-top: 18px;
font-size: 16px;
color: var(--primary-color);
}
.__PFX__-d5-info p {
margin-top: 6px;
font-size: 14px;
line-height: 1.7;
}
/* 综合推荐 */
.__PFX__-d5-rel h3 {
margin-top: 18px;
font-size: 16px;
color: var(--primary-color);
}
.__PFX__-d5-relgrid {
margin-top: 8px;
display: grid;
gap: 12px;
grid-template-columns: repeat(2,1fr);
}
@media(min-width:768px){
.__PFX__-d5-relgrid { grid-template-columns: repeat(4,1fr); }
}
.__PFX__-d5-relcard img {
width: 100%;
aspect-ratio: 2/3;
border-radius: 10px;
object-fit: cover;
}
.__PFX__-d5-relcard p {
font-size: 12px;
margin-top: 4px;
}