DESKTOP-GJP2N7J\lx
2023-08-11 49cd08187c9c49df199a954bd0a5a5bca40f8f1a
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
@import url(../../assets/font/font.css);
 
.flex {
  display: flex;
}
.flex-item {
  flex-shrink: 0;
}
.flex-main {
  flex: auto;
}
 
.panel {
  display: flex;
  padding: 0 .1rem .1rem .1rem;
  flex-direction: column;
  .panel-header {
    flex-shrink: 0;
    width: 4.4rem;
    height: 4.4vh;
    line-height: 4.4vh;
    font-size: .2rem;
    padding-left: .34rem;
    background-image: url('../../image/screen/bg_title.png');
    background-size: 100% 100%;
    margin-bottom: .24rem;
    // font-family: screen-font;
    font-weight: 400;
    color: #FFFFFF;
  }
  .panel-body {
    flex: auto;
    display: flex;
    align-items: center;
    align-content: center;
  }
}