user-side-bar.css
2.27 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*user-side-bar.css*/
.case-manage-wrap {
position: relative;
width: 100%;
height: auto;
background-color: #f9f9f9;
border-top: 4px solid #1287cd;
color: #646464;
}
.case-manage-wrap .content {
position: relative;
width: 1000px;
height: auto;
margin: 0 auto;
}
.location-wrap {
position: relative;
height: 40px;
line-height: 40px;
font-size: 12px;
}
.row-right {
display: inline-block;
width: 5px;
height: 1em;
background-image: url(/img/case-manage-icon-colle.png);
background-repeat: no-repeat;
background-position: 0 4px;
}
.location-wrap span {
cursor: pointer;
}
.location-wrap span.current {
color: #1282cd;
}
.main-wrap {
overflow: hidden;
margin-bottom: 100px;
}
.side-nav {
position: relative;
width: 170px;
height: auto;
background-color: #ffffff;
float: left;
}
.user-info {
width: inherit;
height: 140px;
}
.head-ico {
position: relative;
width: 60px;
height: 60px;
background-image: url(/img/default-head-ico.png);
margin: 0 auto;
margin-top: 20px;
cursor: pointer;
-o-border-radius: 100%;
-webkit-border-radius: 100%;
-ms-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
overflow: hidden;
}
.head-ico:hover{
-o-box-shadow: 0px 0px 5px 0px;
-webkit-box-shadow: 0px 0px 5px 0px;
-ms-box-shadow: 0px 0px 5px 0px;
-moz-box-shadow: 0px 0px 5px 0px;
box-shadow: 0px 0px 5px 0px;
}
.user-phone {
text-align: center;
}
.edit-btn {
position: relative;
width: 50px;
height: 20px;
line-height: 20px;
text-align: center;
background-color: #f97c5f;
color: #fff;
margin: 0 auto;
font-size: 14px;
-webkit-border-radius: 16px;
-o-border-radius: 16px;
-moz-border-radius: 16px;
-ms-border-radius: 16px;
border-radius: 16px;
cursor: pointer;
}
.user-side-bar li {
height: 50px;
line-height: 50px;
text-align: center;
border-bottom: 1px dotted #a0a0a0;
font-size: 14px;
cursor: pointer;
}
.user-side-bar li:first-child {
border-top: 1px dotted #a0a0a0;
}
.user-side-bar li:last-child {
border-bottom: none;
}
.user-side-bar .side-nav-selected {
color: #1287cd;
border-bottom: 1px dotted #1287cd;
}