new.scss 34 KB

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