index.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. .left{
  86. }
  87. .delIcon{
  88. width: 32rpx;
  89. height: 32rpx;
  90. image{
  91. width: 100%;
  92. height: 100%;
  93. }
  94. }
  95. }
  96. }
  97. }
  98. }
  99. }
  100. .tipBox{
  101. // position: relative;
  102. .preloader_1 {
  103. position: absolute;
  104. margin-right: 65px;
  105. top:50%;
  106. width: 100%;
  107. left:35%;
  108. transform: translateX(0%);
  109. background: red;
  110. width: 100%;
  111. z-index: 9;
  112. }
  113. .preloader_1 view {
  114. display: block;
  115. bottom: 0px;
  116. width: 9px;
  117. height: 5px;
  118. background: #9b59b6;
  119. position: absolute;
  120. animation: preloader_1 1.5s infinite ease-in-out;
  121. }
  122. .preloader_1 view:nth-child(2) {
  123. left: 11px;
  124. animation-delay: .2s;
  125. }
  126. .preloader_1 view:nth-child(3) {
  127. left: 22px;
  128. animation-delay: .4s;
  129. }
  130. .preloader_1 view:nth-child(4) {
  131. left: 33px;
  132. animation-delay: .6s;
  133. }
  134. .preloader_1 view:nth-child(5) {
  135. left: 44px;
  136. animation-delay: .8s;
  137. }
  138. @keyframes preloader_1 {
  139. 0% {
  140. height: 5px;
  141. transform: translateY(0px);
  142. background: #9b59b6;
  143. }
  144. 25% {
  145. height: 30px;
  146. transform: translateY(15px);
  147. background: #3498db;
  148. }
  149. 50% {
  150. height: 5px;
  151. transform: translateY(0px);
  152. background: #9b59b6;
  153. }
  154. 100% {
  155. height: 5px;
  156. transform: translateY(0px);
  157. background: #9b59b6;
  158. }
  159. }
  160. .tip{
  161. position: absolute;
  162. bottom: 25%;
  163. width: 100%;
  164. text-align: center;
  165. }
  166. .progress{
  167. margin-top:150%;
  168. // position: absolute;
  169. // z-index: 9;
  170. // bottom: 35%;
  171. // left: 10%;
  172. }
  173. }