Award

Awwwards

The Logic of Award-Winning Excellence

🏆 Design Philosophy

Awwwards 是全球最具影响力的网页设计评选平台,其设计哲学围绕三个核心:创新性可用性创意执行。评选标准强调技术与艺术的平衡。

🎨 Color System

Gold Primary
#D4AF37
Deep Black
#0A0A0A
Card Dark
#141414
Border Gray
#2A2A2A
:root { --aww-gold: #D4AF37; --aww-gold-light: #E8C547; --aww-black: #0A0A0A; --aww-dark: #141414; --aww-gray: #2A2A2A; --aww-text: #F5F5F5; --aww-muted: #888; }

🔤 Typography

Awwwards 采用现代几何无衬线字体,强调可读性与现代感。

font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; h1 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; } h2 { font-size: 1.25rem; font-weight: 600; } body { font-size: 1rem; line-height: 1.6; }

📐 Layout & Spacing

基于 8px 网格系统的一致性间距。

space-1
4px
space-2
8px
space-3
16px
space-4
24px
space-5
32px
space-6
48px

✨ Interaction Patterns

平滑的微交互与过渡动画是 Awwwards 获奖作品的共同特征。

/* Hover transitions */ .card { transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(212,175,55,0.15); } /* Page load animation */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }