handOutBonus.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /* pages/handOutBonus/handOutBonus.wxss */
  2. .common_box {
  3. background: #fdfaf3;
  4. padding: 0 30rpx;
  5. height: 100vh;
  6. }
  7. .balance_header {
  8. padding-left: 30rpx;
  9. padding-top: 20rpx;
  10. padding-bottom: 10rpx;
  11. height: 48rpx;
  12. line-height: 48rpx;
  13. font-size: 36rpx;
  14. font-weight: bold;
  15. color: #333;
  16. }
  17. .balance_cell {
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. height: 112rpx;
  22. padding-left: 30rpx;
  23. font-size: 30rpx;
  24. background: #fff;
  25. }
  26. .right_cell {
  27. display: flex;
  28. align-items: center;
  29. padding-right: 30rpx;
  30. }
  31. .wid160 {
  32. width: 160rpx;
  33. }
  34. .balance_input {
  35. text-align: right;
  36. padding-right: 20rpx;
  37. width: 300rpx;
  38. }
  39. .icon_pin {
  40. position: relative;
  41. top: 2rpx;
  42. margin-left: 4rpx;
  43. width: 30rpx;
  44. height: 30rpx;
  45. }
  46. .bonus_cell_type {
  47. font-size: 24rpx;
  48. padding: 20rpx 0 20rpx 20rpx;
  49. }
  50. .message_input {
  51. width: 520rpx;
  52. }
  53. .bonus_total {
  54. margin-top: 60rpx;
  55. text-align: center;
  56. font-weight: bold;
  57. font-size: 90rpx;
  58. }
  59. .fixed_box {
  60. position: fixed;
  61. z-index: 10;
  62. left: 0;
  63. bottom: 0;
  64. width: 100%;
  65. text-align: center;
  66. }
  67. .wx_share {
  68. width: 80rpx;
  69. height: 80rpx;
  70. }
  71. .wx_share_box {
  72. position: relative;
  73. width: 160rpx;
  74. margin: auto;
  75. }
  76. .wx_share_btn {
  77. position: absolute;
  78. opacity:0;
  79. left: 0;
  80. top: 0;
  81. width: 100%;
  82. height: 100%;
  83. z-index: 9;
  84. }
  85. .validate_share {
  86. width: 60rpx;
  87. height: 60rpx;
  88. }
  89. .real_share_box {
  90. position: fixed;
  91. z-index: -1;
  92. opacity: 0;
  93. left: 0;
  94. right: 0;
  95. top: 0;
  96. bottom: 0;
  97. background: rgba(0,0,0,.6);
  98. }
  99. .real_share_box.show_popup {
  100. z-index: 500;
  101. opacity: 1;
  102. }
  103. .real_share_bg {
  104. position: fixed;
  105. z-index: 501;
  106. left: 0;
  107. bottom: 0;
  108. display: flex;
  109. align-items: center;
  110. width: 100%;
  111. height: 200rpx;
  112. background: #fff;
  113. text-align: center;
  114. transition: all 0.3s;
  115. transform: translateY(110%);
  116. }
  117. .show_animation {
  118. -webkit-transform: translateY(0);
  119. transform: translateY(0);
  120. }
  121. .share_btn {
  122. margin: 50rpx auto;
  123. width: 350rpx;
  124. height: 78rpx;
  125. line-height: 80rpx;
  126. background: #DCDCDC;
  127. border-radius: 6rpx;
  128. font-size: 34rpx;
  129. color: #fff;
  130. text-align: center;
  131. letter-spacing: 0.5px;
  132. }
  133. .share_btn.can_share{
  134. background: #2b2b2b;
  135. }