25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

176 satır
2.6 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. .line {
  49. color: #cacaca;
  50. margin-right: 25rpx;
  51. }
  52. .unit {
  53. position: absolute;
  54. right: 40rpx;
  55. }
  56. .memberIds {
  57. width: 600rpx;
  58. height: 88rpx;
  59. line-height: 88rpx;
  60. font-size: 28rpx;
  61. color: #ffffff;
  62. text-align: center;
  63. background: #52a0fd;
  64. border-radius: 10rpx;
  65. margin: 50rpx auto;
  66. }
  67. .pwdDialog {
  68. position: absolute;
  69. top: 40%;
  70. left: 50%;
  71. transform: translate(-50%, -50%);
  72. width: 500rpx;
  73. height: 250rpx;
  74. background-color: #fff;
  75. box-shadow: 0 6px 20px 0 #00000026;
  76. z-index: 0;
  77. transition: all .3s;
  78. opacity: 0;
  79. border-radius: 20rpx;
  80. padding: 40rpx 50rpx;
  81. }
  82. .pwdDialog.active {
  83. opacity: 1;
  84. z-index: 999;
  85. }
  86. .pwdForm {
  87. height: 80rpx;
  88. border: 1px solid #326ef9;
  89. background-color: #f3f8fe;
  90. border-radius: 10rpx;
  91. padding-left: 20rpx;
  92. margin-bottom: 40rpx;
  93. }
  94. .list {
  95. position: relative;
  96. display: flex;
  97. justify-content: space-between;
  98. margin-bottom: 40rpx;
  99. border-bottom: 1px solid #00000027;
  100. padding-bottom: 20rpx;
  101. }
  102. .list .title {
  103. width: 200rpx;
  104. white-space: nowrap;
  105. text-overflow: ellipsis;
  106. overflow: hidden;
  107. }
  108. .list .clickArea {
  109. display: flex;
  110. justify-content: space-between;
  111. width: 100%;
  112. }
  113. .list .item {
  114. margin-bottom: 15rpx;
  115. }
  116. .list .remainingAmount {
  117. position: relative;
  118. right: 20rpx;
  119. top: 100rpx;
  120. color: #e2575b;
  121. }
  122. .list .date {
  123. color: #929292;
  124. font-size: 25rpx;
  125. }
  126. .card {
  127. position: absolute;
  128. top: 20rpx;
  129. right: 120rpx;
  130. border: 3px solid #b6e48c;
  131. color: #b6e48c;
  132. font-size: 35rpx;
  133. padding: 0 15rpx;
  134. border-radius: 15rpx;
  135. transform: rotate(-15deg);
  136. }
  137. .Ecard {
  138. position: absolute;
  139. top: 20rpx;
  140. right: 120rpx;
  141. border: 3px solid #ec9ea0;
  142. color: #ec9ea0;
  143. font-size: 35rpx;
  144. padding: 0 15rpx;
  145. border-radius: 15rpx;
  146. transform: rotate(-15deg);
  147. }
  148. .dealRecord {
  149. font-size: 40rpx;
  150. margin-bottom: 20rpx;
  151. color: #52a0fd;
  152. }