123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /* 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;
- }
|