pay.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. page {
  28. height: 100%;
  29. background-color: #f0eff4;
  30. }
  31. .content {
  32. height: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. }
  36. .content .top {
  37. flex: 1;
  38. padding: 20rpx;
  39. }
  40. .content .top .inner {
  41. width: 100%;
  42. display: flex;
  43. flex-direction: column;
  44. align-items: flex-start;
  45. justify-content: center;
  46. }
  47. .content .top .inner .pay {
  48. width: 100%;
  49. box-shadow: 1px 1px 5px #e6e6e6;
  50. background: #FFFFFF;
  51. border-radius: 5rpx;
  52. display: flex;
  53. flex-direction: column;
  54. align-items: flex-start;
  55. }
  56. .content .top .inner .pay .title {
  57. display: flex;
  58. flex-direction: column;
  59. align-items: flex-start;
  60. width: 100%;
  61. background-color: #f7f7f7;
  62. padding: 30rpx 0rpx;
  63. }
  64. .content .top .inner .pay .title .name {
  65. padding: 15rpx 30rpx;
  66. font-size: 32rpx;
  67. }
  68. .content .top .inner .pay .title .desc {
  69. color: #989898;
  70. padding: 15rpx 30rpx;
  71. font-size: 25rpx;
  72. }
  73. .content .top .inner .pay .pay-money {
  74. padding: 30rpx 0rpx;
  75. width: 100%;
  76. background: #FFFFFF;
  77. border-radius: 5rpx;
  78. display: flex;
  79. flex-direction: column;
  80. align-items: flex-start;
  81. }
  82. .content .top .inner .pay .pay-money .pay-money-title {
  83. padding: 15rpx 30rpx;
  84. font-size: 32rpx;
  85. }
  86. .content .top .inner .pay .pay-money .money {
  87. font-size: 42rpx;
  88. padding: 15rpx 30rpx;
  89. display: flex;
  90. flex-direction: row;
  91. align-items: flex-start;
  92. }
  93. .content .top .inner .pay .pay-money .money input {
  94. margin-left: 15rpx;
  95. }
  96. .content .top .inner .pay .pay-money .desc {
  97. width: 100%;
  98. padding: 30rpx 30rpx;
  99. border-top: 1rpx solid #e6e6e6;
  100. }
  101. .content .top .inner .pay .pay-money textarea {
  102. height: 50rpx;
  103. line-height: 50rpx;
  104. }
  105. .content .top .btn-box {
  106. padding: 30rpx 0rpx;
  107. height: 121rpx;
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. }
  112. .content .top .btn-box .btn {
  113. width: 91.73%;
  114. height: 88rpx;
  115. line-height: 88rpx;
  116. font-size: 30rpx;
  117. font-family: PingFang SC;
  118. font-weight: bold;
  119. color: #FFFFFF;
  120. text-align: center;
  121. background: #2BC7B9;
  122. border-radius: 44rpx;
  123. }
  124. .content .ad {
  125. margin: 0rpx 0rpx 60rpx;
  126. }