Files
xiaomai bcbae992a3 feat(sponsor-list): implement new design with animated canvas background
This commit introduces a completely redesigned sponsor list page. The previous two-column layout is replaced with a
modern, single-column auto-scrolling list that unifies all sponsors. A dynamic canvas animation has been added to the
background for a more engaging visual experience. Previous versions of the page have been archived. This update also
includes data corrections for sponsor names and minor fixes to the related PPT assets.
2025-09-16 23:48:44 +08:00

48 lines
644 B
CSS

.tpl-cover {
width: 100%;
height: 100%;
display: flex;
position: relative;
/* background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)); */
}
.cover-inner {
text-align: center;
}
.middle {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.cover-title {
top: 2rem;
font-size: 4rem;
margin-bottom: 0.6rem;
}
.cover-sub {
top: 7rem;
font-size: 4rem;
opacity: 0.85;
}
.cover-date {
bottom: 4.5rem;
font-size: 1.5rem;
opacity: 0.75;
}
.cover-location {
bottom: 2rem;
font-size: 1.5rem;
opacity: 0.75;
}
@media (max-width: 768px) {
.cover-title {
font-size: 2rem;
}
}