shareDialog.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. .shareItem {
  70. text-align: center;
  71. }
  72. .shareName {
  73. height: 25rpx;
  74. font-size: 24rpx;
  75. color: #573A0C;
  76. }
  77. .btn-rechargeNow {
  78. width: 328rpx;
  79. height: 70rpx;
  80. line-height: 70rpx;
  81. text-align: center;
  82. background-color: #fe7124;
  83. background: linear-gradient(to right, #ff7a21 0%, #feb25a 100%);
  84. text-align: center;
  85. color: #fff;
  86. border-radius: 16rpx;
  87. margin: 0 auto;
  88. margin-top: 40rpx;
  89. }