| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /* pages/order/logistics/logistics.wxss */
- @import "./logistics.skeleton.wxss";
- page {
- background: #F8F8F8;
- }
- .logistics {
- padding: 24rpx;
- }
- .logisticsName {
- padding: 24rpx;
- background: white;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- }
- .name {
- font-weight: 500;
- font-size: 28rpx;
- color: #202020;
- line-height: 42rpx;
- }
- .dvyFlowId {
- font-weight: 400;
- font-size: 24rpx;
- color: #424242;
- line-height: 38rpx;
- }
- .dvyFlowId::after{
- content: "\eb4e";
- }
- .checkStep {
- background: white;
- padding: 24rpx;
- box-sizing: border-box;
- margin-top: 26rpx;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- }
- .stepItem {
- display: flex;
- flex-flow: row;
- align-items: flex-start;
- justify-content: space-between;
- }
- .stepItem .left {
- flex: 0 auto;
- align-self: stretch;
- /* height: 136rpx; */
- display: flex;
- flex-flow: column;
- text-align: center;
- align-items: center;
- margin-bottom: 4rpx;
- }
- .dashed {
- flex: 1;
- width: 1rpx;
- border-left: 1rpx dashed #D9D9D9;
- margin-top: 4rpx;
- }
- .icon-a-Check23 {}
- .stepItem .right {
- flex: 1;
- padding-left: 20rpx;
- }
- .checkName {
- font-weight: 500;
- font-size: 24rpx;
- color: #222222;
- line-height: 48rpx;
- }
- .checkDate {
- font-weight: 400;
- font-size: 20rpx;
- color: #A2A2A2;
- line-height: 36rpx;
- }
- .titleText {
- position: sticky !important;
- position: -webkit-sticky !important;
- top: 0;
- background: #FFFFFF;
- z-index: 9;
- }
|