my.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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.data-v-0be17cc6 {
  28. background: linear-gradient(to bottom, #d7f3f9, #f3f3f3);
  29. width: 100vw;
  30. height: 100vh;
  31. position: relative;
  32. }
  33. .title.data-v-0be17cc6 {
  34. width: 100%;
  35. padding-bottom: 20rpx;
  36. }
  37. .title .titles.data-v-0be17cc6 {
  38. text-align: center;
  39. font-size: 36rpx;
  40. font-family: Georgia, 'Times New Roman', Times, serif;
  41. font-weight: bold;
  42. padding-top: 10rpx;
  43. }
  44. .title .back.data-v-0be17cc6 {
  45. position: absolute;
  46. left: 30rpx;
  47. width: 80rpx;
  48. height: 35rpx;
  49. }
  50. .title .back image.data-v-0be17cc6 {
  51. width: 18rpx;
  52. height: 100%;
  53. }
  54. .login.data-v-0be17cc6 {
  55. display: flex;
  56. padding-top: 40rpx;
  57. padding-left: 40rpx;
  58. align-items: center;
  59. }
  60. .login .head.data-v-0be17cc6 {
  61. border-radius: 100px;
  62. overflow: hidden;
  63. width: 108rpx;
  64. height: 108rpx;
  65. background-color: #ccc;
  66. background-image: url("https://thirdwx.qlogo.cn/mmopen/vi_32/POgEwh4mIHO4nibH0KlMECNjjGxQUq24ZEaGT4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg/132");
  67. background-repeat: no-repeat;
  68. background-size: 100% 100%;
  69. }
  70. .login image.data-v-0be17cc6 {
  71. width: 108rpx;
  72. height: 108rpx;
  73. }
  74. .login ._span.data-v-0be17cc6 {
  75. font-size: 36rpx;
  76. color: #1A1A1A;
  77. font-family: monospace;
  78. font-weight: bold;
  79. padding-left: 30rpx;
  80. }
  81. .my_list.data-v-0be17cc6 {
  82. bottom: 0;
  83. width: calc(100% - 60rpx);
  84. height: 60vh;
  85. border-top-left-radius: 30rpx;
  86. border-top-right-radius: 30rpx;
  87. padding: 0 30rpx;
  88. padding-top: 50rpx;
  89. display: flex;
  90. justify-content: space-around;
  91. }
  92. .my_list .item.data-v-0be17cc6 {
  93. height: 100rpx;
  94. line-height: 100rpx;
  95. position: relative;
  96. text-align: center;
  97. }
  98. .my_list .item image.data-v-0be17cc6 {
  99. width: 80rpx;
  100. height: 80rpx;
  101. }
  102. .my_list .item view.data-v-0be17cc6 {
  103. font-size: 26rpx;
  104. color: #707678;
  105. height: 30rpx;
  106. line-height: 30rpx;
  107. }
  108. .account.data-v-0be17cc6 {
  109. background-color: #5ebad6;
  110. color: #fff;
  111. border-radius: 10rpx;
  112. width: calc(90% - 60rpx);
  113. margin: 30rpx auto;
  114. padding: 20rpx 30rpx;
  115. display: flex;
  116. justify-content: space-between;
  117. align-items: center;
  118. }
  119. .account .money.data-v-0be17cc6 {
  120. font-size: 40rpx;
  121. }
  122. .account .btn.data-v-0be17cc6 {
  123. display: flex;
  124. }
  125. .account .btn view.data-v-0be17cc6 {
  126. background-color: #ffebd5;
  127. color: #0e0d0d;
  128. padding: 10rpx 30rpx;
  129. border-radius: 50rpx;
  130. margin-left: 20rpx;
  131. font-size: 28rpx;
  132. }
  133. .account .btn view.data-v-0be17cc6:first-child {
  134. background-color: #75dbf5;
  135. color: #fff;
  136. }
  137. .qr_code.data-v-0be17cc6 {
  138. width: 100vw;
  139. height: 100vh;
  140. background-color: rgba(0, 0, 0, 0.8);
  141. z-index: 999999;
  142. position: absolute;
  143. top: 0;
  144. left: 0;
  145. display: flex;
  146. justify-content: center;
  147. align-items: center;
  148. }
  149. .qr_code .img_box.data-v-0be17cc6 {
  150. background-color: #fff;
  151. border-radius: 20rpx;
  152. }
  153. .qr_code .img_box image.data-v-0be17cc6 {
  154. width: 400rpx;
  155. height: 400rpx;
  156. }