landing.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /* 页面整体背景 - 橙色 */
  2. page {
  3. background-color: #FF9800;
  4. }
  5. .container {
  6. min-height: 100vh;
  7. display: flex;
  8. flex-direction: column;
  9. position: relative;
  10. }
  11. /* 自定义导航栏 */
  12. .nav-bar {
  13. height: 88rpx;
  14. /* 标准导航栏高度 */
  15. display: flex;
  16. align-items: center;
  17. padding: 0 30rpx;
  18. /* 适配状态栏高度在 vue 中通过 padding-top 实现,这里仅控制栏本身 */
  19. }
  20. .back-icon {
  21. font-size: 60rpx;
  22. color: #fff;
  23. font-weight: bold;
  24. /* 增大点击区域 */
  25. width: 60rpx;
  26. height: 60rpx;
  27. line-height: 56rpx;
  28. text-align: center;
  29. display: block;
  30. }
  31. /* 头部文案 */
  32. .header-area {
  33. padding: 40rpx 40rpx 20rpx;
  34. color: #fff;
  35. text-align: center;
  36. }
  37. .main-title {
  38. font-size: 48rpx;
  39. font-weight: bold;
  40. display: block;
  41. margin-bottom: 20rpx;
  42. }
  43. .sub-title {
  44. font-size: 32rpx;
  45. opacity: 0.9;
  46. display: block;
  47. }
  48. /* 内容卡片 */
  49. .content-card {
  50. background-color: #fff;
  51. border-radius: 30rpx;
  52. /* 四周圆角 */
  53. margin: 40rpx 30rpx;
  54. /* 上下40 左右30 */
  55. padding: 60rpx 40rpx;
  56. display: flex;
  57. flex-direction: column;
  58. box-shadow: 0 10rpx 30rpx rgba(0, 0, 0, 0.1);
  59. }
  60. .benefit-item {
  61. display: flex;
  62. align-items: center;
  63. /* 垂直居中对齐 */
  64. margin-bottom: 60rpx;
  65. }
  66. .icon-circle {
  67. width: 80rpx;
  68. height: 80rpx;
  69. border-radius: 50%;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. margin-right: 30rpx;
  74. flex-shrink: 0;
  75. color: #fff;
  76. /* 图标文字白色 */
  77. font-weight: bold;
  78. }
  79. /* 图1 配色复刻 */
  80. .icon-money {
  81. background-color: #26A69A;
  82. /* 青色/绿色 */
  83. }
  84. .icon-loc {
  85. background-color: #2979FF;
  86. /* 蓝色 */
  87. }
  88. .icon-clock {
  89. background-color: #FF7043;
  90. /* 橙色 */
  91. }
  92. .icon-text {
  93. font-size: 40rpx;
  94. }
  95. .info {
  96. flex: 1;
  97. }
  98. .item-title {
  99. font-size: 32rpx;
  100. font-weight: bold;
  101. color: #333;
  102. margin-bottom: 8rpx;
  103. /* 减小间距 */
  104. display: block;
  105. }
  106. .item-desc {
  107. font-size: 26rpx;
  108. color: #666;
  109. line-height: 1.6;
  110. display: block;
  111. }
  112. /* 底部区域 */
  113. .footer-area {
  114. margin-top: auto;
  115. /* 推到最底部 */
  116. padding: 20rpx 40rpx 80rpx;
  117. display: flex;
  118. flex-direction: column;
  119. align-items: center;
  120. /* 移除白色背景,呈现底色橙色 */
  121. }
  122. .join-btn {
  123. width: 100%;
  124. height: 90rpx;
  125. line-height: 90rpx;
  126. background: #fff;
  127. /* 白色按钮 */
  128. color: #FF5722;
  129. /* 橙色文字 */
  130. font-size: 34rpx;
  131. font-weight: bold;
  132. border-radius: 45rpx;
  133. box-shadow: 0 10rpx 20rpx rgba(0, 0, 0, 0.1);
  134. }
  135. .join-btn::after {
  136. border: none;
  137. }
  138. .faq {
  139. margin-top: 30rpx;
  140. color: #fff;
  141. /* 白色文字 */
  142. font-size: 26rpx;
  143. display: flex;
  144. align-items: center;
  145. }
  146. .help-icon {
  147. width: 30rpx;
  148. height: 30rpx;
  149. border: 1px solid #fff;
  150. /* 白色边框 */
  151. border-radius: 50%;
  152. display: flex;
  153. align-items: center;
  154. justify-content: center;
  155. font-size: 20rpx;
  156. margin-right: 10rpx;
  157. color: #fff;
  158. /* 白色问号 */
  159. }