250 lines
4.0 KiB
Plaintext
250 lines
4.0 KiB
Plaintext
.page {
|
|
min-height: 100vh;
|
|
background: #0a0a0c;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.nav-bar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 100;
|
|
height: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 8px;
|
|
background: rgba(10, 10, 12, 0.92);
|
|
border-bottom: 1px solid rgba(34, 211, 238, 0.12);
|
|
}
|
|
|
|
.nav-title {
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
color: #5eead4;
|
|
}
|
|
|
|
.nav-placeholder {
|
|
width: 44px;
|
|
}
|
|
|
|
.nav-back {
|
|
width: 44px;
|
|
height: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.nav-offset {
|
|
width: 100%;
|
|
}
|
|
|
|
.compose-bar-fixed {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 99;
|
|
padding: 10px 14px 12px;
|
|
background: rgba(10, 10, 12, 0.96);
|
|
border-bottom: 1px solid rgba(34, 211, 238, 0.12);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.compose-bar-btn {
|
|
height: 44px;
|
|
border-radius: 12px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
color: #0a0a0c;
|
|
background: linear-gradient(135deg, #22d3ee, #14b8a6);
|
|
}
|
|
|
|
.compose-bar-plus {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
}
|
|
|
|
.feed-wrap {
|
|
padding: 12px 14px 28px;
|
|
}
|
|
|
|
.feed-wrap-has-compose {
|
|
padding-top: 72px;
|
|
}
|
|
|
|
.empty-block {
|
|
padding: 48px 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.empty-text {
|
|
display: block;
|
|
color: rgba(255, 255, 255, 0.55);
|
|
font-size: 15px;
|
|
}
|
|
|
|
.empty-sub {
|
|
display: block;
|
|
margin-top: 8px;
|
|
color: rgba(255, 255, 255, 0.35);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.feed-item {
|
|
background: rgba(28, 28, 32, 0.96);
|
|
border-radius: 14px;
|
|
padding: 14px;
|
|
margin-bottom: 12px;
|
|
border: 1px solid rgba(34, 211, 238, 0.12);
|
|
}
|
|
|
|
.feed-item-hover {
|
|
opacity: 0.92;
|
|
}
|
|
|
|
.feed-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.audit-tag {
|
|
font-size: 11px;
|
|
padding: 3px 10px;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
color: rgba(255, 255, 255, 0.65);
|
|
}
|
|
|
|
.audit-approved {
|
|
color: #5eead4;
|
|
border-color: rgba(94, 234, 212, 0.35);
|
|
}
|
|
|
|
.audit-pending {
|
|
color: #fcd34d;
|
|
border-color: rgba(252, 211, 77, 0.35);
|
|
}
|
|
|
|
.audit-rejected {
|
|
color: #fca5a5;
|
|
border-color: rgba(252, 165, 165, 0.35);
|
|
}
|
|
|
|
.feed-time {
|
|
font-size: 12px;
|
|
color: rgba(255, 255, 255, 0.38);
|
|
}
|
|
|
|
.feed-title {
|
|
display: block;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: rgba(255, 255, 255, 0.92);
|
|
margin-bottom: 6px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.feed-title-fallback {
|
|
font-weight: 500;
|
|
color: rgba(255, 255, 255, 0.78);
|
|
}
|
|
|
|
.feed-teaser-hint {
|
|
display: block;
|
|
font-size: 12px;
|
|
color: rgba(148, 163, 184, 0.85);
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.feed-thumb-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.thumb-cell {
|
|
width: 72px;
|
|
height: 72px;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
background: rgba(15, 23, 42, 0.55);
|
|
}
|
|
|
|
.thumb-img {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
border: 2rpx solid rgba(34, 211, 238, 0.32);
|
|
}
|
|
|
|
.thumb-ph {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px dashed rgba(148, 163, 184, 0.35);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.thumb-ph-text {
|
|
font-size: 10px;
|
|
color: #64748b;
|
|
transform: scale(0.92);
|
|
}
|
|
|
|
.thumb-more {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: rgba(34, 211, 238, 0.88);
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.feed-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.feed-btn {
|
|
font-size: 13px;
|
|
padding: 8px 16px;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.feed-btn.primary {
|
|
color: #0a0a0c;
|
|
background: linear-gradient(135deg, #00ced1, #20b2aa);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.feed-btn.danger {
|
|
color: rgba(248, 113, 113, 0.95);
|
|
border: 1px solid rgba(248, 113, 113, 0.45);
|
|
}
|
|
|
|
.load-more {
|
|
text-align: center;
|
|
padding: 12px;
|
|
font-size: 12px;
|
|
color: rgba(255, 255, 255, 0.35);
|
|
}
|