shared.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. .container {
  2. width: 100vw;
  3. height: 100vh;
  4. background-position: center center;
  5. background-size: cover;
  6. position: relative;
  7. padding: 90rpx 0 0;
  8. margin-top: 0;
  9. }
  10. .mask {
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. background: #000;
  15. opacity: 0.6;
  16. width: 100%;
  17. height: 100%;
  18. }
  19. .shared-content {
  20. position: relative;
  21. z-index: 111;
  22. width: 590rpx;
  23. height: 920rpx;
  24. margin: 0 auto;
  25. }
  26. .canvas-img, .canvas {
  27. width: 590rpx;
  28. height: 920rpx;
  29. margin: 0 auto;
  30. }
  31. .canvas {
  32. position: absolute;
  33. right: -9999px;
  34. top: -9999px;
  35. }
  36. .dingzhi {
  37. position: absolute;
  38. right: 40rpx;
  39. top: 638rpx;
  40. font-size: 22rpx;
  41. background: #1FE4DC;
  42. border-radius: 4rpx;
  43. line-height: 54rpx;
  44. width: 144rpx;
  45. text-align: center;
  46. color: #fff;
  47. }
  48. .tools-w {
  49. position: fixed;
  50. z-index: 1000;
  51. background: #fff;
  52. bottom: 0;
  53. left: 0;
  54. width: 100%;
  55. height: 340rpx;
  56. text-align: center;
  57. }
  58. .tools-title {
  59. font-size: 30rpx;
  60. font-weight: bold;
  61. line-height: 42rpx;
  62. padding-top: 24rpx;
  63. }
  64. .share-tools {
  65. margin-top: 62rpx;
  66. display: flex;
  67. font-size: 26rpx;
  68. color: #131D34;
  69. }
  70. .share-tools .share-item {
  71. flex: 1;
  72. font-size: 26rpx;
  73. line-height: 36rpx;
  74. }
  75. .wechat {
  76. width: 94rpx;
  77. height: 94rpx;
  78. background: #4ED77B;
  79. border-radius: 50%;
  80. margin: 0 auto 16rpx;
  81. color: #fff;
  82. line-height: 94rpx;
  83. }
  84. .edit-box .mask {
  85. z-index: 111110;
  86. }
  87. .edit-w {
  88. position: absolute;
  89. top: 50%;
  90. left: 50%;
  91. transform: translate(-50%, -50%);
  92. z-index: 111111;
  93. background: #fff;
  94. width: 530rpx;
  95. }
  96. .edit-header {
  97. height: 110rpx;
  98. line-height: 108rpx;
  99. padding-left: 40rpx;
  100. font-size: 30rpx;
  101. color: #131D34;
  102. font-weight: bold;
  103. border-bottom: 2rpx solid #E5E5E5;
  104. }
  105. .edit-content {
  106. padding: 40rpx;
  107. position: relative;
  108. font-size: 30rpx;
  109. }
  110. .edit-content textarea {
  111. background: #F2F2F2;
  112. border-radius: 8rpx;
  113. padding: 16rpx 22rpx;
  114. height: 156rpx;
  115. width: 100%;
  116. box-sizing: border-box;
  117. }
  118. .text-tip {
  119. position: absolute;
  120. right: 60rpx;
  121. bottom: 50rpx;
  122. color: #909090;
  123. }
  124. .edit-footer {
  125. line-height: 90rpx;
  126. display: flex;
  127. border-top: 2rpx solid #e5e5e5;
  128. }
  129. .edit-footer view {
  130. flex: 1;
  131. text-align: center;
  132. font-size: 30rpx;
  133. color: #131D34;
  134. font-weight: bold;
  135. }
  136. .edit-footer .submit {
  137. color: #17D2D2;
  138. border-left: 2rpx solid #e5e5e5;
  139. }
  140. .link {
  141. background: #909090;
  142. }
  143. .photo {
  144. background: #00B4ED;
  145. }
  146. button {
  147. border: none;
  148. background: transparent;
  149. padding: 0;
  150. }
  151. button::after {
  152. border: none;
  153. }