shared.wxss 2.4 KB

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