index.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ::v-deep .u-loading-page{
  2. position: relative!important;
  3. z-index: 999999999!important;
  4. // background: red;
  5. }
  6. ::v-deep .u-loading-page__warpper__loading-icon__img{
  7. width: 150rpx!important;
  8. height: 150rpx!important;
  9. }
  10. .content{
  11. background: #F1F1F1;
  12. min-height:calc(100vh - 200rpx) ;
  13. padding: 0 32rpx;
  14. padding-top: 24rpx;
  15. padding-bottom: 24rpx;
  16. .item{
  17. // height: 432rpx;
  18. background: #FFFFFF;
  19. border-radius: 0rpx 24rpx 0rpx 24rpx;
  20. // margin-top: 24rpx;
  21. padding: 0 24rpx;
  22. display: flex;
  23. flex-direction: column;
  24. // justify-content: space-around;
  25. margin-bottom: 24rpx;
  26. .line:last-child{
  27. border-bottom: none;
  28. }
  29. .line{
  30. display: flex;
  31. justify-content:space-between;
  32. align-items: center;
  33. border-bottom:2rpx solid #E6E6E6 ;
  34. height: 140rpx;
  35. .left{
  36. font-size: 32rpx;
  37. font-family: PingFang-SC-Bold, PingFang-SC;
  38. font-weight: bold;
  39. color: #333333;
  40. }
  41. .right{
  42. font-size: 32rpx;
  43. font-family: PingFang-SC-Medium, PingFang-SC;
  44. font-weight: 500;
  45. color: #333333;
  46. display: flex;
  47. align-items: center;
  48. .avatar{
  49. width: 100rpx;
  50. height: 100rpx;
  51. border-radius: 50%;
  52. margin-right: 20rpx;
  53. }
  54. .arr{
  55. width: 14rpx;
  56. height: 24rpx;
  57. }
  58. }
  59. }
  60. }
  61. }