Skip to Content
Responsible Administrator
Last Update 08/22/2025
Completion Time 15 minutes
Members 2
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Microsoft YaHei', sans-serif; overflow: hidden; background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); } .hero-section { height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; } #webgl-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 20px; color: white; } .scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-20px); } 60% { transform: translateX(-50%) translateY(-10px); } } .scroll-hint i { font-size: 2rem; opacity: 0.7; }