/* pages/shoppingcart/shoppingcart.wxss */ .container { margin: 0rpx 30rpx; width: calc(100% - 60rpx); padding: 0 0; } .cart-header { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20rpx; } .search-bar { width: calc(100% - 330rpx); position: relative; display: flex; align-items: center; /* height: 70rpx; */ background-color: #fff; border: 1rpx solid #dcdfe6; border-radius: 12rpx; padding: 16rpx 20rpx; } .search-bar input { flex: 1; height: 100%; font-size: 32rpx; border: none; background: transparent; } .search-icon { position: absolute; right: 20rpx; width: 45rpx; height: 45rpx; } .manage-btn { width: 70rpx !important; padding: 0 !important; margin: 0 !important; font-size: 32rpx; font-weight: 500; /* color: #007aff; */ } .cart-items { width: 100%; margin-bottom: 20rpx; } .cart-item { display: flex; align-items: center; background-color: #fff; border-radius: 8rpx; padding: 20rpx; margin-bottom: 20rpx; } .cart-checkbox { margin-right: 20rpx; } .cart-image { width: 200rpx; height: 200rpx; margin-right: 20rpx; } .cart-info { flex: 1; width: 33.33%; } .cart-title { font-size: 34rpx; font-weight: bold; color: #333; margin-bottom: 10rpx; } .cart-description { font-size: 28rpx; color: #666; margin-bottom: 10rpx; } .cart-price { font-size: 32rpx; color: #ff5722; margin-bottom: 10rpx; } .quantity-controls { display: flex; align-items: center; } .quantity-btn { width: 60rpx !important; height: 60rpx !important; background-color: #f5f5f5; border: 1rpx solid #ccc; border-radius: 8rpx; font-size: 32rpx; color: #666; } .quantity-text { font-size: 32rpx; color: #333; } .cart-footer { width: 100%; display: flex; justify-content: space-between; align-items: center; background-color: #fff; padding: 20rpx; position: fixed; bottom: 0; left: 0; right: 0; font-size: 38rpx; } .all-checkbox { margin-right: 20rpx; font-size: 36rpx; } .total-price { font-size: 36rpx; color: #333; } .checkout-btn { width: 200rpx !important; height: 80rpx !important; background-color: #007aff; color: #fff; font-size: 32rpx; border-radius: 38rpx; margin: 0 40rpx 0 30rpx !important; }