1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* pages/history/history.wxss */
- page{
- font-weight: 600
- }
- .logo{
- position:fixed;
- top:0;
- left:0;
- width:100%;
- height:1334rpx;
- padding:0;
- margin: 0;
- z-index: 1;
- }
- .list{
- position: relative;
- z-index: 1000;
- margin: 10rpx 24rpx;
- }
- .list-item{
- height:120rpx;
- background:rgba(235,130,5,1);
- border-radius:24rpx;
- line-height: 120rpx;
- font-size:34rpx;
- font-family:PingFang SC;
- font-weight:bold;
- color:rgba(255,255,255,1);
- /* -webkit-text-stroke:3rpx #393939; */
- display: flex;
- justify-content: space-between;
- padding: 0 36rpx;
- margin-bottom: 20rpx;
- }
- .list-item-code{
- color:#3A2525;
- margin-right: 22rpx;
- }
- .list-item-right{
- width: 26rpx;
- height: 37rpx;
- margin: auto 0;
- position: relative;
- top: 7rpx;
- }
- .li-nodata{
- text-align: center;
- margin: 250rpx auto;
- }
- .li-nodata-img{
- width: 337rpx;
- height: 350rpx;
- }
|