| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- page {
- padding-bottom: 32rpx;
- }
- .collect-container .van-empty {
- height: 100vh;
- background: #fff;
- }
- .collect-container .content .title {
- padding: 0 36rpx 0 24rpx;
- line-height: 80rpx;
- color: #50555F;
- }
- .collect-container .content .title .del-btn {
- margin-right: 24rpx;
- color: #D32D2F;
- }
- .collect-container .content .collect-scroll {
- height: calc(100vh - 112rpx);
- }
- .collect-container .content .collect-scroll .item {
- position: relative;
- padding: 40rpx 24rpx;
- }
- .collect-container .content .collect-scroll .item .van-checkbox__icon-wrap {
- margin-right: 24rpx;
- }
- .collect-container .content .collect-scroll .border::after {
- position: absolute;
- bottom: 0;
- left: 24rpx;
- content: '';
- width: calc(100% - 24rpx);
- height: 2rpx;
- background: rgba(110, 123, 143, 0.16);
- }
- .collect-container .content .collect-scroll .no-radio .van-checkbox__icon-wrap {
- display: none;
- }
- .collect-container .content .collect-scroll .item .van-checkbox__label {
- flex: 1;
- padding-left: 0;
- }
- .collect-container .content .collect-scroll .item image {
- width: 176rpx;
- height: 176rpx;
- border-radius: 8rpx;
- }
- .collect-container .content .collect-scroll .item .right {
- flex: 1;
- height: 176rpx;
- margin-left: 24rpx;
- line-height: 28rpx;
- font-size: 24rpx;
- color: #060606;
- }
- .collect-container .content .collect-scroll .item .right .name {
- line-height: 32rpx;
- font-size: 26rpx;
- color: #060606;
- }
- .collect-container .content .collect-scroll .item .right .price {
- line-height: 42rpx;
- font-size: 36rpx;
- font-family: DIN Alternate-Bold, DIN Alternate;
- font-weight: bold;
- }
- .collect-container .content .collect-scroll .item .right .price text {
- padding-right: 4rpx;
- line-height: 28rpx;
- font-size: 24rpx;
- }
- .collect-container .content .collect-scroll .item .right .btn {
- width: 160rpx;
- background: #D32D2F;
- border-radius: 60rpx;
- text-align: center;
- line-height: 48rpx;
- color: #fff;
- }
|