store.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* 动画商城页面样式 */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. body {
  8. margin: 0;
  9. padding: 0;
  10. height: 100vh;
  11. overflow: hidden;
  12. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
  13. "Noto Sans", sans-serif;
  14. }
  15. .store-root {
  16. display: flex;
  17. flex-direction: column;
  18. min-height: 100vh;
  19. height: 100vh;
  20. background: linear-gradient(135deg, #fdfcfb 0%, #f7f7f8 50%, #fdfcfb 100%);
  21. color: #1f2937;
  22. user-select: none;
  23. -webkit-user-select: none;
  24. -moz-user-select: none;
  25. -ms-user-select: none;
  26. }
  27. .store-container {
  28. flex: 1;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. padding: 40px;
  33. }
  34. .coming-soon {
  35. text-align: center;
  36. max-width: 600px;
  37. padding: 60px 40px;
  38. background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  39. border-radius: 24px;
  40. box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
  41. border: 2px solid rgba(139, 92, 246, 0.1);
  42. }
  43. .coming-soon-icon {
  44. font-size: 80px;
  45. margin-bottom: 24px;
  46. animation: float 3s ease-in-out infinite;
  47. }
  48. @keyframes float {
  49. 0%, 100% {
  50. transform: translateY(0);
  51. }
  52. 50% {
  53. transform: translateY(-10px);
  54. }
  55. }
  56. .coming-soon-title {
  57. font-size: 36px;
  58. font-weight: 700;
  59. background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  60. -webkit-background-clip: text;
  61. -webkit-text-fill-color: transparent;
  62. background-clip: text;
  63. margin-bottom: 16px;
  64. letter-spacing: 1px;
  65. }
  66. .coming-soon-subtitle {
  67. font-size: 24px;
  68. color: #6b7280;
  69. font-weight: 600;
  70. margin-bottom: 20px;
  71. letter-spacing: 0.5px;
  72. }
  73. .coming-soon-description {
  74. font-size: 16px;
  75. color: #9ca3af;
  76. line-height: 1.6;
  77. margin-top: 12px;
  78. }