10/20/25-10/26/25 Weibo Hot Topics
November 03, 2025
.pdf-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
padding: 2rem 0;
}
.pdf-card {
background: #f9f9f9;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
overflow: hidden;
transition: transform 0.2s ease;
}
.pdf-card:hover {
transform: translateY(-4px);
}
.pdf-title {
font-size: 1.2rem;
font-weight: 600;
padding: 1rem;
text-align: center;
background: #fff;
border-bottom: 1px solid #eee;
}
.pdf-frame {
width: 100%;
…
View Research