cart.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. }
  39. .goods-info image {
  40. width: 170rpx;
  41. height: 170rpx;
  42. }
  43. .goods-info .info {
  44. margin-left: 10px;
  45. display: flex;
  46. flex-direction: column;
  47. }
  48. /* 数量加减按钮 */
  49. .count {
  50. width: 144rpx;
  51. height: auto;
  52. display: flex;
  53. align-items: center;
  54. }
  55. .count .addNum,.count .reduceNum {
  56. width: 39rpx;
  57. line-height: 39rpx;
  58. text-align: center;
  59. font-size: 16px;
  60. display: inline-block;
  61. background: #CFCFCF;
  62. }
  63. .count .num{
  64. width: 66rpx;
  65. text-align: center;
  66. display: inline-block;
  67. }
  68. /* 底部栏 */
  69. .footer {
  70. position: fixed;
  71. bottom: 0;
  72. width: 100%;
  73. display: flex;
  74. align-items: center;
  75. justify-content: space-between;
  76. padding: 10px;
  77. background: #fff;
  78. border-top: 1px solid #eee;
  79. }
  80. .divider{
  81. margin: 30rpx 0;
  82. display: flex;
  83. justify-content: center;
  84. align-items: center;
  85. }
  86. .divider .text{
  87. margin: 0 20rpx;
  88. }
  89. .line{
  90. width: 200rpx;
  91. height: 2rpx;
  92. background: #CFCFCF;
  93. display: inline-block;
  94. }