| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- @import "../../../../themes/page.scss";
- @import "../../searc-list.scss";
- /* module/diet/pages/diet-info/diet-info.wxss */
- .confirm-receive-container {
- background: #f7f8fa;
- display: flex;
- flex-direction: column;
- align-items: stretch;
- padding-bottom: 48rpx;
- }
- .order-goods-list {
- margin-top: 32rpx;
- }
- .goods-card {
- display: flex;
- background: #fff;
- border-radius: 20rpx;
- box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.04);
- margin: 0 24rpx 24rpx 24rpx;
- padding: 24rpx;
- align-items: flex-start;
- gap: 24rpx;
- }
- .goods-img {
- width: 120rpx;
- height: 120rpx;
- border-radius: 12rpx;
- object-fit: cover;
- margin-right: 16rpx;
- }
- .goods-info {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .goods-title {
- font-size: 30rpx;
- font-weight: 600;
- color: #222;
- margin-bottom: 8rpx;
- line-height: 1.2;
- }
- .goods-count {
- font-size: 26rpx;
- color: #888;
- margin-bottom: 12rpx;
- }
- .goods-express {
- display: flex;
- align-items: center;
- font-size: 26rpx;
- }
- .express-label {
- color: #888;
- }
- .express-no {
- color: #2a7cff;
- margin-left: 8rpx;
- text-decoration: underline;
- }
- .express-none {
- color: #bbb;
- margin-left: 8rpx;
- }
- .confirm-title {
- margin: 64rpx 0 16rpx 0;
- text-align: center;
- font-size: 32rpx;
- font-weight: 600;
- color: #222;
- }
- .confirm-desc {
- text-align: center;
- color: #bbb;
- font-size: 26rpx;
- margin-bottom: 120rpx;
- }
- .confirm-footer {
- display: flex;
- justify-content: center;
- gap: 32rpx;
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100vw;
- background: #fff;
- padding: 24rpx 0 32rpx 0;
- box-shadow: 0 -2rpx 8rpx rgba(0,0,0,0.04);
- z-index: 100;
- .footer-btn {
- flex: 1;
- margin: 0 24rpx;
- font-size: 30rpx;
- border-radius: 12rpx;
- height: 88rpx;
- }
- }
|