shareRoom.wxss 2.8 KB

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