Newer
Older
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
page-block-list {
.item{
// height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: left;
box-sizing: border-box;
padding: 10px 0 10px 15px;
}
.contact-icon{
font-size: 30px;
color: #81afe8;
margin-right: 15px;
}
.icon-span{
text-align: center;
background-color: #eeeeee;
display: inline-block;
width: 35px;
height: 35px;
margin-right: 10px;
border-radius: 2px;
}
.add-icon-contact{
font-weight: 600;
color: #fff;
font-size: 48px;
line-height: 35px;
}
.contact-title{
font-size: 18px;
}
.item-border{
border-bottom: 1px solid #cccccc;
padding-bottom: 10px;
}
.wait{
width: 100%;
height: 100%;
}
.back-btn{
width: 30px;
height: 30px;
}
.input{
height: 38px;
border: 1px solid #ddd;
width: 80%;
border-radius: 5px;
padding: 1px 5px;
}
}