details.wxss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. @import "template/template.wxss";
  2. page {
  3. padding-bottom: 200rpx;
  4. }
  5. .container {
  6. background: #f1f1f1;
  7. }
  8. .banner-box {
  9. height: 600rpx;
  10. width: 100%;
  11. }
  12. .banner-box .slide-image {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .banner-box swiper {
  17. height: 100%;
  18. }
  19. .goods-state-box {
  20. width: 100%;
  21. margin-bottom: 15rpx;
  22. background: #fff;
  23. }
  24. .goods-state-title-box {
  25. height: 108rpx;
  26. }
  27. .goods-state-title-box #title-position {
  28. position: fixed;
  29. top: 0;
  30. z-index: 999;
  31. }
  32. .goods-state-box .goods-state-title {
  33. background: #fb752c;
  34. width: 100%;
  35. padding: 2rpx 0;
  36. position: relative;
  37. }
  38. .goods-state-box .goods-state-title::after {
  39. content: "";
  40. display: block;
  41. clear: both;
  42. }
  43. .goods-state-box .goods-state-title .goods-state-time {
  44. float: left;
  45. }
  46. .goods-state-box .goods-state-title .goods-state-time text {
  47. float: left;
  48. text-align: center;
  49. display: block;
  50. color: #fb752c;
  51. font-size: 40rpx;
  52. line-height: 104rpx;
  53. background: #fff;
  54. padding: 0 20rpx;
  55. }
  56. .goods-state-box .goods-state-title .triangle {
  57. float: left;
  58. border-left: 60rpx solid #fff;
  59. border-top: 52rpx solid transparent;
  60. border-bottom: 52rpx solid transparent;
  61. }
  62. .goods-state-box .goods-state-title .goods-time-down {
  63. float: left;
  64. color: #fff;
  65. font-size: 50rpx;
  66. line-height: 100rpx;
  67. margin-left: 40rpx;
  68. }
  69. .goods-state-box .goods-state-title .goods-state-price {
  70. color: #fff;
  71. padding-right: 25rpx;
  72. position: absolute;
  73. top: 50%;
  74. right: 0;
  75. margin-top: -40rpx;
  76. }
  77. .goods-state-box .goods-state-title .goods-state-price .goods-state-price-text1 {
  78. font-size: 60rpx;
  79. font-weight: 600;
  80. }
  81. .goods-state-box .goods-state-title .goods-state-market {
  82. color: #fff;
  83. float: left;
  84. padding: 11rpx;
  85. margin-top: 30rpx;
  86. }
  87. .goods-state-box .goods-state-title .goods-state-market text {
  88. display: block;
  89. font-size: 28rpx;
  90. }
  91. .goods-state-box .goods-news, .statement {
  92. border-bottom: 1px solid #f1f1f1;
  93. padding: 10rpx 25rpx;
  94. height: 50rpx;
  95. }
  96. .goods-state-box .goods-info {
  97. border-bottom: 1px solid #f1f1f1;
  98. padding: 20rpx 25rpx;
  99. }
  100. .goods-info::after {
  101. content: '';
  102. display: block;
  103. clear: both;
  104. }
  105. .goods-state-box .goods-info text {
  106. font-size: 40rpx;
  107. display: block;
  108. }
  109. .goods-info text {
  110. float: left;
  111. width: 80%;
  112. }
  113. .btn::after {
  114. border: none;
  115. }
  116. .btn {
  117. width: 50rpx;
  118. height: 50rpx;
  119. /*
  120. width: 20%;
  121. height: 50rpx;
  122. */
  123. padding: 0;
  124. background: #fff;
  125. float: right;
  126. }
  127. .btn image {
  128. float: left;
  129. /*
  130. width: 100%;
  131. height: 100%;
  132. */
  133. width: 50rpx;
  134. height: 50rpx;
  135. }
  136. .goods-price {
  137. padding: 20rpx 0 0 20rpx;
  138. position: relative;
  139. clear: both;
  140. }
  141. .goods-price::after {
  142. content: '';
  143. display: block;
  144. clear: both;
  145. }
  146. .goods-price .goods-state-market {
  147. position: absolute;
  148. bottom: 6rpx;
  149. }
  150. .goods-price .goods-price-state {
  151. float: left;
  152. margin-left: 145rpx;
  153. }
  154. .goods-price .goods-time-remind {
  155. position: absolute;
  156. right: 0;
  157. width: 110rpx;
  158. margin-right: 20rpx;
  159. border-left: 2rpx solid #eee;
  160. padding: 10rpx 0 45rpx 20rpx;
  161. }
  162. .goods-price .goods-time-remind #clock {
  163. width: 50rpx;
  164. height: 50rpx;
  165. font-size: 0;
  166. margin: 0 auto;
  167. display: block;
  168. }
  169. .goods-price .goods-time-remind button::after {
  170. border: none;
  171. }
  172. .goods-price .goods-time-remind button {
  173. position: absolute;
  174. top: 0;
  175. padding: 0;
  176. line-height: 40rpx;
  177. border-radius: 0;
  178. font-size: 24rpx;
  179. color: #f29220;
  180. background: none;
  181. z-index: 99;
  182. padding-top: 60rpx;
  183. }
  184. .goods-takePartIn::after {
  185. content: '';
  186. display: block;
  187. clear: both;
  188. }
  189. .goods-takePartIn {
  190. border-bottom: 1px solid #f1f1f1;
  191. padding: 0 20rpx 20rpx 20rpx;
  192. }
  193. .goods-takePartIn text {
  194. font-size: 28rpx;
  195. color: #999;
  196. padding: 0 20rpx;
  197. float: left;
  198. }
  199. .goods-takePartIn .serial-num {
  200. float: right;
  201. }
  202. .goods-takePartIn .serial-num text {
  203. padding: 0;
  204. color: #333;
  205. }
  206. .goods-state-price-text1 {
  207. font-size: 50rpx;
  208. color: #e22;
  209. }
  210. .goods-state-box .goods-news:after {
  211. content: "";
  212. display: block;
  213. clear: both;
  214. }
  215. .goods-state-box .goods-news image {
  216. width: 50rpx;
  217. height: 50rpx;
  218. float: left;
  219. margin-right: 10rpx;
  220. }
  221. .goods-state-box .goods-news view {
  222. float: left;
  223. line-height: 50rpx;
  224. }
  225. .goods-state-box .goods-news view text {
  226. font-size: 24rpx;
  227. display: block;
  228. float: left;
  229. }
  230. .auctioneer {
  231. width: 100%;
  232. border-bottom: 1px solid #f1f1f1;
  233. position: relative;
  234. }
  235. .auctioneer navigator {
  236. box-sizing: border-box;
  237. width: 100%;
  238. padding: 20rpx 0 20rpx 20rpx;
  239. }
  240. navigator::after {
  241. content: '';
  242. display: block;
  243. clear: both;
  244. }
  245. .auctioneer .auctioneer-img {
  246. float: left;
  247. width: 100rpx;
  248. height: 100rpx;
  249. }
  250. .auctioneer .auctioneer-img image {
  251. width: 100%;
  252. height: 100%;
  253. border-radius: 50%;
  254. background: #fb752c;
  255. }
  256. .auctioneer .auctioneer-info {
  257. width: 600rpx;
  258. float: left;
  259. padding-left: 20rpx;
  260. padding-top: 30rpx;
  261. position: relative;
  262. }
  263. .auctioneer .auctioneer-name::after {
  264. content: '';
  265. display: block;
  266. clear: both;
  267. }
  268. .auctioneer .auctioneer-info .auctioneer-name text {
  269. font-size: 30rpx;
  270. }
  271. .auctioneer .auctioneer-info text {
  272. font-size: 28rpx;
  273. }
  274. .auctioneer .auctioneer-info .auctioneer-company {
  275. font-size: 24rpx;
  276. color: #999;
  277. margin-top: 10rpx;
  278. display: block;
  279. }
  280. .auctioneer .auctioneer-info .auctioneer-name text {
  281. float: left;
  282. }
  283. .auctioneer .auctioneer-info .auctioneer-name .sign {
  284. font-size: 20rpx;
  285. color: #2abf01;
  286. border: 1px solid #2abf01;
  287. background: #efffea;
  288. margin-left: 15rpx;
  289. margin-top: 4rpx;
  290. padding: 0 5rpx;
  291. }
  292. .follow {
  293. width: 50rpx;
  294. height: 50rpx;
  295. position: absolute;
  296. top: 32%;
  297. right: 20rpx;
  298. }
  299. .follow image {
  300. width: 100%;
  301. height: 100%;
  302. }
  303. .statement text {
  304. font-size: 22rpx;
  305. color: #666;
  306. text-align: center;
  307. display: block;
  308. line-height: 50rpx;
  309. }
  310. .bidrecord-box {
  311. background: #fff;
  312. width: 100%;
  313. margin-bottom: 15rpx;
  314. }
  315. .bidrecord-box navigator {
  316. padding: 20rpx;
  317. border-bottom: 1px solid #f1f1f1;
  318. }
  319. .bidrecord-box navigator::after {
  320. content: "";
  321. display: block;
  322. clear: both;
  323. }
  324. .bidrecord-box navigator image {
  325. width: 40rpx;
  326. height: 40rpx;
  327. float: left;
  328. }
  329. .bidrecord-box navigator text {
  330. font-size: 28rpx;
  331. float: left;
  332. margin-left: 10rpx;
  333. line-height: 40rpx;
  334. }
  335. .bidrecord-box navigator .arrow {
  336. float: right;
  337. }
  338. .lines-box .lines {
  339. padding: 10rpx 20rpx;
  340. }
  341. .lines-box .lines::after {
  342. content: "";
  343. display: block;
  344. clear: both;
  345. }
  346. .lines-box .lines image {
  347. width: 40rpx;
  348. height: 40rpx;
  349. float: left;
  350. margin-right: 10rpx;
  351. }
  352. .lines-box .lines text {
  353. font-size: 24rpx;
  354. float: left;
  355. line-height: 40rpx;
  356. margin-right: 20rpx;
  357. }
  358. .lines-box .textColor text {
  359. color: #fb752c;
  360. }
  361. .lines-box .lines .price {
  362. float: right;
  363. }
  364. .lines-box-tips {
  365. padding: 20rpx;
  366. }
  367. .lines-box-tips text {
  368. line-height: 200rpx;
  369. color: #999;
  370. text-align: center;
  371. display: block;
  372. }
  373. .msg-box {
  374. width: 100%;
  375. padding: 20rpx;
  376. box-sizing: border-box;
  377. background: #fff;
  378. margin-bottom: 15rpx;
  379. }
  380. .msg-box::after {
  381. content: "";
  382. display: block;
  383. clear: "";
  384. }
  385. .msg-box text {
  386. font-size: 26rpx;
  387. float: left;
  388. }
  389. .guild-box {
  390. width: 100%;
  391. background: #fff;
  392. margin-bottom: 15rpx;
  393. }
  394. .guild-box .guild-title {
  395. padding: 20rpx;
  396. border-bottom: 1px solid #f1f1f1;
  397. }
  398. .guild-box .guild-title::after {
  399. content: "";
  400. display: block;
  401. clear: both;
  402. }
  403. .guild-box .guild-title image {
  404. width: 40rpx;
  405. height: 40rpx;
  406. float: left;
  407. margin-right: 10rpx;
  408. }
  409. .guild-box .guild-title text {
  410. font-size: 26rpx;
  411. float: left;
  412. }
  413. .guild-box .guild-content {
  414. padding: 20rpx;
  415. }
  416. .guild-box .guild-content .guild-promise {
  417. width: 95%;
  418. padding: 10rpx;
  419. border-radius: 30rpx;
  420. background: #fff3ec;
  421. margin: 0 auto 10rpx;
  422. }
  423. .guild-box .guild-content .guild-promise::after {
  424. content: "";
  425. display: block;
  426. clear: both;
  427. }
  428. .guild-box .guild-content .guild-promise view {
  429. width: 25%;
  430. float: left;
  431. flex-direction: row;
  432. justify-content: center;
  433. }
  434. .guild-box .guild-content .guild-promise view::after {
  435. content: "";
  436. display: block;
  437. clear: both;
  438. }
  439. .guild-box .guild-content .guild-promise image {
  440. width: 35rpx;
  441. height: 35rpx;
  442. float: left;
  443. margin-right: 5rpx;
  444. margin-left: 15rpx;
  445. }
  446. .guild-box .guild-content .guild-promise text {
  447. font-size: 24rpx;
  448. float: left;
  449. color: #fb752c;
  450. }
  451. .guild-box .guild-content .guild-auction-info::after {
  452. content: "";
  453. display: block;
  454. clear: both;
  455. }
  456. .guild-box .guild-content .guild-auction-info .info-left-box {
  457. float: left;
  458. }
  459. .guild-box .guild-content .guild-auction-info .info-right-box {
  460. float: right;
  461. }
  462. .guild-box .guild-content .guild-auction-info .info-key {
  463. width: 100rpx;
  464. margin-right: 20rpx;
  465. }
  466. .guild-box .guild-content .guild-auction-info text {
  467. font-size: 24rpx;
  468. display: inline-block;
  469. }
  470. .guild-box .guild-content .guild-auction-info .info-left-box text {
  471. text-align: left;
  472. }
  473. .guild-box .guild-content .guild-auction-info .info-right-box text {
  474. text-align: left;
  475. }
  476. .guild-box .guild-content .guild-auction-info .info-left-box .info-val,
  477. .guild-box .guild-content .guild-auction-info .info-right-box .info-val {
  478. color: #999;
  479. }
  480. .share-box {
  481. width: 100%;
  482. }
  483. .share-box .share-tab {
  484. background: #fff;
  485. border-bottom: 1px solid #f1f1f1;
  486. }
  487. .share-box .share-tab::after {
  488. content: "";
  489. display: block;
  490. clear: both;
  491. }
  492. .share-box .share-tab view {
  493. float: left;
  494. width: 33.33333%;
  495. text-align: center;
  496. }
  497. .share-box .share-tab view text {
  498. font-size: 28rpx;
  499. padding: 20rpx 10rpx;
  500. display: inline-block;
  501. }
  502. .share-box .share-tab .textstyle text {
  503. color: #fb752c;
  504. border-bottom: 6rpx solid #fb752c;
  505. }
  506. .bidders-btn::after {
  507. content: '';
  508. display: block;
  509. clear: both;
  510. }
  511. .bidders-btn {
  512. width: 100%;
  513. background: #fb752c;
  514. z-index: 9999;
  515. position: fixed;
  516. bottom: 0;
  517. left: 0;
  518. }
  519. .bidders-btn navigator {
  520. width: 100%;
  521. height: 100%;
  522. text-align: center;
  523. }
  524. .bidders-btn navigator text {
  525. color: #fff;
  526. line-height: 100rpx;
  527. font-weight: 600;
  528. }
  529. .bidon::after {
  530. content: '';
  531. display: block;
  532. clear: both;
  533. }
  534. .bidon {
  535. width: 100%;
  536. height: 100%;
  537. background: #DCDCDC;
  538. padding: 10rpx;
  539. box-sizing: border-box;
  540. }
  541. .bid::after {
  542. content: '';
  543. display: block;
  544. clear: both;
  545. }
  546. .bid {
  547. height: 100%;
  548. float: left;
  549. box-sizing: border-box;
  550. border: 1rpx solid #fff;
  551. }
  552. .bid button:after {
  553. border: none;
  554. }
  555. .bid button {
  556. float: left;
  557. display: block;
  558. color: #fff;
  559. background: #333;
  560. border-radius: 0;
  561. width: 80rpx;
  562. height: 80rpx;
  563. line-height: 72rpx;
  564. padding: 0;
  565. border: none;
  566. }
  567. .bid input {
  568. float: left;
  569. height: 80rpx;
  570. width: 350rpx;
  571. background: #333;
  572. border-left: 1rpx solid #fff;
  573. border-right: 1rpx solid #fff;
  574. text-align: center;
  575. color: #fc4343;
  576. }
  577. .sub-price {
  578. float: right;
  579. width: 200rpx;
  580. margin-left: 10rpx;
  581. height: 100%;
  582. box-sizing: border-box;
  583. }
  584. .sub-price buttom::after {
  585. border: none;
  586. }
  587. .sub-price button {
  588. background: #e22;
  589. border-radius: 0;
  590. margin: 0;
  591. line-height: 76rpx;
  592. color: #fff;
  593. height: 84rpx;
  594. }
  595. .offer-count::after {
  596. content: '';
  597. display: block;
  598. clear: both;
  599. }
  600. .offer-count {
  601. text-align: center;
  602. color: #fff;
  603. font-size: 28rpx;
  604. background: #666;
  605. margin-bottom: 10rpx;
  606. padding: 15rpx 20rpx;
  607. }
  608. .offer-count .offer-count-left {
  609. float: left;
  610. }
  611. .offer-count .offer-count-right {
  612. float: right;
  613. }
  614. .end {
  615. text-align: center;
  616. background: #666;
  617. color: #fff;
  618. }
  619. .end text {
  620. line-height: 100rpx;
  621. }
  622. .not-auction {
  623. text-align: center;
  624. background: #fc4343;
  625. color: #fff;
  626. }
  627. .not-auction text {
  628. line-height: 100rpx;
  629. }
  630. .d-back-home {
  631. position: fixed;
  632. width: 80rpx;
  633. height: 80rpx;
  634. right: 30rpx;
  635. bottom: 166rpx;
  636. z-index: 10000;
  637. border-radius: 50%;
  638. background: #fff;
  639. }
  640. .mask {
  641. width: 100%;
  642. height: 100%;
  643. background: rgba(0, 0, 0, 0.3);
  644. position: fixed;
  645. top: 0;
  646. left: 0;
  647. text-align: center;
  648. }
  649. .mask view {
  650. margin-top: 40%;
  651. position: relative;
  652. }
  653. .mask view button {
  654. position: absolute;
  655. background: #fff;
  656. width: 280rpx;
  657. height: 80rpx;
  658. border-radius: 40rpx;
  659. font-size: 32rpx;
  660. color: #c75c21;
  661. left: 50%;
  662. margin-left: -140rpx;
  663. bottom: 40rpx;
  664. line-height: 80rpx;
  665. }
  666. .red-packet {
  667. background: rgba(0, 0, 0, 0.3);
  668. width: 100%;
  669. height: 100%;
  670. position: absolute;
  671. top: 0;
  672. left: 0;
  673. }
  674. .red-packet image {
  675. position: absolute;
  676. width: 524rpx;
  677. height: 632rpx;
  678. top: 50%;
  679. left: 50%;
  680. margin-left: -262rpx;
  681. margin-top: -316rpx;
  682. }
  683. .red-packet .close {
  684. position: absolute;
  685. left: 50%;
  686. top: 50%;
  687. margin-top: -310rpx;
  688. margin-left: 210rpx;
  689. z-index: 10;
  690. }
  691. .red-packet .btn {
  692. position: absolute;
  693. top: 50%;
  694. left: 50%;
  695. margin-top: 190rpx;
  696. margin-left: -254rpx;
  697. width: 600rpx;
  698. background: none;
  699. }
  700. .red-packet .btn::after {
  701. content: '';
  702. display: block;
  703. clear: both;
  704. }
  705. .red-packet .btn button::before {
  706. border: none;
  707. }
  708. .red-packet .btn button {
  709. width: 200rpx;
  710. height: 80rpx;
  711. float: left;
  712. margin-left: 30rpx;
  713. background: #fff;
  714. border-radius: 40rpx;
  715. font-size: 30rpx;
  716. color: #f8c323;
  717. }
  718. .red-packet text {
  719. width: 100%;
  720. position: absolute;
  721. top: 50%;
  722. margin-top: -110rpx;
  723. text-align: center;
  724. color: #e12e2e;
  725. font-weight: 600;
  726. font-size: 42rpx;
  727. }
  728. button[disabled] {
  729. color: #fff !important;
  730. background-color: #fab6b6 !important;
  731. border-color: #fab6b6 !important;
  732. }