index.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. @import '/app.wxss';
  2. .sharing-packets {
  3. position: fixed;
  4. left: 30rpx;
  5. z-index: 5;
  6. transition: all 0.3s ease-in-out 0s;
  7. opacity: 1;
  8. transform: scale(1);
  9. bottom: 150rpx;
  10. }
  11. .sharing-packets.on {
  12. transform: scale(0);
  13. opacity: 0;
  14. }
  15. .sharing-packets .iconfont {
  16. width: 44rpx;
  17. height: 44rpx;
  18. border-radius: 50%;
  19. text-align: center;
  20. line-height: 44rpx;
  21. background-color: #999;
  22. font-size: 20rpx;
  23. color: #fff;
  24. margin: 0 auto;
  25. box-sizing: border-box;
  26. padding-left: 1px;
  27. }
  28. .sharing-packets .line {
  29. width: 2rpx;
  30. height: 40rpx;
  31. background-color: #999;
  32. margin: 0 auto;
  33. }
  34. .sharing-packets .sharing-con {
  35. width: 187rpx;
  36. height: 210rpx;
  37. position: relative;
  38. }
  39. .sharing-packets .sharing-con image {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. .sharing-packets .sharing-con .text {
  44. position: absolute;
  45. top: 30rpx;
  46. font-size: 20rpx;
  47. width: 100%;
  48. text-align: center;
  49. }
  50. .sharing-packets .sharing-con .text .money {
  51. font-size: 32rpx;
  52. font-weight: bold;
  53. margin-top: 5rpx;
  54. }
  55. .sharing-packets .sharing-con .text .money .label {
  56. font-size: 20rpx;
  57. }
  58. .sharing-packets .sharing-con .text .tip {
  59. font-size: 18rpx;
  60. color: #999;
  61. margin-top: 5rpx;
  62. }
  63. .sharing-packets .sharing-con .text .shareBut {
  64. font-size: 22rpx;
  65. color: #fff;
  66. margin-top: 18rpx;
  67. height: 50rpx;
  68. line-height: 50rpx;
  69. }