com.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. @import '@css/mixin.scss';
  2. .scoped-sale {
  3. position: fixed;
  4. left: 0;
  5. bottom: 0;
  6. width: 100%;
  7. height: 140px;
  8. background: #fff;
  9. display: flex;
  10. box-sizing: border-box;
  11. padding: 20px;
  12. z-index: 99;
  13. border: 1PX solid #f2f2f2;
  14. .ss-img {
  15. width: 90px;
  16. height: 90px;
  17. border-radius: 50%;
  18. overflow: hidden;
  19. margin-right: 20px;
  20. .img {
  21. width: 90px;
  22. height: 90px;
  23. border-radius: 50%;
  24. overflow: hidden;
  25. }
  26. }
  27. .ss-info {
  28. flex: 1;
  29. .p1 {
  30. color: #313131;
  31. font-weight: bold;
  32. font-size: 30px;
  33. padding-bottom: 6px;
  34. padding-left: 10px;
  35. }
  36. .p2 {
  37. display: inline-block;
  38. padding: 6px 10px;
  39. color: #8b94b1;
  40. background: #eceff5;
  41. font-size: 24px;
  42. border-radius: 10px;
  43. }
  44. }
  45. .ss-r {
  46. width: 350px;
  47. display: flex;
  48. padding-top: 10px;
  49. justify-content: space-between;
  50. .b {
  51. width: 170px;
  52. height: 80px;
  53. line-height: 80px;
  54. text-align: center;
  55. background: #3bc48b;
  56. color: #fff;
  57. border-radius: 10px;
  58. &.t2 {
  59. background: #3072f6;
  60. }
  61. }
  62. }
  63. }