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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
| .me-item {
| display: flex;
| padding: 2vh;
| box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
| }
|
| .me-item-icon {
| width: 10vh;
| height: 10vh;
| border-radius: 100%;
| }
| .userinfo-avatar{
| overflow:hidden;
| display: block;
| width: 10vh;
| height: 10vh;
| border-radius: 50%;
| }
| .me-item-name {
| padding-left: 2vh;
| flex-direction: column;
| display: flex;
| justify-content: center;
| margin-right: auto;
| }
|
| .me-item-logo {
| height: 10vh;
| width: 20vh;
| }
|
| .me-item-name-top {
| font-size: 16px;
| color: #1790ff;
| margin-bottom: 2vh;
| }
|
| .me-item-name-bottom {
| font-size: 14px;
| color: #979ca2;
| }
|
| .me-business {
| display: flex;
| flex-direction: column;
| box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
| }
|
| .me-business-nav {
| flex: auto;
| padding: 2vh;
| display: flex;
| align-items: center;
| border-bottom: 1px solid #f2f2f2;
| }
|
| .me-business-icon {
| width: 5vh;
| height: 5vh;
| padding-right: 2vh;
| }
|
| .me-business-right-icon {
| width: 3vh;
| height: 3vh;
| }
|
| .me-business-title {
| margin-right: auto;
| font-size: 16px;
| }
|
| .me-business-list {
| padding: 2vh;
| font-size: 14px;
| }
|
| .me-business-list-row {
| display: flex;
| justify-content: space-between;
| }
|
| .me-business-info {
| width: 25px;
| height: 25px;
| background: red;
| -moz-border-radius: 50px;
| -webkit-border-radius: 50px;
| border-radius: 50px;
| text-align: center;
| color: #fff;
| line-height:25px;
|
| }
|
| .me-business-list-left {
| }
|
| .me-business-list-right {
| }
|
|