1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* pages/mine/wxml/logistics/logistics.wxss */
- .container {
- background: #ececec;
- width: 100%;
- box-sizing: border-box;
- }
- .header{
- box-shadow: 0 0 30rpx rgba(0, 0, 0, 0.3);
- width: 95%;
- padding: 20rpx;
- background: #fff;
- position: relative;
- margin: 20rpx;
- border-radius: 20rpx;
- overflow: hidden;
- box-sizing: border-box;
- font-size: 32rpx;
- }
- .weui-cell-third{
- width: 100%;
- background: #fff;
- padding: 20rpx 0;
- }
- .weui-cell-list{
- background: #fff;
- margin: 5px 30px;
- }
- .weui-cell-line{
- /* width: 100px; */
- margin-left: 10px;
- border-left: 1px solid #ddd;
- background: #fff
- }
- .weui-cell-circle{
- border: 1px solid #000;
- border-radius: 50%;
- width: 20px;
- height: 20px;
- border-color: #888;
- }
- .weui-cell-time{
- font-size:30rpx;
- padding-left: 15px;
- color: red;
-
- }
- .weui-cell-event{
- padding: 15px;
- font-size:30rpx;
- line-height: 50rpx;
- }
|