| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- page {
- height: 100vh;
- overflow: hidden;
- }
- .count {
- box-sizing: border-box;
- padding: 10rpx;
- display: flex;
- justify-content: center;
- width: 750rpx;
- background: #FFEFD9;
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 28rpx;
- color: #FA8C16;
- text-align: center;
- font-style: normal;
- text-transform: none;
- }
- .order-card {
- background: #ffffff;
- border-radius: 8rpx;
- padding: 16rpx 20rpx 20rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- .card-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- padding-bottom: 18rpx;
- margin-bottom: 16rpx;
- border-bottom: 2rpx solid #dddddd;
- .order-no {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #333333;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- .order-status {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- text-align: right;
- font-style: normal;
- text-transform: none;
- }
- }
- .product-list {
- .product-item {
- display: flex;
- align-items: center;
- padding: 12rpx 0;
- border-bottom: 2rpx solid #dddddd;
- .product-img {
- flex-shrink: 0;
- }
- .product-info {
- flex: 1;
- margin-left: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- min-height: 120rpx;
- padding: 4rpx 0;
- .product-name {
- font-size: 28rpx;
- color: #333;
- line-height: 1.4;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- }
- .product-meta {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 12rpx;
- .product-points {
- font-size: 28rpx;
- color: #E3041F;
- font-weight: bold;
- }
- .product-qty {
- font-size: 24rpx;
- color: #999;
- }
- }
- }
- }
- }
- .card-footer {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-top: 16rpx;
- margin-top: 12rpx;
- .total-points {
- font-size: 24rpx;
- color: #999;
- .points-num {
- font-size: 32rpx;
- color: #E3041F;
- font-weight: bold;
- }
- }
- .order-date {
- font-size: 24rpx;
- color: #999;
- }
- }
- }
|