index.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .share-wrap {
  2. width: 100%;
  3. visibility: hidden;
  4. }
  5. .share-wrap.active {
  6. visibility: visible;
  7. }
  8. .share-back {
  9. width: 100%;
  10. height: 100%;
  11. background: rgba(0, 0, 0, 0.6);
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. right: 0;
  16. bottom: 0;
  17. z-index: 888;
  18. opacity: 0;
  19. transition: all 0.3s;
  20. }
  21. .share-back.active {
  22. opacity: 1;
  23. transition: all 0.3s;
  24. }
  25. .share-container {
  26. width: 100%;
  27. background: #fff;
  28. position: fixed;
  29. bottom: 0;
  30. left: 0;
  31. right: 0;
  32. z-index: 999;
  33. border-radius: 16rpx 16rpx 0 0;
  34. transform: translateY(100%);
  35. transition: all 0.3s;
  36. }
  37. .share-container.active {
  38. transform: translateY(0%);
  39. transition: all 0.3s;
  40. }
  41. .close {
  42. width: 30rpx;
  43. height: 30rpx;
  44. overflow: hidden;
  45. position: absolute;
  46. right: 64rpx;
  47. top: 64rpx;
  48. }
  49. .close::after {
  50. transform: rotate(-45deg);
  51. }
  52. .close::before {
  53. transform: rotate(45deg);
  54. }
  55. .close::before,
  56. .close::after {
  57. content: '';
  58. position: absolute;
  59. height: 3rpx;
  60. width: 100%;
  61. top: 50%;
  62. left: 0;
  63. margin-top: -2rpx;
  64. background: #9c9c9c;
  65. }
  66. .share-image {
  67. width: 420rpx;
  68. margin: 66rpx auto 0;
  69. display: block;
  70. border-radius: 16rpx;
  71. box-shadow: 0px 4rpx 8px 0px rgba(0, 0, 0, 0.1);
  72. }
  73. .share-tips {
  74. width: 100%;
  75. text-align: center;
  76. color: #3c3c3c;
  77. font-size: 28rpx;
  78. margin: 32rpx 0;
  79. }
  80. .save-btn {
  81. width: 336rpx;
  82. height: 96rpx;
  83. margin: 0 auto 94rpx;
  84. background: url('https://qiniu-image.qtshe.com/20190506save-btn.png') center center;
  85. background-size: 100% 100%;
  86. }