pay-suce.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. .pay_suce {
  28. width: 690rpx;
  29. margin: 0 auto;
  30. text-align: center;
  31. }
  32. .logo {
  33. width: 522rpx;
  34. height: 82rpx;
  35. margin: 30rpx 0;
  36. }
  37. .suce_con {
  38. position: relative;
  39. margin: 60rpx 0 110rpx;
  40. }
  41. .suce_con .inte_box {
  42. width: 418rpx;
  43. position: absolute;
  44. top: 26rpx;
  45. left: 137rpx;
  46. }
  47. .suce_con .inte_box .inte {
  48. font-size: 104rpx;
  49. color: #fff;
  50. width: 300rpx;
  51. text-align: center;
  52. }
  53. .suce_con .inte_box .inte_intr {
  54. width: 118rpx;
  55. text-align: center;
  56. }
  57. .suce_con .inte_box .inte_intr view {
  58. font-size: 44rpx;
  59. color: #fff;
  60. }
  61. .suce_con .inte_bg {
  62. width: 418rpx;
  63. height: 222rpx;
  64. }
  65. .suce_btn {
  66. width: 690rpx;
  67. margin: 50rpx auto 60rpx;
  68. }
  69. .suce_btn view {
  70. width: 300rpx;
  71. height: 88rpx;
  72. border-radius: 44px;
  73. font-size: 32rpx;
  74. }
  75. .suce_btn view:first-child {
  76. background: #FFF4F3;
  77. color: #fb231f;
  78. border: 2rpx solid #FB231F;
  79. }
  80. .suce_btn view:last-child {
  81. background: linear-gradient(93deg, #ff232c 0%, #ff571b 100%);
  82. color: #fff;
  83. }
  84. .poster {
  85. width: 100%;
  86. height: 100vh;
  87. position: fixed;
  88. top: 0;
  89. left: 0;
  90. background-color: rgba(0, 0, 0, 0.7);
  91. z-index: 9999;
  92. }
  93. .poster .poster_con {
  94. width: 90%;
  95. margin: 0 auto;
  96. height: 100%;
  97. display: flex;
  98. flex-direction: column;
  99. justify-content: center;
  100. align-items: center;
  101. }
  102. .poster .poster_con .canvas {
  103. width: 540rpx;
  104. height: 900rpx;
  105. position: relative;
  106. }
  107. .poster .poster_con .canvas #canvas {
  108. width: 540rpx;
  109. height: 900rpx;
  110. position: absolute;
  111. top: 0;
  112. left: 0;
  113. }
  114. .poster .poster_con .canvas .poster_img {
  115. -webkit-touch-callout: default;
  116. width: 100%;
  117. height: 100%;
  118. display: block;
  119. }
  120. .poster .poster_con .canvas ._img[src],
  121. .poster .poster_con .canvas ._img:not([src]) {
  122. opacity: 0;
  123. }
  124. .poster .poster_con .iconfont {
  125. position: absolute;
  126. top: 2vh;
  127. right: 25rpx;
  128. color: #dedede;
  129. font-size: 60rpx;
  130. z-index: 999;
  131. }
  132. .poster .poster_con .save_img {
  133. color: #fff;
  134. width: 100%;
  135. text-align: center;
  136. font-size: 40rpx;
  137. margin: 20rpx 0;
  138. }
  139. .no_inte image {
  140. width: 212rpx;
  141. height: 158rpx;
  142. margin-top: 50rpx;
  143. }
  144. .no_inte .suce {
  145. font-size: 48rpx;
  146. font-weight: bold;
  147. margin: 30rpx 0 40rpx;
  148. }
  149. .no_inte .hint {
  150. margin-bottom: 20rpx;
  151. font-size: 28rpx;
  152. color: #999;
  153. }