appPopup.wxss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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. .num.data-v-85bf954e {
  28. margin-left: 12rpx;
  29. font-family: DINPro, DINPro;
  30. font-size: 40rpx;
  31. }
  32. .appPopup-mask.data-v-85bf954e {
  33. margin-top: -88rpx;
  34. width: 670rpx;
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. justify-content: center;
  39. }
  40. .appPopup-mask .tipimg.data-v-85bf954e {
  41. height: 206rpx;
  42. width: 206rpx;
  43. z-index: 99;
  44. }
  45. .appPopup-mask .close_icon.data-v-85bf954e {
  46. height: 48rpx;
  47. width: 48rpx;
  48. position: absolute;
  49. top: 34rpx;
  50. right: 20rpx;
  51. }
  52. .appPopup-mask .appPopup-box.data-v-85bf954e {
  53. width: 670rpx;
  54. padding-bottom: 32rpx;
  55. background: linear-gradient(180deg, #FFEBBD 0%, #FFFFFF 9%, #FFFFFF 100%);
  56. border-radius: 32rpx 32rpx 32rpx 32rpx;
  57. overflow: hidden;
  58. margin-top: -103rpx;
  59. padding-top: 103rpx;
  60. box-sizing: border-box;
  61. font-family: PingFang SC;
  62. font-weight: 400;
  63. font-size: 28rpx;
  64. color: #757575;
  65. text-align: center;
  66. }
  67. .appPopup-mask .appPopup-title.data-v-85bf954e {
  68. margin-bottom: 10rpx;
  69. font-family: PingFang SC;
  70. font-weight: 600;
  71. font-size: 40rpx;
  72. color: #222222;
  73. }
  74. .goodslist.data-v-85bf954e {
  75. margin-top: 58rpx;
  76. padding: 24rpx 10rpx;
  77. display: flex;
  78. flex-direction: row;
  79. align-items: center;
  80. justify-content: space-evenly;
  81. }
  82. .bg.data-v-85bf954e {
  83. width: 100%;
  84. height: 100%;
  85. position: absolute;
  86. bottom: 0;
  87. left: 0;
  88. z-index: -1;
  89. }
  90. .goodsitem.data-v-85bf954e {
  91. flex: 1;
  92. max-width: 200rpx;
  93. min-height: 124rpx;
  94. border-radius: 10rpx;
  95. display: flex;
  96. flex-direction: column;
  97. align-items: center;
  98. justify-content: flex-start;
  99. font-family: PingFang SC;
  100. font-weight: 400;
  101. font-size: 22rpx;
  102. color: #999999;
  103. position: relative;
  104. z-index: 2;
  105. }
  106. .goodsitem .img.data-v-85bf954e {
  107. width: 153rpx;
  108. height: 126rpx;
  109. margin-top: -44rpx;
  110. border-radius: 10rpx;
  111. }
  112. .goodsitem-name.data-v-85bf954e {
  113. width: 100%;
  114. padding: 8rpx 14rpx;
  115. text-align: center;
  116. font-family: PingFang SC;
  117. font-weight: 500;
  118. font-size: 24rpx;
  119. color: #222222;
  120. box-sizing: border-box;
  121. }
  122. .goodsitem-integral.data-v-85bf954e {
  123. min-width: 80%;
  124. padding-bottom: 16rpx;
  125. box-sizing: border-box;
  126. font-family: PingFang SC;
  127. font-weight: 400;
  128. font-size: 22rpx;
  129. color: #FF5C03;
  130. border-bottom: 2px #999999 dotted;
  131. }
  132. .goodsitem-integral-num.data-v-85bf954e {
  133. font-family: DINPro, DINPro;
  134. font-weight: 500;
  135. font-size: 36rpx;
  136. }
  137. .goodsitem-price.data-v-85bf954e {
  138. padding: 10rpx 0;
  139. }
  140. .appPopup-btn.data-v-85bf954e {
  141. width: 560rpx;
  142. height: 84rpx;
  143. margin: 0 auto;
  144. background: #FF5C03;
  145. border-radius: 42rpx 42rpx 42rpx 42rpx;
  146. display: flex;
  147. flex-direction: row;
  148. align-items: center;
  149. justify-content: center;
  150. font-family: PingFang SC;
  151. font-weight: 500;
  152. font-size: 32rpx;
  153. color: #FFFFFF;
  154. }
  155. .changebtn.data-v-85bf954e {
  156. width: 152rpx;
  157. height: 64rpx;
  158. margin: 0 auto;
  159. border-radius: 32rpx 32rpx 32rpx 32rpx;
  160. border: 1rpx solid #FF5C03;
  161. display: flex;
  162. flex-direction: row;
  163. align-items: center;
  164. justify-content: center;
  165. font-family: PingFang SC;
  166. font-weight: 400;
  167. font-size: 24rpx;
  168. color: #FF5C03;
  169. }
  170. .progress.data-v-85bf954e {
  171. padding: 0 90rpx;
  172. margin-top: 40rpx;
  173. font-family: PingFang SC;
  174. font-weight: 500;
  175. font-size: 32rpx;
  176. color: #222222;
  177. }
  178. .data-v-85bf954e .uni-progress-bar,.data-v-85bf954e .uni-progress-inner-bar {
  179. border-radius: 6px;
  180. }
  181. .my-integral.data-v-85bf954e {
  182. margin: 32rpx 0;
  183. font-family: PingFang SC;
  184. font-weight: 400;
  185. font-size: 28rpx;
  186. color: #222222;
  187. }
  188. .my-integral text.data-v-85bf954e {
  189. color: #FF5C03;
  190. }
  191. .appPopup-tips.data-v-85bf954e {
  192. margin-top: 32rpx;
  193. }