cart.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .manage{
  2. width: 668rpx;
  3. font-size: 25rpx;
  4. text-align: right;
  5. border-bottom: 2rpx solid #CFCFCF;
  6. margin: 50rpx auto 0 auto;
  7. }
  8. /* 暂无可管理商品 */
  9. .empty{
  10. text-align: center;
  11. padding: 148rpx 0;
  12. }
  13. .emptyIcon{
  14. width: 107rpx;
  15. height: 107rpx;
  16. }
  17. .empty text{
  18. font-size: 30rpx;
  19. margin-top: 20rpx;
  20. display: block;
  21. }
  22. /* 商品列表 */
  23. .prodsList{
  24. width: 668rpx;
  25. margin: auto;
  26. }
  27. .itemProd{
  28. height: 224rpx;
  29. border-bottom: 1rpx solid #EFEFEF;
  30. display: flex;
  31. align-items: center;
  32. }
  33. /* 商品信息 */
  34. .goods-info {
  35. flex: 1;
  36. display: flex;
  37. margin-left: 10px;
  38. position: relative;
  39. }
  40. .goods-info image {
  41. width: 170rpx;
  42. height: 170rpx;
  43. border-radius: 10rpx;
  44. }
  45. .goods-info .info {
  46. margin-left: 10px;
  47. display: flex;
  48. flex-direction: column;
  49. }
  50. /* 数量加减按钮 */
  51. .count {
  52. width: 144rpx;
  53. height: 39rpx;
  54. display: flex;
  55. align-items: center;
  56. border: 2rpx solid #CFCFCF;
  57. border-radius: 50rpx;
  58. position: absolute;
  59. right: 10rpx;
  60. bottom: 0;
  61. }
  62. .count .addNum,.count .reduceNum {
  63. width: 39rpx;
  64. line-height: 39rpx;
  65. text-align: center;
  66. font-size: 16px;
  67. display: inline-block;
  68. }
  69. .count .num{
  70. width: 66rpx;
  71. text-align: center;
  72. border-left: 2rpx solid #CFCFCF;
  73. border-right: 2rpx solid #CFCFCF;
  74. display: inline-block;
  75. }
  76. /* 底部栏 */
  77. .footer {
  78. position: fixed;
  79. bottom: 0;
  80. width: 100%;
  81. color: #FFFFFF;
  82. display: flex;
  83. align-items: center;
  84. justify-content: space-around;
  85. padding: 10px 0;
  86. background: #FED279;
  87. }
  88. .manageFooter{
  89. background: #EA6087;
  90. justify-content: space-between;
  91. }
  92. .manageFooter .checkBoxAll{
  93. margin-left: 50rpx;
  94. }
  95. .footer .delete{
  96. width: 125rpx;
  97. text-align: right;
  98. border-left: 2rpx solid #FFFFFF;
  99. margin-right: 50rpx;
  100. }
  101. .divider{
  102. margin: 30rpx 0;
  103. display: flex;
  104. justify-content: center;
  105. align-items: center;
  106. }
  107. .divider .text{
  108. margin: 0 20rpx;
  109. }
  110. .line{
  111. width: 200rpx;
  112. height: 2rpx;
  113. background: #CFCFCF;
  114. display: inline-block;
  115. }