index.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. page {
  2. // background: #f2f2f2;
  3. }
  4. .pos{
  5. height: 45px;
  6. }
  7. view {
  8. box-sizing: border-box;
  9. }
  10. .container{
  11. padding-bottom:85rpx;
  12. .context{
  13. padding: 40rpx;
  14. }
  15. .createPro{
  16. border-radius: 15rpx;
  17. height: 306rpx;
  18. // aspect-ratio: 7/3;
  19. background:url('@/static/images/createBg.png') no-repeat;
  20. background-size: 100% 100%;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. .centerAdd{
  25. display: flex;
  26. align-items: center;
  27. flex-direction: column;
  28. justify-content: center;
  29. .addIcon{
  30. width: 72rpx;
  31. height: 72rpx;
  32. text{
  33. font-size: 72rpx;
  34. }
  35. image{
  36. width: 100%;
  37. height: 100%;
  38. }
  39. }
  40. .addTxt{
  41. margin-top: 20rpx;
  42. font-weight: 600;
  43. color:white;
  44. }
  45. }
  46. }
  47. .draft{
  48. margin-top: 30rpx;
  49. .draftLabel{
  50. font-weight: 600;
  51. margin-bottom: 30rpx;
  52. }
  53. .draftList{
  54. display: flex;
  55. justify-content: space-between;
  56. flex-wrap: wrap;
  57. justify-content: space-between;
  58. .itemBox{
  59. width: 50%;
  60. display: flex;
  61. flex-direction: column;
  62. align-items: center;
  63. margin-bottom: 30rpx;
  64. .top{
  65. width: 95%;
  66. border-radius: 15rpx;
  67. position: relative;
  68. aspect-ratio: 9/16;
  69. background: #ccc;
  70. z-index: 1;
  71. image{
  72. width: 100%;
  73. height:100%;
  74. border-radius: 15rpx;
  75. }
  76. }
  77. .bottom{
  78. display: flex;
  79. align-items: center;
  80. justify-content: space-between;
  81. margin-top: 15rpx;
  82. // width: 320rpx;
  83. width: 95%;
  84. padding-right: 25rpx;
  85. // height: 100rpx;
  86. // line-height: 100rpx;
  87. .left{
  88. font-size: 32rpx;
  89. }
  90. .delIcon{
  91. // width: 32rpx;
  92. // height: 32rpx;
  93. // image{
  94. // width: 100%;
  95. // height: 100%;
  96. // }
  97. }
  98. }
  99. }
  100. }
  101. }
  102. }
  103. .tipBox{
  104. // position: relative;
  105. .preloader_1 {
  106. position: absolute;
  107. margin-right: 65px;
  108. top:50%;
  109. width: 100%;
  110. left:35%;
  111. transform: translateX(0%);
  112. background: red;
  113. width: 100%;
  114. z-index: 9;
  115. }
  116. .preloader_1 view {
  117. display: block;
  118. bottom: 0px;
  119. width: 9px;
  120. height: 5px;
  121. background: #9b59b6;
  122. position: absolute;
  123. animation: preloader_1 1.5s infinite ease-in-out;
  124. }
  125. .preloader_1 view:nth-child(2) {
  126. left: 11px;
  127. animation-delay: .2s;
  128. }
  129. .preloader_1 view:nth-child(3) {
  130. left: 22px;
  131. animation-delay: .4s;
  132. }
  133. .preloader_1 view:nth-child(4) {
  134. left: 33px;
  135. animation-delay: .6s;
  136. }
  137. .preloader_1 view:nth-child(5) {
  138. left: 44px;
  139. animation-delay: .8s;
  140. }
  141. @keyframes preloader_1 {
  142. 0% {
  143. height: 5px;
  144. transform: translateY(0px);
  145. background: #9b59b6;
  146. }
  147. 25% {
  148. height: 30px;
  149. transform: translateY(15px);
  150. background: #3498db;
  151. }
  152. 50% {
  153. height: 5px;
  154. transform: translateY(0px);
  155. background: #9b59b6;
  156. }
  157. 100% {
  158. height: 5px;
  159. transform: translateY(0px);
  160. background: #9b59b6;
  161. }
  162. }
  163. .tip{
  164. position: absolute;
  165. bottom: 25%;
  166. width: 100%;
  167. text-align: center;
  168. }
  169. .progress{
  170. margin-top:150%;
  171. // position: absolute;
  172. // z-index: 9;
  173. // bottom: 35%;
  174. // left: 10%;
  175. }
  176. }