fabuArticle.scss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684
  1. page {
  2. position: absolute;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. display: flex;
  7. background-color: #f2f6f2;
  8. min-height: 100vh;
  9. }
  10. .status_bar {
  11. height: 44rpx;
  12. width: 100%;
  13. }
  14. .page {
  15. background-color: #f2f6f2;
  16. display: flex;
  17. flex-direction: column;
  18. width: 750rpx;
  19. min-height: 100vh;
  20. }
  21. // .nav-bar {
  22. // width: 750rpx;
  23. // height: 88rpx;
  24. // background-color: #fff;
  25. // display: flex;
  26. // flex-direction: row;
  27. // align-items: center;
  28. // justify-content: space-between;
  29. // padding: 0 10rpx;
  30. // box-sizing: border-box;
  31. // border-bottom: 0rpx solid #f0f0f0;
  32. // .left {
  33. // width: 120rpx;
  34. // .uni-btn-icon {
  35. // font-size: 50rpx;
  36. // color: #000;
  37. // }
  38. // }
  39. // .center {
  40. // flex: 1;
  41. // text-align: center;
  42. // font-size: 32rpx;
  43. // font-weight: bold;
  44. // color: #333;
  45. // }
  46. // .right {
  47. // display: flex;
  48. // align-items: center;
  49. // .btn {
  50. // font-size: 28rpx;
  51. // color: #333;
  52. // margin-left: 30rpx;
  53. // &:active {
  54. // opacity: 0.7;
  55. // }
  56. // }
  57. // }
  58. // }
  59. .nav-bar {
  60. width: calc(100ve - 73rpx);
  61. height: calc(96rpx + var(--status-bar-height));
  62. display: flex;
  63. align-items: center;
  64. justify-content: space-between;
  65. padding: 0;
  66. padding-right: 40rpx;
  67. padding-left: 33rpx;
  68. box-sizing: border-box;
  69. .left {
  70. display: flex;
  71. align-items: center;
  72. font-family: PingFang SC-Bold;
  73. font-weight: 400;
  74. font-size: 32rpx;
  75. color: #1f1f1f;
  76. .uni-btn-icon {
  77. font-size: 45rpx;
  78. font-weight: bold;
  79. color: #1f1f1f;
  80. transition: color 0.2s;
  81. margin-right: 20rpx;
  82. &:active {
  83. color: #2b85e4;
  84. }
  85. }
  86. }
  87. .right {
  88. display: flex;
  89. align-items: center;
  90. font-size: 28rpx;
  91. font-family: "PingFang SC-Bold";
  92. font-weight: 400;
  93. .btn {
  94. border-radius: 26rpx;
  95. background: #1f1f1f;
  96. padding: 6rpx 32rpx;
  97. color: #acf934;
  98. font-size: 28rpx;
  99. }
  100. }
  101. }
  102. .enterContentDetails {
  103. width: calc(100% - 40rpx);
  104. min-height: 726rpx;
  105. background: #ffffff;
  106. border-radius: 20rpx;
  107. margin: 0 20rpx;
  108. padding: 0rpx 24rpx 24rpx 24rpx;
  109. box-sizing: border-box;
  110. .edit {
  111. height: 92rpx;
  112. border-bottom: 2rpx solid #f2f6f2;
  113. }
  114. .edit2 {
  115. min-height: 350rpx;
  116. width: 100%;
  117. // border-bottom: 2rpx solid #f2f6f2;
  118. }
  119. .content-textarea {
  120. padding-top: 24rpx;
  121. }
  122. ::v-deep.input-placeholder,
  123. ::v-deep.textarea-placeholder {
  124. font-family: PingFang SC;
  125. font-weight: 400;
  126. font-size: 32rpx;
  127. color: #999999;
  128. }
  129. .agree {
  130. font-family: PingFang SC, PingFang SC;
  131. font-weight: 400;
  132. font-size: 24rpx;
  133. color: #999999;
  134. display: flex;
  135. align-items: center;
  136. justify-content: flex-end;
  137. }
  138. .img {
  139. width: 100%;
  140. padding-left: 20rpx;
  141. image {
  142. width: 710rpx;
  143. }
  144. }
  145. .img_list {
  146. width: 100%;
  147. display: grid;
  148. grid-template-columns: repeat(3, 1fr);
  149. row-gap: 20rpx;
  150. flex-wrap: wrap;
  151. margin-top:15rpx;
  152. .image {
  153. display: flex;
  154. width: 208rpx;
  155. height: 208rpx;
  156. position: relative;
  157. box-sizing: border-box;
  158. justify-content: center;
  159. align-items: center;
  160. background: #f2f6f2;
  161. border-radius: 16rpx;
  162. .txt {
  163. font-size: 120rpx;
  164. color: #999;
  165. width: 40rpx;
  166. height: 40rpx;
  167. }
  168. .upimg {
  169. position: absolute;
  170. left: 0;
  171. top: 0;
  172. width: 100%;
  173. height: 100%;
  174. border-radius: 8rpx;
  175. }
  176. .del {
  177. width: 40rpx;
  178. height: 40rpx;
  179. position: absolute;
  180. right: 0rpx;
  181. top: 0rpx;
  182. }
  183. }
  184. }
  185. .btn_list {
  186. display: flex;
  187. flex-direction: row;
  188. align-items: center;
  189. justify-content: center;
  190. .btn_sq {
  191. width: 300rpx;
  192. height: 80rpx;
  193. background-color: #bf8669;
  194. border-radius: 4rpx;
  195. text-align: center;
  196. color: #fff;
  197. line-height: 80rpx;
  198. font-size: 32rpx;
  199. margin: 20rpx;
  200. }
  201. }
  202. .telbg {
  203. width: 750rpx;
  204. height: 350rpx;
  205. display: flex;
  206. flex-direction: column;
  207. padding-left: 40rpx;
  208. padding-top: 120rpx;
  209. color: #fff;
  210. background-color: #517456;
  211. font-size: 30rpx;
  212. .tel {
  213. font-size: 80rpx;
  214. color: #bf8669;
  215. }
  216. }
  217. }
  218. .worksBox {
  219. border-radius: 20rpx;
  220. overflow: hidden;
  221. margin: 0 24rpx;
  222. background: #fff;
  223. margin-top: 20rpx;
  224. padding-left: 24rpx;
  225. .optionalWorks {
  226. display: flex;
  227. align-items: center;
  228. justify-content: space-between;
  229. padding: 24rpx;
  230. height: 88rpx;
  231. padding-left: 0;
  232. .title {
  233. font-family: "PingFang SC-Bold";
  234. font-weight: bold;
  235. font-size: 28rpx;
  236. text {
  237. color: #bbb;
  238. font-size: 24rpx;
  239. padding-left: 10rpx;
  240. }
  241. }
  242. .selectLeft {
  243. display: flex;
  244. align-items: center;
  245. font-family: "PingFang SC-Bold";
  246. .prompt {
  247. margin-right: 8rpx;
  248. }
  249. .rightArrow {
  250. width: 28rpx;
  251. height: 28rpx;
  252. }
  253. }
  254. }
  255. .activeItem {
  256. height: 220rpx;
  257. padding: 22rpx 48rpx 22rpx 26rpx;
  258. box-sizing: border-box;
  259. display: flex;
  260. justify-content: space-between;
  261. padding-left: 0;
  262. border-top: 2rpx solid #f2f6f2;
  263. image {
  264. width: 100%;
  265. height: 100%;
  266. }
  267. .img-box {
  268. width: 112rpx;
  269. height: 152rpx;
  270. }
  271. .info {
  272. width: 450rpx;
  273. height: 152rpx;
  274. display: flex;
  275. flex-direction: column;
  276. justify-content: center;
  277. padding: 10rpx;
  278. .title {
  279. font-family: "PingFang SC-Bold";
  280. font-weight: 400;
  281. font-size: 32rpx;
  282. color: #1f1f1f;
  283. }
  284. }
  285. .select-box {
  286. width: 40rpx;
  287. height: 100%;
  288. display: flex;
  289. justify-content: center;
  290. align-items: center;
  291. image {
  292. width: 40rpx;
  293. height: 40rpx;
  294. }
  295. }
  296. }
  297. }
  298. /* 用户信息列表 */
  299. .user-list {
  300. width: 710rpx;
  301. border-radius: 20rpx;
  302. margin: 20rpx auto;
  303. .agree {
  304. width: 100%;
  305. text-align: center;
  306. color: #959595;
  307. font-size: 22rpx;
  308. padding: 20rpx 0;
  309. margin-top: 0rpx;
  310. padding-right: 50rpx;
  311. display: flex;
  312. flex-direction: row;
  313. justify-content: flex-end;
  314. align-items: center;
  315. .xy {
  316. color: darkred;
  317. padding: 0rpx 20rpx;
  318. }
  319. image {
  320. width: 32rpx;
  321. margin-right: 8rpx;
  322. }
  323. }
  324. .tips {
  325. display: flex;
  326. flex-direction: row;
  327. justify-content: space-between;
  328. height: 90rpx;
  329. .title {
  330. display: flex;
  331. flex-direction: row;
  332. justify-content: center;
  333. height: 80rpx;
  334. line-height: 80rpx;
  335. font-weight: bold;
  336. font-size: 30rpx;
  337. .line {
  338. width: 10rpx;
  339. height: 24rpx;
  340. background-color: $base;
  341. line-height: 80rpx;
  342. margin: 28rpx 20rpx;
  343. }
  344. }
  345. .more-content {
  346. display: flex;
  347. flex-direction: row;
  348. height: 100%;
  349. align-items: center;
  350. .item1 {
  351. display: flex;
  352. justify-content: center;
  353. height: 100%;
  354. flex-direction: row;
  355. line-height: 100%;
  356. align-items: center;
  357. align-self: center;
  358. .switch {
  359. }
  360. .status {
  361. color: #e54d42;
  362. }
  363. .btn {
  364. width: 160rpx;
  365. height: 50rpx;
  366. margin: 0 20rpx;
  367. text-align: center;
  368. margin-left: 40rpx;
  369. background-color: #39b54a;
  370. border-radius: 25rpx;
  371. color: #fff;
  372. font-size: 24rpx;
  373. line-height: 50rpx;
  374. }
  375. }
  376. }
  377. .beizu {
  378. padding: 10rpx 30rpx;
  379. color: #959595;
  380. }
  381. }
  382. .content {
  383. padding: 10rpx 0rpx;
  384. display: flex;
  385. flex-direction: column;
  386. justify-content: space-between;
  387. .edit {
  388. border: solid 1px #f0f0f0;
  389. border-radius: 10rpx;
  390. width: 670rpx;
  391. height: 80rpx;
  392. font-size: 30rpx;
  393. padding: 10rpx;
  394. background-color: #fff;
  395. }
  396. .edit2 {
  397. border: solid 1px #f0f0f0;
  398. background-color: #fff;
  399. border-radius: 10rpx;
  400. width: 670rpx;
  401. height: 340rpx;
  402. font-size: 30rpx;
  403. padding: 10rpx;
  404. box-sizing: border-box;
  405. }
  406. .item {
  407. display: flex;
  408. flex-direction: row;
  409. justify-content: space-between;
  410. border: solid 1px #f0f0f0;
  411. border-radius: 10rpx;
  412. width: 730rpx;
  413. height: 80rpx;
  414. align-items: center;
  415. .left {
  416. padding-left: 10rpx;
  417. width: 168rpx;
  418. font-size: 28rpx;
  419. }
  420. .input {
  421. width: 570rpx;
  422. font-size: 28rpx;
  423. }
  424. .picker {
  425. padding-left: 10rpx;
  426. width: 120rpx;
  427. display: flex;
  428. flex-direction: row;
  429. justify-content: space-between;
  430. .selimg {
  431. width: 24rpx;
  432. height: 24rpx;
  433. margin-top: 4rpx;
  434. margin-left: 12rpx;
  435. }
  436. }
  437. .edit3 {
  438. border: solid 0px #f0f0f0;
  439. border-radius: 10rpx;
  440. width: 730rpx;
  441. height: 140rpx;
  442. font-size: 28rpx;
  443. padding: 8rpx;
  444. }
  445. }
  446. .item2 {
  447. display: flex;
  448. flex-direction: row;
  449. justify-content: space-between;
  450. margin-top: 10rpx;
  451. .item21 {
  452. display: flex;
  453. flex-direction: row;
  454. justify-content: space-between;
  455. border: solid 1px #f0f0f0;
  456. border-radius: 10rpx;
  457. width: 360rpx;
  458. height: 80rpx;
  459. align-items: center;
  460. .left {
  461. padding-left: 10rpx;
  462. width: 120rpx;
  463. line-height: 60rpx;
  464. font-size: 28rpx;
  465. }
  466. .input {
  467. width: 360rpx;
  468. font-size: 28rpx;
  469. line-height: 60rpx;
  470. }
  471. }
  472. }
  473. }
  474. .img {
  475. width: 100%;
  476. padding-left: 20rpx;
  477. image {
  478. width: 710rpx;
  479. }
  480. }
  481. .img_list {
  482. display: flex;
  483. width: 100%;
  484. padding: 20rpx 40rpx;
  485. flex-wrap: wrap;
  486. .image {
  487. display: flex;
  488. width: 200rpx;
  489. height: 200rpx;
  490. position: relative;
  491. margin: 10rpx;
  492. box-sizing: border-box;
  493. justify-content: center;
  494. align-items: center;
  495. background: rgba(120, 120, 120, 0.2);
  496. border-radius: 8rpx;
  497. .txt {
  498. font-size: 120rpx;
  499. color: #999;
  500. }
  501. .upimg {
  502. position: absolute;
  503. left: 0;
  504. top: 0;
  505. width: 100%;
  506. height: 100%;
  507. border-radius: 8rpx;
  508. }
  509. .del {
  510. width: 40rpx;
  511. height: 40rpx;
  512. position: absolute;
  513. right: -10rpx;
  514. top: -10rpx;
  515. }
  516. }
  517. }
  518. .btn_list {
  519. display: flex;
  520. flex-direction: row;
  521. align-items: center;
  522. justify-content: center;
  523. .btn_sq {
  524. width: 300rpx;
  525. height: 80rpx;
  526. background-color: #bf8669;
  527. border-radius: 4rpx;
  528. text-align: center;
  529. color: #fff;
  530. line-height: 80rpx;
  531. font-size: 32rpx;
  532. margin: 20rpx;
  533. }
  534. }
  535. .telbg {
  536. width: 750rpx;
  537. height: 350rpx;
  538. display: flex;
  539. flex-direction: column;
  540. padding-left: 40rpx;
  541. padding-top: 120rpx;
  542. color: #fff;
  543. background-color: #517456;
  544. font-size: 30rpx;
  545. .tel {
  546. font-size: 80rpx;
  547. color: #bf8669;
  548. }
  549. }
  550. .img2 {
  551. width: 100%;
  552. padding-left: 0rpx;
  553. image {
  554. width: 750rpx;
  555. }
  556. }
  557. }
  558. .footer {
  559. position: fixed;
  560. bottom: 0rpx;
  561. width: 750rpx;
  562. height: 120rpx;
  563. display: flex;
  564. flex-direction: row;
  565. justify-content: center;
  566. background: #fff;
  567. .btn {
  568. width: 690rpx;
  569. height: 80rpx;
  570. background-color: #39b54a;
  571. border-radius: 40rpx;
  572. text-align: center;
  573. color: #fff;
  574. line-height: 80rpx;
  575. font-size: 32rpx;
  576. }
  577. }
  578. .foot-btn {
  579. height: 80rpx;
  580. padding: 60rpx;
  581. button {
  582. height: 80rpx;
  583. line-height: 80rpx;
  584. font-size: 28rpx;
  585. }
  586. }
  587. .uni-textarea-placeholder {
  588. color: #959595;
  589. overflow: hidden;
  590. }
  591. .num_txt {
  592. display: flex;
  593. flex-direction: row;
  594. align-items: center;
  595. padding: 20rpx 30rpx;
  596. .num_input {
  597. width: 120rpx;
  598. height: 60rpx;
  599. border: 1px solid $base;
  600. border-radius: 10rpx;
  601. margin: 0 20rpx;
  602. text-align: center;
  603. font-size: 28rpx;
  604. }
  605. }