Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

106 строки
1.5 KiB

  1. /* pages/cardReceive/cardReceive.wxss */
  2. page {
  3. background: #52a0fd;
  4. height: 100%;
  5. }
  6. .content {
  7. position: relative;
  8. width: 620rpx;
  9. height: 1250rpx;
  10. border-radius: 10rpx;
  11. background: #fff;
  12. margin: 30rpx auto 0;
  13. padding: 40rpx 30rpx;
  14. transition: all .3s;
  15. z-index: 1;
  16. overflow: hidden;
  17. }
  18. .content.active {
  19. opacity: 0.7;
  20. }
  21. .remain {
  22. font-size: 50rpx;
  23. font-weight: 600;
  24. margin-bottom: 50rpx;
  25. }
  26. .cardNumber {
  27. font-size: 40rpx;
  28. margin-top: 20rpx;
  29. margin-bottom: 50rpx;
  30. }
  31. .highBold {
  32. font-weight: 600;
  33. }
  34. .fee {
  35. font-size: 35rpx;
  36. margin-bottom: 25rpx;
  37. }
  38. .inputBox {
  39. position: relative;
  40. display: flex;
  41. align-items: center;
  42. width: 92%;
  43. height: 150rpx;
  44. background-color: #ffffff;
  45. margin-top: 50rpx;
  46. border-radius: 15rpx;
  47. box-shadow: 0 6px 20px 0 #00000026;
  48. padding: 0 25rpx;
  49. }
  50. .line {
  51. color: #cacaca;
  52. margin-right: 25rpx;
  53. }
  54. .unit {
  55. position: absolute;
  56. right: 40rpx;
  57. }
  58. .memberIds {
  59. width: 600rpx;
  60. height: 88rpx;
  61. line-height: 88rpx;
  62. font-size: 28rpx;
  63. color: #ffffff;
  64. text-align: center;
  65. background: #52a0fd;
  66. border-radius: 10rpx;
  67. margin: 50rpx auto;
  68. }
  69. .tagStatus {
  70. position: absolute;
  71. top: 30rpx;
  72. right: -80rpx;
  73. width: 300rpx;
  74. height: 50rpx;
  75. line-height: 50rpx;
  76. color: #ffffff;
  77. font-size: 35rpx;
  78. text-align: center;
  79. padding: 10rpx 0;
  80. transform: rotate(45deg);
  81. z-index: 999;
  82. }
  83. .tagStatus.refunding {
  84. background-color: #ff9900;
  85. }
  86. .tagStatus.refunded {
  87. background-color: #2ba245;
  88. }
  89. .tagStatus.refused {
  90. background-color: #ff0000;
  91. }