detail.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  1. img {
  2. max-width: 718px;
  3. }
  4. div video {
  5. max-width: 690px;
  6. }
  7. .detail {
  8. padding-top: 80px;
  9. width: 100%;
  10. background: #f8f8f8;
  11. }
  12. .detail .detail-router {
  13. line-height: 50px;
  14. text-align: left;
  15. margin: 0 auto;
  16. color: #333;
  17. width: 1180px;
  18. height: 50px;
  19. background: white;
  20. }
  21. .detail .detail-router .detail-router-list {
  22. list-style: none;
  23. margin: 0;
  24. padding: 0;
  25. font-size: 14px;
  26. color: #888888;
  27. font-weight: bold;
  28. display: flex;
  29. }
  30. .detail .detail-router .detail-router-list .detail-router-item {
  31. margin: 0 10px;
  32. }
  33. .detail .detail-router .detail-router-list .detail-router-item:hover {
  34. cursor: pointer;
  35. color: #207cfb;
  36. text-decoration: underline;
  37. }
  38. .detail .goods-show {
  39. background: #cfddd6;
  40. height: 300px;
  41. padding-top: 35px;
  42. }
  43. .detail .goods-show .goods-show-info {
  44. width: 1180px;
  45. margin: 0 auto;
  46. display: flex;
  47. justify-content: space-between;
  48. }
  49. .detail .goods-show .goods-show-info .goods-show-body {
  50. display: flex;
  51. }
  52. .detail .goods-show .goods-show-info .goods-show-body .goods-show-img {
  53. perspective: 300px;
  54. }
  55. .detail .goods-show .goods-show-info .goods-show-body .goods-show-img img {
  56. transform-origin: left center;
  57. transform: rotateY(10deg) rotateX(5deg);
  58. box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  59. border-radius: 20px;
  60. }
  61. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text {
  62. padding-top: 20px;
  63. padding-left: 30px;
  64. margin-left: 50px;
  65. width: 600px;
  66. text-align: left;
  67. }
  68. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-title {
  69. line-height: 35px;
  70. font-size: 30px;
  71. font-weight: bold;
  72. color: #777;
  73. }
  74. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages {
  75. margin-top: 15px;
  76. color: #888;
  77. display: flex;
  78. justify-content: left;
  79. flex-wrap: wrap;
  80. }
  81. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages .goods-show-advantage-not-icon {
  82. width: 85px;
  83. }
  84. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages .goods-show-advantage-icon {
  85. width: 110px;
  86. }
  87. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages .goods-show-advantage-icon .goods-show-tag {
  88. padding-left: 0px;
  89. }
  90. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages .goods-show-advantage {
  91. padding: 5px;
  92. margin-bottom: 5px;
  93. margin-right: 10px;
  94. display: flex;
  95. align-items: center;
  96. border-radius: 5px;
  97. border: 1px solid #b0c0bf;
  98. background-color: #c0d0ca;
  99. user-select: none;
  100. text-align: center;
  101. }
  102. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages .goods-show-advantage img {
  103. width: 25px;
  104. height: 25px;
  105. border-radius: 50%;
  106. }
  107. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages .goods-show-advantage .goods-show-tag {
  108. width: 100%;
  109. }
  110. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages .goods-show-advantage .goods-show-name {
  111. font-size: 16px;
  112. line-height: 20px;
  113. color: #666666;
  114. font-weight: bold;
  115. }
  116. .detail .goods-show .goods-show-info .goods-show-body .goods-show-text .goods-show-advantages .goods-show-advantage .goods-show-desc {
  117. font-size: 12px;
  118. }
  119. .detail .goods-show .goods-show-info .goods-show-body .goods-show-des {
  120. margin-top: 30px;
  121. color: #aaa;
  122. height: 140px;
  123. text-indent: 2em;
  124. text-overflow: ellipsis;
  125. overflow: hidden;
  126. }
  127. .detail .goods-show .goods-show-info .goods-show-count {
  128. display: flex;
  129. width: 150px;
  130. }
  131. .detail .goods-show .goods-show-info .goods-show-count .goods-show-price-text {
  132. font-size: 12px;
  133. width: 150px;
  134. line-height: 34px;
  135. text-align: center;
  136. border-radius: 15px;
  137. height: 34px;
  138. background: rgba(255, 255, 255, 0.3);
  139. }
  140. .detail .goods-show .goods-show-info .goods-show-count .goods-show-price-text span:nth-child(1) {
  141. color: #999;
  142. }
  143. .detail .goods-info {
  144. width: 1180px;
  145. display: flex;
  146. padding-bottom: 40px;
  147. justify-content: space-between;
  148. margin: 20px auto 0 auto;
  149. }
  150. .detail .goods-info .info-left {
  151. width: 760px;
  152. }
  153. .detail .goods-info .info-left .info-left-select-btns {
  154. padding: 15px;
  155. width: 730px;
  156. border: #dddddd solid;
  157. border-width: 1px 1px 0 1px;
  158. border-radius: 5px 5px 0 0;
  159. display: flex;
  160. justify-content: left;
  161. flex-wrap: wrap;
  162. background: white;
  163. }
  164. .detail .goods-info .info-left .info-left-select-btns .info-left-select-btn {
  165. margin: 0 10px 20px 0;
  166. height: 35px;
  167. line-height: 35px;
  168. text-align: center;
  169. border-radius: 15px;
  170. border: #8b8b8b 1px solid;
  171. padding: 5px 15px;
  172. color: #8b8b8b;
  173. cursor: pointer;
  174. transition: background-color 0.2s ease;
  175. user-select: none;
  176. }
  177. .detail .goods-info .info-left .info-left-select-btns .info-left-select-btn:hover {
  178. background: #888888;
  179. color: white;
  180. }
  181. .detail .goods-info .info-left .info-left-select-btns .info-left-select-btn:active {
  182. background: #dddddd;
  183. color: #888888;
  184. }
  185. .detail .goods-info .info-left .info-left-select-param {
  186. padding: 15px;
  187. border-radius: 0 0 5px 5px;
  188. border: #dddddd 1px solid;
  189. background: white;
  190. margin-bottom: 20px;
  191. width: 730px;
  192. display: flex;
  193. justify-content: space-between;
  194. flex-wrap: wrap;
  195. }
  196. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn {
  197. user-select: none;
  198. width: 300px;
  199. height: 35px;
  200. line-height: 35px;
  201. padding: 5px 15px;
  202. cursor: pointer;
  203. border: #8b8b8b 1px solid;
  204. border-radius: 15px;
  205. transition: background-color 0.2s ease;
  206. display: flex;
  207. font-size: 12px;
  208. margin-bottom: 10px;
  209. }
  210. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn .ilspb-selector {
  211. line-height: 35px;
  212. width: 20px;
  213. height: 20px;
  214. background: #888888;
  215. color: white;
  216. border-radius: 50%;
  217. margin: 7px 0;
  218. display: flex;
  219. align-items: center;
  220. justify-content: center;
  221. }
  222. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn .ilspb-selector svg {
  223. width: 15px;
  224. height: 15px;
  225. }
  226. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn span {
  227. margin-left: 10px;
  228. }
  229. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn .ilspb-tag {
  230. margin-top: -15px;
  231. margin-left: 0;
  232. padding: 0 10px;
  233. background: rgba(248, 217, 209, 1);
  234. font-size: 12px;
  235. height: 20px;
  236. line-height: 20px;
  237. border-radius: 5px;
  238. position: absolute;
  239. color: rgba(223, 30, 28);
  240. border: rgba(223, 30, 28) 1px solid;
  241. }
  242. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn:hover .ilspb-tag {
  243. background: rgba(248, 217, 209, 0.3);
  244. }
  245. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn .it {
  246. margin: -15px 0 0 180px;
  247. }
  248. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn:hover {
  249. background: #aaa;
  250. color: white;
  251. }
  252. .detail .goods-info .info-left .info-left-select-param .info-left-select-param-btn:active {
  253. background: #dddddd;
  254. color: #aaa;
  255. }
  256. .detail .goods-info .info-left .info-left-des {
  257. margin-top: 30px;
  258. border-radius: 5px;
  259. min-height: 600px;
  260. padding: 0 20px 20px 20px;
  261. border: #dddddd 1px solid;
  262. background: white;
  263. }
  264. .detail .goods-info .info-left .info-left-des .des-tags {
  265. display: flex;
  266. flex-wrap: wrap;
  267. font-size: 16px;
  268. border-bottom: #dddddd 1px solid;
  269. }
  270. .detail .goods-info .info-left .info-left-des .des-tags .des-tag {
  271. padding: 15px 5px;
  272. transition: font-size 0.2s ease;
  273. line-height: 30px;
  274. cursor: pointer;
  275. }
  276. .detail .goods-info .info-left .info-left-des .des-tags .des-select-tag {
  277. font-weight: bold;
  278. font-size: 20px;
  279. }
  280. .detail .goods-info .info-left .info-left-des .info-introduction {
  281. text-align: left;
  282. text-indent: 2em;
  283. height: auto;
  284. }
  285. .detail .goods-info .info-right {
  286. width: 380px;
  287. }
  288. .detail .goods-info .info-right .info-right-price-calc {
  289. }
  290. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count {
  291. display: flex;
  292. justify-content: space-between;
  293. padding: 20px 30px;
  294. border-radius: 5px 5px 0 0;
  295. background: white;
  296. border: solid #dddddd;
  297. border-width: 1px 1px 0 1px;
  298. }
  299. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-font {
  300. font-size: 14px;
  301. line-height: 36px;
  302. text-align: left;
  303. }
  304. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-count-button {
  305. width: 120px;
  306. border-radius: 15px;
  307. background: #f0f0f0;
  308. height: 36px;
  309. display: grid;
  310. grid-template-columns: 1fr 1fr 1fr;
  311. }
  312. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-count-button .irpc-count-button-minus,
  313. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-count-button .irpc-count-button-add {
  314. text-align: center;
  315. line-height: 36px;
  316. font-weight: bold;
  317. color: #666666;
  318. font-size: 18px;
  319. width: 40px;
  320. cursor: pointer;
  321. user-select: none;
  322. border-radius: 0 15px 15px 0;
  323. }
  324. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-count-button .irpc-count-button-minus:nth-child(1) {
  325. border-radius: 15px 0 0 15px;
  326. }
  327. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-count-button .irpc-count-button-minus:hover,
  328. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-count-button .irpc-count-button-add:hover {
  329. background: #eaeaea;
  330. }
  331. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-count-button .irpc-count-button-input {
  332. text-align: center;
  333. line-height: 36px;
  334. width: 40px;
  335. }
  336. .detail .goods-info .info-right .info-right-price-calc .info-right-purchase-count .irpc-count-button .irpc-count-button-input input {
  337. color: #666666;
  338. font-size: 14px;
  339. text-align: center;
  340. width: 40px;
  341. outline: none;
  342. background: transparent;
  343. border: transparent;
  344. }
  345. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price {
  346. border: solid #dddddd;
  347. border-width: 0 1px 1px 1px;
  348. border-radius: 0 0 5px 5px;
  349. height: 200px;
  350. width: 318px;
  351. padding: 10px 30px 10px 30px;
  352. background: white;
  353. }
  354. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .price-name {
  355. justify-content: left;
  356. text-align: left;
  357. font-size: 26px;
  358. font-weight: bold;
  359. display: inline-block;
  360. }
  361. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .price {
  362. display: flex;
  363. vertical-align: bottom;
  364. justify-content: space-between;
  365. margin: 10px 5px 0 5px;
  366. }
  367. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .price .price-number {
  368. display: flex;
  369. justify-content: right;
  370. }
  371. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .price .price-number .price-original {
  372. padding-top: 13px;
  373. display: block;
  374. position: relative;
  375. bottom: 0;
  376. width: auto;
  377. color: #8b8b8b;
  378. text-decoration: line-through;
  379. font-size: 14px;
  380. text-align: right;
  381. }
  382. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .price .price-number .price-original:before {
  383. content: "¥";
  384. }
  385. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .price .price-number .price-value {
  386. font-weight: bold;
  387. font-size: 26px;
  388. color: #ff4d4f;
  389. text-align: right;
  390. letter-spacing: -1.5px;
  391. }
  392. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .price .price-number .price-value:before {
  393. content: "¥";
  394. }
  395. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .purchase-button {
  396. border-top: 1px solid #dddddd;
  397. width: 320px;
  398. height: 45px;
  399. margin: 20px auto 0 auto;
  400. color: white;
  401. text-align: center;
  402. }
  403. .detail .goods-info .info-right .info-right-price-calc .info-right-total-purchase-price .purchase-button .purchase-button-btn {
  404. margin-top: 20px;
  405. background: #207cfb;
  406. border-radius: 5px;
  407. line-height: 45px;
  408. user-select: none;
  409. cursor: pointer;
  410. }
  411. .detail .goods-info .info-right .info-recommend {
  412. margin-top: 40px;
  413. margin-bottom: 20px;
  414. width: 380px;
  415. background: #fff;
  416. border-radius: 5px;
  417. border: 1px solid #dddddd;
  418. }
  419. .detail .goods-info .info-right .info-recommend .info-recommend-title {
  420. font-size: 24px;
  421. font-weight: bold;
  422. text-align: center;
  423. padding-bottom: 15px;
  424. margin-bottom: 15px;
  425. border-bottom: 1px solid #dddddd;
  426. }
  427. .detail .goods-info .info-right .info-recommend .info-recommend-items {
  428. width: 320px;
  429. padding: 10px 30px;
  430. min-height: 30px;
  431. justify-content: space-between;
  432. flex-wrap: wrap;
  433. display: flex;
  434. }
  435. .detail .goods-info .info-right .info-recommend .info-recommend-items .info-recommend-item {
  436. cursor: pointer;
  437. margin: 0 10px 20px 10px;
  438. max-width: 150px;
  439. }
  440. .detail .goods-info .info-right .info-recommend .info-recommend-items .info-recommend-item .recommend-item-img {
  441. width: 110px;
  442. height: 143px;
  443. margin-bottom: 12px;
  444. }
  445. .detail .goods-info .info-right .info-recommend .info-recommend-items .info-recommend-item .recommend-item-img img {
  446. border-radius: 15px;
  447. width: 110px;
  448. height: 143px;
  449. z-index: 1;
  450. }
  451. .detail .goods-info .info-right .info-recommend .info-recommend-items .info-recommend-item .recommend-item-img:after {
  452. transition: all 5.3s ease;
  453. margin: -148px 0 0 0;
  454. position: absolute;
  455. display: none;
  456. z-index: 2;
  457. content: "";
  458. width: 110px;
  459. height: 143px;
  460. background-color: rgba(255, 255, 255, 0.1);
  461. border-radius: 15px;
  462. }
  463. .detail .goods-info .info-right .info-recommend .info-recommend-items .info-recommend-item .recommend-item-img:hover:after {
  464. display: block;
  465. }
  466. .detail .goods-info .info-right .info-recommend .info-recommend-items .info-recommend-item:hover .recommend-item-img img {
  467. box-shadow: #333 0 0 8px;
  468. }
  469. .detail .goods-info .info-right .info-recommend .info-recommend-items .info-recommend-item .recommend-item-name {
  470. width: 110px;
  471. height: 38px;
  472. font-size: 12px;
  473. text-align: left;
  474. }
  475. .content * {
  476. max-width: 740px;
  477. }
  478. .content img {
  479. max-width: 680px;
  480. }
  481. /*//todo order*/
  482. .order-buy-curtain {
  483. position: fixed;
  484. top: 0;
  485. left: 0;
  486. width: 100VW;
  487. height: 100VH;
  488. background: rgba(0, 0, 0, 0.5);
  489. }
  490. .order-buy-body {
  491. position: absolute;
  492. top: calc(50% - 200px);
  493. left: calc(50% - 300px);
  494. background: white;
  495. border-radius: 15px;
  496. padding: 20px;
  497. }
  498. .order-buy-title {
  499. font-size: 24px;
  500. font-weight: bold;
  501. text-align: left;
  502. margin-bottom: 15px;
  503. }
  504. .order-buy-close {
  505. position: absolute;
  506. display: flex;
  507. justify-content: center;
  508. align-items: center;
  509. right: 10px;
  510. top: 10px;
  511. width: 25px;
  512. height: 25px;
  513. border-radius: 50%;
  514. transition: background-color 0.2s ease;
  515. color: #aaaaaa;
  516. cursor: pointer;
  517. }
  518. .order-buy-close:hover {
  519. color: #555555;
  520. background-color: rgba(0, 0, 0, 0.2);
  521. }
  522. .order-body {
  523. display: flex;
  524. justify-content: space-between;
  525. }
  526. .order-buy-pay {
  527. color: #333333;
  528. width: 380px;
  529. border-radius: 15px;
  530. border: #dddddd 1px solid;
  531. margin-right: 10px;
  532. height: auto;
  533. }
  534. .order-buy-pay-list {
  535. display: flex;
  536. justify-content: left;
  537. margin: 10px 10px 0 10px;
  538. border-bottom: solid 3px #dddddd;
  539. }
  540. .order-buy-pay-item {
  541. height: 40px;
  542. width: calc(340px / 3);
  543. background-color: #dddddd;
  544. border-radius: 5px 5px 0 0;
  545. user-select: none;
  546. cursor: pointer;
  547. margin-right: 10px;
  548. }
  549. .order-buy-pay-item:last-child {
  550. margin-right: 0;
  551. }
  552. .order-buy-pay-item:hover {
  553. background-color: #cccccc;
  554. }
  555. .order-buy-pay-item div .order-buy-pay-name {
  556. font-size: 14px;
  557. font-weight: bold;
  558. }
  559. .order-buy-pay-item div .order-buy-pay-tip {
  560. font-size: 12px;
  561. color: #ea6200;
  562. }
  563. .order-buy-pay-select {
  564. position: relative;
  565. height: 40px;
  566. background-color: transparent;
  567. border-width: 0 0 3px 0;
  568. border-style: solid;
  569. width: calc(340px / 3);
  570. transition: left 0.2s ease-in-out, border-color 0.2s ease-in-out;
  571. top: -43px;
  572. margin: 0;
  573. padding: 0;
  574. }
  575. .order-buy-pay-body {
  576. padding: 20px 0 10px;
  577. margin: -43px 10px 10px;
  578. border-radius: 0 0 10px 10px;
  579. background: #eeeeee;
  580. }
  581. .pay-body-qrcode {
  582. width: 150px;
  583. height: 150px;
  584. background-color: #dddddd;
  585. margin: 0 auto 20px;
  586. }
  587. #test-purchase {
  588. border-radius: 10px;
  589. width: 100%;
  590. height: 40px;
  591. background-color: #207cfb;
  592. display: flex;
  593. justify-content: center;
  594. align-items: center;
  595. cursor: pointer;
  596. color: white;
  597. font-weight: bold;
  598. font-size: 14px;
  599. user-select: none;
  600. }
  601. .pay-body-info {
  602. display: flex;
  603. justify-content: space-between;
  604. width: 150px;
  605. margin: 0 auto 5px;
  606. }
  607. .pay-body-info-title {
  608. font-size: 16px;
  609. font-weight: bold;
  610. }
  611. .pay-body-info-amount {
  612. font-size: 16px;
  613. color: #ff4d4f;
  614. }
  615. .pay-body-info-amount:before {
  616. content: "¥";
  617. }
  618. .pay-body-tip {
  619. text-align: center;
  620. }
  621. .pay-body-tip-line {
  622. cursor: pointer;
  623. }
  624. .pay-body-tip-line:hover {
  625. color: #aaaaaa;
  626. }
  627. .order-buy-info {
  628. border-radius: 15px;
  629. width: 335px;
  630. text-align: left;
  631. }
  632. .order-buy-info-body {
  633. margin: 10px;
  634. border-radius: 10px;
  635. }
  636. .order-buy-info-title {
  637. font-size: 18px;
  638. font-weight: bold;
  639. margin-bottom: 10px;
  640. }
  641. .order-buy-info-data {
  642. display: flex;
  643. justify-content: left;
  644. border-bottom: 1px solid #cccccc;
  645. padding-bottom: 10px;
  646. }
  647. .order-image {
  648. padding-right: 20px;
  649. }
  650. .order-image img {
  651. border-radius: 5px;
  652. width: 50px;
  653. height: 70px;
  654. }
  655. .order-name {
  656. font-size: 14px;
  657. font-weight: bold;
  658. }
  659. .order-data {
  660. margin-top: 20px;
  661. }
  662. .order-data-item {
  663. display: flex;
  664. justify-content: space-between;
  665. margin: 5px 0;
  666. }
  667. .order-data-item-name:after {
  668. content: ":";
  669. }
  670. .order-data-item-value {
  671. display: flex;
  672. vertical-align: bottom;
  673. }
  674. .value-delete-line {
  675. text-decoration: line-through;
  676. height: 16px;
  677. margin-top: 6px;
  678. font-size: 12px;
  679. color: #888888;
  680. margin-right: 5px;
  681. }
  682. .value-delete-line:before {
  683. content: "¥";
  684. }
  685. .value-now {
  686. color: #ff4d4f;
  687. font-size: 16px;
  688. font-weight: bold;
  689. }
  690. .value-now:before {
  691. content: "¥";
  692. }