cartIndex.scss 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892
  1. .sld_cart_index {
  2. width: 100%;
  3. height: 100%;
  4. .cart_content {
  5. width: 1200px;
  6. margin: 23px auto;
  7. .cart_title {
  8. width: 1200px;
  9. height: 38px;
  10. background: #f3f3f3;
  11. padding: 0 75px 0 20px;
  12. border-radius: 2px;
  13. overflow: hidden;
  14. box-sizing: border-box;
  15. .cart_title_pre {
  16. &:nth-child(2) {
  17. margin: 0 161px 0 161px;
  18. }
  19. &:nth-child(3) {
  20. width: 243px;
  21. text-align: center;
  22. }
  23. &:nth-child(4) {
  24. margin: 0 40px 0 38px;
  25. }
  26. &:nth-child(5) {
  27. width: 286px;
  28. text-align: center;
  29. }
  30. img {
  31. width: 14px;
  32. height: 14px;
  33. margin-right: 20px;
  34. cursor: pointer;
  35. }
  36. span {
  37. font-size: 14px;
  38. //font-family: Microsoft YaHei;
  39. font-weight: bold;
  40. color: #333333;
  41. text {
  42. position: absolute;
  43. }
  44. }
  45. }
  46. }
  47. .cart_lists {
  48. margin-bottom: 20px;
  49. .cart_lists_pre {
  50. padding-top: 21px;
  51. .store_info {
  52. margin-bottom: 6px;
  53. padding-left: 21px;
  54. width: 1200px;
  55. box-sizing: border-box;
  56. .store_sel {
  57. width: 14px;
  58. height: 14px;
  59. margin-right: 20px;
  60. cursor: pointer;
  61. }
  62. .store_des {
  63. span {
  64. font-size: 14px;
  65. //font-family: Microsoft YaHei;
  66. font-weight: bold;
  67. color: #434343;
  68. }
  69. img {
  70. width: 6px;
  71. height: 10px;
  72. margin-left: 10px;
  73. }
  74. }
  75. .store_kefu {
  76. margin-left: 10px;
  77. cursor: pointer;
  78. }
  79. .store_coupons {
  80. position: relative;
  81. width: 70px;
  82. height: 24px;
  83. margin-left: 20px;
  84. cursor: pointer;
  85. .store_coupons_bg {
  86. width: 70px;
  87. height: 24px;
  88. }
  89. .store_coupons_close {
  90. width: 100%;
  91. margin-top: 10px;
  92. padding-right: 2px;
  93. img {
  94. position: relative;
  95. top: 4px;
  96. width: 12px;
  97. height: 11px;
  98. cursor: pointer;
  99. }
  100. }
  101. &:before,
  102. &:after {
  103. display: block;
  104. content: '';
  105. position: absolute;
  106. right: 7px;
  107. width: 0;
  108. height: 0;
  109. border: 4px solid transparent;
  110. border-radius: 2px;
  111. }
  112. &:before {
  113. top: 11px;
  114. border-top: 4px solid #F04E46;
  115. }
  116. &:after {
  117. top: 9px;
  118. border-top: 4px solid #f7f7f7;
  119. }
  120. &.active {
  121. &:before {
  122. bottom: 10px;
  123. top: unset;
  124. transform: rotate(180deg);
  125. }
  126. &:after {
  127. bottom: 8px;
  128. top: unset;
  129. transform: rotate(180deg);
  130. }
  131. // .store_coupons_list {
  132. // display: block;
  133. // }
  134. }
  135. .store_coupons_list {
  136. // display: none;
  137. position: absolute;
  138. top: 38px;
  139. left: -29px;
  140. z-index: 99;
  141. width: 320px;
  142. // height: 230px;
  143. padding: 0 10px;
  144. background: #FFFFFF;
  145. border: 1px solid #EB0C00;
  146. cursor: default;
  147. &:before {
  148. content: '';
  149. display: block;
  150. position: absolute;
  151. width: 0;
  152. height: 0;
  153. top: -13px;
  154. left: 53px;
  155. border: 6px solid transparent;
  156. border-bottom: 6px solid #EB0C00;
  157. }
  158. &:after {
  159. content: '';
  160. display: block;
  161. position: absolute;
  162. width: 0;
  163. height: 0;
  164. top: -12px;
  165. left: 53px;
  166. border: 6px solid transparent;
  167. border-bottom: 6px solid #fff;
  168. }
  169. // &:hover {
  170. // display: block;
  171. // }
  172. }
  173. }
  174. .get_coupons_btn {
  175. margin-left: 20px;
  176. width: 100px;
  177. height: 20px;
  178. border: 1px solid $colorMain;
  179. span {
  180. font-size: 12px;
  181. //font-family: Microsoft YaHei;
  182. font-weight: 400;
  183. color: $colorMain;
  184. }
  185. img {
  186. width: 5px;
  187. height: 9px;
  188. margin-left: 10px;
  189. }
  190. }
  191. }
  192. .goods_con {
  193. width: 1200px;
  194. background: #ffffff;
  195. // border: 1px solid #dfdfdf;
  196. margin-bottom: 10px;
  197. border-radius: 10px;
  198. overflow: hidden;
  199. &:nth-last-of-type(1) {
  200. margin-bottom: 0;
  201. }
  202. .full_reduc_activity {
  203. width: 1200px;
  204. height: 40px;
  205. background-color: #f6f6f6;
  206. border-bottom: 1px solid #DEDEDE;;
  207. // background: #fff3f3;
  208. padding-left: 20px;
  209. .full_reduc_title {
  210. width: 46px;
  211. height: 24px;
  212. background: $colorMain;
  213. border-radius: 3px;
  214. font-size: 12px;
  215. //font-family: Microsoft YaHei;
  216. font-weight: bold;
  217. color: #ffffff;
  218. text-align: center;
  219. line-height: 24px;
  220. border-radius: 11px;
  221. }
  222. .full_reduc_des {
  223. font-size: 14px;
  224. //font-family: Microsoft YaHei;
  225. font-weight: 400;
  226. color: #333333;
  227. margin: 0 16px;
  228. }
  229. .go_collect_bill {
  230. font-size: 14px;
  231. //font-family: Microsoft YaHei;
  232. font-weight: 400;
  233. color: #1a86ff;
  234. }
  235. }
  236. .goods_list {
  237. .goods_pre {
  238. position: relative;
  239. width: 100%;
  240. background-color: #f6f6f6;
  241. // border-bottom: 1px solid #E7E4E4;
  242. padding: 20px 0 20px 20px;
  243. &.active,
  244. &:hover {
  245. background-color: #FFF9F6;
  246. }
  247. &:after {
  248. content: '';
  249. position: absolute;
  250. bottom: 0px;
  251. right: 0;
  252. z-index: 9;
  253. width: 1146px;
  254. height: 1px;
  255. background-color: #E7E4E4;
  256. }
  257. &:nth-last-child(1) {
  258. // border-bottom: none;
  259. &:after {
  260. display: none;
  261. }
  262. }
  263. .goods_pre_sel {
  264. width: 14px;
  265. height: 14px;
  266. cursor: pointer;
  267. img {
  268. width: 14px;
  269. height: 14px;
  270. }
  271. &.no_cursor {
  272. cursor: not-allowed;
  273. }
  274. }
  275. .goods_img {
  276. width: 100px;
  277. height: 100px;
  278. background-size: contain;
  279. background-repeat: no-repeat;
  280. background-position: center;
  281. margin: 0 19px 0 20px;
  282. cursor: pointer;
  283. &.no_stock_img {
  284. opacity: 0.6;
  285. }
  286. }
  287. .goods_des {
  288. height: 78px;
  289. .goods_name {
  290. width: 283px;
  291. line-height: 18px;
  292. color: #333333;
  293. font-size: 14px;
  294. //font-family: Microsoft YaHei;
  295. font-weight: 400;
  296. display: -webkit-box;
  297. overflow: hidden;
  298. text-overflow: ellipsis;
  299. text-overflow: -o-ellipsis-lastline;
  300. line-clamp: 2;
  301. -webkit-line-clamp: 2;
  302. -webkit-box-orient: vertical;
  303. text {
  304. cursor: pointer;
  305. }
  306. &.no_stock_name {
  307. color: #999999;
  308. }
  309. }
  310. .goods_spec {
  311. width: 283px;
  312. color: #999999;
  313. font-size: 14px;
  314. //font-family: Microsoft YaHei;
  315. font-weight: 400;
  316. overflow: hidden;
  317. white-space: nowrap;
  318. word-break: break-all;
  319. text-overflow: ellipsis;
  320. // margin-top: 21px;
  321. text {
  322. cursor: pointer;
  323. }
  324. &.no_stock_spec {
  325. color: #bbbbbb;
  326. }
  327. }
  328. }
  329. .goods_price_prom {
  330. .goods_price {
  331. font-size: 14px;
  332. //font-family: Microsoft YaHei;
  333. font-weight: 400;
  334. color: #333333;
  335. width: 243px;
  336. text-align: center;
  337. &.no_stock_price {
  338. color: #999999;
  339. }
  340. }
  341. .promotion {
  342. font-size: 14px;
  343. //font-family: Microsoft YaHei;
  344. font-weight: 400;
  345. color: $colorMain;
  346. text-align: center;
  347. margin-top: 18px;
  348. i {
  349. color: $colorMain;
  350. font-size: 5px;
  351. margin-left: 4px;
  352. }
  353. }
  354. }
  355. .goods_num {
  356. .goods_edit_nem {
  357. width: 99px;
  358. background: #ffffff;
  359. border: 1px solid #dddddd;
  360. span {
  361. width: 30px;
  362. height: 30px;
  363. background: #fafafa;
  364. text-align: center;
  365. display: block;
  366. line-height: 30px;
  367. cursor: pointer;
  368. }
  369. input {
  370. width: 39px;
  371. height: 30px;
  372. border: none;
  373. border-left: 1px solid #dddddd;
  374. border-right: 1px solid #dddddd;
  375. text-align: center;
  376. line-height: 30px;
  377. }
  378. /*** 消除input元素 type="number" 时默认的 加减按钮*/
  379. input[type="number"]::-webkit-inner-spin-button,
  380. input[type="number"]::-webkit-outer-spin-button {
  381. -webkit-appearance: none;
  382. margin: 0;
  383. }
  384. /*** 消除input元素 type="number" 时默认的 加减按钮---moz版*/
  385. input[type="number"] {
  386. -moz-appearance: textfield;
  387. }
  388. }
  389. .goods_stocks {
  390. color: #666666;
  391. font-size: 12px;
  392. //font-family: Microsoft YaHei;
  393. font-weight: 400;
  394. margin-top: 11px;
  395. &.goods_stocks_red {
  396. color: $colorMain;
  397. }
  398. &.goods_stocks_no {
  399. color: $colorMain;
  400. }
  401. }
  402. }
  403. .subtotal {
  404. width: 286px;
  405. color: $colorMain;
  406. font-size: 14px;
  407. //font-family: Microsoft YaHei;
  408. font-weight: bold;
  409. text-align: center;
  410. }
  411. .goods_btn {
  412. .goods_collect {
  413. font-size: 14px;
  414. //font-family: Microsoft YaHei;
  415. font-weight: 400;
  416. color: #333333;
  417. cursor: pointer;
  418. margin-bottom: 12px;
  419. &:hover {
  420. color: $colorMain;
  421. }
  422. }
  423. .goods_del {
  424. font-size: 14px;
  425. //font-family: Microsoft YaHei;
  426. font-weight: 400;
  427. color: #333333;
  428. cursor: pointer;
  429. &:hover {
  430. color: $colorMain;
  431. }
  432. }
  433. }
  434. }
  435. }
  436. }
  437. }
  438. // 失效商品 start
  439. .invalid_goods {
  440. .invalid_goods_title {
  441. font-size: 18px;
  442. //font-family: Microsoft YaHei;
  443. font-weight: 400;
  444. color: #333333;
  445. margin-top: 30px;
  446. margin-bottom: 14px;
  447. padding-left: 20px;
  448. span:nth-child(2) {
  449. font-size: 16px;
  450. font-weight: 400;
  451. color: #005EA7;
  452. cursor: pointer;
  453. margin-left: 45px;
  454. }
  455. }
  456. .invalid_goods_list {
  457. width: 1200px;
  458. background: #F0F0F0;
  459. border-radius: 10px;
  460. overflow: hidden;
  461. // border: 1px solid #dfdfdf;
  462. .invalid_goods_pre {
  463. border-bottom: 1px solid #dddddd;
  464. padding: 20px 0 20px 11px;
  465. &:nth-last-child(1) {
  466. border-bottom: none;
  467. }
  468. .invalid_tips {
  469. width: 34px;
  470. height: 24px;
  471. background: #dddddd;
  472. border-radius: 3px;
  473. font-size: 12px;
  474. //font-family: Microsoft YaHei;
  475. font-weight: 400;
  476. color: #333333;
  477. display: block;
  478. text-align: center;
  479. line-height: 24px;
  480. }
  481. .invalid_img {
  482. width: 100px;
  483. height: 100px;
  484. opacity: 0.6;
  485. margin: 0 19px 0 10px;
  486. background-position: center center;
  487. background-repeat: no-repeat;
  488. background-size: cover;
  489. }
  490. .invalid_des {
  491. .invalid_name {
  492. width: 283px;
  493. font-size: 14px;
  494. //font-family: Microsoft YaHei;
  495. font-weight: 400;
  496. color: #999999;
  497. line-height: 18px;
  498. text-overflow: -o-ellipsis-lastline;
  499. overflow: hidden;
  500. text-overflow: ellipsis;
  501. display: -webkit-box;
  502. -webkit-line-clamp: 2;
  503. line-clamp: 2;
  504. -webkit-box-orient: vertical;
  505. }
  506. .invalid_spec {
  507. width: 283px;
  508. margin-top: 21px;
  509. font-size: 14px;
  510. overflow: hidden;
  511. text-overflow: ellipsis;
  512. white-space: nowrap;
  513. color: #999999;
  514. }
  515. }
  516. .invalid_price {
  517. font-size: 14px;
  518. //font-family: Microsoft YaHei;
  519. font-weight: 400;
  520. color: #999999;
  521. width: 243px;
  522. text-align: center;
  523. }
  524. .invalid_num {
  525. .invalid_edit_num {
  526. width: 99px;
  527. background: #ffffff;
  528. border: 1px solid #eeeeee;
  529. span {
  530. width: 30px;
  531. height: 30px;
  532. background: #fafafa;
  533. text-align: center;
  534. line-height: 30px;
  535. display: block;
  536. cursor: pointer;
  537. }
  538. input {
  539. width: 39px;
  540. height: 30px;
  541. text-align: center;
  542. line-height: 30px;
  543. border: none;
  544. display: block;
  545. border-left: 1px solid #eeeeee;
  546. border-right: 1px solid #eeeeee;
  547. }
  548. /*** 消除input元素 type="number" 时默认的 加减按钮*/
  549. input[type="number"]::-webkit-inner-spin-button,
  550. input[type="number"]::-webkit-outer-spin-button {
  551. -webkit-appearance: none;
  552. margin: 0;
  553. }
  554. /*** 消除input元素 type="number" 时默认的 加减按钮---moz版*/
  555. input[type="number"] {
  556. -moz-appearance: textfield;
  557. }
  558. }
  559. .invalid_off {
  560. font-size: 12px;
  561. //font-family: Microsoft YaHei;
  562. font-weight: 400;
  563. color: #666666;
  564. margin-top: 11px;
  565. }
  566. }
  567. .invalid_subtotal {
  568. font-size: 14px;
  569. //font-family: Microsoft YaHei;
  570. font-weight: 400;
  571. color: #999999;
  572. width: 286px;
  573. text-align: center;
  574. }
  575. .invalid_btn {
  576. .invalid_collect,
  577. .invalid_del {
  578. font-size: 14px;
  579. //font-family: Microsoft YaHei;
  580. font-weight: 400;
  581. color: #666666;
  582. cursor: pointer;
  583. }
  584. .invalid_collect:hover,
  585. .invalid_del:hover {
  586. color: $colorMain;
  587. }
  588. .invalid_collect {
  589. margin-bottom: 18px;
  590. }
  591. }
  592. }
  593. }
  594. }
  595. // 失效商品 end
  596. }
  597. .options_btn {
  598. width: 1200px;
  599. height: 72px;
  600. background: #f6f6f6;
  601. padding-left: 20px;
  602. margin: 0 auto;
  603. .options_btn_left {
  604. .options_sel {
  605. img {
  606. width: 14px;
  607. height: 14px;
  608. cursor: pointer;
  609. }
  610. span {
  611. font-size: 14px;
  612. //font-family: Microsoft YaHei;
  613. font-weight: 400;
  614. color: #333333;
  615. margin-left: 14px;
  616. }
  617. }
  618. .del_all,
  619. .del_all_invalid {
  620. font-size: 14px;
  621. //font-family: Microsoft YaHei;
  622. font-weight: 400;
  623. color: #666666;
  624. line-height: 74px;
  625. margin-left: 21px;
  626. }
  627. .del_all:hover,
  628. .del_all_invalid:hover {
  629. color: $colorMain;
  630. }
  631. }
  632. .options_right {
  633. .options_sel_num {
  634. font-size: 14px;
  635. //font-family: Microsoft YaHei;
  636. font-weight: 400;
  637. color: #333333;
  638. span {
  639. color: $colorMain;
  640. font-size: 16px;
  641. font-weight: bold;
  642. margin-left: 4px;
  643. margin-right: 4px;
  644. }
  645. }
  646. .options_line {
  647. width: 55px;
  648. // height: 50px;
  649. // background: #dddddd;
  650. // margin: 0 41px 0 39px;
  651. }
  652. .options_sel_price {
  653. .options_all_count {
  654. span:nth-child(1) {
  655. font-size: 14px;
  656. //font-family: Microsoft YaHei;
  657. font-weight: 400;
  658. color: #333333;
  659. }
  660. span:nth-child(2) {
  661. font-size: 14px;
  662. //font-family: Microsoft YaHei;
  663. font-weight: 400;
  664. color: #333333;
  665. margin-top: 14px;
  666. }
  667. }
  668. .options_promotion {
  669. // margin-left: 30px;
  670. span:nth-child(1) {
  671. font-size: 18px;
  672. //font-family: Microsoft YaHei;
  673. font-weight: bold;
  674. color: $colorMain;
  675. }
  676. span:nth-child(2) {
  677. font-size: 16px;
  678. //font-family: Microsoft YaHei;
  679. font-weight: 400;
  680. color: $colorMain;
  681. margin-top: 14px;
  682. }
  683. }
  684. }
  685. .go_buy {
  686. width: 160px;
  687. height: 72px;
  688. background: #666666;
  689. font-size: 26px;
  690. //font-family: Microsoft YaHei;
  691. font-weight: 400;
  692. color: #ffffff;
  693. line-height: 72px;
  694. text-align: center;
  695. margin-left: 31px;
  696. &.active {
  697. background: $colorMain;
  698. }
  699. }
  700. }
  701. }
  702. }
  703. .cart_content_no {
  704. margin: 161px auto;
  705. img {
  706. width: 163px;
  707. height: 114px;
  708. }
  709. p {
  710. font-size: 14px;
  711. //font-family: Microsoft YaHei;
  712. font-weight: 400;
  713. color: #333333;
  714. line-height: 39px;
  715. text-align: center;
  716. }
  717. span {
  718. width: 115px;
  719. height: 30px;
  720. background: $colorMain2;
  721. border-radius: 3px;
  722. display: block;
  723. font-size: 14px;
  724. //font-family: Microsoft YaHei;
  725. font-weight: 400;
  726. color: #ffffff;
  727. line-height: 30px;
  728. text-align: center;
  729. cursor: pointer;
  730. }
  731. }
  732. .cursor_pointer {
  733. cursor: pointer;
  734. }
  735. // 优惠券弹框 start
  736. .coupon_model {
  737. .model_coupon_list {
  738. display: flex;
  739. flex-wrap: wrap;
  740. }
  741. .sld_coupon_item {
  742. margin-right: 10px !important;
  743. }
  744. .sld_coupon_item:nth-child(2n) {
  745. margin-right: 0 !important;
  746. }
  747. }
  748. // 优惠券弹框 end
  749. // 底部操作按钮悬浮框 start
  750. .bottom_options {
  751. position: fixed;
  752. bottom: 0px;
  753. width: 100%;
  754. background: #ffffff;
  755. box-shadow: 0 -1px 8px rgba(0, 1, 1, 0.08);
  756. z-index: 100;
  757. .bottom_options_con {
  758. width: 1200px;
  759. height: 72px;
  760. // background: #eeeeee;
  761. padding-left: 20px;
  762. margin: 0 auto;
  763. .options_btn_left {
  764. .options_sel {
  765. img {
  766. width: 14px;
  767. height: 14px;
  768. cursor: pointer;
  769. }
  770. span {
  771. font-size: 14px;
  772. //font-family: Microsoft YaHei;
  773. font-weight: 400;
  774. color: #333333;
  775. margin-left: 14px;
  776. }
  777. }
  778. .del_all,
  779. .del_all_invalid {
  780. font-size: 14px;
  781. //font-family: Microsoft YaHei;
  782. font-weight: 400;
  783. color: #666666;
  784. line-height: 74px;
  785. margin-left: 21px;
  786. }
  787. .del_all:hover,
  788. .del_all_invalid:hover {
  789. color: $colorMain;
  790. }
  791. }
  792. .options_right {
  793. .options_sel_num {
  794. font-size: 14px;
  795. //font-family: Microsoft YaHei;
  796. font-weight: 400;
  797. color: #333333;
  798. span {
  799. color: $colorMain;
  800. font-size: 16px;
  801. font-weight: bold;
  802. margin-left: 4px;
  803. margin-right: 4px;
  804. }
  805. }
  806. .options_line {
  807. width: 55px;
  808. // height: 50px;
  809. // background: #dddddd;
  810. // margin: 0 41px 0 39px;
  811. }
  812. .options_sel_price {
  813. .options_all_count {
  814. span:nth-child(1) {
  815. font-size: 14px;
  816. //font-family: Microsoft YaHei;
  817. font-weight: 400;
  818. color: #333333;
  819. }
  820. span:nth-child(2) {
  821. font-size: 14px;
  822. //font-family: Microsoft YaHei;
  823. font-weight: 400;
  824. color: #333333;
  825. margin-top: 14px;
  826. }
  827. }
  828. .options_promotion {
  829. // margin-left: 30px;
  830. span:nth-child(1) {
  831. font-size: 18px;
  832. //font-family: Microsoft YaHei;
  833. font-weight: bold;
  834. color: $colorMain;
  835. }
  836. span:nth-child(2) {
  837. font-size: 16px;
  838. //font-family: Microsoft YaHei;
  839. font-weight: 400;
  840. color: $colorMain;
  841. margin-top: 14px;
  842. }
  843. }
  844. }
  845. .go_buy {
  846. width: 160px;
  847. height: 72px;
  848. background: #666666;
  849. font-size: 26px;
  850. //font-family: Microsoft YaHei;
  851. font-weight: 400;
  852. color: #ffffff;
  853. line-height: 72px;
  854. text-align: center;
  855. margin-left: 31px;
  856. &.active {
  857. background: $colorMain;
  858. }
  859. }
  860. }
  861. }
  862. }
  863. // 底部操作按钮悬浮框 end
  864. // 公共样式
  865. // 底部操作按钮 start
  866. // 底部操作按钮 end
  867. }
  868. .el-button--primary {
  869. color: #fff;
  870. background-color: $colorMain;
  871. border-color: $colorMain;
  872. }
  873. .el-button--primary:focus,
  874. .el-button--primary:hover {
  875. background: $colorMain;
  876. border-color: $colorMain;
  877. color: #fff;
  878. }
  879. .el-button:focus,
  880. .el-button:hover {
  881. background: $colorMain;
  882. border-color: $colorMain;
  883. color: #fff;
  884. }