🎨 Pixiv每日热榜Top50
.pixiv-daily-gallery {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, “Helvetica Neue”, Arial, sans-serif;
}
.gallery-header {
text-align: center;
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 3px solid #0095f6;
}
.gallery-header h1 {
font-size: 28px;
margin: 0 0 10px 0;
color: #333;
}
.date-info {
font-size: 16px;
color: #666;
margin-bottom: 10px;
}
.description {
font-size: 14px;
color: #888;
max-width: 600px;
margin: 0 auto;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 25px;
margin-top: 30px;
}
.gallery-item {
position: relative;
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}
.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.rank-badge {
position: absolute;
top: 12px;
left: 12px;
background: linear-gradient(135deg, #ff6b6b, #ee5a24);
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 14px;
font-weight: bold;
z-index: 10;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.image-wrapper {
position: relative;
background: #f0f0f0;
overflow: hidden;
cursor: pointer;
}
.image-wrapper img {
width: 100%;
height: auto;
display: block;
transition: transform 0.3s ease;
}
.gallery-item:hover .image-wrapper img {
transform: scale(1.05);
}
.image-info {
padding: 15px;
background: white;
}
.image-title {
font-size: 16px;
font-weight: 600;
margin: 0 0 8px 0;
color: #333;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.image-meta {
font-size: 12px;
color: #666;
margin-bottom: 8px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 5px;
}
.image-meta .artist a {
color: #0095f6;
text-decoration: none;
}
.image-meta .artist a:hover {
text-decoration: underline;
}
.image-meta .image-id {
color: #999;
}
.tags {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin-top: 8px;
}
.tag {
display: inline-block;
font-size: 10px;
color: #0095f6;
background: #e7f3ff;
padding: 2px 8px;
border-radius: 12px;
text-decoration: none;
}
.gallery-footer {
margin-top: 50px;
padding: 25px;
text-align: center;
background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
border-radius: 12px;
font-size: 13px;
color: #666;
}
.footer-stats p {
margin: 8px 0;
}
.copyright {
font-size: 11px;
color: #999;
margin-top: 12px;
}
@media (max-width: 768px) {
.gallery-grid {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 15px;
}
.image-title {
font-size: 14px;
}
.gallery-header h1 {
font-size: 22px;
}
}



















































评论0