buy-bar.less 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .footer-cont {
  2. background-color: #fff;
  3. padding: 16rpx;
  4. }
  5. .icon-warp {
  6. width: 140rpx;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. text-align: center;
  11. }
  12. .operate-wrap {
  13. position: relative;
  14. }
  15. .bottom-operate-left {
  16. width: 100%;
  17. margin-right: 30rpx;
  18. }
  19. .bottom-operate-left .icon-warp {
  20. width: 50%;
  21. }
  22. .tag-cart-num {
  23. display: inline-block;
  24. position: absolute;
  25. left: 50rpx;
  26. right: auto;
  27. top: 6rpx;
  28. color: #fff;
  29. line-height: 24rpx;
  30. text-align: center;
  31. z-index: 99;
  32. white-space: nowrap;
  33. min-width: 28rpx;
  34. border-radius: 14rpx;
  35. background-color: #333 !important;
  36. font-size: 20rpx;
  37. font-weight: 400;
  38. padding: 2rpx 6rpx;
  39. }
  40. .operate-text {
  41. color: #666;
  42. font-size: 20rpx;
  43. padding-top: 8rpx;
  44. }
  45. .soldout {
  46. height: 80rpx;
  47. background: rgba(170, 170, 170, 1);
  48. width: 100%;
  49. color: #fff;
  50. }
  51. .addCart-disabled,
  52. .bar-addCart-disabled {
  53. background: rgba(221, 221, 221, 1) !important;
  54. color: #fff !important;
  55. font-size: 28rpx;
  56. border-color: rgba(221, 221, 221, 1) !important;;
  57. }
  58. .buyNow-disabled,
  59. .bar-buyNow-disabled {
  60. background: rgba(198, 198, 198, 1) !important;
  61. color: #fff !important;
  62. font-size: 28rpx;
  63. border-color: rgba(198, 198, 198, 1) !important;;
  64. }
  65. .bar-separately,
  66. .bar-buy {
  67. width: 230rpx;
  68. height: 80rpx;
  69. color: #fff;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. font-size: 26rpx;
  74. border: 1px solid #ccc;
  75. }
  76. .bar-separately {
  77. background: #fff;
  78. color: #333;
  79. border-radius: 8rpx 0 0 8rpx;
  80. border-right: 0;
  81. }
  82. .bar-buy {
  83. background-color: #333;
  84. border-radius: 0rpx 8rpx 8rpx 0rpx;
  85. border-color: #333;
  86. border-left: 0;
  87. }
  88. .flex {
  89. display: flex;
  90. display: -webkit-flex;
  91. }
  92. .flex-center {
  93. justify-content: center;
  94. -webkit-justify-content: center;
  95. align-items: center;
  96. -webkit-align-items: center;
  97. }
  98. .flex-between {
  99. justify-content: space-between;
  100. -webkit-justify-content: space-between;
  101. }
  102. .red {
  103. color: #cc195a;
  104. }