123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- page {
- height: 100%;
- width: 100%;
- background: #f4f4f4;
- }
- .container {
- height: 100%;
- width: 100%;
- }
- .express-header {
- border-top: 1px solid #d9d9d9;
- width: 100%;
- height: auto;
- overflow: hidden;
- background: #fff;
- display: flex;
- padding: 20rpx 30rpx;
- }
- .express-header .left {
- flex: 1;
- height: 100%;
- }
- .express-header .left .txt {
- height: 50rpx;
- line-height: 50rpx;
- overflow: hidden;
- width: 100%;
- }
- .express-header .right {
- width: 160rpx;
- height: 100%;
- display: flex;
- }
- .express-header .update-btn {
- margin-top: 47rpx;
- width: 158rpx;
- height: 56rpx;
- line-height: 54rpx;
- overflow: hidden;
- text-align: center;
- border-radius: 8rpx;
- color: #333;
- border: 1px solid #666;
- }
- .express-body {
- margin-top: 20rpx;
- width: 100%;
- height: auto;
- overflow: hidden;
- background: #fff;
- padding: 30rpx;
- position: relative;
- }
- .current-icon{
- height: 24rpx;
- width: 24rpx;
- position: absolute;
- top: 30rpx;
- left: 50rpx;
- background: #b4282d;
- border-radius: 24rpx;
- }
- .express-item {
- height: auto;
- width: 100%;
- overflow: hidden;
- display: flex;
- margin-left: 30rpx;
- border-left: 1px solid #d9d9d9;
- }
- .express-item .left {
- width: 44rpx;
- height: 100%;
- overflow: hidden;
- }
- .express-item .right {
- flex: 1;
- height: 100%;
- margin-left: 10rpx;
- padding: 20rpx 0;
- border-bottom: 1px solid #f1f2f4;
- }
- .express-item.item-0 .right {
- padding-top: 0rpx;
- }
- .express-item:last-child .right{
- border-bottom: none;
- padding-bottom: 0rpx;
- }
- .express-item .right .info {
- min-height: 42rpx;
- height: auto;
- overflow: hidden;
- padding-right: 30rpx;
- line-height: 42rpx;
- color: #999;
- }
- .express-item.item-0 .right .info {
- color: #b4282d;
- }
- .express-item .right .time {
- min-height: 42rpx;
- height: auto;
- overflow: hidden;
- line-height: 42rpx;
- color: #999;
- }
- .express-item.item-0 .right .time {
- color: #b4282d;
- }
|