index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .footer-cont {
  2. background-color: #fff;
  3. padding: 16rpx;
  4. }
  5. .icon-warp {
  6. width: 110rpx;
  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. }
  18. .bottom-operate-left .icon-warp {
  19. width: 50%;
  20. }
  21. .tag-cart-num {
  22. display: inline-block;
  23. position: absolute;
  24. left: 50rpx;
  25. right: auto;
  26. top: 6rpx;
  27. color: #fff;
  28. line-height: 24rpx;
  29. text-align: center;
  30. z-index: 99;
  31. white-space: nowrap;
  32. min-width: 28rpx;
  33. border-radius: 14rpx;
  34. background-color: #fa550f !important;
  35. font-size: 20rpx;
  36. font-weight: 400;
  37. padding: 2rpx 6rpx;
  38. }
  39. .operate-text {
  40. color: #666;
  41. font-size: 20rpx;
  42. }
  43. .soldout {
  44. height: 80rpx;
  45. background: rgba(170, 170, 170, 1);
  46. width: 100%;
  47. color: #fff;
  48. }
  49. .addCart-disabled,
  50. .bar-addCart-disabled {
  51. background: rgba(221, 221, 221, 1) !important;
  52. color: #fff !important;
  53. font-size: 28rpx;
  54. }
  55. .buyNow-disabled,
  56. .bar-buyNow-disabled {
  57. background: rgba(198, 198, 198, 1) !important;
  58. color: #fff !important;
  59. font-size: 28rpx;
  60. }
  61. .bar-separately,
  62. .bar-buy {
  63. width: 254rpx;
  64. height: 80rpx;
  65. color: #fff;
  66. display: flex;
  67. align-items: center;
  68. justify-content: center;
  69. }
  70. .bar-separately {
  71. background: #ffece9;
  72. color: #fa4126;
  73. border-radius: 40rpx 0 0 40rpx;
  74. }
  75. .bar-buy {
  76. background-color: #fa4126;
  77. border-radius: 0rpx 40rpx 40rpx 0rpx;
  78. }
  79. .flex {
  80. display: flex;
  81. display: -webkit-flex;
  82. }
  83. .flex-center {
  84. justify-content: center;
  85. -webkit-justify-content: center;
  86. align-items: center;
  87. -webkit-align-items: center;
  88. }
  89. .flex-between {
  90. justify-content: space-between;
  91. -webkit-justify-content: space-between;
  92. }