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
| /* pages/deviceDetails/deviceDetails.wxss */
| .header {
| width: 100%;
| position: relative;
| }
|
| .header .type {
| position: absolute;
| top: 10px;
| left: 10px;
| color: #808080;
| }
|
| .header .main {
| width: 200px;
| height: 200px;
| border: 5px solid #007CFE;
| border-radius: 50%;
| margin-top: 30px;
| margin-left: calc(50% - 100px);
| }
| .header .main .info{
| padding-top: 30px;
| text-align: center;
| /* padding-left: 50px; */
| }
|
| .menu {
| width: 100%;
| display: flex;
| justify-content: space-around;
| /* flex-wrap: wrap; */
| }
|
| .menu .item {
| width: 25%;
| margin: 5px 0;
| text-align: center;
| color: #A1A2A4;
| }
|
|