国外MOSE官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

163 lines
3.8 KiB

3 days ago
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .my-page.data-v-810f65fc {
  28. min-height: 100vh;
  29. background-color: #FFFFFF;
  30. }
  31. .header-section.data-v-810f65fc {
  32. background: linear-gradient(180deg, #1488db, #98b5f1);
  33. padding: 60rpx 40rpx 80rpx;
  34. position: relative;
  35. }
  36. .header-icons.data-v-810f65fc {
  37. display: flex;
  38. justify-content: flex-end;
  39. gap: 32rpx;
  40. margin-bottom: 40rpx;
  41. }
  42. .user-info.data-v-810f65fc {
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. margin-bottom: 60rpx;
  47. }
  48. .avatar-container.data-v-810f65fc {
  49. width: 120rpx;
  50. height: 120rpx;
  51. border-radius: 50%;
  52. overflow: hidden;
  53. margin-bottom: 20rpx;
  54. border: 4rpx solid rgba(255, 255, 255, 0.3);
  55. }
  56. .avatar.data-v-810f65fc {
  57. width: 100%;
  58. height: 100%;
  59. }
  60. .username.data-v-810f65fc {
  61. font-size: 30rpx;
  62. color: #000000;
  63. }
  64. .points-section.data-v-810f65fc {
  65. display: flex;
  66. justify-content: space-between;
  67. margin: 30rpx 30rpx;
  68. gap: 24rpx;
  69. }
  70. .points-item.data-v-810f65fc {
  71. border-radius: 12rpx;
  72. padding: 32rpx 24rpx;
  73. flex: 1;
  74. display: flex;
  75. align-items: center;
  76. justify-content: space-between;
  77. position: relative;
  78. box-shadow: 0px 1.5px 3px 0px rgba(0, 0, 0, 0.16);
  79. }
  80. .points-item.yellow.data-v-810f65fc {
  81. background: #FEF4D1;
  82. }
  83. .points-item.blue.data-v-810f65fc {
  84. background: #C7E6FF;
  85. }
  86. .points-content.data-v-810f65fc {
  87. display: flex;
  88. flex-direction: column;
  89. align-items: flex-start;
  90. }
  91. .points-number.data-v-810f65fc {
  92. font-size: 48rpx;
  93. color: #000000;
  94. font-weight: bold;
  95. line-height: 1;
  96. }
  97. .points-label.data-v-810f65fc {
  98. font-size: 24rpx;
  99. color: #000000;
  100. font-size: 24rpx;
  101. margin-top: 8rpx;
  102. }
  103. .points-label.yellow.data-v-810f65fc {
  104. color: #DEB31B;
  105. }
  106. .points-label.blue.data-v-810f65fc {
  107. color: #1488db;
  108. }
  109. .points-icon.data-v-810f65fc {
  110. display: flex;
  111. align-items: center;
  112. justify-content: center;
  113. }
  114. .functions-container.data-v-810f65fc {
  115. height: 319px;
  116. background: #ffffff;
  117. border-radius: 8px;
  118. box-shadow: 0px 1.5px 3px 0px rgba(0, 0, 0, 0.16);
  119. margin: 20rpx 30rpx;
  120. padding: 40rpx;
  121. }
  122. .section-title.data-v-810f65fc {
  123. font-size: 32rpx;
  124. color: #333;
  125. font-weight: bold;
  126. margin-bottom: 40rpx;
  127. display: block;
  128. }
  129. .functions-grid.data-v-810f65fc {
  130. display: grid;
  131. grid-template-columns: repeat(4, 1fr);
  132. gap: 40rpx 10rpx;
  133. }
  134. .function-item.data-v-810f65fc {
  135. display: flex;
  136. flex-direction: column;
  137. align-items: center;
  138. gap: 16rpx;
  139. padding: 20rpx;
  140. border-radius: 12rpx;
  141. transition: all 0.3s ease;
  142. }
  143. .function-item.data-v-810f65fc:active {
  144. background-color: #F0F8FF;
  145. -webkit-transform: scale(0.95);
  146. transform: scale(0.95);
  147. }
  148. .function-icon.data-v-810f65fc {
  149. width: 48rpx;
  150. height: 48rpx;
  151. }
  152. .function-icon-wrapper.data-v-810f65fc {
  153. width: 48rpx;
  154. height: 48rpx;
  155. display: flex;
  156. align-items: center;
  157. justify-content: center;
  158. }
  159. .function-text.data-v-810f65fc {
  160. font-size: 24rpx;
  161. color: #000000;
  162. text-align: center;
  163. }