添加视频复刻和优化脚本旁白
This commit is contained in:
@@ -120,12 +120,12 @@
|
||||
display: grid;
|
||||
place-items: center;
|
||||
}
|
||||
.fc-page .fc-stage:has(.fc-empty) {
|
||||
.fc-page .fc-stage:has(.fc-empty:not(.is-soft)) {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
.fc-page .fc-stage:has(.fc-empty)::before {
|
||||
.fc-page .fc-stage:has(.fc-empty:not(.is-soft))::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 5% 7%;
|
||||
@@ -165,11 +165,60 @@
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.fc-page .fc-feedbar {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 7px;
|
||||
flex-shrink: 0;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.fc-page .fc-filter {
|
||||
height: 30px;
|
||||
padding: 0 11px;
|
||||
border: 0;
|
||||
border-radius: 8px;
|
||||
color: var(--fc-muted);
|
||||
background: rgba(34, 42, 54, 0.055);
|
||||
font: inherit;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
.fc-page .fc-filter span {
|
||||
font-variant-numeric: tabular-nums;
|
||||
opacity: 0.72;
|
||||
}
|
||||
.fc-page .fc-filter:hover {
|
||||
color: var(--accent-black);
|
||||
background: rgba(34, 42, 54, 0.10);
|
||||
}
|
||||
.fc-page .fc-filter.active {
|
||||
color: #fff;
|
||||
background: var(--fc-black);
|
||||
}
|
||||
.fc-page .fc-group + .fc-group { margin-top: 28px; }
|
||||
.fc-page .fc-group-h {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-bottom: 12px;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: var(--accent-black);
|
||||
}
|
||||
.fc-page .fc-group-h span {
|
||||
font-weight: 400;
|
||||
color: var(--fc-muted);
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.fc-page .fc-feed {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 18px;
|
||||
align-items: start;
|
||||
align-items: stretch;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
.fc-page .fc-sentinel {
|
||||
@@ -181,6 +230,8 @@
|
||||
|
||||
.fc-page .fc-card {
|
||||
overflow: hidden;
|
||||
min-width: 0;
|
||||
height: 100%;
|
||||
border: 1px solid var(--fc-line);
|
||||
border-radius: 13px;
|
||||
background: rgba(34, 42, 54, 0.05);
|
||||
@@ -196,12 +247,14 @@
|
||||
}
|
||||
.fc-page .fc-card-media {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
aspect-ratio: 16 / 10;
|
||||
background: #e5e6e9;
|
||||
max-height: 280px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.fc-page .fc-card-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
|
||||
.fc-page .fc-dur {
|
||||
@@ -314,15 +367,18 @@
|
||||
.fc-page .fc-hover-btn:hover { color: var(--accent-black); }
|
||||
.fc-page .fc-hover-btn.fav { color: var(--klein); }
|
||||
.fc-page .fc-hover-btn.danger:hover { color: var(--accent-crimson); }
|
||||
.fc-page .fc-card-meta { padding: 15px 16px 17px; }
|
||||
.fc-page .fc-card-meta { padding: 15px 16px 17px; flex: 1 1 auto; }
|
||||
.fc-page .fc-card-meta h3 {
|
||||
margin: 0 0 6px;
|
||||
min-height: calc(1.35em * 2);
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
line-height: 1.35;
|
||||
color: var(--accent-black);
|
||||
white-space: nowrap;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.fc-page .fc-card-meta p {
|
||||
margin: 0;
|
||||
@@ -979,9 +1035,13 @@
|
||||
.fc-lib-model-picks .btn { height: 24px; padding: 0 8px; font-size: 11.5px; }
|
||||
.fc-lib-more { display: flex; justify-content: center; padding-top: 14px; }
|
||||
|
||||
@media (max-width: 1500px) {
|
||||
.fc-page .fc-feed { grid-template-columns: repeat(3, minmax(0, 1fr)); }
|
||||
}
|
||||
@media (max-width: 1100px) {
|
||||
.fc-page .fc-head { flex-direction: column; align-items: stretch; }
|
||||
.fc-page .fc-material .fc-ghost { min-width: 0; }
|
||||
.fc-page .fc-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
||||
}
|
||||
@media (max-width: 720px) {
|
||||
.fc-page .fc-feed { grid-template-columns: 1fr; }
|
||||
|
||||
Reference in New Issue
Block a user