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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/* 1 define color */
/*white*/
/*gray*/
/*gray*/
/*gray tr even background-color*/
/*gray*/
/*orange:business-unit tr selected*/
/* org view ui color deep*/
/* org view ui color light*/
/* 红色系列 */
/* 橙色系列 PWC标准色 */
.highlight-tag {
color: #ed6e3c !important;
}
.no-permission {
cursor: not-allowed;
color: #333333;
}
.no-permission a {
cursor: not-allowed;
color: #333333;
text-decoration: none;
}
.ellipsis {
white-space: nowrap !important;
-ms-text-overflow: ellipsis !important;
-o-text-overflow: ellipsis !important;
text-overflow: ellipsis !important;
overflow-x: hidden !important;
}
/*dx 控件颜色设置*/
.dx-treeview .dx-treeview-node:not(dx-treeview-item-with-checkbox).dx-state-focused > .dx-treeview-item {
background-color: #f16100 !important;
}
.dx-treeview .dx-treeview-node:not(.dx-treeview-item-with-checkbox).dx-state-selected > .dx-treeview-item {
background-color: #f16100 !important;
color: #fff;
}
.admin-home-page {
height: 100%;
width: 100%;
background-color: #ffffff;
padding: 0px 15% 0px 5%;
}
.admin-home-page .center-title {
height: 20%;
text-align: center;
font-family: 'Microsoft YaHei Bold', 'Microsoft YaHei Regular', 'Microsoft YaHei';
padding: 5%;
}
.admin-home-page .import-title {
font-size: 14px;
margin: 0 auto;
margin-top: 20px;
margin-bottom: 10px;
}
.admin-home-page .modules {
padding: 60px;
margin: auto;
width: 100%;
height: 40%;
/* .menu-width{
width: 160px;
}*/
}
.admin-home-page .modules .active {
background-color: #F2F2F2;
}
.admin-home-page .modules .first-module {
width: 32%;
display: inline-block;
text-align: center;
vertical-align: middle;
padding: 40px;
}
.admin-home-page .modules .first-module .menu-wrapper .img {
padding: 10px;
}
.admin-home-page .modules .popover.bottom > .arrow:after {
border-bottom-color: #E4E4E4;
}
.admin-home-page .modules .popover {
background-color: #E4E4E4;
}
.admin-home-page .modules a {
text-decoration: none;
}
.admin-home-page .second-menu-wrapper .second-menu {
display: inline-block;
padding: 30px;
text-align: center;
vertical-align: middle;
max-width: 600px;
}
.admin-home-page .second-menu-wrapper .second-menu i {
font-size: 26px;
color: #F74C34;
}
.admin-home-page .second-menu-wrapper .second-menu a {
text-decoration: none;
color: black;
}
.admin-home-page .second-menu-wrapper .second-menu .circle {
height: 50px;
width: 50px;
border-radius: 50%;
padding: 12px;
display: inline-block;
background-color: white;
margin-bottom: 20px;
}
.admin-home-page .modal-footer {
padding-left: 104px;
}
.admin-home-page #importBasicData {
z-index: 9999;
}
.admin-home-page #importBasicData label {
font-weight: normal;
width: 103px;
}
.admin-home-page #importBasicData .col-sm-3,
.admin-home-page #importBasicData .col-sm-6 {
padding-left: 0px;
}
.admin-home-page #importBasicData .form-group {
margin-left: -16px;
}
.admin-home-page #importBasicData .import-result {
overflow: auto;
max-height: 240px;
font-size: 13px;
word-wrap: normal;
white-space: nowrap;
text-align: left;
line-height: 25px;
border: 1px solid #d4d4d4;
border-radius: 5px;
}
.admin-home-page #importBasicData .glyphicon.spinning {
animation: spin 1s infinite linear;
-webkit-animation: spin2 1s infinite linear;
}
.admin-home-page #importBasicData .import-progress {
margin-left: 30px;
vertical-align: middle;
font-size: 26px;
}
@keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}
@-webkit-keyframes spin2 {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}