wupengfei
6 天以前 14368e8a09c4b5793d0975f85e36a4c1d410ca36
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
49
@import '@/styles/common.scss';
 
// .mine-page-wrapper {
//   background-color: $body-background-color;
// }
 
.index-page-wrapper {
  .home-page-bg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
 
.mine-page-top-view {
  display: flex;
  padding: 36px 36px 64px;
 
  .mine-avatar {
    width: 176px;
    height: 176px;
    object-fit: cover;
    margin-right: 36px;
  }
 
  .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 {
  border-radius: 20px;
}