| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- .count {
- padding: 20rpx 30rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #333333;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .product-list {
- padding: 20rpx 0;
- }
- .product-item {
- margin-bottom: 2rpx;
- .item-content {
- display: flex;
- align-items: center;
- padding: 24rpx 30rpx;
- background: #fff;
- transition: background 0.2s;
- }
- .item-selected {
- background: #f0f7ff;
- }
- .checkbox-wrap {
- margin-right: 20rpx;
- flex-shrink: 0;
- }
- .checkbox {
- width: 44rpx;
- height: 44rpx;
- border-radius: 8rpx;
- border: 2rpx solid #ddd;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #fff;
- box-sizing: border-box;
- }
- .checkbox-checked {
- background: #1060E3;
- border-color: #1060E3;
- }
- .item-img {
- flex-shrink: 0;
- }
- .item-info {
- flex: 1;
- margin-left: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- min-height: 160rpx;
- padding: 4rpx 0;
- }
- .item-name {
- font-family: Source Han Sans SC, Source Han Sans SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #333333;
- text-align: left;
- font-style: normal;
- text-transform: none;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- }
- .item-points {
- margin-top: 12rpx;
- .points-value {
- font-family: Source Han Sans SC, Source Han Sans SC;
- font-size: 36rpx;
- color: #E3041F;
- font-weight: bold;
- }
- .points-label {
- font-family: Source Han Sans SC, Source Han Sans SC;
- font-size: 24rpx;
- color: #999;
- margin-left: 6rpx;
- }
- }
- .item-qty {
- margin-top: 12rpx;
- }
- }
- .bottom-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 120rpx;
- background: #fff;
- display: flex;
- align-items: center;
- padding: 0 30rpx ;
- box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
- z-index: 100;
- .bar-left {
- display: flex;
- flex: 1;
- .selected-count {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #333333;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .selected-num {
- padding-left: 20rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #333333;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .bar-right {
- width: 240rpx;
- height: 88rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #1060E3;
- color: #fff;
- font-size: 32rpx;
- font-weight: 500;
- border-radius: 10rpx;
- padding-bottom: 6rpx;
- }
- }
|