1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* pages/advancerecord/index.wxss */
- .time_information {
- background: #fff;
- height: auto;
- border-radius: 15rpx;
- }
- .ul .li {
- width: 100%;
- line-height: 70rpx;
- height: 70rpx;
- border-bottom: 3rpx solid #efeff7;
- }
- .details {
- width: 95%;
- margin: 0 auto;
- font-size: 30rpx;
- color: #969696;
- }
- .details text:nth-of-type(1){
- float: left
- }
- .details text:nth-of-type(2){
- float: right;
- text-align: right;
- }
- .red{
- color: red;
- }
- .ul .li:nth-last-of-type(1){
- border: none;
- }
- .delivery{
- width: 300rpx;
- height: 70rpx;
- line-height: 70rpx;
- background: #63576c;
- margin: 0 auto;
- text-align: center;
- color: #fff;
- position: relative;
- top: 50rpx;
- }
- .alreadydelivered{
- width: 300rpx;
- height: 70rpx;
- line-height: 70rpx;
- background: #DBD7D7;
- margin: 0 auto;
- text-align: center;
- color: #A9A8A8;
- position: relative;
- top: 50rpx;
-
- }
- .time{
- margin:0 auto;
- width:94%;
- font-size: 25rpx;
- position: relative;
- top: 30rpx;
- text-align: right;
- color: #ccc;
- }
|