123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* 我的投递 */
- .delivery {
- min-height: calc(100vh - 44px);
- background-color: #F2F2F2;
- &-list {
- padding: 28rpx 0;
- &-item {
- display: flex;
- justify-content: space-between;
- padding: 26rpx 30rpx;
- border-top: solid 1px #f3f3f3;
- background-color: #fff;
- margin-bottom: 20rpx;
- &-left {
- display: flex;
- align-items: center;
- &-image {
- width: 104rpx;
- height: 104rpx;
- margin-right: 40rpx;
- border: solid 1px #E1E1E1;
- border-radius: 8rpx;
- image {
- width: 100%;
- height: 100%;
- border-radius: 8rpx;
- }
- }
- &-info {
- font-size: 22rpx;
- font-family: 'Microsoft YaHei';
- color: #9B9B9B;
- line-height: 50rpx;
- font-weight: 400;
- view {
- &:first-child {
- color: #000;
- font-size: 30rpx;
- }
- &:last-child {
- color: #bbb;
- }
- }
- }
- }
- &-right {
- display: flex;
- flex-direction: column;
- view {
- font-size: 22rpx;
- font-family: 'Microsoft YaHei';
- color: #BCBCBC;
- font-weight: 400;
- &:first-child {
- color: #EE5A10;
- font-weight: 500;
- flex: 1;
- }
- }
- }
- }
- }
- }
|