shareDialog.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .sharePopup {
  2. position: fixed;
  3. left: 0;
  4. right: 0;
  5. bottom: 0;
  6. top: 0;
  7. background: rgba(0, 0, 0, 0.7);
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. z-index: 100;
  12. }
  13. .shareDialog {
  14. position: relative;
  15. width: 606rpx;
  16. height: 592rpx;
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: center;
  20. padding-top: 50rpx;
  21. }
  22. .share_bg {
  23. position: absolute;
  24. left: 0;
  25. top: 0;
  26. width: 100%;
  27. height: 100%;
  28. z-index: -1;
  29. }
  30. .close_icon {
  31. position: absolute;
  32. right: -25rpx;
  33. top: 15rpx;
  34. width: 100rpx;
  35. height: 100rpx;
  36. }
  37. .close_icon:active {
  38. opacity: 0.9;
  39. }
  40. .shareInfo {
  41. text-align: center;
  42. }
  43. .shareInfo .num {
  44. color: red;
  45. }
  46. .shareInfo___top {
  47. font-size: 30rpx;
  48. color: #573A0C;
  49. margin-bottom: 10rpx;
  50. }
  51. .shareInfo___bottom {
  52. font-size: 26rpx;
  53. color: #CF8534;
  54. }
  55. .shareList {
  56. width: 528rpx;
  57. height: 186rpx;
  58. margin: 30rpx auto;
  59. display: flex;
  60. justify-content: space-evenly;
  61. align-items: center;
  62. background: #F3DCB7;
  63. }
  64. .user_placeholder {
  65. width: 76rpx;
  66. height: 76rpx;
  67. border-radius: 50%;
  68. }
  69. .shareBtns{
  70. /* margin-top: 30rpx; */
  71. display: flex;
  72. justify-content: space-around;
  73. padding: 0 30rpx;
  74. }
  75. .shareItem {
  76. width: 20%;
  77. text-align: center;
  78. }
  79. .shareName {
  80. height: 25rpx;
  81. font-size: 24rpx;
  82. color: #573A0C;
  83. }
  84. .btn-rechargeNow {
  85. display: flex;
  86. align-items: center;
  87. height: 70rpx;
  88. /* padding: 0 20rpx; */
  89. background-color: #fe7124;
  90. background: linear-gradient(to right, #ff7a21 0%, #feb25a 100%);
  91. color: #fff;
  92. border-radius: 16rpx;
  93. margin: 0 auto;
  94. font-size: 30rpx;
  95. }
  96. .btn-rechargeNow image{
  97. width: 28rpx;
  98. height: 24rpx;
  99. margin-right: 10rpx;
  100. }
  101. .faceToFace{
  102. margin-top: 10rpx;
  103. display: flex;
  104. align-items: center;
  105. width: 300rpx;
  106. margin: 0 auto;
  107. justify-content: space-between;
  108. margin-top: 20rpx;
  109. color: #fe7124;
  110. text-align: center;
  111. }