success.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. /*自定义主题色 */
  27. page {
  28. height: 100%;
  29. }
  30. .content {
  31. height: 100%;
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: space-between;
  35. }
  36. .content .inner {
  37. padding: 20rpx;
  38. }
  39. .content .inner .top {
  40. box-sizing: border-box;
  41. background: #FFFFFF;
  42. border-radius: 16rpx;
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. padding: 50rpx 0rpx;
  47. }
  48. .content .inner .top .title {
  49. font-size: 40rpx;
  50. font-family: PingFang SC;
  51. font-weight: 500;
  52. color: #222222;
  53. line-height: 1;
  54. text-align: center;
  55. }
  56. .content .inner .top .icon {
  57. margin: 60rpx 0rpx;
  58. width: 100rpx;
  59. height: 100rpx;
  60. }
  61. .content .inner .order-info {
  62. margin-top: 20rpx;
  63. background: #FFFFFF;
  64. border-radius: 16rpx;
  65. padding: 40rpx 30rpx;
  66. }
  67. .content .inner .order-info .title {
  68. font-size: 30rpx;
  69. font-family: PingFang SC;
  70. font-weight: bold;
  71. color: #222222;
  72. line-height: 1;
  73. }
  74. .content .inner .order-info .item {
  75. margin-top: 40rpx;
  76. display: flex;
  77. align-items: center;
  78. justify-content: space-between;
  79. }
  80. .content .inner .order-info .item .label {
  81. font-size: 26rpx;
  82. font-family: PingFang SC;
  83. font-weight: 500;
  84. color: #666666;
  85. line-height: 1;
  86. }
  87. .content .inner .order-info .item .text {
  88. font-size: 26rpx;
  89. font-family: PingFang SC;
  90. font-weight: 500;
  91. color: #222222;
  92. line-height: 32rpx;
  93. }
  94. .content .inner .order-info .item .cont-text {
  95. font-size: 26rpx;
  96. font-family: PingFang SC;
  97. font-weight: 500;
  98. color: #666666;
  99. }
  100. .content .inner .order-info .item .cont-text .bold {
  101. color: #111111;
  102. }
  103. .content .inner .order-info .item .sn-box {
  104. display: flex;
  105. align-items: center;
  106. }
  107. .content .inner .order-info .item .sn-box .copy-btn {
  108. width: 58rpx;
  109. height: 32rpx;
  110. line-height: 32rpx;
  111. text-align: center;
  112. font-size: 22rpx;
  113. font-family: PingFang SC;
  114. font-weight: 500;
  115. color: #222222;
  116. background: #F5F5F5;
  117. border-radius: 4rpx;
  118. margin-left: 24rpx;
  119. }
  120. .content .inner .order-info .line {
  121. width: 100%;
  122. height: 1px;
  123. background: #F0F0F0;
  124. margin-top: 30rpx;
  125. }
  126. .content .btn-box {
  127. margin-top: 20rpx;
  128. box-sizing: border-box;
  129. display: flex;
  130. align-items: center;
  131. }
  132. .content .btn-box .btn {
  133. width: 155rpx;
  134. height: 64rpx;
  135. line-height: 64rpx;
  136. font-size: 26rpx;
  137. font-family: PingFang SC;
  138. font-weight: 500;
  139. text-align: center;
  140. border-radius: 32rpx;
  141. }
  142. .content .btn-box .btn.cancel {
  143. border: 1px solid #DDDDDD;
  144. color: #666666;
  145. }