zhengyiming
2025-02-26 c092d3b86a223e279ccf57be27d8f1eb315de089
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@import '@/styles/common.scss';
 
// .mine-page-wrapper {
//   background-color: $body-background-color;
// }
 
.mine-page-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 750px;
  height: 434px;
  object-fit: cover;
}
 
.mine-page-top-view {
  display: flex;
  padding: 30px 20px;
  margin-top: 30px;
 
  .mine-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-right: 30px;
  }
 
  .user-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
 
    .user-info-name {
      font-size: 36px;
      font-weight: bold;
      color: boleGetCssVar('text-color', 'primary');
      flex: 1;
      min-width: 0;
      @include ellipsis;
    }
  }
}
 
.mine-list-wrapper {
  margin-top: 60px;
}