new.scss 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930
  1. @charset "utf-8";
  2. //font
  3. $bg:#f8f9fa; // 全局背景色
  4. $tag-bg:#f2f2fa; // 标签背景色
  5. $highlight-color: #f0f0f0; // 弱线分割
  6. $grey-color: #efefef; // 列表分隔
  7. $grey-border-bottom: 1px solid $highlight-color; // 列表底部分隔线
  8. $red:#ff5c5c; // 品牌色
  9. $black202020:#202020; // 大黑
  10. $black7a7a7a:#7a7a7a; // 中黑
  11. $blackafafaf:#afafaf; // 灰
  12. $efefef:#efefef;
  13. $f0f0f0:#f0f0f0;
  14. // 我的界面嵌套样式css
  15. // 头部个人消息
  16. .top_info{
  17. width: 100%;
  18. background-color: #fff;
  19. background-image: url('../static/img/bg-me.png');
  20. background-repeat: no-repeat;
  21. background-size: 100%;
  22. margin-bottom: 1rem;
  23. height: auto;
  24. .user_info{
  25. padding: 1rem 0.5rem;
  26. padding-left: 2rem;
  27. padding-top: 6rem;
  28. h2{
  29. width: 6rem;
  30. height: 6rem;
  31. border-radius: 50%;
  32. float: left;
  33. margin-right: 1rem;
  34. display:flex;
  35. align-items:center;
  36. }
  37. h2 img{
  38. width: 100%;
  39. }
  40. div{
  41. float: left;
  42. // display:flex;
  43. align-items:center;
  44. p{
  45. display: block;
  46. color: #fff;
  47. }
  48. }
  49. }
  50. // end:头像姓名结束
  51. // 会员尊享
  52. .verify{
  53. border-radius: 0.8rem;
  54. padding:0 1rem;
  55. margin: 0 1.5rem;
  56. box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  57. background-color: #fff;
  58. height: 6rem;
  59. line-height: 6rem;
  60. position: relative;
  61. margin-top: 1rem;
  62. p{
  63. color: #d4ae5b;
  64. font-size: 1.8rem;
  65. font-weight: bold;
  66. padding-left: 3rem;
  67. &::after{
  68. content: '';
  69. display: block;
  70. position: absolute;
  71. width: 2.2rem;
  72. height: 2.2rem;
  73. left: 1rem;
  74. top: 50%;
  75. margin-top: -1.1rem;
  76. background-image: url('../static/img/icon_V.png');
  77. background-repeat: no-repeat;
  78. background-size: 100%;
  79. }
  80. }
  81. a{
  82. padding: 0 0.8rem;
  83. border-radius: 0.5rem;
  84. color: #fff;
  85. font-weight: bold;
  86. height: 3rem;
  87. line-height: 3rem;
  88. position: absolute;
  89. top: 50%;
  90. right: 2rem;
  91. margin-top: -1.5rem;
  92. font-size: 1.5rem;
  93. }
  94. }
  95. // end:会员尊享结束
  96. .real_name{
  97. padding-left: 1.5rem;
  98. background-color: #fff;
  99. }
  100. }
  101. // end:我的界面嵌套样式css
  102. // 菜单列表
  103. .menu-list{
  104. margin-bottom: 1rem;
  105. background-color: #fff;
  106. li{
  107. position: relative;
  108. height: 5.5rem;
  109. line-height: 5.5rem;
  110. z-index: 99;
  111. padding-left: 1.5rem;
  112. &:last-child::after{
  113. height: 0;
  114. }
  115. &::after{
  116. content: '';
  117. display: block;
  118. background-color: $efefef;
  119. position: relative;
  120. height: 0.05rem;
  121. left: 0;
  122. right: 0;
  123. }
  124. img{
  125. width: 2.2rem;
  126. height: 2.2rem;
  127. position: absolute;
  128. top: 50%;
  129. margin-top: -1.1rem;
  130. }
  131. a{
  132. position: absolute;
  133. top: 0;
  134. left: 0;
  135. right: 0;
  136. bottom: 0;
  137. background-color: rgba($color: #000000, $alpha: 0);
  138. z-index: 100;
  139. }
  140. p{
  141. padding-left: 3rem;
  142. // &::before{
  143. // content: '';
  144. // display: block;
  145. // background-color: pink;
  146. // position: absolute;
  147. // width: 2.2rem;
  148. // height: 2.2rem;
  149. // left: 0;
  150. // top: 50%;
  151. // margin-top: -1.1rem;
  152. // }
  153. &::after{
  154. content: '';
  155. display: block;
  156. position: absolute;
  157. width: 0.6rem;
  158. height: 1.2rem;
  159. right: 1.5rem;
  160. top: 50%;
  161. margin-top: -0.6px;
  162. background-image: url('../static/img/arr_back_next.png');
  163. background-repeat: no-repeat;
  164. background-size: 100%;
  165. }
  166. }
  167. }
  168. }
  169. // end:菜单列表
  170. // 身份认证
  171. .page_identity{
  172. height: auto;
  173. background-color: $bg;
  174. form{
  175. height: 100%;
  176. .info_basic{
  177. padding-left: 1.5rem;
  178. margin-bottom: 1rem;
  179. background-color: #fff;
  180. .item_form{
  181. background-color: #fff;
  182. height: 5rem;
  183. line-height: 5rem;
  184. label{
  185. float: left;
  186. display: block;
  187. }
  188. .form_input{
  189. margin-left: 5rem;
  190. input{
  191. border: 0;
  192. text-align: left;
  193. width: 100%;
  194. padding-right: 1.5rem;
  195. padding-left: 1rem;
  196. outline: none;
  197. }
  198. }
  199. }
  200. }
  201. }
  202. }
  203. // 身份证上传
  204. .img_upload{
  205. padding: 1rem 1.5rem;
  206. background-color: #fff;
  207. // padding-bottom: 1rem;
  208. .upload_box{
  209. position: relative;
  210. input{
  211. width: 100%;
  212. height: 16rem;
  213. padding: 0 2rem;
  214. opacity: 0;
  215. z-index: 100;
  216. position: relative;
  217. }
  218. &::after{
  219. content: '';
  220. display: block;
  221. position: absolute;
  222. width: 100%;
  223. height: 100%;
  224. right: 0;
  225. top: 0;
  226. bottom: 0;
  227. left: 0;
  228. margin-top: -0.6px;
  229. background-image: url('../static/img/icon_card.png');
  230. background-repeat: no-repeat;
  231. background-size: 80%;
  232. background-position: center;
  233. z-index: 10;
  234. }
  235. }
  236. .require{
  237. text-align: center;
  238. font-size: 1.6rem;
  239. span{
  240. font-size: 1rem;
  241. color: $blackafafaf;
  242. }
  243. }
  244. }
  245. .notice{
  246. font-size: 1rem;
  247. color: $blackafafaf;
  248. height: 3rem;
  249. line-height: 3rem;
  250. padding-left: 1.5rem;
  251. margin-bottom: 2rem;
  252. }
  253. // 我的会员VIP页面
  254. .page_vip{
  255. height: 16rem;
  256. position: relative;
  257. .vip_nav{
  258. width: 100%;
  259. p{
  260. width: 50%;
  261. float: left;
  262. height: 5rem;
  263. line-height: 5rem;
  264. text-align: center;
  265. font-size: 1.5rem;
  266. color: #ccc;
  267. transition: .1s;
  268. }
  269. }
  270. // 会员切换
  271. .vip_content{
  272. position: absolute;
  273. top: 10rem;
  274. width: 100%;
  275. height: auto;
  276. .slide_box{
  277. background-color: rgba($color: #000000, $alpha: 0);
  278. width: 200%;
  279. overflow: hidden;
  280. margin: 0 auto;
  281. margin-left: -100%;
  282. transform: .2s;
  283. .vip_item{
  284. float: left;
  285. width: 50%;
  286. background-color: rgba($color: #000000, $alpha: 0);
  287. padding: 0 1.5rem;
  288. padding-bottom: 40px;
  289. .vip_card{
  290. width: 100%;
  291. background-color: #765d45;
  292. border-radius: 0.8rem;
  293. padding: 1.5rem;
  294. height: 14rem;
  295. color: #fff;
  296. background-image: url('../static/img/bg_vip-card.png');
  297. background-repeat: no-repeat;
  298. background-size: cover;
  299. background-position: center;
  300. position: relative;
  301. h4{
  302. font-weight: bold;
  303. font-size: 2rem;
  304. padding-top: 1rem;
  305. }
  306. div{
  307. position: absolute;
  308. height: auto;
  309. bottom: 2rem;
  310. p{
  311. margin-bottom: 0.5rem;
  312. i{
  313. padding-right: 1rem;
  314. color: #FFD6D6;
  315. font-size: 1rem,
  316. }
  317. }
  318. }
  319. .pay_more{
  320. padding: 0 0.8rem;
  321. border-radius: 5rem;
  322. color: #A17046;
  323. background-color: #F9F0E8;
  324. font-weight: bold;
  325. height: 3rem;
  326. line-height: 3rem;
  327. position: absolute;
  328. top: 50%;
  329. right: 2rem;
  330. margin-top: -1.5rem;
  331. font-size: 1.5rem;
  332. }
  333. }
  334. .options{
  335. div{
  336. margin-top: 25px;
  337. h3{
  338. font-weight: bold;
  339. font-size: 1.8rem;
  340. height: 36px;
  341. line-height: 36px;
  342. margin-bottom: 10px;
  343. }
  344. ul{
  345. li{
  346. display: inline-block;
  347. margin-right: 15px;
  348. border-radius: 8px;
  349. padding: 0 12px;
  350. background-color: #f0ebeb;
  351. height: 36px;
  352. line-height: 36px;
  353. position: relative;
  354. i{
  355. display: inline-block;
  356. width: 20px;
  357. height: 20px;
  358. background-image: url('../static/img/icon_delete.png');
  359. background-repeat: no-repeat;
  360. background-size: 60%;
  361. margin-left: 4px;
  362. vertical-align: middle;
  363. background-position: center;
  364. }
  365. &.add{
  366. border: 1px solid $red;
  367. background-color: #fff;
  368. color: $red;
  369. }
  370. }
  371. }
  372. }
  373. // 套餐价格
  374. .opt_price{
  375. h3{
  376. margin-bottom: 0;
  377. }
  378. i{
  379. color: #afafaf;
  380. font-style: normal;
  381. font-size: 12px;
  382. display: block;
  383. margin-bottom: 20px;
  384. }
  385. .opt_buy{
  386. width: 100%;
  387. li{
  388. width: 25%;
  389. margin: 0;
  390. background-color: rgba($color: #000000, $alpha: 0);
  391. height: 11rem;
  392. float: left;
  393. padding: 0 4px;
  394. .to_buy{
  395. background-color: #fff;
  396. box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  397. border-radius: 16px;
  398. text-align: center;
  399. padding: 20px 0;
  400. width: 100%;
  401. height: 100%;
  402. margin: 0;
  403. position: relative;
  404. p{
  405. line-height: 0;
  406. margin: 10px 0;
  407. }
  408. .tag_yh{
  409. position: absolute;
  410. top: 0;
  411. left: 50%;
  412. width: 70%;
  413. height: 20px;
  414. margin-left: -35%;
  415. margin-top: -2px;
  416. line-height: 20px;
  417. color: #fff;
  418. background-color: $red;
  419. font-size: 10px;
  420. border-bottom-left-radius: 8px;
  421. border-bottom-right-radius: 8px;
  422. &::before{
  423. content: '';
  424. display: block;
  425. width: 6px;
  426. height: 6px;
  427. position: absolute;
  428. top: 0;
  429. left: 0;
  430. margin-left: -4px;
  431. margin-top: 2px;
  432. border-top: 4px solid rgba($color: #000000, $alpha: 0);
  433. border-bottom: 4px solid rgba($color: #000000, $alpha: 0);
  434. border-left: 4px solid rgba($color: #000000, $alpha: 0);
  435. border-right: 4px solid rgba($color: #cd2b25, $alpha: 1);
  436. transform: rotate(-135deg);
  437. }
  438. &::after{
  439. content: '';
  440. display: block;
  441. width: 6px;
  442. height: 6px;
  443. position: absolute;
  444. top: 0;
  445. right: 0;
  446. margin-right: -4px;
  447. margin-top: 2px;
  448. border-top: 4px solid rgba($color: #000000, $alpha: 0);
  449. border-bottom: 4px solid rgba($color: #000000, $alpha: 0);
  450. border-left: 4px solid rgba($color: #000000, $alpha: 0);
  451. border-right: 4px solid rgba($color: #cd2b25, $alpha: 1);
  452. transform: rotate(-45deg);
  453. }
  454. }
  455. .buy_month{
  456. font-weight: bold;
  457. color: #7B5839;
  458. margin-top: 16px;
  459. }
  460. .buy_price{
  461. font-weight: bold;
  462. color: $red;
  463. margin-top: 30px;
  464. font-size: 18px;
  465. span{
  466. font-size: 10px;
  467. }
  468. }
  469. del{
  470. color: #ccc;
  471. text-decoration: line-through;
  472. font-size: 14px;
  473. }
  474. a{
  475. padding: 0 0.8rem;
  476. border-radius: 10rem;
  477. color: #fff;
  478. font-weight: bold;
  479. height: 2.4rem;
  480. line-height: 2.4rem;
  481. position: absolute;
  482. width: 4rem;
  483. margin-left: -2rem;
  484. bottom: 0;
  485. left: 50%;
  486. margin-bottom: -1.2rem;
  487. font-size: 1.2rem;
  488. }
  489. }
  490. }
  491. }
  492. .all_buy{
  493. margin-top: 40px;
  494. .to_buy{
  495. background-color: #fff;
  496. box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  497. border-radius: 16px;
  498. padding: 20px 0;
  499. width: 100%;
  500. height: 80px;
  501. margin: 0;
  502. position: relative;
  503. padding-left: 1.5rem;
  504. padding-right: 1.5rem;
  505. p{
  506. line-height: 0;
  507. margin: 10px 0;
  508. display: inline-block;
  509. }
  510. .tag_yh{
  511. position: absolute;
  512. top: 0;
  513. left: 20px;
  514. width: 100px;
  515. height: 20px;
  516. margin-top: -6px;
  517. line-height: 20px;
  518. color: #fff;
  519. background-color: $red;
  520. font-size: 10px;
  521. border-top-left-radius: 10px;
  522. border-bottom-right-radius: 10px;
  523. text-align: center;
  524. }
  525. .buy_month{
  526. font-weight: bold;
  527. color: #7B5839;
  528. line-height: 40px;
  529. margin: 0;
  530. text-align: left;
  531. margin-right: 20px;
  532. }
  533. .buy_price{
  534. font-weight: bold;
  535. color: $red;
  536. line-height: 40px;
  537. margin: 0;
  538. text-align: left;
  539. font-size: 18px;
  540. span{
  541. font-size: 10px;
  542. }
  543. }
  544. del{
  545. color: #ccc;
  546. text-decoration: line-through;
  547. font-size: 14px;
  548. }
  549. a{
  550. padding: 0 0.8rem;
  551. border-radius: 10rem;
  552. color: #fff;
  553. font-weight: bold;
  554. height: 2.4rem;
  555. line-height: 2.4rem;
  556. position: absolute;
  557. width: 4rem;
  558. top: 50%;
  559. right: 20px;
  560. margin-top: -1.2rem;
  561. font-size: 1.2rem;
  562. text-align: center;
  563. }
  564. }
  565. }
  566. }
  567. }
  568. }
  569. .vip_ztb{
  570. border: 2px solid red;
  571. }
  572. .vip_gcxm{
  573. border: 2px solid green;
  574. }
  575. }
  576. }
  577. }
  578. .priv{
  579. width: 100%;
  580. margin-top: 30px;
  581. h4{
  582. font-weight: bold;
  583. position: relative;
  584. height: 40px;
  585. line-height: 40px;
  586. text-align: center;
  587. font-size: 18px;
  588. &::before{
  589. content: '';
  590. position: absolute;
  591. width: 16px;
  592. height: 4px;
  593. background-color: $red;
  594. top: 50%;
  595. margin-top: -2px;
  596. left: 50%;
  597. margin-left: -150px;
  598. border-radius: 5px;
  599. }
  600. &::after{
  601. content: '';
  602. position: absolute;
  603. width: 16px;
  604. height: 4px;
  605. background-color: $red;
  606. top: 50%;
  607. margin-top: -2px;
  608. right: 50%;
  609. margin-right: -150px;
  610. border-radius: 5px;
  611. }
  612. }
  613. ul{
  614. width: 100%;
  615. li{
  616. padding: 15px 0;
  617. position: relative;
  618. &::after{
  619. content: '';
  620. position: absolute;
  621. left: 0;
  622. right: 0;
  623. bottom: 0;
  624. height: 1px;
  625. background-color: $f0f0f0;
  626. }
  627. p{
  628. font-weight: bold;
  629. font-size: 16px;
  630. }
  631. span{
  632. color: $blackafafaf;
  633. margin-bottom: 10px;
  634. font-size: 14px;
  635. }
  636. }
  637. }
  638. }
  639. .explain{
  640. width: 100%;
  641. margin-top: 20px;
  642. font-size: 12px;
  643. padding-bottom: 40px;
  644. p{
  645. color: $blackafafaf;
  646. margin-bottom: 10px;
  647. }
  648. ul{
  649. li{
  650. color: $blackafafaf;
  651. line-height: 20px;
  652. }
  653. }
  654. }
  655. // 我的账户
  656. .page_account{
  657. height: 16rem;
  658. position: relative;
  659. // 顶部切换
  660. .account_nav{
  661. width: 100%;
  662. p{
  663. width: 50%;
  664. float: left;
  665. height: 5rem;
  666. line-height: 5rem;
  667. text-align: center;
  668. font-size: 1.5rem;
  669. color: $black7a7a7a;
  670. transition: .1s;
  671. }
  672. }
  673. // 账号内容切换
  674. .account_content{
  675. position: absolute;
  676. top: 10rem;
  677. width: 100%;
  678. height: auto;
  679. .slide_box{
  680. background-color: rgba(0, 0, 0, 0);
  681. width: 200%;
  682. overflow: hidden;
  683. margin: 0 auto;
  684. margin-left: -100%;
  685. -webkit-transform: .2s;
  686. transform: .2s;
  687. .account_item{
  688. float: left;
  689. width: 50%;
  690. background-color: rgba(0, 0, 0, 0);
  691. padding: 0 1.5rem;
  692. padding-bottom: 40px;
  693. .account_card{
  694. width: 100%;
  695. background-color: $red;
  696. border-radius: 0.8rem;
  697. padding: 0 1.5rem;
  698. // height: 14rem;
  699. color: #fff;
  700. background-image: url('../static/img/bg_vip-card.png');
  701. background-repeat: no-repeat;
  702. background-size: cover;
  703. background-position: center;
  704. position: relative;
  705. div{
  706. &:not(:last-child){
  707. border-bottom: 1px solid rgba($color: #fff, $alpha: 0.3);
  708. }
  709. padding: 2.2rem 0;
  710. position: relative;
  711. h4{
  712. font-weight: bold;
  713. font-size: 2rem;
  714. padding-bottom: 1rem;
  715. }
  716. p{
  717. i{
  718. padding-right: 1rem;
  719. color: #FFD6D6;
  720. font-size: 1rem;
  721. }
  722. }
  723. a{
  724. padding: 0 1.2rem;
  725. border-radius: 5rem;
  726. color: #A17046;
  727. background-color: #F9F0E8;
  728. font-weight: bold;
  729. height: 3rem;
  730. line-height: 3rem;
  731. position: absolute;
  732. top: 50%;
  733. right: 0;
  734. margin-top: -1.5rem;
  735. font-size: 1.5rem;
  736. // width: 6rem;
  737. // text-align: center;
  738. }
  739. }
  740. }
  741. .shiming{
  742. width: 100%;
  743. height: 32px;
  744. line-height: 32px;
  745. border-radius: 50px;
  746. background-color: #F2E0BD;
  747. color: #fff;
  748. margin-top: 10px;
  749. i{
  750. border-radius: 50%;
  751. background-color: #F84C45;
  752. width: 16px;
  753. height: 16px;
  754. color: #fff;
  755. display: inline-block;
  756. text-align: center;
  757. line-height: 16px;
  758. margin-left: 10px;
  759. }
  760. p{
  761. display: inline-block;
  762. color: #B76012;
  763. font-size: 14px;
  764. }
  765. span{
  766. float: right;
  767. margin-right: 10px;
  768. color: #765D45;
  769. font-size: 14px;
  770. }
  771. }
  772. }
  773. }
  774. }
  775. }
  776. // 公用泪飙头部
  777. .title_dy{
  778. height: 4rem;
  779. line-height: 4rem;
  780. margin-top: 2rem;
  781. position: relative;
  782. &::after {
  783. content: '';
  784. position: absolute;
  785. height: 1px;
  786. background-color: #f0f0f0;
  787. left: 0;
  788. right: 0;
  789. bottom: 0;
  790. margin-left: -1.5rem;
  791. margin-right: -1.5rem;
  792. }
  793. h3{
  794. font-weight: bold;
  795. display: inline-block;
  796. }
  797. a{
  798. float: right;
  799. color: $black202020;
  800. font-size: 1.5rem;
  801. }
  802. }
  803. // 账户详情
  804. .account_detail{
  805. .detail_list{
  806. li{
  807. height: 5rem;
  808. line-height: 5rem;
  809. position: relative;
  810. &::after{
  811. position: absolute;
  812. content: '';
  813. display: block;
  814. height: 1px;
  815. left: 0;
  816. bottom: 0;
  817. right: 0;
  818. background-color: $f0f0f0;
  819. margin-right: -1.5rem;
  820. }
  821. a{
  822. color: $black202020;
  823. // font-size: 1.8rem;
  824. span{
  825. color: $red;
  826. font-weight: bold;
  827. }
  828. i{
  829. float: right;
  830. color: $blackafafaf;
  831. position: relative;
  832. padding-right: 2rem;
  833. font-size: 1.5rem;
  834. &::after{
  835. position: absolute;
  836. content: '';
  837. display: block;
  838. width: 1.2rem;
  839. height: 1.2rem;
  840. top: 50%;
  841. right: 0;
  842. margin-top: -0.6rem;
  843. background-image: url('../static/img/to.png');
  844. background-size: 60%;
  845. background-position: center;
  846. background-repeat: no-repeat;
  847. }
  848. }
  849. }
  850. }
  851. }
  852. }
  853. // 一条交易详情
  854. .one_detail{
  855. padding: 0 1.5rem;
  856. .detail_money{
  857. text-align: center;
  858. position: relative;
  859. height: auto;
  860. padding: 3rem 0;
  861. &::after{
  862. position: absolute;
  863. content: '';
  864. display: block;
  865. height: 1px;
  866. left: 0;
  867. bottom: 0;
  868. right: 0;
  869. background-color: $f0f0f0;
  870. }
  871. p{
  872. font-size: 4rem;
  873. // margin-bottom: 1rem;
  874. }
  875. span{
  876. color: $blackafafaf;
  877. }
  878. }
  879. .detail_content{
  880. margin-top: 1rem;
  881. li{
  882. line-height: 4rem;
  883. span{
  884. color: $blackafafaf;
  885. }
  886. p{
  887. float: right;
  888. }
  889. }
  890. }
  891. }