kaifainAdd.scss 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. * {
  2. box-sizing: border-box;
  3. }
  4. .kaifainAdd {
  5. background-color: #fff;
  6. .topArea {
  7. margin: auto;
  8. width: 1000px;
  9. padding: 25px 20px 0px 20px;
  10. background-color: #fff;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. box-sizing: border-box;
  15. .title {
  16. font-size: 28px;
  17. font-weight: 500;
  18. color: rgba(34, 34, 34, 1);
  19. line-height: 40px;
  20. position: relative;
  21. width: 100%;
  22. text-align: center;
  23. .backBox {
  24. position: absolute;
  25. top: 0;
  26. left: 0;
  27. height: 32px;
  28. display: flex;
  29. align-items: center;
  30. cursor: pointer;
  31. .backIcon {
  32. width: 16px;
  33. height: 16px;
  34. background: url('~@/assets/img/credit/icon_back@2x.png');
  35. background-size: cover;
  36. }
  37. .backWord {
  38. height: 22px;
  39. font-size: 16px;
  40. font-weight: 500;
  41. color: rgba(51, 51, 51, 1);
  42. line-height: 22px;
  43. margin-left: 5px;
  44. }
  45. }
  46. }
  47. .line {
  48. margin-top: 26px;
  49. width: 960px;
  50. height: 2px;
  51. background: rgba(0, 0, 0, 0.06);;
  52. }
  53. }
  54. .bodyArea {
  55. min-height: 100px;
  56. width: 100%;
  57. padding: 20px;
  58. max-width: 1000px;
  59. position: relative;
  60. margin: auto;
  61. .statusBox {
  62. position: absolute;
  63. right: 20px;
  64. top: 30px;
  65. width: 76px;
  66. height: 30px;
  67. border-radius: 3px;
  68. border: 1px solid rgba(16, 185, 106, 1);
  69. display: flex;
  70. justify-content: center;
  71. align-items: center;
  72. p {
  73. height: 20px;
  74. font-size: 14px;
  75. font-weight: 500;
  76. color: rgba(16, 185, 106, 1);
  77. line-height: 20px;
  78. }
  79. &.none {
  80. background: rgba(235, 235, 235, 1);
  81. border: none;
  82. border-radius: 3px;
  83. p {
  84. height: 20px;
  85. font-size: 14px;
  86. font-weight: 500;
  87. color: rgba(136, 136, 136, 1);
  88. line-height: 20px;
  89. }
  90. }
  91. }
  92. .stitle {
  93. height: 20px;
  94. font-size: 14px;
  95. font-weight: 500;
  96. color: rgba(25, 34, 46, 1);
  97. line-height: 20px;
  98. margin-bottom: 5px;
  99. span {
  100. margin-left: 20px;
  101. height: 18px;
  102. font-size: 13px;
  103. font-weight: 400;
  104. color: rgba(48, 142, 255, 1);
  105. line-height: 18px;
  106. }
  107. }
  108. .statusBox, .nameBox, .logoBox {
  109. input {
  110. width: 768px;
  111. height: 44px;
  112. }
  113. }
  114. .selectArea {
  115. margin-top: 20px;
  116. display: flex;
  117. .left {
  118. width: 280px;
  119. }
  120. .right {
  121. margin-left: 10px;
  122. width: 427px;
  123. }
  124. }
  125. .logoBox {
  126. margin-top: 20px;
  127. .uploadInfo {
  128. display: flex;
  129. .left {
  130. }
  131. .right {
  132. margin-left: 8px;
  133. display: flex;
  134. justify-content: center;
  135. align-items: center;
  136. p {
  137. height: 17px;
  138. font-size: 12px;
  139. font-weight: 400;
  140. color: rgba(153, 153, 153, 1);
  141. line-height: 17px;
  142. }
  143. }
  144. }
  145. }
  146. .smallIntro, .intro {
  147. margin-top: 20px;
  148. }
  149. .intro {
  150. .stitle {
  151. span {
  152. cursor: pointer;
  153. }
  154. }
  155. .editor {
  156. max-width: 768px;
  157. width: 100%;
  158. height: 380px;
  159. background: rgba(255, 255, 255, 1);
  160. border-radius: 3px;
  161. border: 1px solid rgba(215, 223, 232, 1);
  162. }
  163. }
  164. .successIntro {
  165. margin-top: 30px;
  166. .list {
  167. width: 768px;
  168. .titleCell {
  169. background: rgba(250, 250, 250, 1);
  170. border-radius: 4px;
  171. height: 54px;
  172. width: 100%;
  173. display: flex;
  174. justify-content: center;
  175. align-items: center;
  176. .tt1, .tt2, .tt3, .tt4 {
  177. height: 54px;
  178. display: flex;
  179. justify-content: center;
  180. align-items: center;
  181. p {
  182. font-size: 14px;
  183. font-weight: 500;
  184. color: rgba(0, 0, 0, 0.85);
  185. line-height: 21px;
  186. }
  187. }
  188. .tt1 {
  189. width: 115px;
  190. }
  191. .tt2 {
  192. width: 446px;
  193. p {
  194. margin-left: 30px;
  195. }
  196. }
  197. .tt3 {
  198. width: 102px;
  199. }
  200. .tt4 {
  201. width: 102px;
  202. }
  203. }
  204. .cell {
  205. cursor: pointer;
  206. height: 130px;
  207. width: 100%;
  208. display: flex;
  209. border-bottom: 1px solid #EDEDED;
  210. .img {
  211. font-size: 0;
  212. width: 115px;
  213. height: 130px;
  214. display: flex;
  215. justify-content: center;
  216. align-items: center;
  217. img {
  218. width: 96px;
  219. height: 96px;
  220. }
  221. }
  222. .content {
  223. width: 446px;
  224. height: 130px;
  225. padding: 30px;
  226. p {
  227. height: 63px;
  228. font-size: 13px;
  229. font-weight: 400;
  230. color: rgba(102, 102, 102, 1);
  231. line-height: 21px;
  232. }
  233. }
  234. .pdf {
  235. width: 102px;
  236. height: 130px;
  237. display: flex;
  238. justify-content: center;
  239. align-items: center;
  240. flex-direction: column;
  241. cursor: pointer;
  242. .icon {
  243. width: 25px;
  244. height: 25px;
  245. background: url('~@/assets/img/kaifain/add/icon_pdf@2x.png') no-repeat;
  246. background-size: cover;
  247. }
  248. p {
  249. margin-top: 3px;
  250. height: 17px;
  251. font-size: 12px;
  252. font-weight: 400;
  253. color: rgba(102, 102, 102, 1);
  254. line-height: 17px;
  255. }
  256. }
  257. .del {
  258. width: 102px;
  259. height: 130px;
  260. display: flex;
  261. justify-content: center;
  262. align-items: center;
  263. cursor: pointer;
  264. .icon {
  265. width: 18px;
  266. height: 18px;
  267. background: url('~@/assets/img/kaifain/add/icon_del@2x.png') no-repeat;
  268. background-size: cover;
  269. }
  270. }
  271. }
  272. .addCell {
  273. height: 80px;
  274. width: 100%;
  275. display: flex;
  276. justify-content: center;
  277. align-items: center;
  278. border-bottom: 1px solid #EDEDED;
  279. cursor: pointer;
  280. .icon {
  281. width: 20px;
  282. height: 20px;
  283. background: url('~@/assets/img/kaifain/add/icon_add@2x.png') no-repeat;
  284. background-size: cover;
  285. }
  286. p {
  287. margin-left: 4px;
  288. //height:21px;
  289. //font-size:14px;
  290. font-weight:600;
  291. color:rgba(48,142,255,1);
  292. //line-height:21px;
  293. }
  294. }
  295. }
  296. }
  297. .bottomBtn {
  298. margin-top: 38px;
  299. display: flex;
  300. align-items: center;
  301. .preview {
  302. cursor: pointer;
  303. color: #666;
  304. }
  305. .submit {
  306. margin-left: 10px;
  307. width:159px;
  308. height:44px;
  309. background:rgba(48,142,255,1);
  310. box-shadow:0px 2px 6px 0px rgba(48,142,255,0.3);
  311. border-radius:2px;
  312. cursor: pointer;
  313. display: flex;
  314. justify-content: center;
  315. align-items: center;
  316. p {
  317. height:20px;
  318. font-size:14px;
  319. font-weight:500;
  320. color:rgba(255,255,255,1);
  321. line-height:20px;
  322. }
  323. }
  324. .keepTmp {
  325. margin-left: 10px;
  326. width:159px;
  327. height:44px;
  328. background:rgba(236,236,236,1);
  329. border-radius:2px;
  330. cursor: pointer;
  331. display: flex;
  332. justify-content: center;
  333. align-items: center;
  334. p {
  335. height:20px;
  336. font-size:14px;
  337. font-weight:500;
  338. color:rgba(102,102,102,1);
  339. line-height:20px;
  340. }
  341. }
  342. }
  343. }
  344. }