log_record.scss 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. // page {
  2. // background: linear-gradient(to bottom, #F0CABF, #E1CDEE)
  3. // }
  4. .operate_bg {
  5. display: flex;
  6. flex-direction: column;
  7. // flex-wrap: wrap;
  8. width: 750px;
  9. box-sizing: border-box;
  10. padding-left: 26px;
  11. margin-top: 64px;
  12. }
  13. .operate_item {
  14. margin-right: 32px;
  15. margin-bottom: 26px;
  16. width: 698px;
  17. height: 168px;
  18. display: flex;
  19. flex-direction: row;
  20. align-items: center;
  21. // justify-content: center;
  22. border-radius: 42px;
  23. padding-right: 50px;
  24. box-sizing: border-box;
  25. }
  26. .first_letter {
  27. margin-left: 50px;
  28. margin-right: 40px;
  29. background-color: rgba($color: #fff, $alpha: 0.5);
  30. width: 108px;
  31. height: 108px;
  32. border-radius: 54px;
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .input_form {
  38. width: 670px;
  39. height: 360px;
  40. border-radius: 42px;
  41. background-color: rgba($color: #fff, $alpha: 0.25);
  42. display: flex;
  43. flex-direction: column;
  44. align-items: center;
  45. }
  46. .input_content {
  47. width: 578px;
  48. height: 128px;
  49. border-radius: 21px;
  50. margin-top: 60px;
  51. box-sizing: border-box;
  52. padding-left: 60px;
  53. // text-align: center;
  54. background-color: #fff;
  55. }
  56. .input_content_placeholder {
  57. text-align: center;
  58. }
  59. .form_btns {
  60. display: flex;
  61. flex-direction: row;
  62. margin-top: 60px;
  63. width: 670px;
  64. height: 128px;
  65. // background-color: palegoldenrod;
  66. }
  67. .form_cancel {
  68. flex: 1;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. }
  73. .form_confirm {
  74. color: rgba($color: #000, $alpha: 0.4);
  75. }
  76. .sel_tag {
  77. height: 64px;
  78. border-radius: 32px;
  79. background-color: rgba($color: #000, $alpha: 0.05);
  80. padding-left: 24px;
  81. display: flex;
  82. flex-direction: row;
  83. align-items: center;
  84. padding-right: 16px;
  85. }
  86. .textarea2 {
  87. height: 420px;
  88. width: 570px;
  89. box-sizing: border-box;
  90. // padding: 30px 0px;
  91. margin-top: 48px;
  92. margin-bottom: 48px;
  93. }
  94. .cover1 {
  95. width: 155px;
  96. height: 155px;
  97. background-color: rgba($color: #000, $alpha: 0.05);
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. border-radius: 0px;
  102. overflow: hidden;
  103. margin-right: 20px;
  104. margin-bottom: 20px;
  105. position: relative;
  106. border-radius: 28px;
  107. }
  108. .cover2 {
  109. width: 155px;
  110. height: 155px;
  111. }
  112. .cover_del {
  113. position: absolute;
  114. right: 0;
  115. top: 0;
  116. width: 52px;
  117. height: 52px;
  118. display: flex;
  119. align-items: center;
  120. justify-content: center;
  121. }
  122. .cover_del_btn {
  123. width: 28px;
  124. height: 28px;
  125. border-radius: 15px;
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. background-color: #66666680;
  130. flex-shrink: 0;
  131. }
  132. .form2 {
  133. display: flex;
  134. flex-direction: row;
  135. flex-wrap: wrap;
  136. width: 100%;
  137. }
  138. .time_view {
  139. position: relative;
  140. display: flex;
  141. flex-direction: row;
  142. align-items: center;
  143. margin-left: 56px;
  144. padding-right: 52px;
  145. height: 108px;
  146. }
  147. .cardShowAni {
  148. animation: showAni 0.3s linear forwards;
  149. }
  150. .cardHideAni {
  151. animation: dismissAni 0.3s linear forwards;
  152. }
  153. @keyframes dismissAni {
  154. 0% {
  155. opacity: 1;
  156. }
  157. 100% {
  158. opacity: 0;
  159. }
  160. }
  161. @keyframes showAni {
  162. 0% {
  163. opacity: 0;
  164. transform: translateY(100px);
  165. }
  166. 100% {
  167. opacity: 1;
  168. transform: translateY(0px);
  169. }
  170. }
  171. /* #ifdef weapp */
  172. .share_bg {
  173. position: fixed;
  174. left: 0;
  175. top: 0;
  176. width: 100vw;
  177. height: 100vh;
  178. z-index: 100;
  179. background: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
  180. display: flex;
  181. flex-direction: column;
  182. align-items: center;
  183. justify-content: center;
  184. }
  185. .navi_bar {
  186. position: fixed;
  187. left: 0;
  188. right: 0;
  189. top: 0;
  190. }
  191. /* #endif */
  192. /* #ifdef rn */
  193. .share_bg {
  194. position: fixed;
  195. left: 0;
  196. top: 0;
  197. width: 100vw;
  198. height: 100vh;
  199. z-index: 100;
  200. display: flex;
  201. flex-direction: column;
  202. align-items: center;
  203. justify-content: center;
  204. }
  205. .navi_bar {
  206. position: absolute;
  207. left: 0;
  208. right: 0;
  209. top: 0;
  210. }
  211. /* #endif */
  212. .share_card1 {
  213. width: 698px;
  214. height: 932px;
  215. display: flex;
  216. border-radius: 84px;
  217. margin-bottom: 26px;
  218. flex-direction: column;
  219. overflow: hidden;
  220. align-items: center;
  221. position: relative;
  222. }
  223. .log_result_success {
  224. margin-top: 123px;
  225. width: 120px;
  226. height: 120px;
  227. background-color: #fff;
  228. border-radius: 60px;
  229. display: flex;
  230. align-items: center;
  231. justify-content: center;
  232. }
  233. .share_card_cover {
  234. width: 698px;
  235. height: 932px;
  236. position: absolute;
  237. left: 0;
  238. top: 0;
  239. }
  240. .share_card_layer {
  241. width: 698px;
  242. height: 932px;
  243. position: absolute;
  244. left: 0;
  245. top: 0;
  246. background-color: #000;
  247. opacity: 0.5;
  248. }
  249. .share_canvas {
  250. position: absolute;
  251. top: -1000px;
  252. }
  253. .content_card {
  254. margin-left: 26px;
  255. background-color: rgba($color: #fff, $alpha: 0.5);
  256. width: 698px;
  257. min-height: 875px;
  258. border-radius: 84px;
  259. padding: 64px;
  260. padding-bottom: 44px;
  261. box-sizing: border-box;
  262. display: flex;
  263. flex-direction: column;
  264. }
  265. .share_btn1 {
  266. display: flex;
  267. flex-direction: row;
  268. align-items: center;
  269. justify-content: center;
  270. width: 698px;
  271. height: 108px;
  272. border-radius: 28px;
  273. }