share-btns.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .share-btns .btns {
  2. height: 100rpx;
  3. width: 100%;
  4. position: fixed;
  5. z-index: 99;
  6. bottom: 0;
  7. left: 0;
  8. background: #3296FA;
  9. display: flex;
  10. }
  11. .share-btns .btns text {
  12. flex: 1;
  13. font-size: 30rpx;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. color: #fff;
  18. }
  19. .share-btns .btns text:first-child {
  20. border-right: 1px #fff solid;
  21. }
  22. .share-btns .sheet-btns {
  23. display: flex;
  24. justify-content: space-around;
  25. }
  26. .share-btns .sheet-btns .btn {
  27. display: flex;
  28. flex-direction: column;
  29. align-items: center;
  30. padding: 40rpx 0 30rpx;
  31. font-size: 24rpx;
  32. line-height: 32rpx;
  33. position: relative;
  34. }
  35. .share-btns .sheet-btns .btn .icon {
  36. height: 100rpx;
  37. width: 100rpx;
  38. border: 1px #e7e7e7 solid;
  39. border-radius: 8rpx;
  40. margin-bottom: 25rpx;
  41. background: #fff;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. }
  46. .share-btns .sheet-btns .btn .icon image {
  47. width: 50rpx;
  48. display: block;
  49. }
  50. .share-btns .sheet-btns .btn:first-child .icon image {
  51. width: 40rpx;
  52. }
  53. .share-btns .sheet-btns .btn button {
  54. height: 100%;
  55. width: 100%;
  56. position: absolute;
  57. top: 0;
  58. left: 0;
  59. opacity: 0;
  60. }