index.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. font-weight: 400;
  5. }
  6. *::-webkit-scrollbar {
  7. /*滚动条整体样式*/
  8. width: 5px;
  9. /*高宽分别对应横竖滚动条的尺寸*/
  10. height: 1px;
  11. }
  12. *::-webkit-scrollbar-thumb {
  13. /*滚动条里面小方块*/
  14. border-radius: 10px;
  15. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  16. background: #535353;
  17. }
  18. *::-webkit-scrollbar-track {
  19. /*滚动条里面轨道*/
  20. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  21. border-radius: 10px;
  22. background: #ededed;
  23. }
  24. html,
  25. body {
  26. height: 100vh;
  27. width: 100%;
  28. font-weight: 400;
  29. background-color: #dfdfdf;
  30. overflow: hidden;
  31. position: relative;
  32. top: 0;
  33. left: 0;
  34. right: 0;
  35. bottom: 0;
  36. }
  37. .animated {
  38. -webkit-animation-duration: 1s;
  39. animation-duration: 1s;
  40. -webkit-animation-fill-mode: both;
  41. animation-fill-mode: both;
  42. }
  43. .animated .infinite {
  44. -webkit-animation-iteration-count: infinite;
  45. animation-iteration-count: infinite;
  46. }
  47. @-webkit-keyframes fadeOutRightBig {
  48. 0% {
  49. opacity: 1;
  50. -webkit-transform: translateX(0);
  51. transform: translateX(0);
  52. }
  53. 100% {
  54. opacity: 0;
  55. -webkit-transform: translateX(2000px);
  56. transform: translateX(2000px);
  57. }
  58. }
  59. @keyframes fadeOutRightBig {
  60. 0% {
  61. opacity: 1;
  62. -webkit-transform: translateX(0);
  63. -ms-transform: translateX(0);
  64. transform: translateX(0);
  65. }
  66. 100% {
  67. opacity: 0;
  68. -webkit-transform: translateX(2000px);
  69. -ms-transform: translateX(2000px);
  70. transform: translateX(2000px);
  71. }
  72. }
  73. .fadeOutRightBig {
  74. -webkit-animation-name: fadeOutRightBig;
  75. animation-name: fadeOutRightBig;
  76. }
  77. .item_big {
  78. display: flex;
  79. justify-content: space-between;
  80. background-color: #fff;
  81. }
  82. .item_big .labelStyle,
  83. .item_big .valueStyle {
  84. line-height: 30px;
  85. }
  86. .item_big .labelStyle {
  87. flex-shrink: 0;
  88. font-size: 16px;
  89. }
  90. .item_big .valueStyle {
  91. flex-grow: 1;
  92. }
  93. /* 通用表格 */
  94. .localtable {
  95. margin-top: 30px;
  96. overflow: hidden;
  97. border: 1px solid #eee;
  98. border-radius: 3px;
  99. }
  100. .localtable table {
  101. margin: 0;
  102. border: none;
  103. }
  104. .localtable thead .deepBlue {
  105. background-color: #6699cc;
  106. }
  107. .localtable tbody tr:not(:last-child) {
  108. border-bottom: 1px solid #eee;
  109. }
  110. .localtable thead {
  111. background-color: #53a8ff;
  112. color: #fff;
  113. }
  114. .localtable .oddRow {
  115. background-color: #e9e9eb;
  116. }
  117. .localtable td {
  118. text-align: center;
  119. }
  120. /* 页码 */
  121. .localnavigation .selectPage a:focus,
  122. .localnavigation .selectPage a:focus,
  123. .localnavigation .selectPage a {
  124. color: #fff;
  125. background-color: #1989fa;
  126. }
  127. /* 登录 */
  128. .loginPage {
  129. height: 100%;
  130. width: 100%;
  131. position: relative;
  132. overflow-y: scroll;
  133. }
  134. #local-alert {
  135. position: absolute;
  136. -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  137. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  138. background-color: #fdf6ec;
  139. color: #e6a23c;
  140. border: 1px solid #faecd8;
  141. padding: 0 1em;
  142. min-width: 300px;
  143. height: 56px;
  144. border-radius: 5px;
  145. line-height: 56px;
  146. font-size: 16px;
  147. right: 1em;
  148. top: 0.5em;
  149. }
  150. #local-alert i {
  151. margin-right: 3px;
  152. display: inline-block;
  153. }
  154. .loginPage .loginItem {
  155. float: right;
  156. height: 100vh;
  157. display: flex;
  158. background-color: #fff;
  159. width: 494px;
  160. }
  161. .loginPage {
  162. background: url("https://dangjian-web.oss-cn-chengdu.aliyuncs.com/img/sjgj/login_bg.png")
  163. no-repeat;
  164. background-size: 100% 100%;
  165. }
  166. .loginPage .form {
  167. flex: 1;
  168. padding: 1em;
  169. padding-top: 100px;
  170. }
  171. .loginPage .loginItem .login-head {
  172. text-align: center;
  173. height: 34px;
  174. font-size: 35px;
  175. font-weight: bold;
  176. color: #049aef;
  177. line-height: 160px;
  178. }
  179. .loginPage .loginItem .input-group {
  180. margin: 0 70px;
  181. }
  182. .loginPage .loginItem .input-group .input-group-addon {
  183. border-top-left-radius: 2em;
  184. border-bottom-left-radius: 2em;
  185. background-color: rgba(0, 0, 0, 0);
  186. border-right: none;
  187. border-color: #049aef;
  188. }
  189. .loginPage .loginItem .input-group .form-control {
  190. border-top-right-radius: 2em;
  191. border-bottom-right-radius: 2em;
  192. border-left: none;
  193. border-color: #049aef;
  194. }
  195. .loginPage .loginItem .loca-input {
  196. border-width: 0;
  197. border-bottom-width: 1px;
  198. border-radius: 0;
  199. -webkit-box-shadow: none;
  200. box-shadow: none;
  201. }
  202. /* skeleton */
  203. .skeleton {
  204. width: 100%;
  205. max-width: 1200px;
  206. margin: 0 auto;
  207. height: 100%;
  208. background-color: #e9e9eb;
  209. }
  210. .skeleton .rightBody {
  211. padding: 5px;
  212. }
  213. .skeleton .leftBody {
  214. width: 10%;
  215. min-width: 200px;
  216. max-width: 350px;
  217. color: #333;
  218. font-size: 16px;
  219. background-color: #fff;
  220. }
  221. .skeleton .proName {
  222. margin: 0;
  223. padding: 20px 0 20px 30px;
  224. }
  225. .skeleton .proName img {
  226. width: 100%;
  227. }
  228. .skeleton .leftBody .menu {
  229. overflow-y: auto;
  230. }
  231. .skeleton .leftBody .menu .menuLi {
  232. padding-left: 30px;
  233. padding-right: 30px;
  234. height: 60px;
  235. line-height: 60px;
  236. cursor: default;
  237. position: relative;
  238. overflow: hidden;
  239. }
  240. .skeleton .leftBody .menu .menuliText {
  241. white-space: nowrap; /*设置不折行*/
  242. text-overflow: ellipsis; /*这就是省略号喽*/
  243. -o-text-overflow: ellipsis; /*兼容opera*/
  244. overflow: hidden; /*设置超过的隐藏*/
  245. }
  246. .skeleton .leftBody .menu .menuLi:hover,
  247. .skeleton .leftBody .menu .menuLiAct {
  248. background-color: #1989fa;
  249. color: #f2f6fc;
  250. }
  251. .skeleton .leftBody .menu .icon,
  252. .skeleton .leftBody .title .icon {
  253. position: absolute;
  254. width: 16px;
  255. right: 0.5em;
  256. top: 22px;
  257. cursor: pointer;
  258. }
  259. .skeleton .leftBody .title .icon {
  260. top: 13px;
  261. }
  262. .skeleton .title {
  263. font-size: 12px;
  264. color: #aaa;
  265. padding: 5px 0 3px 5px;
  266. position: relative;
  267. margin-bottom: 5px;
  268. border-bottom: 1px solid #aaa;
  269. }
  270. .skeleton .rightBody .skeleton-header {
  271. margin-bottom: 10px;
  272. display: flex;
  273. }
  274. .skeleton .rightBody .userArea {
  275. background-color: #fff;
  276. margin: -5px -5px 5px -5px;
  277. color: #333;
  278. text-align: right;
  279. padding-right: 1em;
  280. }
  281. .skeleton .rightBody .userArea .btn:hover {
  282. color: #fff;
  283. }
  284. .skeleton .rightBody .userArea .user {
  285. cursor: default;
  286. }
  287. .skeleton .rightBody .skeleton-header .allItem {
  288. background-color: #fff;
  289. flex: 1;
  290. margin: 3px;
  291. border: 1px solid #eee;
  292. padding: 5px 5px 5px 10px;
  293. }
  294. .skeleton .rightBody .skeleton-header .allItem .itemValue {
  295. font-weight: 600;
  296. font-size: 22px;
  297. }
  298. .skeleton .rightBody .skeleton-header .allItem .itemKey {
  299. font-weight: 500;
  300. }
  301. .skeleton .rightBody .skeleton-header .allItem .labelStyle {
  302. height: 60px;
  303. border-radius: 6px;
  304. width: 6px;
  305. overflow: hidden;
  306. background-color: #c0c4cc;
  307. position: relative;
  308. }
  309. .skeleton .rightBody .skeleton-header .allItem .locakProgress {
  310. width: 100%;
  311. background-color: #66b1ff;
  312. position: absolute;
  313. bottom: 0;
  314. }
  315. .skeleton .rightBody .skeleton-body {
  316. width: 100%;
  317. height: calc(100% - 44px);
  318. overflow-y: auto;
  319. }
  320. .skeleton .iframe {
  321. /* border: 1px solid #000; */
  322. background-color: #fff;
  323. border-radius: 5px;
  324. /* width: 500px; */
  325. height: 100%;
  326. padding: 3px;
  327. margin: 0 auto;
  328. }
  329. .loading span:nth-child(2) {
  330. -webkit-animation-delay: 0.2s;
  331. animation-delay: 0.2s;
  332. }
  333. .loading span:nth-child(3) {
  334. -webkit-animation-delay: 0.4s;
  335. animation-delay: 0.4s;
  336. }
  337. .loading span:nth-child(4) {
  338. -webkit-animation-delay: 0.6s;
  339. animation-delay: 0.6s;
  340. }
  341. .loading span:nth-child(5) {
  342. -webkit-animation-delay: 0.8s;
  343. animation-delay: 0.8s;
  344. }
  345. /* 页面访问 */
  346. .pageAccess {
  347. padding: 1em;
  348. background-color: #fff;
  349. overflow-y: scroll;
  350. }