Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

211 wiersze
3.1 KiB

  1. /* pages/cardReceive/cardReceive.wxss */
  2. page {
  3. background: #52a0fd;
  4. height: 100%;
  5. }
  6. .content {
  7. position: relative;
  8. width: 620rpx;
  9. border-radius: 10rpx;
  10. background: #fff;
  11. margin: 30rpx auto 0;
  12. padding: 40rpx 30rpx;
  13. transition: all .3s;
  14. z-index: 1;
  15. }
  16. .content.short {
  17. padding-bottom: 5rpx !important;
  18. }
  19. .content.active {
  20. opacity: 0.7;
  21. }
  22. .remain {
  23. font-size: 50rpx;
  24. font-weight: 600;
  25. margin-bottom: 50rpx;
  26. }
  27. .cardNumber {
  28. font-size: 40rpx;
  29. margin-top: 20rpx;
  30. margin-bottom: 50rpx;
  31. }
  32. .fee {
  33. font-size: 35rpx;
  34. margin-bottom: 25rpx;
  35. }
  36. .inputBox {
  37. position: relative;
  38. display: flex;
  39. align-items: center;
  40. width: 92%;
  41. height: 150rpx;
  42. background-color: #ffffff;
  43. margin-top: 10rpx;
  44. border-radius: 15rpx;
  45. box-shadow: 0 6px 20px 0 #00000026;
  46. padding: 0 25rpx;
  47. }
  48. .inputBox .scanCode {
  49. position: absolute;
  50. right: 50rpx;
  51. top: 50%;
  52. transform: translateY(-50%);
  53. width: 60rpx;
  54. height: 60rpx;
  55. z-index: 999;
  56. }
  57. .line {
  58. color: #cacaca;
  59. margin-right: 25rpx;
  60. }
  61. .unit {
  62. position: absolute;
  63. right: 40rpx;
  64. }
  65. .memberIds {
  66. width: 600rpx;
  67. height: 88rpx;
  68. line-height: 88rpx;
  69. font-size: 28rpx;
  70. color: #ffffff;
  71. text-align: center;
  72. background: #52a0fd;
  73. border-radius: 10rpx;
  74. margin: 50rpx auto;
  75. }
  76. .pwdDialog {
  77. position: absolute;
  78. top: 40%;
  79. left: 50%;
  80. transform: translate(-50%, -50%);
  81. width: 500rpx;
  82. height: 250rpx;
  83. background-color: #fff;
  84. box-shadow: 0 6px 20px 0 #00000026;
  85. z-index: 0;
  86. transition: all .3s;
  87. opacity: 0;
  88. border-radius: 20rpx;
  89. padding: 40rpx 50rpx;
  90. }
  91. .pwdDialog.active {
  92. opacity: 1;
  93. z-index: 999;
  94. }
  95. .pwdForm {
  96. height: 80rpx;
  97. border: 1px solid #326ef9;
  98. background-color: #f3f8fe;
  99. border-radius: 10rpx;
  100. padding-left: 20rpx;
  101. margin-bottom: 40rpx;
  102. }
  103. .dealRecord {
  104. font-size: 40rpx;
  105. margin-bottom: 20rpx;
  106. color: #52a0fd;
  107. }
  108. .noRecord {
  109. text-align: center;
  110. }
  111. .list {
  112. position: relative;
  113. display: flex;
  114. justify-content: space-between;
  115. margin-bottom: 40rpx;
  116. border-bottom: 1px solid #00000027;
  117. padding-bottom: 20rpx;
  118. }
  119. .list .clickArea {
  120. width: 100%;
  121. }
  122. .list .item {
  123. margin-bottom: 15rpx;
  124. }
  125. .list .right {
  126. position: absolute;
  127. right: 0;
  128. top: 0;
  129. text-align: right;
  130. }
  131. .list .title {
  132. width: 250rpx;
  133. white-space: nowrap;
  134. text-overflow: ellipsis;
  135. overflow: hidden;
  136. }
  137. .list .remainingAmount {
  138. position: relative;
  139. right: 20rpx;
  140. top: 100rpx;
  141. color: #e2575b;
  142. }
  143. .list .date {
  144. color: #929292;
  145. font-size: 25rpx;
  146. }
  147. .refunded {
  148. position: absolute;
  149. top: 30rpx;
  150. right: 150rpx;
  151. border: 3px solid #2ba245;
  152. color: #2ba245;
  153. font-size: 35rpx;
  154. padding: 0 15rpx;
  155. border-radius: 15rpx;
  156. transform: rotate(-15deg);
  157. }
  158. .refunding {
  159. position: absolute;
  160. top: 30rpx;
  161. right: 150rpx;
  162. border: 3px solid #ff9900;
  163. color: #ff9900;
  164. font-size: 35rpx;
  165. padding: 0 15rpx;
  166. border-radius: 15rpx;
  167. transform: rotate(-15deg);
  168. }
  169. .refused {
  170. position: absolute;
  171. top: 30rpx;
  172. right: 150rpx;
  173. border: 3px solid #ff0000;
  174. color: #ff0000;
  175. font-size: 35rpx;
  176. padding: 0 15rpx;
  177. border-radius: 15rpx;
  178. transform: rotate(-15deg);
  179. }
  180. .refundMard {
  181. color: red;
  182. }