result.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. @keyframes rotation-42b1ec48 {
  27. 0% {
  28. transform: rotate(0deg);
  29. }
  30. 100% {
  31. transform: rotate(360deg);
  32. }
  33. }
  34. .score-img.data-v-42b1ec48 {
  35. width: 36rpx;
  36. height: 36rpx;
  37. margin: 0 4rpx;
  38. }
  39. .pay-result-box.data-v-42b1ec48 {
  40. padding: 60rpx 0;
  41. }
  42. .pay-result-box .pay-waiting.data-v-42b1ec48 {
  43. margin-top: 20rpx;
  44. width: 60rpx;
  45. height: 60rpx;
  46. border: 10rpx solid #e9e7e7;
  47. border-bottom-color: #cccccc;
  48. border-radius: 50%;
  49. display: inline-block;
  50. animation: rotation-42b1ec48 1s linear infinite;
  51. }
  52. .pay-result-box .pay-img.data-v-42b1ec48 {
  53. width: 130rpx;
  54. height: 130rpx;
  55. }
  56. .pay-result-box .tip-text.data-v-42b1ec48 {
  57. font-size: 30rpx;
  58. font-weight: bold;
  59. color: #333333;
  60. }
  61. .pay-result-box .pay-total-num.data-v-42b1ec48 {
  62. font-size: 36rpx;
  63. font-weight: 500;
  64. color: #333333;
  65. font-family: OPPOSANS;
  66. }
  67. .pay-result-box .btn-box.data-v-42b1ec48 {
  68. width: 100%;
  69. }
  70. .pay-result-box .btn-box .back-btn.data-v-42b1ec48 {
  71. width: 190rpx;
  72. height: 70rpx;
  73. font-size: 28rpx;
  74. border: 2rpx solid #dfdfdf;
  75. border-radius: 35rpx;
  76. font-weight: 400;
  77. color: #595959;
  78. }
  79. .pay-result-box .btn-box .check-btn.data-v-42b1ec48 {
  80. width: 190rpx;
  81. height: 70rpx;
  82. font-size: 28rpx;
  83. border: 2rpx solid #dfdfdf;
  84. border-radius: 35rpx;
  85. font-weight: 400;
  86. color: #595959;
  87. margin-left: 32rpx;
  88. }
  89. .pay-result-box .subscribe-box .subscribe-img.data-v-42b1ec48 {
  90. width: 44rpx;
  91. height: 44rpx;
  92. }
  93. .pay-result-box .subscribe-box .subscribe-title.data-v-42b1ec48 {
  94. font-weight: 500;
  95. font-size: 32rpx;
  96. line-height: 36rpx;
  97. color: #434343;
  98. }
  99. .pay-result-box .subscribe-box .subscribe-start.data-v-42b1ec48 {
  100. color: var(--ui-BG-Main);
  101. font-weight: 700;
  102. font-size: 32rpx;
  103. line-height: 36rpx;
  104. }