log_record.scss 5.1 KB

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