index.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .float-but {
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. width: 120rpx;
  10. height: 120rpx;
  11. background-color: var(--assist);
  12. border-radius: 50%;
  13. color: #ffffff;
  14. transform: translate(-50%, -50%);
  15. }
  16. .history {
  17. background-color: #F4F5F7;
  18. .item {
  19. width: 100vw;
  20. padding: 20rpx 30rpx;
  21. box-sizing: border-box;
  22. background-color: #ffffff;
  23. margin: 10rpx 0;
  24. .time {
  25. height: 40rpx;
  26. line-height: 40rpx;
  27. font-size: 28rpx;
  28. color: #333333;
  29. }
  30. .location {
  31. margin-top: 10rpx;
  32. .iconfont {
  33. margin-right: 4rpx;
  34. }
  35. line-height: 34rpx;
  36. font-size: 24rpx;
  37. color: #666666;
  38. }
  39. .exp {
  40. line-height: 34rpx;
  41. font-size: 24rpx;
  42. color: #999999;
  43. margin-top: 10rpx;
  44. }
  45. .user {
  46. height: 64rpx;
  47. margin-top: 12rpx;
  48. display: flex;
  49. .portrait {
  50. width: 64rpx;
  51. height: 64rpx;
  52. font-size: 0;
  53. border-radius: 50rpx;
  54. margin-right: 10rpx;
  55. overflow: hidden;
  56. image {
  57. width: 100%;
  58. height: 100%;
  59. }
  60. .text {
  61. width: 100%;
  62. height: 100%;
  63. line-height: 64rpx;
  64. text-align: center;
  65. background: #F0F3FF;
  66. font-size: 24rpx;
  67. font-family: PingFang SC-Regular, PingFang SC;
  68. color: #3874F6;
  69. }
  70. }
  71. .main {
  72. flex: 1;
  73. .name {
  74. height: 34rpx;
  75. line-height: 34rpx;
  76. font-size: 24rpx;
  77. color: #333333;
  78. }
  79. .text {
  80. height: 28rpx;
  81. line-height: 28rpx;
  82. font-size: 20rpx;
  83. color: #999999;
  84. margin-top: 2rpx;
  85. }
  86. }
  87. }
  88. }
  89. }
  90. .attachment {
  91. .label {
  92. display: flex;
  93. justify-content: space-between;
  94. line-height: 34rpx;
  95. font-size: 24rpx;
  96. font-family: PingFang SC-Regular, PingFang SC;
  97. color: #333333;
  98. margin-top: 20rpx;
  99. navigator {
  100. color: #3874F6;
  101. padding-left: 20rpx;
  102. }
  103. }
  104. }