123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- @charset "UTF-8";
- page {
- background-color: #fff;
- }
- .cart-bottom {
- width: 100%;
- height: 100rpx;
- position: fixed;
- bottom: 0px;
- left: 0;
- border-top: 2rpx solid #eee;
- background-color: #fff;
- }
- .cart-bottom .check-box {
- float: left;
- height: 100rpx;
- line-height: 100rpx;
- padding-left: 45rpx;
- }
- .cart-bottom .deleteGoods {
- float: left;
- height: 100rpx;
- line-height: 110rpx;
- padding-left: 10rpx;
- color: #666;
- }
- .cart-bottom .cart-bottom-text {
- padding-right: 240rpx;
- color: #323233;
- text-align: right;
- font-size: 24rpx;
- float: right;
- height: 100rpx;
- line-height: 100rpx;
- }
- .cart-bottom .cart-bottom-text view {
- display: inline-block;
- }
- .cart-bottom .cart-bottom-text view:last-child {
- color: #ee0a24;
- }
- .cart-bottom .cart-bottom-text view:last-child text {
- color: #ee0a24;
- }
- .cart-bottom .cart-bottom-text view:last-child text:last-child {
- font-size: 34rpx;
- padding-left: 5rpx;
- }
- .cart-bottom .btn {
- width: 200rpx;
- height: 80rpx;
- line-height: 80rpx;
- border: none;
- position: absolute;
- display: inline-block;
- margin: 0;
- padding: 0;
- font-size: 30rpx;
- text-align: center;
- border-radius: 50rpx;
- cursor: pointer;
- transition: opacity .2s;
- top: 10rpx;
- right: 20rpx;
- color: #fff;
- background-color: #ee0a24;
- background: linear-gradient(90deg, #fa955a, #ee0a24);
- }
- .wrap {
- width: 100%;
- background: #fafafa;
- }
- .list-box {
- display: flex;
- flex-wrap: wrap;
- flex-direction: column;
- background: #fafafa;
- }
- .list-box .list-item {
- width: 88%;
- height: 180rpx;
- margin: 0 auto;
- background-color: #fff;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- font-size: 28rpx;
- padding: 20rpx 20rpx;
- position: relative;
- }
- .list-box .list-item:first-child {
- margin-top: 20rpx;
- }
- .list-box .list-item .left-pic {
- position: absolute;
- left: 0;
- top: 0;
- z-index: 999;
- width: 240rpx;
- height: 220rpx;
- }
- .list-box .list-item .left-pic .item-check {
- float: left;
- width: 25rpx;
- height: 25px;
- position: relative;
- margin-top: 80rpx;
- margin-left: 15rpx;
- }
- .list-box .list-item .left-pic .pic {
- float: right;
- margin-top: 30rpx;
- width: 160rpx;
- }
- .list-box .list-item .left-pic .pic image {
- width: 160rpx;
- height: 160rpx;
- }
- .list-box .list-item .goods {
- float: right;
- padding-left: 240rpx;
- font-size: 28rpx;
- color: #333;
- }
- .list-box .list-item .goods .t {
- width: 100%;
- min-height: 50rpx;
- max-height: 80rpx;
- display: -webkit-box;
- overflow: hidden;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .list-box .list-item .goods .m {
- color: #666;
- font-size: 26rpx;
- display: -webkit-box;
- overflow: hidden;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- .list-box .list-item .goods .b {
- height: 60rpx;
- padding-top: 8rpx;
- }
- .list-box .list-item .goods .b view:first-child {
- float: left;
- line-height: 60rpx;
- color: red;
- font-size: 34rpx;
- }
- .list-box .list-item .goods .b view:last-child {
- float: right;
- }
|