handOutBonus.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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: 30rpx;
  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: 100rpx;
  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. margin-left: 4rpx;
  42. width: 30rpx;
  43. height: 30rpx;
  44. }
  45. .bonus_cell_type {
  46. font-size: 24rpx;
  47. padding: 20rpx 0 20rpx 20rpx;
  48. }
  49. .message_input {
  50. width: 520rpx;
  51. }
  52. .bonus_total {
  53. margin-top: 60rpx;
  54. text-align: center;
  55. font-weight: bold;
  56. font-size: 90rpx;
  57. }
  58. .fixed_box {
  59. position: fixed;
  60. z-index: 10;
  61. left: 0;
  62. bottom: 0;
  63. width: 100%;
  64. text-align: center;
  65. }
  66. .wx_share {
  67. width: 80rpx;
  68. height: 80rpx;
  69. }
  70. .wx_share_box {
  71. position: relative;
  72. width: 160rpx;
  73. margin: auto;
  74. }
  75. .wx_share_btn {
  76. position: absolute;
  77. opacity:0;
  78. left: 0;
  79. top: 0;
  80. width: 100%;
  81. height: 100%;
  82. z-index: 9;
  83. }
  84. .validate_share {
  85. width: 60rpx;
  86. height: 60rpx;
  87. }
  88. .real_share_box {
  89. position: fixed;
  90. z-index: -1;
  91. opacity: 0;
  92. left: 0;
  93. right: 0;
  94. top: 0;
  95. bottom: 0;
  96. background: rgba(0,0,0,.6);
  97. }
  98. .real_share_box.show_popup {
  99. z-index: 500;
  100. opacity: 1;
  101. }
  102. .real_share_bg {
  103. position: fixed;
  104. z-index: 501;
  105. left: 0;
  106. bottom: 0;
  107. display: flex;
  108. align-items: center;
  109. width: 100%;
  110. height: 200rpx;
  111. background: #fff;
  112. text-align: center;
  113. transition: all 0.3s;
  114. transform: translateY(110%);
  115. }
  116. .show_animation {
  117. -webkit-transform: translateY(0);
  118. transform: translateY(0);
  119. }
  120. .share_btn {
  121. margin: 50rpx auto;
  122. width: 350rpx;
  123. height: 78rpx;
  124. line-height: 80rpx;
  125. background: #DCDCDC;
  126. border-radius: 6rpx;
  127. font-size: 34rpx;
  128. color: #fff;
  129. text-align: center;
  130. letter-spacing: 0.5px;
  131. }
  132. .share_btn.can_share{
  133. background: #2b2b2b;
  134. }