1
0

goods.wxss 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149
  1. @keyframes fadeIn {
  2. 0% {
  3. opacity: 0;
  4. }
  5. 100% {
  6. opacity: 1;
  7. }
  8. }
  9. .container {
  10. margin-bottom: 100rpx;
  11. }
  12. .goodsimgs {
  13. position: relative;
  14. width: 750rpx;
  15. height: 750rpx;
  16. background: #fff;
  17. top:0rpx;
  18. }
  19. /* .goodsimgs image {
  20. width: 750rpx;
  21. height: 750rpx;
  22. }
  23. .goodsimgs video{
  24. position: absolute;
  25. display: block;
  26. top:0rpx;
  27. width: 750rpx;
  28. height: 450rpx;
  29. margin-top:150rpx;
  30. } */
  31. .content-wrapper {
  32. /* position: fixed; */
  33. top: 0;
  34. right: 0;
  35. bottom: 0;
  36. left: 0;
  37. z-index: 2;
  38. /* width: 750rpx;
  39. height: 750rpx; */
  40. }
  41. .content-wrapper .overflow {
  42. /* width: 750rpx;
  43. height: 750rpx; */
  44. }
  45. .content-wrapper .scroll-wrapper {
  46. width: 750rpx;
  47. height: 750rpx;
  48. overflow: hidden;
  49. }
  50. .content-wrapper .scroll-view {
  51. white-space: nowrap;
  52. display: block;
  53. /* height: 750rpx; */
  54. overflow-x: auto;
  55. margin-top: -100rpx;
  56. /* padding-bottom: 100rpx; */
  57. -webkit-transform: translateY(100rpx);
  58. transform: translateY(100rpx);
  59. }
  60. .content-wrapper .scroll-view .items-wrapper {
  61. height: 750rpx;
  62. box-sizing: border-box;
  63. display: -webkit-box;
  64. display: -webkit-flex;
  65. display: -moz-box;
  66. display: flex;
  67. flex-flow: row nowrap;
  68. -webkit-box-orient: horizontal;
  69. flex-direction: row;
  70. -webkit-box-align: center;
  71. -webkit-align-items: center;
  72. align-items: center;
  73. position:relative;
  74. transition:all 0.3s ease;
  75. -webkit-overflow-scrolling:touch;
  76. transform: translateZ(0);
  77. }
  78. .content-wrapper .scroll-view .item {
  79. display: block;
  80. position: relative;
  81. flex-shrink: 0;
  82. transition: transform 0.2s ease;
  83. transform-origin: center;
  84. letter-spacing: 0;
  85. }
  86. .video2{ margin-top: 150rpx;
  87. position: relative;
  88. }
  89. .model-img{
  90. background-size:650rpx 321rpx;
  91. }
  92. .model-btn{
  93. position:absolute;
  94. left:0;
  95. top:0;
  96. bottom:0;
  97. right:0;
  98. margin:auto;
  99. width:100rpx;
  100. height:100rpx;
  101. border-radius:50%;
  102. background-color: rgba(0,0,0,.3);
  103. }
  104. .play-icon{
  105. margin:28rpx 42rpx;
  106. border-top:26rpx solid transparent;
  107. border-left:36rpx solid #fff;
  108. border-bottom:22rpx solid transparent;
  109. }
  110. .content-wrapper .scroll-view .item .img-wrapper .myVideo {
  111. width: 750rpx;
  112. height: calc(9 * 750rpx / 16);
  113. /* left:0; */
  114. }
  115. /* .content-wrapper .scroll-view .item:nth-child(1) {
  116. margin-left: 127rpx;
  117. } */
  118. .content-wrapper .scroll-view .item .rank-num {
  119. position: absolute;
  120. left: 650rpx;
  121. top: 680rpx;
  122. padding: 0 20rpx;
  123. line-height: 50rpx;
  124. height: 50rpx;
  125. border-radius: 8rpx;
  126. color: #ffffff;
  127. }
  128. .content-wrapper .scroll-view .item .img-wrapper {
  129. width: 750rpx;
  130. height: 750rpx;
  131. border-radius: 8rpx;
  132. overflow: hidden;
  133. }
  134. .content-wrapper .scroll-view .item .img-wrapper .img {
  135. display: block;
  136. width: 750rpx;
  137. min-height: 750rpx;
  138. }
  139. .content-wrapper .scroll-view .item .content {
  140. padding: 20rpx;
  141. background-color: rgba(255, 255, 255, 0.9);
  142. box-sizing: border-box;
  143. position: absolute;
  144. right: 20rpx;
  145. bottom: 20rpx;
  146. left: 20rpx;
  147. z-index: 2;
  148. border-radius: 8rpx;
  149. overflow: hidden;
  150. }
  151. .content-wrapper .scroll-view .item .content .title {
  152. display: block;
  153. font-size: 32rpx;
  154. line-height: 44rpx;
  155. color: #333333;
  156. white-space: nowrap;
  157. overflow: hidden;
  158. text-overflow: ellipsis;
  159. margin-bottom: 10rpx;
  160. }
  161. .content-wrapper .scroll-view .item .content .rank-wrapper {
  162. display: -webkit-box;
  163. display: -webkit-flex;
  164. display: -moz-box;
  165. display: flex;
  166. flex-flow: row nowrap;
  167. -webkit-box-orient: horizontal;
  168. flex-direction: row;
  169. -webkit-box-align: center;
  170. -webkit-align-items: center;
  171. align-items: center;
  172. margin-bottom: 12rpx;
  173. }
  174. .content-wrapper .scroll-view .item .content .rank-wrapper .stars-wrapper {
  175. display: -webkit-box;
  176. display: -webkit-flex;
  177. display: -moz-box;
  178. display: flex;
  179. flex-flow: row nowrap;
  180. -webkit-box-orient: horizontal;
  181. flex-direction: row;
  182. margin-right: 20rpx;
  183. }
  184. .content-wrapper .scroll-view .item .content .rank-wrapper .stars-wrapper .star {
  185. display: block;
  186. width: 32rpx;
  187. height: 32rpx;
  188. }
  189. .content-wrapper .scroll-view .item .content .rank-wrapper .score {
  190. font-size: 32rpx;
  191. line-height: 44rpx;
  192. color: #333333;
  193. }
  194. .content-wrapper .scroll-view .item .content .p {
  195. display: block;
  196. font-size: 28rpx;
  197. line-height: 40rpx;
  198. color: white;
  199. }
  200. /* 如果不为激活状态,那就添加图层蒙版 */
  201. .poker-face {
  202. filter: brightness(40%)
  203. }
  204. /* 添加激活状态 */
  205. .active {
  206. transform: scale(1.083333)
  207. }
  208. .imageClass{
  209. background-size:600rpx 600rpx;
  210. width: 750rpx;
  211. height: 750rpx;
  212. }
  213. .weui-cells{
  214. margin-top: 80rpx;
  215. text-align: left;
  216. }
  217. .weui-label{
  218. width: 5em;
  219. }
  220. .page-body-button {
  221. margin-bottom: 30rpx;
  222. }
  223. .service-policy {
  224. width: 750rpx;
  225. height: 73rpx;
  226. background: #f5f1f1ef;
  227. padding: 0 31.25rpx;
  228. display: flex;
  229. flex-flow: row nowrap;
  230. align-items: center;
  231. justify-content: space-between;
  232. }
  233. .service-policy .item {
  234. background: url(http://120.76.26.84:80/group1/M00/00/02/rBJEdVvr25eAGT4BAAAA2Yyhu9Q372.png) 0 center no-repeat;
  235. background-size: 10rpx;
  236. padding-left: 15rpx;
  237. display: flex;
  238. align-items: center;
  239. font-size: 25rpx;
  240. color: #666;
  241. }
  242. .goods-info {
  243. width: 750rpx;
  244. height: 210rpx;
  245. overflow: hidden;
  246. background: #fff;
  247. }
  248. .goods-info .c {
  249. display: block;
  250. width: 718.75rpx;
  251. /* height: 100%; */
  252. margin-left: 31.25rpx;
  253. padding: 38rpx 31.25rpx 38rpx 0;
  254. border-bottom: 1px solid #f4f4f4;
  255. }
  256. .goods-info .c text {
  257. display: block;
  258. /* width: 687.5rpx; */
  259. text-align: left;
  260. font-weight: bolder;
  261. }
  262. .goods-info .name {
  263. height: 41rpx;
  264. margin-bottom: 20rpx;
  265. font-size: 30rpx;
  266. line-height: 41rpx;
  267. margin-top: 10rpx;
  268. }
  269. .goods-info .desc {
  270. height: 43rpx;
  271. margin-bottom: 41rpx;
  272. font-size: 24rpx;
  273. line-height: 36rpx;
  274. color: #999;
  275. width: 200rpx;
  276. }
  277. .desc2{
  278. position:absolute;
  279. right:220rpx;
  280. top:910rpx;
  281. height: 43rpx;
  282. margin-bottom: 41rpx;
  283. font-size: 24rpx;
  284. line-height: 36rpx;
  285. color: #999;
  286. }
  287. .goods-info .goods-do {
  288. text-align:left;
  289. }
  290. .goods-info .goods-do .price {
  291. /* height: 35rpx; */
  292. font-size: 35rpx;
  293. line-height: 35rpx;
  294. color: #b4282d;
  295. display: inline;
  296. text-align: left;
  297. }
  298. .goods-info .goods-do .org-price {
  299. /* height: 25rpx; */
  300. font-size: 25rpx;
  301. line-height: 35rpx;
  302. color: #303030;
  303. display: inline;
  304. text-align: left;
  305. }
  306. .goods-info .brand {
  307. margin-top: 23rpx;
  308. min-height: 40rpx;
  309. text-align: center;
  310. }
  311. .goods-info .brand text {
  312. display: inline-block;
  313. width: auto;
  314. padding: 2px 30rpx 2px 10.5rpx;
  315. line-height: 35.5rpx;
  316. border: 1px solid #f48f18;
  317. font-size: 25rpx;
  318. color: #f48f18;
  319. border-radius: 4px;
  320. background: url(http://120.76.26.84:80/group1/M00/00/02/rBJEdVvr28mAes5qAAABHjRl7xw575.png) 95% center no-repeat;
  321. background-size: 10.75rpx 18.75rpx;
  322. }
  323. .section-nav {
  324. width: 750rpx;
  325. height: 108rpx;
  326. background: #fff;
  327. margin-bottom: 20rpx;
  328. }
  329. .section-nav .t {
  330. float: left;
  331. width: 600rpx;
  332. height: 108rpx;
  333. line-height: 108rpx;
  334. font-size: 29rpx;
  335. color: #333;
  336. margin-left: 31.25rpx;
  337. }
  338. .section-nav .i {
  339. float: right;
  340. width: 52rpx;
  341. height: 52rpx;
  342. margin-right: 16rpx;
  343. margin-top: 28rpx;
  344. }
  345. .section-act .t {
  346. float: left;
  347. display: flex;
  348. align-items: center;
  349. width: 600rpx;
  350. height: 108rpx;
  351. overflow: hidden;
  352. line-height: 108rpx;
  353. font-size: 29rpx;
  354. color: #999;
  355. margin-left: 31.25rpx;
  356. }
  357. .section-act .label {
  358. color: #999;
  359. }
  360. .section-act .tag {
  361. display: flex;
  362. align-items: center;
  363. padding: 0 10rpx;
  364. border-radius: 3px;
  365. height: 37rpx;
  366. width: auto;
  367. color: #f48f18;
  368. overflow: hidden;
  369. border: 1px solid #f48f18;
  370. font-size: 25rpx;
  371. margin: 0 10rpx;
  372. }
  373. .section-act .text {
  374. display: flex;
  375. align-items: center;
  376. height: 37rpx;
  377. width: auto;
  378. overflow: hidden;
  379. color: #f48f18;
  380. font-size: 29rpx;
  381. }
  382. .comments {
  383. width: 100%;
  384. height: auto;
  385. padding-left: 30rpx;
  386. background: #fff;
  387. margin: 20rpx 0;
  388. }
  389. .comments .h {
  390. height: 102.5rpx;
  391. line-height: 100.5rpx;
  392. width: 718.75rpx;
  393. padding-right: 16rpx;
  394. border-bottom: 1px solid #d9d9d9;
  395. }
  396. .comments .h .t {
  397. display: block;
  398. float: left;
  399. width: 50%;
  400. font-size: 38.5rpx;
  401. color: #333;
  402. }
  403. .comments .h .i {
  404. display: block;
  405. float: right;
  406. width: 164rpx;
  407. height: 100.5rpx;
  408. line-height: 100.5rpx;
  409. background: url(http://120.76.26.84:80/group1/M00/00/02/rBJEdVvr2_OAO7zoAAABG9E7g8o485.png) right center no-repeat;
  410. background-size: 52rpx;
  411. }
  412. .comments .b {
  413. height: auto;
  414. width: 720rpx;
  415. }
  416. .comments .item {
  417. height: auto;
  418. width: 720rpx;
  419. overflow: hidden;
  420. }
  421. .comments .info {
  422. height: 127rpx;
  423. width: 100%;
  424. padding: 33rpx 0 27rpx 0;
  425. }
  426. .comments .user {
  427. float: left;
  428. width: auto;
  429. height: 67rpx;
  430. line-height: 67rpx;
  431. font-size: 0;
  432. }
  433. .comments .user image {
  434. float: left;
  435. width: 67rpx;
  436. height: 67rpx;
  437. margin-right: 17rpx;
  438. border-radius: 50%;
  439. }
  440. .comments .user text {
  441. display: inline-block;
  442. width: auto;
  443. height: 66rpx;
  444. overflow: hidden;
  445. font-size: 29rpx;
  446. line-height: 66rpx;
  447. }
  448. .comments .time {
  449. display: block;
  450. float: right;
  451. width: auto;
  452. height: 67rpx;
  453. line-height: 67rpx;
  454. color: #7f7f7f;
  455. font-size: 25rpx;
  456. margin-right: 30rpx;
  457. }
  458. .comments .content {
  459. width: 720rpx;
  460. padding-right: 30rpx;
  461. line-height: 45.8rpx;
  462. font-size: 29rpx;
  463. margin-bottom: 24rpx;
  464. }
  465. .comments .imgs {
  466. width: 720rpx;
  467. height: auto;
  468. margin-bottom: 25rpx;
  469. }
  470. .comments .imgs .img {
  471. height: 150rpx;
  472. width: 150rpx;
  473. margin-right: 28rpx;
  474. }
  475. .comments .spec {
  476. width: 720rpx;
  477. padding-right: 30rpx;
  478. line-height: 30rpx;
  479. font-size: 24rpx;
  480. color: #999;
  481. margin-bottom: 30rpx;
  482. }
  483. .goods-attr {
  484. width: 750rpx;
  485. height: auto;
  486. overflow: hidden;
  487. padding: 0 31.25rpx 25rpx 31.25rpx;
  488. background: #fff;
  489. }
  490. .goods-attr .t {
  491. width: 687.5rpx;
  492. height: 104rpx;
  493. line-height: 104rpx;
  494. font-size: 38.5rpx;
  495. }
  496. .goods-attr .item {
  497. width: 687.5rpx;
  498. height: 68rpx;
  499. padding: 11rpx 20rpx;
  500. margin-bottom: 11rpx;
  501. background: #f7f7f7;
  502. font-size: 38.5rpx;
  503. }
  504. .goods-attr .left {
  505. float: left;
  506. font-size: 25rpx;
  507. width: 134rpx;
  508. height: 45rpx;
  509. line-height: 45rpx;
  510. overflow: hidden;
  511. color: #999;
  512. }
  513. .goods-attr .right {
  514. float: left;
  515. font-size: 26rpx;
  516. margin-left: 20rpx;
  517. width: 480rpx;
  518. height: 45rpx;
  519. line-height: 45rpx;
  520. overflow: hidden;
  521. color: #333;
  522. }
  523. .detail {
  524. width: 750rpx;
  525. height: auto;
  526. overflow: hidden;
  527. /* padding: 0 31.25rpx 25rpx 31.25rpx; */
  528. padding: 0 3rpx 2rpx 3rpx;
  529. background: #fff;
  530. }
  531. .detail image {
  532. width: 750rpx;
  533. display: block;
  534. }
  535. .common-problem {
  536. width: 750rpx;
  537. height: auto;
  538. overflow: hidden;
  539. }
  540. .common-problem .h {
  541. position: relative;
  542. height: 145.5rpx;
  543. width: 750rpx;
  544. padding: 56.25rpx 0;
  545. background: #fff;
  546. text-align: center;
  547. }
  548. .common-problem .h .line {
  549. display: inline-block;
  550. position: absolute;
  551. top: 72rpx;
  552. left: 0;
  553. z-index: 2;
  554. height: 1px;
  555. margin-left: 225rpx;
  556. width: 300rpx;
  557. background: #ccc;
  558. }
  559. .common-problem .h .title {
  560. display: inline-block;
  561. position: absolute;
  562. top: 56.125rpx;
  563. left: 0;
  564. z-index: 3;
  565. height: 33rpx;
  566. margin-left: 285rpx;
  567. width: 180rpx;
  568. background: #fff;
  569. }
  570. .common-problem .b {
  571. width: 750rpx;
  572. height: auto;
  573. overflow: hidden;
  574. padding: 0rpx 30rpx;
  575. background: #fff;
  576. }
  577. .common-problem .item {
  578. height: auto;
  579. overflow: hidden;
  580. padding-bottom: 25rpx;
  581. }
  582. .common-problem .question-box .spot {
  583. float: left;
  584. display: block;
  585. height: 8rpx;
  586. width: 8rpx;
  587. background: #b4282d;
  588. border-radius: 50%;
  589. margin-top: 11rpx;
  590. }
  591. .common-problem .question-box .question {
  592. float: left;
  593. line-height: 30rpx;
  594. padding-left: 8rpx;
  595. display: block;
  596. font-size: 26rpx;
  597. padding-bottom: 15rpx;
  598. color: #303030;
  599. }
  600. .common-problem .answer {
  601. line-height: 36rpx;
  602. padding-left: 16rpx;
  603. font-size: 26rpx;
  604. color: #787878;
  605. }
  606. .related-goods {
  607. width: 750rpx;
  608. height: auto;
  609. overflow: hidden;
  610. }
  611. .related-goods .h {
  612. position: relative;
  613. height: 145.5rpx;
  614. width: 750rpx;
  615. padding: 56.25rpx 0;
  616. background: #fff;
  617. text-align: center;
  618. border-bottom: 1px solid #f4f4f4;
  619. }
  620. .related-goods .h .line {
  621. display: inline-block;
  622. position: absolute;
  623. top: 72rpx;
  624. left: 0;
  625. z-index: 2;
  626. height: 1px;
  627. margin-left: 225rpx;
  628. width: 300rpx;
  629. background: #ccc;
  630. }
  631. .related-goods .h .title {
  632. display: inline-block;
  633. position: absolute;
  634. top: 56.125rpx;
  635. left: 0;
  636. z-index: 3;
  637. height: 33rpx;
  638. margin-left: 285rpx;
  639. width: 180rpx;
  640. background: #fff;
  641. }
  642. .related-goods .b {
  643. width: 750rpx;
  644. height: auto;
  645. overflow: hidden;
  646. }
  647. .related-goods .b .item {
  648. float: left;
  649. background: #fff;
  650. width: 375rpx;
  651. height: auto;
  652. overflow: hidden;
  653. text-align: center;
  654. padding: 15rpx 31.25rpx;
  655. border-right: 1px solid #f4f4f4;
  656. border-bottom: 1px solid #f4f4f4;
  657. }
  658. .related-goods .item .img {
  659. width: 311.45rpx;
  660. height: 311.45rpx;
  661. background-size:211rpx 211rpx;
  662. }
  663. .related-goods .item .name {
  664. display: block;
  665. width: 311.45rpx;
  666. margin: 11.5rpx 0 15rpx 0;
  667. text-align: center;
  668. font-size: 30rpx;
  669. color: #333;
  670. }
  671. .related-goods .item .price {
  672. width: 311.45rpx;
  673. text-align: center;
  674. font-size: 30rpx;
  675. color: #b4282d;
  676. }
  677. .related-goods .item .price .cart{
  678. margin-left: 20rpx;
  679. width: 35rpx;
  680. height: 35rpx;
  681. vertical-align: -6rpx;
  682. }
  683. .bottom-btn {
  684. position: fixed;
  685. left: 0;
  686. bottom: 0;
  687. z-index: 10;
  688. width: 750rpx;
  689. height: 100rpx;
  690. display: flex;
  691. background: #fff;
  692. }
  693. .bottom-btn .l {
  694. float: left;
  695. height: 100rpx;
  696. width: 122rpx;
  697. border: 1px solid #f4f4f4;
  698. display: flex;
  699. align-items: center;
  700. justify-content: center;
  701. }
  702. .bottom-btn .l.l-home {
  703. border-right: none;
  704. border-left: none;
  705. text-align: center;
  706. }
  707. .bottom-btn .l.l-collect {
  708. border-right: none;
  709. border-left: none;
  710. text-align: center;
  711. }
  712. .bottom-btn .l.l-cart .box {
  713. position: relative;
  714. height: 60rpx;
  715. width: 60rpx;
  716. }
  717. .bottom-btn .l.l-cart .cart-count {
  718. height: 28rpx;
  719. width: 28rpx;
  720. z-index: 10;
  721. position: absolute;
  722. top: 0;
  723. right: 0;
  724. background: #b4282d;
  725. text-align: center;
  726. font-size: 18rpx;
  727. color: #fff;
  728. line-height: 28rpx;
  729. border-radius: 50%;
  730. }
  731. .bottom-btn .l.l-cart .icon {
  732. position: absolute;
  733. top: 10rpx;
  734. left: 0;
  735. }
  736. .bottom-btn .l .icon {
  737. display: block;
  738. height: 44rpx;
  739. width: 44rpx;
  740. }
  741. .bottom-btn .c {
  742. float: left;
  743. height: 100rpx;
  744. line-height: 96rpx;
  745. flex: 1;
  746. text-align: center;
  747. color: #333;
  748. border-top: 1px solid #f4f4f4;
  749. border-bottom: 1px solid #f4f4f4;
  750. }
  751. .bottom-btn .contact {
  752. float: left;
  753. height: 100rpx;
  754. width: 122rpx;
  755. border: 1px solid #f4f4f4;
  756. display: flex;
  757. align-items: center;
  758. justify-content: center;
  759. }
  760. .bottom-btn .r {
  761. border: 1px solid #b4282d;
  762. background: #b4282d;
  763. float: left;
  764. height: 100rpx;
  765. line-height: 96rpx;
  766. flex: 1;
  767. text-align: center;
  768. color: #fff;
  769. }
  770. @import "../../lib/wxParse/wxParse.wxss";
  771. .bottom-btn .r-disable {
  772. border: 1px solid #c57477;
  773. background: #c57477;
  774. float: left;
  775. height: 100rpx;
  776. line-height: 96rpx;
  777. flex: 1;
  778. text-align: center;
  779. color: rgb(248, 206, 206);
  780. }
  781. .attr-pop {
  782. width: 100%;
  783. height: auto;
  784. padding: 31.25rpx;
  785. background: #fff;
  786. position: fixed;
  787. bottom: 100rpx;
  788. z-index: 500;
  789. }
  790. .attr-close{
  791. float: right;
  792. width: 40rpx;
  793. height: 40rpx;
  794. line-height: 40rpx;
  795. border-radius: 50%;
  796. font-size: 40rpx;
  797. text-align: center;
  798. overflow: hidden;
  799. }
  800. .attr-pop .img-info {
  801. width: 687.5rpx;
  802. height: 177rpx;
  803. overflow: hidden;
  804. margin-bottom: 41.5rpx;
  805. }
  806. .attr-pop .img {
  807. float: left;
  808. height: 177rpx;
  809. width: 177rpx;
  810. background: #f4f4f4;
  811. margin-right: 31.25rpx;
  812. }
  813. .attr-pop .info {
  814. /* float: left; */
  815. height: 177rpx;
  816. display: flex;
  817. align-items: center;
  818. }
  819. .attr-pop .p {
  820. font-size: 33rpx;
  821. color: #333;
  822. height: 33rpx;
  823. line-height: 33rpx;
  824. margin-bottom: 10rpx;
  825. }
  826. .attr-pop .a {
  827. font-size: 29rpx;
  828. color: #333;
  829. height: 40rpx;
  830. line-height: 40rpx;
  831. width: 260px;
  832. display:block;
  833. word-break: break-all;
  834. word-wrap: break-word;
  835. }
  836. .spec-con {
  837. width: 100%;
  838. height: auto;
  839. overflow: hidden;
  840. }
  841. .spec-con .name {
  842. height: 32rpx;
  843. margin-bottom: 22rpx;
  844. font-size: 29rpx;
  845. color: #333;
  846. }
  847. .spec-con .values {
  848. height: auto;
  849. margin-bottom: 31.25rpx;
  850. font-size: 0;
  851. }
  852. .spec-con .value {
  853. display: inline-block;
  854. height: 62rpx;
  855. padding: 0 35rpx;
  856. line-height: 56rpx;
  857. text-align: center;
  858. margin-right: 25rpx;
  859. margin-bottom: 16.5rpx;
  860. border: 1px solid #333;
  861. font-size: 25rpx;
  862. color: #333;
  863. }
  864. .spec-con .value.disable {
  865. border: 1px solid #ccc;
  866. color: #ccc;
  867. }
  868. .spec-con .value.selected {
  869. border: 1px solid #b4282d;
  870. color: #b4282d;
  871. }
  872. .number-item .selnum {
  873. width: 322rpx;
  874. height: 71rpx;
  875. border: 1px solid #ccc;
  876. display: flex;
  877. }
  878. .number-item .cut {
  879. width: 93.75rpx;
  880. height: 100%;
  881. text-align: center;
  882. line-height: 65rpx;
  883. }
  884. .number-item .number {
  885. flex: 1;
  886. height: 100%;
  887. text-align: center;
  888. line-height: 68.75rpx;
  889. border-left: 1px solid #ccc;
  890. border-right: 1px solid #ccc;
  891. float: left;
  892. }
  893. .number-item .add {
  894. width: 93.75rpx;
  895. height: 100%;
  896. text-align: center;
  897. line-height: 65rpx;
  898. }
  899. .number-item .addEnabel {
  900. width: 93.75rpx;
  901. height: 100%;
  902. text-align: center;
  903. line-height: 65rpx;
  904. color: #ccc;
  905. }
  906. .line-through {
  907. text-decoration: line-through;
  908. }
  909. .crash-goods {
  910. width: 750rpx;
  911. height: auto;
  912. overflow: hidden;
  913. }
  914. .crash-goods .h {
  915. position: relative;
  916. height: 145.5rpx;
  917. width: 750rpx;
  918. padding: 56.25rpx 0;
  919. background: #fff;
  920. text-align: center;
  921. border-bottom: 1px solid #f4f4f4;
  922. }
  923. .crash-goods .h .line {
  924. display: inline-block;
  925. position: absolute;
  926. top: 72rpx;
  927. left: 0;
  928. z-index: 2;
  929. height: 1px;
  930. margin-left: 225rpx;
  931. width: 300rpx;
  932. background: #ccc;
  933. }
  934. .crash-goods .h .title {
  935. display: inline-block;
  936. position: absolute;
  937. top: 56.125rpx;
  938. left: 0;
  939. z-index: 3;
  940. height: 33rpx;
  941. margin-left: 285rpx;
  942. width: 180rpx;
  943. background: #fff;
  944. }
  945. .crash-goods .b {
  946. width: 750rpx;
  947. height: auto;
  948. overflow: hidden;
  949. }
  950. .crash-goods .b .item {
  951. float: left;
  952. background: #fff;
  953. width: 375rpx;
  954. height: auto;
  955. overflow: hidden;
  956. text-align: center;
  957. padding: 15rpx 31.25rpx;
  958. border-right: 1px solid #f4f4f4;
  959. border-bottom: 1px solid #f4f4f4;
  960. }
  961. .crash-goods .item .img {
  962. width: 311.45rpx;
  963. height: 311.45rpx;
  964. }
  965. .crash-goods .item .name {
  966. display: block;
  967. width: 311.45rpx;
  968. height: 35rpx;
  969. margin: 11.5rpx 0 15rpx 0;
  970. text-align: center;
  971. overflow: hidden;
  972. font-size: 30rpx;
  973. color: #333;
  974. }
  975. .crash-goods .item .goods-do {
  976. text-align:left;
  977. }
  978. .crash-goods .item .goods-do .price {
  979. /* display: block; */
  980. /* width: 70.45rpx; */
  981. /* height: 30rpx; */
  982. text-align: left;
  983. font-size: 30rpx;
  984. color: #b4282d;
  985. display: inline;
  986. }
  987. .crash-goods .item .goods-do .org-price {
  988. /* display: block; */
  989. /* width: 70.45rpx; */
  990. /* height: 23rpx; */
  991. text-align: left;
  992. font-size: 30rpx;
  993. color: #303030;
  994. display: inline;
  995. }
  996. .crash-goods .item .goods-do .add {
  997. /* width: 93.75rpx; */
  998. /* height: 100%; */
  999. text-align: right;
  1000. line-height: 65rpx;
  1001. display: inline;
  1002. }
  1003. .shelves-view {
  1004. position: fixed;
  1005. left: 0;
  1006. bottom: 100rpx;
  1007. z-index: 10;
  1008. width: 100%;
  1009. height: 60rpx;
  1010. display: flex;
  1011. background: #fff;
  1012. }
  1013. .shelves-view .shelves {
  1014. border: 1px solid #7c7b7b;
  1015. background: #7c7b7b;
  1016. float: left;
  1017. height: 60rpx;
  1018. line-height: 60rpx;
  1019. flex: 1;
  1020. text-align: center;
  1021. color: #fff;
  1022. width: 100%;
  1023. }
  1024. .shelves-view .shelves .shelves-text {
  1025. font-size: 28rpx;
  1026. flex: 1;
  1027. text-align: center;
  1028. color: #fff;
  1029. }
  1030. .detail .t {
  1031. width: 687.5rpx;
  1032. height: 104rpx;
  1033. line-height: 104rpx;
  1034. font-size: 38.5rpx;
  1035. margin-left:20rpx;
  1036. }