12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* nova-shop/pages/shopping-cart/index.wxss */
- page {
- background: #f6f6f6;
- }
- .browsing {
- .browsing_info {
- width: 93%;
- background: #ffffff;
- border-radius: 12rpx;
- margin: 20rpx auto;
- display: flex;
- .left_info {
- width: 38%;
- display: flex;
- align-items: center;
- .image {
- width: 240rpx;
- height: 240rpx;
- border-radius: 16rpx;
- }
- }
- .right_info {
- width: 58%;
- .title {
- font-size: 28rpx;
- margin: 20rpx 0;
- font-weight: 700;
- overflow: hidden;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- }
- .desc {
- font-size: 24rpx;
- margin-bottom: 20rpx;
- color: #c2c2c2;
- overflow: hidden;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .down_info {
- padding: 16rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .price {
- font-size: 34rpx;
- color: #fd3030;
- font-weight: 700;
- }
- }
-
- }
- }
- .delete {
- background: #e42929;
- color: #fff;
- height: 100%;
- padding: 100rpx 34rpx;
- }
- .bottom {
- width: 100%;
- height: 100rpx;
- }
- }
|