123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- @import '../../common/common.wxss';
- .cart-box{
- padding-bottom: 100rpx;
- }
- .cart-list{
- position: relative;
- padding: 20rpx 20rpx 20rpx 285rpx;
- height: 185rpx;
- border-bottom: 1rpx solid #e9e9e9;
- }
- .cart-list .cart-pro-select{
- position: absolute;
- left: 20rpx;
- top: 90rpx;
- width: 45rpx;
- height: 45rpx;
- }
- .cart-list .cart-thumb{
- position: absolute;
- top: 20rpx;
- left: 85rpx;
- width: 185rpx;
- height: 185rpx;
- }
- .cart-list .cart-pro-name{
- display: inline-block;
- width: 300rpx;
- height: 105rpx;
- line-height: 50rpx;
- overflow: hidden;
- }
- .cart-list .cart-pro-price{
- display: inline-block;
- float: right;
- height: 105rpx;
- line-height: 50rpx;
- }
- .cart-list .cart-count-box{
- position: absolute;
- left: 285;
- bottom: 20rpx;
- width: 250rpx;
- height: 80rpx;
- }
- .cart-list .cart-count-box text{
- display: inline-block;
- line-height: 80rpx;
- text-align: center;
- }
- .cart-count-down,.cart-count-add{
- font-size: 44rpx;
- width: 50rpx;
- height: 100%;
- }
- .cart-count-num{
- width: 150rpx;
- }
- .cart-del{
- position: absolute;
- right: 20rpx;
- bottom: 20rpx;
- width: 80rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- font-size: 44rpx;
- }
- .cart-footer{
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- padding:0 100rpx 0 80rpx;
- box-sizing: border-box;
- background: #AB956D;
- color: #fff;
- }
- .total-select{
- position: absolute;
- left: 20rpx;
- top: 25rpx;
- width: 45rpx;
- height: 45rpx;
- }
- .order-icon{
- position: absolute;
- right: 40rpx;
- top: 25rpx;
- width: 45rpx;
- height: 45rpx;
- }
- .order-icon image,.order-icon navigator{
- display: block;
- width: 45rpx;
- height: 45rpx;
- }
- .cart-toatl-price{
- float: right;
- width: 120rpx;
- }
- .cart-no-data{
- padding:40rpx 0;
- color: #999;
- text-align: center;
- }
|