detail.scss 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088
  1. .el-main {
  2. // width: auto !important;
  3. // background-color: #fff;
  4. .detail-nav-wrap {
  5. background-color: #f8f8f8;
  6. .detail-nav {
  7. margin: auto;
  8. width: 1210px;
  9. height: 54px;
  10. display: flex;
  11. align-items: center;
  12. .iconfont {
  13. margin: 0 8px;
  14. }
  15. span {
  16. color: #666;
  17. &:last-of-type {
  18. color: $base-color;
  19. }
  20. }
  21. .goods-name {
  22. display: inline-block;
  23. width: 150px;
  24. white-space: nowrap;
  25. overflow: hidden;
  26. text-overflow: ellipsis;
  27. }
  28. }
  29. }
  30. }
  31. .detail-main {
  32. background: #fff;
  33. padding-top: 20px;
  34. }
  35. .goods-detail {
  36. overflow: hidden;
  37. margin: 0 auto;
  38. width: 1210px;
  39. .preview-wrap {
  40. display: flex;
  41. float: left;
  42. .video-player-wrap {
  43. position: absolute;
  44. z-index: 1;
  45. .video-player {
  46. visibility: hidden;
  47. > div {
  48. width: 460px;
  49. height: 460px;
  50. display: none;
  51. }
  52. .vjs-control-bar,
  53. .vjs-big-play-button {
  54. visibility: hidden;
  55. transition: none;
  56. }
  57. .vjs-big-play-button {
  58. top: 50%;
  59. left: 50%;
  60. transform: translate(-50%, -50%);
  61. }
  62. }
  63. .media-mode {
  64. position: absolute;
  65. width: 460px;
  66. z-index: 5;
  67. bottom: 0;
  68. top: 400px;
  69. text-align: center;
  70. line-height: 25px;
  71. span {
  72. background: rgba(100, 100, 100, 0.6);
  73. color: #fff;
  74. font-size: 12px;
  75. line-height: 25px;
  76. border-radius: 10px;
  77. padding: 0 15px;
  78. display: inline-block;
  79. cursor: pointer;
  80. &:last-child {
  81. margin-left: 20px;
  82. }
  83. }
  84. }
  85. &.show {
  86. .video-player,
  87. .vjs-control-bar,
  88. .vjs-big-play-button {
  89. visibility: visible;
  90. }
  91. .video-player {
  92. > div {
  93. display: block;
  94. }
  95. }
  96. }
  97. }
  98. .magnifier-wrap {
  99. width: 460px;
  100. height: 460px;
  101. border: 1px solid #d8d8d8;
  102. box-sizing: border-box;
  103. .magnifier-box .mouse-cover {
  104. background-color: #fede4f;
  105. opacity: 0.4;
  106. }
  107. }
  108. .spec-items {
  109. margin-left: 10px;
  110. position: relative;
  111. width: 84px;
  112. height: 460px;
  113. overflow: hidden;
  114. > span {
  115. cursor: pointer;
  116. left: 0;
  117. top: 0;
  118. width: 84px;
  119. height: 42px;
  120. line-height: 42px;
  121. text-align: center;
  122. position: absolute;
  123. background: #fff;
  124. color: #838383;
  125. z-index: 1;
  126. font-size: 25px;
  127. &:first-of-type {
  128. transform: rotate(180deg);
  129. }
  130. &:last-of-type {
  131. top: calc(100% - 42px);
  132. }
  133. }
  134. ul {
  135. display: flex;
  136. flex-direction: column;
  137. width: 100%;
  138. height: 500%;
  139. position: absolute;
  140. top: 48px;
  141. li {
  142. width: 84px;
  143. height: 84px;
  144. overflow: hidden;
  145. margin-bottom: 10px;
  146. border: 1px solid #dadada;
  147. cursor: pointer;
  148. opacity: 0.5;
  149. box-sizing: border-box;
  150. &:hover,
  151. &.selected {
  152. opacity: 1;
  153. border-color: $base-color;
  154. }
  155. }
  156. }
  157. }
  158. .share-collect {
  159. padding: 10px 0 20px;
  160. cursor: pointer;
  161. text-align: right;
  162. color: #838383;
  163. display: flex;
  164. justify-content: space-between;
  165. align-items: center;
  166. a {
  167. color: #838383;
  168. }
  169. i,
  170. span {
  171. vertical-align: middle;
  172. }
  173. i {
  174. margin-right: 5px;
  175. }
  176. }
  177. }
  178. .basic-info-wrap {
  179. float: left;
  180. width: calc(100% - 589px);
  181. margin-left: 30px;
  182. h1 {
  183. font-size: 20px;
  184. font-weight: normal;
  185. color: #333;
  186. line-height: 1.5;
  187. overflow: hidden;
  188. text-overflow: ellipsis;
  189. display: -webkit-box;
  190. -webkit-line-clamp: 2;
  191. -webkit-box-orient: vertical;
  192. margin-bottom: 5px;
  193. }
  194. .desc {
  195. font-size: 12px;
  196. color: #999;
  197. margin: 5px 0 12px;
  198. }
  199. .divider {
  200. margin: 10px 0;
  201. border: 0;
  202. border-top: 1px dotted #e5e5e5;
  203. }
  204. .discount-banner {
  205. background: url(~/assets/images/goods/discount_bg.png) no-repeat;
  206. height: 40px;
  207. line-height: 40px;
  208. overflow: hidden;
  209. display: flex;
  210. justify-content: space-between;
  211. align-items: center;
  212. .activity-name {
  213. color: #fff;
  214. font-size: 14px;
  215. height: 40px;
  216. i {
  217. display: inline-block;
  218. line-height: 40px;
  219. }
  220. span {
  221. display: inline-block;
  222. line-height: 40px;
  223. vertical-align: top;
  224. }
  225. }
  226. .discount-icon {
  227. margin: 0 8px 0 10px;
  228. color: #fff;
  229. font-size: 20px;
  230. }
  231. .surplus-time {
  232. color: #fff;
  233. font-size: 14px;
  234. float: right;
  235. height: 35px;
  236. line-height: 35px;
  237. padding-right: 5px;
  238. text-align: right;
  239. > span {
  240. margin-right: 5px;
  241. }
  242. i {
  243. font-style: normal;
  244. padding: 2px;
  245. width: 20px;
  246. height: 20px;
  247. margin: 0 5px;
  248. border-radius: 3px;
  249. }
  250. .count-down {
  251. display: inline-block;
  252. }
  253. }
  254. }
  255. .item-block {
  256. background-color: #f8f8f8;
  257. padding: 15px 0;
  258. position: relative;
  259. background-size: cover;
  260. min-height: 62px;
  261. margin-bottom: 20px;
  262. .statistical {
  263. position: absolute;
  264. right: 20px;
  265. top: 16px;
  266. li {
  267. display: inline-block;
  268. text-align: center;
  269. position: relative;
  270. font-size: 14px;
  271. overflow: hidden;
  272. text-overflow: ellipsis;
  273. &:first-child {
  274. margin-right: 40px;
  275. }
  276. p {
  277. color: #838383;
  278. }
  279. span {
  280. color: #383838;
  281. font-size: 16px;
  282. }
  283. }
  284. }
  285. }
  286. .item-line {
  287. font-size: 14px;
  288. min-height: 35px;
  289. line-height: 35px;
  290. display: flex;
  291. padding-left: 20px;
  292. margin-bottom: 10px;
  293. dt {
  294. display: inline-block;
  295. width: 50px;
  296. height: 35px;
  297. line-height: 35px;
  298. text-align: justify;
  299. font-size: 12px;
  300. margin-right: 16px;
  301. color: #222;
  302. flex-shrink: 0;
  303. &::after {
  304. display: inline-block;
  305. width: 100%;
  306. content: '';
  307. height: 0;
  308. }
  309. }
  310. > * {
  311. height: inherit;
  312. line-height: inherit;
  313. font-size: 14px;
  314. }
  315. > dd {
  316. // display: flex;
  317. // align-items: center;
  318. height: 35px;
  319. }
  320. &:last-of-type {
  321. margin-bottom: 0;
  322. }
  323. &:first-of-type > dd {
  324. align-items: baseline;
  325. }
  326. .yuan {
  327. font-size: 18px;
  328. }
  329. .price {
  330. font-size: 30px;
  331. font-weight: bold;
  332. }
  333. .market-yuan {
  334. font-size: 14px;
  335. text-decoration: line-through;
  336. }
  337. .member_price {
  338. font-size: 14px;
  339. margin-left: 5px;
  340. }
  341. .market-price {
  342. font-size: 14px;
  343. margin-left: 5px;
  344. text-decoration: line-through;
  345. }
  346. &.promotion-price .label {
  347. line-height: initial;
  348. font-size: 18px;
  349. background: transparent;
  350. padding: 0;
  351. vertical-align: text-bottom;
  352. }
  353. &.coupon-list {
  354. align-items: baseline;
  355. > div {
  356. display: -webkit-box;
  357. -webkit-box-orient: vertical;
  358. -webkit-line-clamp: 2;
  359. overflow: hidden;
  360. dd {
  361. margin-right: 20px;
  362. }
  363. }
  364. p {
  365. display: inline-block;
  366. position: relative;
  367. line-height: 18px;
  368. }
  369. span {
  370. display: inline-block;
  371. padding: 0 10px;
  372. font-size: 12px;
  373. margin-right: 10px;
  374. cursor: pointer;
  375. border: 1px solid $base-color;
  376. height: 32px;
  377. line-height: 32px;
  378. color: $base-color;
  379. font-size: 14px;
  380. box-sizing: border-box;
  381. }
  382. label {
  383. line-height: 16px;
  384. position: absolute;
  385. left: 10px;
  386. top: 1px;
  387. }
  388. }
  389. &.manjian {
  390. dd{
  391. height: inherit;
  392. }
  393. }
  394. &.mansong{
  395. dd{
  396. height: inherit;
  397. }
  398. }
  399. &.delivery {
  400. position: relative;
  401. i {
  402. margin-left: 5px;
  403. }
  404. dd {
  405. align-items: center;
  406. }
  407. .region-selected {
  408. position: relative;
  409. display: inline-block;
  410. vertical-align: middle;
  411. cursor: pointer;
  412. margin: 0 5px 0 0;
  413. width: auto;
  414. padding: 0 10px;
  415. height: 32px;
  416. line-height: 32px;
  417. border: 1px solid #e5e5e5;
  418. z-index: 2;
  419. font-size: 14px;
  420. }
  421. .region-list {
  422. width: 466px;
  423. position: absolute;
  424. z-index: 10;
  425. top: 35px;
  426. left: 82px;
  427. background: #fff;
  428. border: 1px solid #e5e5e5;
  429. padding: 15px;
  430. line-height: 18px;
  431. height: auto;
  432. display: none;
  433. font-size: 14px;
  434. &.hide {
  435. display: none !important;
  436. }
  437. .nav-tabs {
  438. border-bottom: 2px solid $base-color;
  439. height: 30px;
  440. > li {
  441. margin-bottom: -2px;
  442. float: left;
  443. > div {
  444. padding: 4px 8px;
  445. border: 2px solid transparent;
  446. height: 20px;
  447. display: inline-block;
  448. line-height: 20px;
  449. transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
  450. cursor: pointer;
  451. &:hover {
  452. border-color: transparent;
  453. }
  454. }
  455. &.active {
  456. > div {
  457. color: $base-color;
  458. border: 2px solid;
  459. border-bottom-color: #fff !important;
  460. }
  461. }
  462. }
  463. }
  464. .tab-content {
  465. > .active {
  466. padding: 10px 0;
  467. }
  468. > .tab-pane {
  469. display: none;
  470. &.active {
  471. display: block;
  472. }
  473. li {
  474. float: left;
  475. width: 25%;
  476. line-height: 30px;
  477. &.selected {
  478. color: $base-color;
  479. }
  480. span {
  481. cursor: pointer;
  482. &:hover {
  483. color: $base-color;
  484. }
  485. }
  486. }
  487. }
  488. }
  489. }
  490. dd:hover {
  491. .region-list {
  492. display: block;
  493. }
  494. }
  495. }
  496. &.service a {
  497. margin: 0 5px;
  498. }
  499. &.buy-btn {
  500. margin: 25px 0 0;
  501. dt {
  502. margin: 0;
  503. padding: 0;
  504. width: 0;
  505. height: 0;
  506. }
  507. dd {
  508. height: auto;
  509. }
  510. button {
  511. min-width: 168px;
  512. height: 52px;
  513. margin-right: 10px;
  514. font-size: 20px;
  515. text-shadow: 0 0 0;
  516. border-radius: 0;
  517. &[disabled] {
  518. cursor: not-allowed;
  519. pointer-events: initial;
  520. border: 1px solid;
  521. opacity: 1;
  522. }
  523. i {
  524. margin-right: 5px;
  525. font-size: 20px;
  526. }
  527. }
  528. }
  529. .i-activity-flag {
  530. height: 32px;
  531. line-height: 32px;
  532. padding: 0 8px;
  533. border: 1px solid;
  534. font-size: 14px;
  535. margin-right: 5px;
  536. white-space: nowrap;
  537. }
  538. &.gift-point strong {
  539. font-size: 14px;
  540. }
  541. &.merchant-service {
  542. overflow: hidden;
  543. margin: 10px 0;
  544. align-items: flex-start;
  545. > div {
  546. display: inline-block;
  547. }
  548. dd {
  549. display: inline-block;
  550. margin-right: 18px;
  551. // margin: 0;
  552. &:last-child {
  553. padding-right: 0;
  554. }
  555. i {
  556. color: $base-color;
  557. font-size: $ns-font-size-base;
  558. margin-right: 5px;
  559. }
  560. span {
  561. cursor: pointer;
  562. }
  563. }
  564. }
  565. }
  566. .manjian-box {
  567. position: relative;
  568. .manjian-hide {
  569. position: relative;
  570. .manjian-open {
  571. position: absolute;
  572. right: 0px;
  573. color: #838383;
  574. }
  575. }
  576. .manjian-show {
  577. //background: url(~/assets/images/goods/goods_detail_bg.png) repeat-x;
  578. background: #eee;
  579. display: none;
  580. position: absolute;
  581. top: 0px;
  582. }
  583. }
  584. .manjian-box .manjian-hide:hover + .manjian-show {
  585. display: flex;
  586. pointer-events: none;
  587. z-index: 9999;
  588. width: 100%;
  589. }
  590. .sku-list {
  591. dd {
  592. height: inherit;
  593. }
  594. ul {
  595. overflow: hidden;
  596. padding: 1px;
  597. li {
  598. float: left;
  599. position: relative;
  600. margin: 2px 10px 10px 0;
  601. line-height: 14px;
  602. vertical-align: middle;
  603. div {
  604. padding: 0 15px;
  605. display: flex;
  606. align-items: center;
  607. justify-content: center;
  608. height: 32px;
  609. border: 1px solid #b7b7b7;
  610. -webkit-transition: none;
  611. transition: none;
  612. position: relative;
  613. cursor: pointer;
  614. &.selected,
  615. &:hover {
  616. border: 1px solid;
  617. color: $base-color;
  618. }
  619. &:hover {
  620. color: $base-color;
  621. }
  622. &.disabled,
  623. &.disabled:hover {
  624. border: 1px solid #b7b7b7;
  625. margin: 0;
  626. cursor: not-allowed;
  627. color: #aaa;
  628. }
  629. img {
  630. margin-right: 10px;
  631. width: 25px;
  632. height: 25px;
  633. display: inline-block;
  634. vertical-align: middle;
  635. }
  636. i {
  637. position: absolute;
  638. right: -10px;
  639. bottom: 0px;
  640. display: none;
  641. font-size: 32px;
  642. }
  643. &:not(.disabled).selected i,
  644. &:not(.disabled):hover i {
  645. display: block;
  646. }
  647. }
  648. }
  649. }
  650. }
  651. .buy-number {
  652. margin: 10px 0;
  653. .num-wrap {
  654. display: inline-block;
  655. vertical-align: middle;
  656. position: relative;
  657. margin-right: 10px;
  658. input {
  659. width: 126px;
  660. padding-left: 40px;
  661. padding-right: 40px;
  662. font-size: 12px;
  663. height: 32px;
  664. line-height: 32px;
  665. border-radius: 0;
  666. border-color: #d5d5d5;
  667. text-align: center;
  668. &.disabled {
  669. cursor: not-allowed;
  670. }
  671. }
  672. span {
  673. position: absolute;
  674. top: 2px;
  675. left: 0;
  676. width: 32px;
  677. height: 32px;
  678. overflow: hidden;
  679. cursor: pointer;
  680. display: block;
  681. line-height: 32px;
  682. text-align: center;
  683. user-select: none;
  684. z-index: 1;
  685. &.decrease {
  686. border-right: 1px solid #d5d5d5;
  687. }
  688. &.increase {
  689. left: 94px;
  690. border-left: 1px solid #d5d5d5;
  691. }
  692. &.disabled {
  693. cursor: not-allowed;
  694. }
  695. }
  696. }
  697. .inventory {
  698. margin-left: 10px;
  699. }
  700. }
  701. .go-phone {
  702. position: relative;
  703. display: block;
  704. float: right;
  705. width: 52px;
  706. height: 52px;
  707. display: flex;
  708. align-items: center;
  709. justify-content: center;
  710. flex-direction: column;
  711. border: 1px solid #d8d8d8;
  712. box-sizing: border-box;
  713. margin-right: 10px;
  714. cursor: pointer;
  715. & > img {
  716. }
  717. & > span {
  718. margin-top: 4px;
  719. line-height: 1;
  720. font-size: 12px;
  721. color: #999;
  722. }
  723. &:hover .qrcode-wrap {
  724. display: block;
  725. }
  726. .qrcode-wrap {
  727. border: 1px solid #e5e5e5;
  728. box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  729. height: 120px;
  730. overflow: hidden;
  731. padding: 10px;
  732. position: absolute;
  733. width: 120px;
  734. left: 30px;
  735. top: -50px;
  736. display: none;
  737. background: white;
  738. z-index: 5;
  739. }
  740. &.icon-item {
  741. .iconfont {
  742. font-size: 22px;
  743. font-weight: bold;
  744. color: #5e5c5c;
  745. &.selected {
  746. color: #ff9000;
  747. }
  748. }
  749. }
  750. }
  751. }
  752. .shop-wrap {
  753. float: right;
  754. border: 1px solid #e9e9e9;
  755. padding: 0 20px;
  756. width: 234px;
  757. box-sizing: border-box;
  758. .head-wrap {
  759. text-align: center;
  760. padding: 16px 0;
  761. border-bottom: 1px solid #f1f1f1;
  762. .img-wrap {
  763. width: 64px;
  764. height: 64px;
  765. line-height: 64px;
  766. display: inline-block;
  767. img {
  768. max-width: 100%;
  769. max-height: 100%;
  770. }
  771. }
  772. .site-name {
  773. font-size: 14px;
  774. color: #383838;
  775. }
  776. .tag {
  777. margin-left: 10px;
  778. font-size: 14px;
  779. }
  780. }
  781. .info-wrap {
  782. padding: 10px 0;
  783. border-bottom: 1px solid #f1f1f1;
  784. dl {
  785. font-size: $ns-font-size-sm;
  786. dt {
  787. color: #838383;
  788. // width: 65px;
  789. line-height: 25px;
  790. font-weight: normal;
  791. float: left;
  792. }
  793. dt.site-score {
  794. padding-right: 5px;
  795. }
  796. dd {
  797. height: 25px;
  798. line-height: 25px;
  799. // margin-left: 50px;
  800. color: #838383;
  801. span {
  802. color: #383838;
  803. font-weight: 600;
  804. }
  805. .el-rate {
  806. padding-top: 2px;
  807. }
  808. }
  809. }
  810. }
  811. .operation {
  812. padding: 12px 0;
  813. .el-button {
  814. padding: 10px 16px;
  815. }
  816. }
  817. }
  818. .detail-wrap {
  819. padding: 64px 0 35px;
  820. clear: both;
  821. .goods-recommended {
  822. float: left;
  823. width: 234px;
  824. }
  825. .goods-tab {
  826. .attr-list {
  827. font-size: 14px;
  828. display: flex;
  829. flex-wrap: wrap;
  830. li {
  831. margin-bottom: 5px;
  832. padding: 0 10px;
  833. flex: 0 0 30%;
  834. width: 33%;
  835. }
  836. }
  837. .el-tabs__header {
  838. margin-bottom: 30px;
  839. }
  840. .tablist {
  841. border-radius: 0;
  842. }
  843. .el-tabs__item {
  844. position: relative;
  845. width: 168px;
  846. height: 52px;
  847. line-height: 52px;
  848. text-align: center;
  849. font-size: 18px;
  850. &.is-active {
  851. color: $base-color;
  852. &:after {
  853. content: '';
  854. position: absolute;
  855. top: -1px;
  856. left: 0;
  857. right: 0;
  858. height: 2px;
  859. background-color: $base-color;
  860. }
  861. }
  862. &:hover {
  863. color: $base-color;
  864. }
  865. }
  866. .evaluate {
  867. .empty {
  868. color: #898989;
  869. text-align: center;
  870. font-size: 14px;
  871. }
  872. nav {
  873. padding: 10px;
  874. overflow: hidden;
  875. background: #f7f7f7;
  876. li {
  877. float: left;
  878. padding: 0 20px;
  879. cursor: pointer;
  880. &:first-child {
  881. padding-left: 0;
  882. }
  883. &:hover,
  884. &.selected {
  885. color: $base-color;
  886. }
  887. }
  888. }
  889. .list {
  890. margin-top: 10px;
  891. font-size: 14px;
  892. li {
  893. padding: 15px;
  894. border-bottom: 1px solid #e5e5e5;
  895. .member-info {
  896. float: left;
  897. width: 140px;
  898. white-space: nowrap;
  899. text-overflow: ellipsis;
  900. overflow: hidden;
  901. img {
  902. width: 25px;
  903. height: 25px;
  904. border-radius: 50%;
  905. margin-right: 5px;
  906. }
  907. }
  908. .info-wrap {
  909. margin-left: 150px;
  910. margin-bottom: 10px;
  911. .content {
  912. padding: 10px 0;
  913. }
  914. .img-list {
  915. .el-image {
  916. width: 50px;
  917. margin-left: 10px;
  918. &:first-child {
  919. margin-left: 0;
  920. }
  921. }
  922. }
  923. .sku-info {
  924. color: #898989;
  925. font-size: 12px;
  926. span {
  927. margin-right: 5px;
  928. &.create-time {
  929. margin-left: 10px;
  930. }
  931. }
  932. }
  933. .evaluation-reply {
  934. margin: 10px 0;
  935. color: $base-color;
  936. }
  937. .review-evaluation {
  938. .review-time {
  939. font-size: $ns-font-size-sm;
  940. margin-left: 20px;
  941. color: #898989;
  942. }
  943. }
  944. }
  945. }
  946. }
  947. .page-wrap {
  948. margin-top: 10px;
  949. text-align: right;
  950. }
  951. }
  952. }
  953. }
  954. // 组合套餐
  955. .bundling-wrap {
  956. clear: both;
  957. margin-bottom: 20px;
  958. .el-tabs__active-bar {
  959. background-color: $base-color;
  960. }
  961. .el-tabs__item {
  962. font-size: 18px;
  963. &.is-active {
  964. color: $base-color;
  965. }
  966. &:hover {
  967. color: $base-color;
  968. }
  969. }
  970. .master {
  971. float: left;
  972. width: 150px;
  973. position: relative;
  974. .sku-img {
  975. text-align: center;
  976. width: 100px;
  977. height: 100px;
  978. margin-bottom: 10px;
  979. }
  980. .sku-name {
  981. overflow: hidden;
  982. text-overflow: ellipsis;
  983. display: -webkit-box;
  984. -webkit-line-clamp: 2;
  985. -webkit-box-orient: vertical;
  986. }
  987. .sku-price {
  988. font-weight: bold;
  989. font-size: $ns-font-size-base;
  990. }
  991. i {
  992. color: #cccccc;
  993. font-size: 24px;
  994. font-weight: bold;
  995. width: 23px;
  996. height: 23px;
  997. overflow: hidden;
  998. position: absolute;
  999. right: 0;
  1000. top: 40px;
  1001. }
  1002. }
  1003. .operation {
  1004. float: right;
  1005. position: relative;
  1006. width: 150px;
  1007. padding-left: 50px;
  1008. padding-top: 35px;
  1009. .price-wrap {
  1010. .bl-price {
  1011. font-size: 18px;
  1012. display: block;
  1013. overflow: hidden;
  1014. text-overflow: ellipsis;
  1015. }
  1016. }
  1017. i {
  1018. overflow: hidden;
  1019. position: absolute;
  1020. left: 0;
  1021. top: 30px;
  1022. text-align: center;
  1023. font-size: 34px;
  1024. font-weight: bold;
  1025. color: #cccccc;
  1026. }
  1027. }
  1028. .suits {
  1029. margin-left: 170px;
  1030. ul {
  1031. overflow: hidden;
  1032. li {
  1033. float: left;
  1034. width: 150px;
  1035. margin-left: 20px;
  1036. cursor: pointer;
  1037. &:first-child {
  1038. margin-left: 0;
  1039. }
  1040. .sku-img {
  1041. text-align: center;
  1042. width: 100px;
  1043. height: 100px;
  1044. }
  1045. .sku-name {
  1046. overflow: hidden;
  1047. text-overflow: ellipsis;
  1048. display: -webkit-box;
  1049. -webkit-line-clamp: 2;
  1050. -webkit-box-orient: vertical;
  1051. }
  1052. .sku-price {
  1053. font-weight: bold;
  1054. font-size: $ns-font-size-base;
  1055. }
  1056. }
  1057. }
  1058. }
  1059. }
  1060. }
  1061. .restrictions {
  1062. margin-left: 14px;
  1063. color: red;
  1064. }
  1065. body {
  1066. background-color: #fff !important;
  1067. }