integralOrderPaySuccess.css 3.3 KB

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