.container { min-height: 100vh; background: #fafafa; padding: 0; } .content { padding: 20px; padding-bottom: 40px; max-width: 800px; margin: 0 auto; } .header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding: 16px 0; } .card { border-radius: 20px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(40px) saturate(180%); -webkit-backdrop-filter: blur(40px) saturate(180%); box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 1px 8px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03); border: 0.5px solid rgba(0, 0, 0, 0.04); margin-bottom: 20px; } .homeButton { height: 48px; font-size: 16px; font-weight: 500; border-radius: 12px; margin-top: 16px; } // 响应式设计 - 移动端 @media (max-width: 768px) { .content { padding: 16px; } .card { border-radius: 16px; margin-bottom: 16px; } .homeButton { height: 44px; font-size: 15px; } } // 响应式设计 - PC端 @media (min-width: 769px) { .content { padding: 32px; } }