create.scss 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. .create-skill-wrapper {
  2. width: 1000px;
  3. padding: 25px 25px 45px;
  4. opacity: 1;
  5. background: #ffffff;
  6. border-radius: 10px;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. .create-skill-title {
  11. width: 100%;
  12. line-height: 37px;
  13. padding: 7px 0 25px;
  14. font-size: 26px;
  15. font-family: PingFangSC, PingFangSC-Medium;
  16. font-weight: 500;
  17. text-align: center;
  18. color: #1d2a3a;
  19. border-bottom: 1px solid rgba(0,0,0,0.06);
  20. }
  21. .form-wrapper {
  22. position: relative;
  23. width: 640px;
  24. margin-top: 30px;
  25. .field-name {
  26. height: 20px;
  27. line-height: 20px;
  28. font-size: 14px;
  29. font-family: PingFangSC, PingFangSC-Medium;
  30. font-weight: 500;
  31. color: #19222e;
  32. .required {
  33. color: #ff0000;
  34. }
  35. }
  36. .skill-field {
  37. position: relative;
  38. .skill-title-input {
  39. width: 100%;
  40. // height: 44px;
  41. margin-top: 5px;
  42. // opacity: 1;
  43. // background: #ffffff;
  44. // border: 1px solid #d7dfe8;
  45. // border-radius: 3px;
  46. }
  47. }
  48. .price-field {
  49. position: relative;
  50. display: flex;
  51. .price-wrapper {
  52. position: relative;
  53. width: 300px;
  54. .price-input {
  55. width: 100%;
  56. // height: 44px;
  57. margin-top: 5px;
  58. }
  59. .yuan {
  60. position: absolute;
  61. right: 18px;
  62. bottom: 14px;
  63. font-size: 14px;
  64. line-height: 14px;
  65. font-family: PingFangSC, PingFangSC-Medium;
  66. font-weight: 500;
  67. color: #19222e;
  68. }
  69. }
  70. .cate-wrapper {
  71. width: 300px;
  72. margin-left: 40px;
  73. .cate-content {
  74. margin-top: 5px;
  75. width: 100%;
  76. display: flex;
  77. justify-content: space-between;
  78. }
  79. .service-cate {
  80. width: 185px;
  81. }
  82. .cate-cascader {
  83. width: 100%;
  84. }
  85. }
  86. }
  87. .content-field {
  88. position: relative;
  89. margin-top: 20px;
  90. .content-editor {
  91. margin-top: 5px;
  92. .ql-show {
  93. border: 1px solid #d7dfe8;
  94. }
  95. }
  96. }
  97. .image-field {
  98. position: relative;
  99. .skill-image-uploader {
  100. margin-top: 12px;
  101. }
  102. .upload-tips {
  103. margin-top: 12px;
  104. width: 100%;
  105. line-height: 20px;
  106. font-size: 14px;
  107. font-family: PingFangSC, PingFangSC-Regular;
  108. font-weight: 400;
  109. color: #999999;
  110. white-space: pre-line;
  111. }
  112. }
  113. .is-error {
  114. input {
  115. border-color: #f56c6c;
  116. }
  117. .quill-editor {
  118. border-top: 1px solid #f56c6c!important;
  119. border-color: #f56c6c !important;
  120. }
  121. }
  122. }
  123. .progress-wrapper {
  124. position: relative;
  125. width: 640px;
  126. margin-top: 25px;
  127. .progress-title {
  128. height: 17px;
  129. line-height: 17px;
  130. font-size: 12px;
  131. font-family: PingFangSC, PingFangSC-Regular;
  132. font-weight: 400;
  133. color: #222222;
  134. }
  135. .progress-bar {
  136. width: 100%;
  137. margin-top: 7px;
  138. }
  139. }
  140. .example-wrapper {
  141. position: relative;
  142. width: 640px;
  143. margin-top: 20px;
  144. padding: 20px;
  145. background: #f6f8f9;
  146. border-radius: 10px;
  147. display: flex;
  148. .example-content {
  149. flex: 1;
  150. .example-title {
  151. width: 100%;
  152. height: 20px;
  153. display: flex;
  154. align-items: center;
  155. .example-icon {
  156. width: 20px;
  157. height: 20px;
  158. }
  159. span {
  160. margin-left: 7px;
  161. font-size: 16px;
  162. font-family: PingFangSC, PingFangSC-Medium;
  163. font-weight: 500;
  164. color: #19222e;
  165. }
  166. }
  167. .example-text {
  168. width: 100%;
  169. margin-top: 18px;
  170. font-size: 12px;
  171. font-family: PingFangSC, PingFangSC-Regular;
  172. font-weight: 400;
  173. color: #222222;
  174. line-height: 18px;
  175. white-space: pre-line;
  176. }
  177. }
  178. .example-img {
  179. flex-shrink: 0;
  180. width: 173px;
  181. height: 234px;
  182. margin: 10px 0 0 20px;
  183. }
  184. }
  185. .actions-wrapper {
  186. width: 640px;
  187. margin-top: 20px;
  188. display: flex;
  189. align-items: center;
  190. justify-content: space-between;
  191. .prev-btn {
  192. // width: 128px;
  193. // height: 42px;
  194. padding: 10px 0;
  195. font-size: 15px;
  196. font-family: PingFangSC, PingFangSC-Medium;
  197. font-weight: 500;
  198. color: #308eff;
  199. background: #ffffff;
  200. border: none;
  201. }
  202. .pcreate-btn {
  203. width: 128px;
  204. height: 42px;
  205. margin-left: 10px;
  206. background: #ffffff;
  207. border-radius: 7px;
  208. border: 1px solid #308eff;
  209. font-size: 15px;
  210. font-family: PingFangSC, PingFangSC-Medium;
  211. font-weight: 500;
  212. color: #308eff;
  213. }
  214. .next-btn {
  215. width: 128px;
  216. height: 44px;
  217. background: #308eff;
  218. border-radius: 7px;
  219. border: none;
  220. font-size: 15px;
  221. font-family: PingFangSC, PingFangSC-Medium;
  222. font-weight: 500;
  223. color: #ffffff;
  224. }
  225. }
  226. }