12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* 我的投递 */
- .delivery {
- &-list {
- &-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 18rpx 20rpx;
- border-top: solid 1px #f3f3f3;
- &-left {
- display: flex;
- align-items: center;
- &-image {
- width: 104rpx;
- height: 104rpx;
- margin-right: 40rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- &-info {
- font-size: 22rpx;
- font-family: 'Microsoft YaHei';
- color: #a6a6a6;
- line-height: 50rpx;
- view {
- &:first-child {
- color: #383838;
- font-size: 30rpx;
- font-weight: bold;
- }
- }
- }
- }
- &-right {
- view {
- font-size: 22rpx;
- font-family: 'Microsoft YaHei';
- color: #a6a6a6;
- &:first-child {
- color: #ff5733;
- margin-bottom: 20rpx;
- }
- }
- }
- }
- }
- }
|