project-detail.wxss 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. @import "../../../utils/wxParse/wxParse.wxss";
  2. .detail-bg {
  3. width: 100%;
  4. min-height: 100%;
  5. background-color: #f2f4f6;
  6. overflow-y: hidden;
  7. }
  8. .detail-swiper {
  9. height: 750rpx;
  10. position: relative;
  11. }
  12. .detail-info {
  13. width: 100%;
  14. background-color: #fff;
  15. margin-bottom: 30rpx;
  16. padding-bottom: 20rpx;
  17. }
  18. .detail-img {
  19. width: 100%;
  20. height: 750rpx;
  21. }
  22. .detail-width {
  23. width: 100%;
  24. margin: 0 auto;
  25. padding: 0 21rpx;
  26. box-sizing: border-box;
  27. }
  28. .detail-title {
  29. display: block;
  30. font-size: 32rpx;
  31. line-height: 48rpx;
  32. letter-spacing: 0;
  33. color: #4c4c4c;
  34. margin-top: 10rpx;
  35. margin-bottom: 10rpx;
  36. padding-right:70px;
  37. }
  38. .detail-normal {
  39. display: inline-block;
  40. font-size: 24rpx;
  41. color: #bbbbbb;
  42. }
  43. .detail-mr {
  44. margin-right: 15rpx;
  45. }
  46. .detail-price {
  47. font-size: 40rpx;
  48. color: #eab86a;
  49. }
  50. .detail-fl {
  51. float: left;
  52. }
  53. .detail-fr {
  54. float: right;
  55. }
  56. .detail-content-title {
  57. font-size: 28rpx;
  58. text-align: center;
  59. display: block;
  60. color: #999999;
  61. margin-bottom: 30rpx;
  62. }
  63. .detail-project-img {
  64. width: 100%;
  65. display: flex;
  66. flex-direction: column;
  67. }
  68. .detail-footer {
  69. position: fixed;
  70. bottom: 0;
  71. left: 0;
  72. right: 0;
  73. z-index: 1;
  74. }
  75. .detail-footer-bar {
  76. width: 100%;
  77. height: 88rpx;
  78. background-color: #FFF;
  79. line-height: 44rpx;
  80. display: -webkit-box;
  81. display: flex;
  82. text-align: center;
  83. }
  84. .detail-footer-item {
  85. display: block;
  86. flex: 0.5;
  87. height: 88rpx;
  88. color: #999;
  89. font-size: 28rpx;
  90. overflow: hidden;
  91. }
  92. .detail-footer-icon {
  93. width: 40rpx;
  94. height: 40rpx;
  95. display: block;
  96. margin: 0 auto;
  97. padding-top: 12rpx;
  98. }
  99. .detail-footer-text {
  100. font-size: 20rpx;
  101. color: #4c4c4c;
  102. position:relative;
  103. top:-8rpx;
  104. }
  105. .detail-yellow {
  106. width: 282rpx;
  107. color: #fff;
  108. line-height: 88rpx;
  109. background: -webkit-linear-gradient(left, #ffc72f, #ffa729);
  110. background: linear-gradient(to right, #ffc72f, #ffa729);
  111. }
  112. .detail-red {
  113. color: #fff;
  114. font-size: 28rpx;
  115. line-height: 88rpx;
  116. background: -webkit-linear-gradient(left, #fe5656, #e23232);
  117. background: linear-gradient(to right, #fe5656, #e23232);
  118. }
  119. .detail-black {
  120. width: 282rpx;
  121. color: #fff;
  122. line-height: 88rpx;
  123. background: -webkit-linear-gradient(left, #d8dfe5, #aab6c2);
  124. background: linear-gradient(to right, #d8dfe5, #aab6c2);
  125. }
  126. .detail-content {
  127. margin-bottom: 112rpx;
  128. }
  129. .detail-dialog {
  130. position: fixed;
  131. top: 0;
  132. width: 100%;
  133. height: 100%;
  134. background: rgba(0,0,0,0.4);
  135. z-index: 99;
  136. }
  137. .dialog-panel {
  138. position: fixed;
  139. bottom: 0;
  140. width: 100%;
  141. background: #fff;
  142. z-index: 100;
  143. }
  144. .dialog-project {
  145. position: relative;
  146. padding-top: 20rpx;
  147. }
  148. .dialog-content {
  149. padding-bottom: 20rpx;
  150. border-bottom: 1rpx solid #eee;
  151. }
  152. .dialog-info {
  153. float: left;
  154. margin-top: 80rpx;
  155. }
  156. .dialog-img {
  157. float: left;
  158. width: 220rpx;
  159. height: 220rpx;
  160. margin: 0 20rpx;
  161. }
  162. .dialog-word {
  163. font-size: 28rpx;
  164. }
  165. .dialog-red {
  166. color: #eab86a;
  167. margin-bottom: 20rpx;
  168. }
  169. .dialog-gray {
  170. color: #bbb;
  171. margin-bottom: 10rpx;
  172. }
  173. .dialog-black {
  174. color: #4c4c4c;
  175. }
  176. .dialog-btn {
  177. width: 100%;
  178. height: 88rpx;
  179. line-height: 88rpx;
  180. background: #eab86a;
  181. color: #fff;
  182. font-size: 28rpx;
  183. text-align: center;
  184. border-radius: 0rpx;
  185. }
  186. .select-count {
  187. width: 100%;
  188. margin-top: 30rpx;
  189. padding: 0 20rpx;
  190. box-sizing: border-box;
  191. margin-bottom: 30rpx;
  192. }
  193. .select-word {
  194. float: left;
  195. font-size: 24rpx;
  196. color: #4c4c4c;
  197. line-height: 66rpx;
  198. }
  199. .select-input {
  200. float: right;
  201. height: 66rpx;
  202. font-size: 0;
  203. }
  204. .select-input button {
  205. width: 60rpx;
  206. height: 66rpx;
  207. color: #999;
  208. font-size: 48rpx;
  209. text-align: center;
  210. padding: 0;
  211. display: inline-block;
  212. background: #fff;
  213. border-radius: 0;
  214. line-height: 50rpx;
  215. box-sizing: border-box;
  216. }
  217. /*.select-input button:first-child {
  218. border-top-right-radius: 0;
  219. border-bottom-right-radius: 0;
  220. }
  221. .select-input button:last-child {
  222. border-top-left-radius: 0;
  223. border-bottom-left-radius: 0;
  224. }*/
  225. .select-input button:after {
  226. border-radius: 0;
  227. }
  228. .select-input input {
  229. width: 154rpx;
  230. height: 66rpx;
  231. background-color: #f3f3f3;
  232. color: #4c4c4c;
  233. font-size: 28rpx;
  234. text-align: center;
  235. display: inline-block;
  236. border-radius: 0;
  237. }
  238. .dialog-cancel {
  239. position: absolute;
  240. right: 20rpx;
  241. top: 20rpx;
  242. width: 36rpx;
  243. height: 36rpx;
  244. }
  245. .detail-content-desc {
  246. width: 100%;
  247. padding: 0 20rpx 40rpx;
  248. box-sizing: border-box;
  249. font-size: 28rpx;
  250. color: #4c4c4c;
  251. line-height: 48rpx;
  252. text-align: justify;
  253. }
  254. .detail-parse {
  255. font-size: 28rpx;
  256. color: #4c4c4c;
  257. line-height: 48rpx;
  258. padding: 0rpx 20rpx;
  259. }
  260. .detail-green {
  261. position: absolute;
  262. left: 26rpx;
  263. top: 0;
  264. width: 124rpx;
  265. height: 172rpx;
  266. z-index: 10;
  267. background-image: url('https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/geend.png');
  268. background-size: 100% 100%;
  269. }
  270. .p-footer-icon {
  271. width: 40rpx;
  272. height: 40rpx;
  273. display: block;
  274. margin: 0 auto;
  275. padding-top: 12rpx;
  276. }
  277. .p-footer-text {
  278. font-size: 20rpx;
  279. color: #4c4c4c;
  280. position:relative;
  281. top:-8rpx;
  282. }
  283. .popup-bg {
  284. position: fixed;
  285. left: 0;
  286. top: 0;
  287. width: 100%;
  288. height: 100%;
  289. background-color: rgba(0,0,0,0.5);
  290. z-index: 99;
  291. }
  292. .popup {
  293. position: absolute;
  294. left: 50%;
  295. top: 300rpx;
  296. margin-left: -280rpx;
  297. width: 560rpx;
  298. height: 440rpx;
  299. background-color: #fff;
  300. border-radius: 10rpx;
  301. overflow: hidden;
  302. }
  303. .popup-title {
  304. text-align: center;
  305. line-height: 32rpx;
  306. font-size: 32rpx;
  307. padding-top: 30rpx;
  308. padding-bottom: 32rpx;
  309. color: #4c4c4c;
  310. font-weight: bold;
  311. }
  312. .popup-logobg {
  313. width: 110rpx;
  314. height: 110rpx;
  315. border-radius: 100%;
  316. background-color: #f7f7f7;
  317. margin: 0 auto;
  318. border:1rpx solid #cfcfcf;
  319. }
  320. .popup-image {
  321. display: block;
  322. width: 67rpx;
  323. height: 90rpx;
  324. background-image: url('https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/startlogo.png');
  325. background-size: 100% 100%;
  326. margin: 8rpx auto 0;
  327. }
  328. .popup-hint {
  329. display: block;
  330. font-size: 28rpx;
  331. color: #999999;
  332. text-align: center;
  333. line-height: 50rpx;
  334. padding-top: 20rpx;
  335. }
  336. .popup-bottom {
  337. border:0;
  338. border-radius: 0rpx;
  339. position: absolute;
  340. bottom: 0;
  341. width: 100%;
  342. height: 88rpx;
  343. line-height: 88rpx;
  344. left: 0;
  345. border-top: 1rpx solid #cccccc;
  346. text-align: center;
  347. font-size: 32rpx;
  348. color: #39a43c;
  349. }
  350. .canvas-position {
  351. position: absolute;
  352. left: 100%;
  353. top: 0;
  354. width: 0rpx;
  355. height: 0rpx;
  356. /*overflow: hidden;*/
  357. }
  358. .poster {
  359. position: fixed;
  360. top: 0;
  361. width: 100%;
  362. height: 100%;
  363. background: rgba(0,0,0,0.4);
  364. z-index: 99;
  365. }
  366. .poster-main {
  367. position: absolute;
  368. left: 0;
  369. bottom: 0;
  370. width: 100%;
  371. height: 1008rpx;
  372. background-color: #fff;
  373. }
  374. .poster-img {
  375. display: block;
  376. width: 375rpx;
  377. height: 677rpx;
  378. margin: 0 auto;
  379. border-radius: 20rpx;
  380. box-shadow: 0 10rpx 30rpx rgba(0,0,0,0.3);
  381. }
  382. .poster-close {
  383. position: absolute;
  384. width: 24rpx;
  385. height: 24rpx;
  386. top: 45rpx;
  387. right: 44rpx;
  388. background-image: url('https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/poster/close.png');
  389. background-size: 24rpx 24rpx;
  390. background-origin: content-box;
  391. background-repeat: no-repeat;
  392. padding: 30rpx;
  393. }
  394. .poster-text {
  395. text-align: center;
  396. color: #444444;
  397. font-size: 30rpx;
  398. padding-top: 40rpx;
  399. }
  400. .poster-btn {
  401. width: 336rpx;
  402. height: 96rpx;
  403. margin: 30rpx auto 0;
  404. background: linear-gradient(to right, #d4932b , #eab86a);
  405. border-radius: 96rpx;
  406. }
  407. .poster-icon {
  408. float: left;
  409. width: 40rpx;
  410. height: 40rpx;
  411. margin-left: 106rpx;
  412. margin-top: 26rpx;
  413. background-image: url('http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/poster/download.png');
  414. background-size: 100% 100%;
  415. }
  416. .poster-save {
  417. float: left;
  418. line-height: 96rpx;
  419. font-size: 32rpx;
  420. color: #fff;
  421. padding-left: 15rpx;
  422. }
  423. .seckill-top {
  424. position: relative;
  425. }
  426. .seckill-title {
  427. width: 100%;
  428. height: 66rpx;
  429. background: -webkit-linear-gradient(left, #ff5c5c, #ff7a67, #ff9a73);
  430. background: -o-linear-gradient(right, #ff5c5c, #ff7a67, #ff9a73);
  431. background: -moz-linear-gradient(right, #ff5c5c, #ff7a67, #ff9a73);
  432. background: linear-gradient(to right, #ff5c5c, #ff7a67, #ff9a73);
  433. margin: 0 auto;
  434. /* border-radius: 5rpx; */
  435. box-sizing: border-box;
  436. padding: 0 20rpx;
  437. }
  438. .seckill-img {
  439. display: block;
  440. width: 220rpx;
  441. height: 70rpx;
  442. position: absolute;
  443. left: 20rpx;
  444. top: -3rpx;
  445. }
  446. .time-text {
  447. color: #594848;
  448. font-size: 28rpx;
  449. float: right;
  450. line-height: 66rpx;
  451. height: 66rpx;
  452. padding-right: 20rpx;
  453. }
  454. .time-click {
  455. float: right;
  456. /* line-height: 58rpx; */
  457. margin-top: 13rpx;
  458. /* height: 58rpx; */
  459. font-size: 20rpx;
  460. color: #fff;
  461. }
  462. .time-item {
  463. float: right;
  464. margin-right: 5rpx
  465. }
  466. .time-kuang {
  467. background: #594848;
  468. height: 42rpx;
  469. width: 39rpx;
  470. text-align: center;
  471. line-height: 42rpx;
  472. font-size: 24rpx;
  473. }
  474. .time-kuang1 {
  475. background: #594848;
  476. height: 42rpx;
  477. width: 59rpx;
  478. text-align: center;
  479. line-height: 42rpx;
  480. margin-left: 10rpx;
  481. font-size: 24rpx;
  482. }
  483. .time-color {
  484. color: #614f4f;
  485. font-size: 24rpx;
  486. }
  487. .mokuai {
  488. width: 65rpx;
  489. height: 65rpx;
  490. background: #000;
  491. opacity: 0.5;
  492. text-align: center;
  493. color: #fff;
  494. font-size: 20rpx;
  495. line-height: 65rpx;
  496. border-radius: 50%;
  497. position: absolute;
  498. top: 650rpx;
  499. right: 20rpx;
  500. }
  501. .detail-pass {
  502. color: #4c4c4c;
  503. font-size: 24rpx;
  504. text-decoration: line-through;
  505. padding-left: 20rpx;
  506. }
  507. .detail-icon {
  508. width: 32rpx;
  509. height: 32rpx;
  510. display: inline-block;
  511. margin-right: 10rpx;
  512. }
  513. .detail-stop {
  514. height: 70rpx;
  515. width: 710rpx;
  516. background: #ffefe4;
  517. color: #ff9434;
  518. font-size: 24rpx;
  519. text-align: center;
  520. line-height: 70rpx;
  521. margin: 20rpx auto 10rpx;
  522. border-radius: 10rpx;
  523. }
  524. .detail-no {
  525. /* height: 300rpx; */
  526. width: 100%;
  527. background: #eaeef1;
  528. padding: 20rpx 20rpx 30rpx;
  529. box-sizing: border-box;
  530. margin-bottom: 20rpx;
  531. }
  532. .detail-no-img {
  533. width: 28rpx;
  534. height: 34rpx;
  535. float: left;
  536. padding-top: 10rpx;
  537. }
  538. .detail-no-img1 {
  539. width: 36rpx;
  540. height: 36rpx;
  541. float: left;
  542. padding-top: 10rpx;
  543. }
  544. .detail-no-text {
  545. font-size: 32rpx;
  546. color: #8d99af;
  547. float: right;
  548. width: 640rpx;
  549. line-height: 50rpx;
  550. }
  551. .detail-no-first {
  552. border-bottom: #d4d9dd solid 1rpx;
  553. box-sizing: border-box;
  554. padding-top: 10rpx;
  555. padding-bottom: 20rpx;
  556. margin-bottom: 30rpx;
  557. }
  558. .sharebtn{
  559. position: absolute;
  560. margin-top: -32px;
  561. right: 0;
  562. font-size: 14px;
  563. background: rgba(0,0,0,0.05);
  564. padding-left: 10px;
  565. border-radius: 45px 0 0 45px;
  566. height: 30px;
  567. line-height: 30px;
  568. color: #eab86a;
  569. }
  570. .sharebtn image{
  571. width: 20px;
  572. height: 20px;
  573. vertical-align: middle;
  574. margin-top: -2px;
  575. margin-right: 2px;
  576. }
  577. .wxParse-p image{
  578. width:100% !important;
  579. }