companyComplete.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. @import "../scssCommon.scss";
  2. .companyComplete {
  3. width: 1000px !important;
  4. min-height: 937px;
  5. background: rgba(255, 255, 255, 1);
  6. .titleArea {
  7. width: calc(100% - 40px);
  8. height: 90px;
  9. margin: 0 20px;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  14. flex-direction: column;
  15. .title {
  16. height:37px;
  17. font-size:26px;
  18. font-weight:600;
  19. color:rgba(29,42,58,1);
  20. line-height:37px;
  21. }
  22. .smallTitle {
  23. height:24px;
  24. font-size:12px;
  25. font-weight:400;
  26. color:rgba(102,102,102,1);
  27. line-height:24px;
  28. }
  29. }
  30. .bodyArea {
  31. width: 500px;
  32. margin: 0 auto;
  33. .topSteps {
  34. height: 130px;
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. .cell {
  39. width: 60px;
  40. overflow: visible;
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. flex-direction: column;
  45. .number {
  46. width:26px;
  47. height:26px;
  48. border:1px solid rgba(204,204,204,1);
  49. display: flex;
  50. justify-content: center;
  51. align-items: center;
  52. border-radius: 50%;
  53. font-size:13px;
  54. font-weight:400;
  55. color:rgba(102,102,102,1);
  56. line-height:26.01px
  57. }
  58. .word {
  59. text-align: center;
  60. height:18px;
  61. font-size:14px;
  62. font-weight:400;
  63. color:rgba(102,102,102,1);
  64. line-height:18px;
  65. margin-top: 13px;
  66. word-break: break-all;
  67. white-space: nowrap;
  68. }
  69. &.ok {
  70. .number {
  71. background:rgba(48,142,255,1);
  72. box-shadow:0px 2px 8px 0px rgba(48,142,255,0.3);
  73. color:rgba(255,255,255,1);
  74. }
  75. .word {
  76. font-weight:600;
  77. color:rgba(34,34,34,1);
  78. }
  79. }
  80. }
  81. .line {
  82. margin-top: -30px;
  83. width:191px;
  84. height:1px;
  85. background-color: #ccc;
  86. }
  87. }
  88. .inputArea {
  89. .inputBox {
  90. margin-top: 31px;
  91. p {
  92. height: 23px;
  93. font-size: 16px;
  94. font-weight: 500;
  95. color: rgba(25, 34, 46, 1);
  96. line-height: 23px;
  97. text-align: left;
  98. }
  99. input, textarea {
  100. margin-top: 3px;
  101. width: 396px;
  102. height: 54px;
  103. background: rgba(255, 255, 255, 1);
  104. border-radius: 3px;
  105. border: 1px solid rgba(221, 225, 230, 1);
  106. padding: 10px;
  107. }
  108. textarea {
  109. width: 500px;
  110. height: 110px;
  111. }
  112. input::placeholder, textarea::placeholder {
  113. font-size: 16px;
  114. }
  115. }
  116. }
  117. .uploadFile {
  118. margin-top: 27px;
  119. display: flex;
  120. align-items: center;
  121. .name {
  122. height: 18px;
  123. font-size: 13px;
  124. font-weight: 600;
  125. color: rgba(25, 34, 46, 1);
  126. line-height: 18px;
  127. span {
  128. height: 18px;
  129. font-size: 13px;
  130. font-weight: 600;
  131. color: #FF5B3B;
  132. line-height: 18px;
  133. }
  134. }
  135. .uploadArea {
  136. margin-left: 17px;
  137. display: flex;
  138. align-items: center;
  139. .tipps {
  140. margin-left: 10px;
  141. color: #FF5B3B;
  142. font-size: 15px;
  143. }
  144. }
  145. .avatar-uploader {
  146. margin-top: 9px;
  147. width: 80px;
  148. height: 80px;
  149. overflow: hidden;
  150. position: relative;
  151. background: #fff;
  152. .el-icon-delete {
  153. display: none;
  154. }
  155. .el-upload {
  156. width: 80px;
  157. height: 80px;
  158. border: 1px dashed #409eff;
  159. border-radius: 6px;
  160. cursor: pointer;
  161. position: relative;
  162. overflow: hidden;
  163. img {
  164. width: 100%;
  165. height: auto;
  166. object-fit: contain;
  167. object-position: top left;
  168. }
  169. &:hover {
  170. border-color: #409eff;
  171. .el-icon-delete {
  172. display: block;
  173. }
  174. }
  175. }
  176. .avatar-uploader-icon {
  177. position: absolute;
  178. top: 0;
  179. left: 0;
  180. font-size: 32px;
  181. color: #999;;
  182. width: 80px;
  183. height: 80px;
  184. line-height: 80px;
  185. text-align: center;
  186. }
  187. .avatar {
  188. width: 80px;
  189. height: 80px;
  190. display: block;
  191. }
  192. }
  193. }
  194. .submitButton {
  195. margin:26px 0 33px 0 ;
  196. display: flex;
  197. align-items: center;
  198. height: 55px;
  199. .right {
  200. width: 185px;
  201. height: 46px;
  202. background: rgba(48, 142, 255, 1);
  203. box-shadow: 0px 2px 6px 0px rgba(48, 142, 255, 0.3);
  204. border-radius: 2px;
  205. display: flex;
  206. justify-content: center;
  207. align-items: center;
  208. cursor: pointer;
  209. p {
  210. height: 20px;
  211. font-size: 14px;
  212. font-weight: 500;
  213. color: rgba(255, 255, 255, 1);
  214. line-height: 20px;
  215. }
  216. &.noSubmit {
  217. cursor: not-allowed;
  218. background:rgba(236,236,236,1);
  219. box-shadow: none;
  220. p {
  221. color: #666;
  222. }
  223. }
  224. }
  225. }
  226. }
  227. }
  228. .companyCompleteMobile {
  229. width: 100vw !important;
  230. -webkit-overflow-scrolling: touch;
  231. background: rgba(255, 255, 255, 1);
  232. padding: 0 pxtovw(10) pxtovw(80) pxtovw(10);
  233. margin: 0;
  234. .titleArea {
  235. width: 100%;
  236. height: pxtovw(62);
  237. display: flex;
  238. justify-content: center;
  239. flex-direction: column;
  240. align-items: center;
  241. border-bottom: pxtovw(2) solid rgba(0, 0, 0, 0.06);
  242. .title {
  243. font-size:pxtovw(20);
  244. font-weight:600;
  245. color:rgba(29,42,58,1);
  246. line-height: pxtovw(28);
  247. }
  248. .smallTitle {
  249. height: pxtovw(12);
  250. font-size:pxtovw(12);
  251. font-weight:400;
  252. color:rgba(102,102,102,1);
  253. line-height:pxtovw(12);
  254. }
  255. }
  256. .bodyArea {
  257. width: 100%;
  258. margin: 0 auto;
  259. .topSteps {
  260. height: pxtovw(160);
  261. display: flex;
  262. justify-content: center;
  263. align-items: center;
  264. .cell {
  265. width: pxtovw(45);
  266. overflow: visible;
  267. display: flex;
  268. justify-content: center;
  269. align-items: center;
  270. flex-direction: column;
  271. .number {
  272. width:pxtovw(26);
  273. height:pxtovw(26);
  274. border:1px solid rgba(204,204,204,1);
  275. display: flex;
  276. justify-content: center;
  277. align-items: center;
  278. border-radius: 50%;
  279. font-size:pxtovw(13);
  280. font-weight:400;
  281. color:rgba(102,102,102,1);
  282. line-height:pxtovw(26.01)
  283. }
  284. .word {
  285. text-align: center;
  286. height:pxtovw(18);
  287. font-size:pxtovw(13);
  288. font-weight:400;
  289. color:rgba(102,102,102,1);
  290. line-height:pxtovw(18);
  291. margin-top: pxtovw(13);
  292. word-break: break-all;
  293. white-space: nowrap;
  294. }
  295. &.ok {
  296. .number {
  297. background:rgba(48,142,255,1);
  298. box-shadow:0px 2px 8px 0px rgba(48,142,255,0.3);
  299. color:rgba(255,255,255,1);
  300. }
  301. .word {
  302. font-weight:600;
  303. color:rgba(34,34,34,1);
  304. }
  305. }
  306. }
  307. .line {
  308. margin-top: pxtovw(-30);
  309. width: pxtovw(100);
  310. height:1px;
  311. background-color: #ccc;
  312. }
  313. }
  314. .inputArea {
  315. .inputBox {
  316. margin-top: pxtovw(31);
  317. p {
  318. height: pxtovw(20);
  319. font-size: pxtovw(14);
  320. font-weight: 500;
  321. color: rgba(25, 34, 46, 1);
  322. line-height: pxtovw(20);
  323. text-align: left;
  324. }
  325. input, textarea {
  326. margin-top: pxtovw(5);
  327. width: pxtovw(350);
  328. height: pxtovw(44);
  329. background: rgba(255, 255, 255, 1);
  330. border-radius: pxtovw(3);
  331. border: pxtovw(1) solid rgba(221, 225, 230, 1);
  332. padding: pxtovw(10);
  333. }
  334. textarea {
  335. width: pxtovw(350);
  336. height: pxtovw(110);
  337. }
  338. input::placeholder, textarea::placeholder {
  339. font-size: pxtovw(14);
  340. }
  341. }
  342. }
  343. .uploadArea {
  344. display: flex;
  345. align-items: center;
  346. .tipps {
  347. margin-left: pxtovw(10);
  348. color: #FF5B3B;
  349. font-size: pxtovw(15);
  350. }
  351. }
  352. .uploadFile {
  353. margin-top: pxtovw(29);
  354. display: flex;
  355. align-items: center;
  356. .name {
  357. height: pxtovw(18);
  358. font-size: pxtovw(13);
  359. font-weight: 600;
  360. color: rgba(25, 34, 46, 1);
  361. line-height: pxtovw(18);
  362. span {
  363. height: pxtovw(18);
  364. font-size: pxtovw(13);
  365. font-weight: 600;
  366. color: #FF5B3B;
  367. line-height: pxtovw(18);
  368. }
  369. }
  370. .avatar-uploader {
  371. margin-left: pxtovw(15);
  372. margin-top: pxtovw(9);
  373. width: pxtovw(80);
  374. height: pxtovw(80);
  375. overflow: hidden;
  376. position: relative;
  377. background: #fff;
  378. .el-icon-delete {
  379. display: none;
  380. }
  381. .el-upload {
  382. width: pxtovw(80);
  383. height: pxtovw(80);
  384. border: pxtovw(1) dashed #409eff;
  385. border-radius: pxtovw(6);
  386. cursor: pointer;
  387. position: relative;
  388. overflow: hidden;
  389. img {
  390. width: 100%;
  391. height: auto;
  392. object-fit: contain;
  393. object-position: top left;
  394. }
  395. &:hover {
  396. border-color: #409eff;
  397. .el-icon-delete {
  398. display: block;
  399. }
  400. }
  401. }
  402. .avatar-uploader-icon {
  403. position: absolute;
  404. top: 0;
  405. left: 0;
  406. font-size: pxtovw(44);
  407. color: #999;;
  408. width: pxtovw(80);
  409. height: pxtovw(80);
  410. line-height: pxtovw(80);
  411. text-align: center;
  412. }
  413. .avatar {
  414. width: pxtovw(80);
  415. height: pxtovw(80);
  416. display: block;
  417. }
  418. .title {
  419. position: absolute;
  420. left: 50%;
  421. bottom: pxtovw(40);
  422. transform: translateX(-50%);
  423. font-size: pxtovw(13);
  424. font-weight: 500;
  425. color: #409eff;
  426. line-height: pxtovw(18);
  427. text-decoration: underline;
  428. }
  429. }
  430. }
  431. .submitButton {
  432. margin-top: pxtovw(30);
  433. display: flex;
  434. align-items: center;
  435. height: pxtovw(55);
  436. .right {
  437. width: pxtovw(350);
  438. height: pxtovw(46);
  439. background: rgba(48, 142, 255, 1);
  440. box-shadow: 0 pxtovw(2) pxtovw(6) 0 rgba(48, 142, 255, 0.3);
  441. border-radius: pxtovw(2);
  442. display: flex;
  443. justify-content: center;
  444. align-items: center;
  445. cursor: pointer;
  446. p {
  447. height: pxtovw(20);
  448. font-size: pxtovw(14);
  449. font-weight: 500;
  450. color: rgba(255, 255, 255, 1);
  451. line-height: pxtovw(20);
  452. }
  453. &.noSubmit {
  454. cursor: not-allowed;
  455. background:rgba(236,236,236,1);
  456. box-shadow: none;
  457. p {
  458. color: #666;
  459. }
  460. }
  461. }
  462. }
  463. }
  464. }