index.module.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .headImg {
  2. display: flex;
  3. }
  4. .tabs {
  5. margin-top: -42px;
  6. :global {
  7. .van-tabs__wrap {
  8. height: 42px;
  9. }
  10. .van-tabs__nav {
  11. background-color: rgba(0, 0, 0, 0.68);
  12. backdrop-filter: blur(10px);
  13. -webkit-backdrop-filter: blur(10px);
  14. }
  15. .van-tabs__line {
  16. background-color: transparent !important;
  17. height: 0;
  18. width: 0;
  19. border: 8px solid transparent;
  20. border-bottom-color: #fff;
  21. border-radius: 0;
  22. }
  23. .van-empty__image {
  24. width: 100px;
  25. height: 114px;
  26. }
  27. }
  28. }
  29. .tabContent {
  30. position: relative;
  31. padding: 12px;
  32. box-sizing: border-box;
  33. overflow-y: auto;
  34. }
  35. .itemContent {
  36. padding: 12px;
  37. border-radius: 12px;
  38. background-color: #fff;
  39. min-height: 100%;
  40. box-sizing: border-box;
  41. }
  42. .item {
  43. display: flex;
  44. padding: 10px 0;
  45. box-sizing: border-box;
  46. align-items: center;
  47. .left {
  48. width: 32px;
  49. margin: 0 21px 0 2px;
  50. text-align: center;
  51. font-weight: bold;
  52. }
  53. .center {
  54. display: flex;
  55. align-items: center;
  56. }
  57. .right {
  58. margin-left: auto;
  59. text-align: right;
  60. .fraction {
  61. font-size: 14px;
  62. font-weight: 600;
  63. color: #fa6400;
  64. margin-bottom: 4px;
  65. }
  66. .time {
  67. font-size: 12px;
  68. color: #999;
  69. }
  70. }
  71. &:first-child {
  72. padding-top: 0;
  73. border-bottom: 1px solid #eee;
  74. }
  75. &:last-child {
  76. padding-bottom: 0;
  77. }
  78. .user {
  79. margin-left: 6px;
  80. .userContent{
  81. display: flex;
  82. align-items: center;
  83. margin-bottom: 4px;
  84. }
  85. .name {
  86. font-size: 15px;
  87. color: #333;
  88. margin-right: 6px;
  89. }
  90. .tag {
  91. font-size: 12px;
  92. background-color: #ffe2b2;
  93. color: #ff8c00;
  94. border-radius: 4px;
  95. margin-right: 4px;
  96. padding: 1px 2px;
  97. }
  98. .times{
  99. font-size: 12px;
  100. color: #999;
  101. }
  102. }
  103. }