爱简收旧衣按件回收前端代码仓库
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.

150 lines
4.0 KiB

  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .promo-modal-page.data-v-089fb45a {
  27. min-height: 100vh;
  28. background: linear-gradient(to bottom, #f6fff2 0%, #fff 100%);
  29. display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. position: relative;
  33. }
  34. .promo-modal-page .nav-bar.data-v-089fb45a {
  35. position: fixed;
  36. top: 0;
  37. left: 0;
  38. right: 0;
  39. z-index: 1000;
  40. width: 100vw;
  41. background: linear-gradient(to right, #b2f08d 0%, #39e9d2 100%);
  42. box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.03);
  43. }
  44. .promo-modal-page .nav-bar .nav-bar-inner.data-v-089fb45a {
  45. display: flex;
  46. align-items: center;
  47. height: 44px;
  48. width: 100vw;
  49. position: relative;
  50. }
  51. .promo-modal-page .nav-bar .back-icon.data-v-089fb45a, .promo-modal-page .nav-bar .nav-bar-right.data-v-089fb45a {
  52. width: 44px;
  53. height: 44px;
  54. display: flex;
  55. align-items: center;
  56. justify-content: center;
  57. position: absolute;
  58. top: 0;
  59. }
  60. .promo-modal-page .nav-bar .back-icon.data-v-089fb45a {
  61. left: 0;
  62. }
  63. .promo-modal-page .nav-bar .nav-bar-right.data-v-089fb45a {
  64. right: 0;
  65. }
  66. .promo-modal-page .nav-bar .nav-bar-title.data-v-089fb45a {
  67. flex: 1;
  68. text-align: center;
  69. font-size: 36rpx;
  70. font-weight: bold;
  71. color: #222;
  72. letter-spacing: 2rpx;
  73. line-height: 44px;
  74. }
  75. .promo-modal-page .user-info-modal.data-v-089fb45a {
  76. display: flex;
  77. flex-direction: column;
  78. align-items: center;
  79. }
  80. .promo-modal-page .user-info-modal .avatar-frame.data-v-089fb45a {
  81. width: 104rpx;
  82. height: 104rpx;
  83. border-radius: 10rpx;
  84. overflow: hidden;
  85. background: #f2f2f2;
  86. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
  87. }
  88. .promo-modal-page .user-info-modal .avatar-frame .avatar-img.data-v-089fb45a {
  89. width: 104rpx;
  90. height: 104rpx;
  91. object-fit: cover;
  92. display: block;
  93. }
  94. .promo-modal-page .user-info-modal .nickname.data-v-089fb45a {
  95. margin-top: 24rpx;
  96. font-size: 32rpx;
  97. font-weight: bold;
  98. color: #222;
  99. text-align: center;
  100. }
  101. .promo-modal-page .qrcode-modal-section.data-v-089fb45a {
  102. margin-top: 48rpx;
  103. width: 80vw;
  104. display: flex;
  105. flex-direction: column;
  106. align-items: center;
  107. }
  108. .promo-modal-page .qrcode-modal-section .qrcode-img.data-v-089fb45a {
  109. width: 80vw;
  110. height: 80vw;
  111. max-width: 480rpx;
  112. max-height: 480rpx;
  113. background: #fff;
  114. border-radius: 24rpx;
  115. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.08);
  116. }
  117. .promo-modal-page .qrcode-modal-section .invite-code.data-v-089fb45a {
  118. margin-top: 32rpx;
  119. font-size: 30rpx;
  120. color: #222;
  121. font-weight: bold;
  122. text-align: center;
  123. }
  124. .promo-modal-page .bottom-btns-modal.data-v-089fb45a {
  125. position: fixed;
  126. left: 0;
  127. right: 0;
  128. bottom: 0;
  129. display: flex;
  130. justify-content: space-between;
  131. padding: 24rpx 32rpx calc(env(safe-area-inset-bottom) + 24rpx) 32rpx;
  132. background: #fff;
  133. z-index: 100;
  134. }
  135. .promo-modal-page .bottom-btns-modal .btn.data-v-089fb45a {
  136. flex: 1;
  137. height: 88rpx;
  138. border-radius: 44rpx;
  139. font-size: 32rpx;
  140. font-weight: bold;
  141. margin: 0 12rpx;
  142. border: none;
  143. }
  144. .promo-modal-page .bottom-btns-modal .btn.gray.data-v-089fb45a {
  145. background: linear-gradient(90deg, #f7f7f7, #f2f2f2);
  146. color: #888;
  147. }
  148. .promo-modal-page .bottom-btns-modal .btn.green.data-v-089fb45a {
  149. background: linear-gradient(90deg, #b2f08d, #39e9d2);
  150. color: #fff;
  151. }