history.wxss 866 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* pages/history/history.wxss */
  2. page{
  3. font-weight: 600
  4. }
  5. .logo{
  6. position:fixed;
  7. top:0;
  8. left:0;
  9. width:100%;
  10. height:1334rpx;
  11. padding:0;
  12. margin: 0;
  13. z-index: 1;
  14. }
  15. .list{
  16. position: relative;
  17. z-index: 1000;
  18. margin: 10rpx 24rpx;
  19. }
  20. .list-item{
  21. height:120rpx;
  22. background:rgba(235,130,5,1);
  23. border-radius:24rpx;
  24. line-height: 120rpx;
  25. font-size:34rpx;
  26. font-family:PingFang SC;
  27. font-weight:bold;
  28. color:rgba(255,255,255,1);
  29. /* -webkit-text-stroke:3rpx #393939; */
  30. display: flex;
  31. justify-content: space-between;
  32. padding: 0 36rpx;
  33. margin-bottom: 20rpx;
  34. }
  35. .list-item-code{
  36. color:#3A2525;
  37. margin-right: 22rpx;
  38. }
  39. .list-item-right{
  40. width: 26rpx;
  41. height: 37rpx;
  42. margin: auto 0;
  43. position: relative;
  44. top: 7rpx;
  45. }
  46. .li-nodata{
  47. text-align: center;
  48. margin: 250rpx auto;
  49. }
  50. .li-nodata-img{
  51. width: 337rpx;
  52. height: 350rpx;
  53. }