index.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  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. display: flex;
  156. -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  157. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  158. position: absolute;
  159. top: 50%;
  160. left: 50%;
  161. transform: translate(-50%, -50%);
  162. background-color: #fff;
  163. border-radius: 3px;
  164. width: 50em;
  165. }
  166. .loginPage .logo {
  167. background: linear-gradient(180deg, #3949ab, #2962ff);
  168. flex: 1;
  169. align-items: center;
  170. background: linear-gradient(180deg, #3949ab, #2962ff);
  171. border-radius: 6px 0 0 6px;
  172. flex-direction: column;
  173. justify-content: center;
  174. color: #fff;
  175. font-size: 18px;
  176. display: flex;
  177. }
  178. .loginPage .form {
  179. flex: 1;
  180. padding: 1em;
  181. }
  182. .loginPage .loginItem .login-head {
  183. text-align: center;
  184. }
  185. .loginPage .loginItem .loca-input {
  186. border-width: 0;
  187. border-bottom-width: 1px;
  188. border-radius: 0;
  189. -webkit-box-shadow: none;
  190. box-shadow: none;
  191. }
  192. /* skeleton */
  193. .skeleton {
  194. width: 100%;
  195. max-width: 1200px;
  196. margin: 0 auto;
  197. height: 100%;
  198. background-color: #e9e9eb;
  199. }
  200. .skeleton .rightBody {
  201. padding: 5px;
  202. }
  203. .skeleton .leftBody {
  204. width: 10%;
  205. min-width: 200px;
  206. max-width: 350px;
  207. color: #333;
  208. font-size: 16px;
  209. background-color: #fff;
  210. }
  211. .skeleton .proName {
  212. margin: 0;
  213. padding: 20px 0 20px 30px;
  214. }
  215. .skeleton .proName img {
  216. width: 100%;
  217. }
  218. .skeleton .leftBody .menu {
  219. overflow-y: auto;
  220. }
  221. .skeleton .leftBody .menu .menuLi {
  222. padding-left: 30px;
  223. height: 60px;
  224. line-height: 60px;
  225. cursor: default;
  226. position: relative;
  227. }
  228. .skeleton .leftBody .menu .menuLi:hover,
  229. .skeleton .leftBody .menu .menuLiAct {
  230. background-color: #1989fa;
  231. color: #f2f6fc;
  232. }
  233. .skeleton .leftBody .menu .icon,
  234. .skeleton .leftBody .title .icon {
  235. position: absolute;
  236. width: 16px;
  237. right: .5em;
  238. top: 22px;
  239. cursor: pointer;
  240. }
  241. .skeleton .leftBody .title .icon {
  242. top: 13px;
  243. }
  244. .skeleton .title {
  245. font-size: 12px;
  246. color: #aaa;
  247. padding: 5px 0 3px 5px;
  248. position: relative;
  249. margin-bottom: 5px;
  250. border-bottom: 1px solid #aaa;
  251. }
  252. .skeleton .rightBody .skeleton-header {
  253. margin-bottom: 10px;
  254. display: flex;
  255. }
  256. .skeleton .rightBody .userArea {
  257. background-color: #fff;
  258. margin: -5px -5px 5px -5px;
  259. color: #333;
  260. text-align: right;
  261. padding-right: 1em;
  262. }
  263. .skeleton .rightBody .userArea .btn:hover {
  264. color: #fff;
  265. }
  266. .skeleton .rightBody .userArea .user {
  267. cursor: default;
  268. }
  269. .skeleton .rightBody .skeleton-header .allItem {
  270. background-color: #fff;
  271. flex: 1;
  272. margin: 3px;
  273. border: 1px solid #eee;
  274. padding: 5px 5px 5px 10px;
  275. }
  276. .skeleton .rightBody .skeleton-header .allItem .itemValue {
  277. font-weight: 600;
  278. font-size: 22px;
  279. }
  280. .skeleton .rightBody .skeleton-header .allItem .itemKey {
  281. font-weight: 500;
  282. }
  283. .skeleton .rightBody .skeleton-header .allItem .labelStyle {
  284. height: 60px;
  285. border-radius: 6px;
  286. width: 6px;
  287. overflow: hidden;
  288. background-color: #c0c4cc;
  289. position: relative;
  290. }
  291. .skeleton .rightBody .skeleton-header .allItem .locakProgress {
  292. width: 100%;
  293. background-color: #66b1ff;
  294. position: absolute;
  295. bottom: 0;
  296. }
  297. .skeleton .rightBody .skeleton-body {
  298. width: 100%;
  299. height: calc(100% - 44px);
  300. overflow-y: auto;
  301. }
  302. .skeleton .iframe{
  303. border: 1em solid #000;
  304. background-color: #fff;
  305. border-radius: 5px;
  306. width: 400px;
  307. height: 720px;
  308. margin: 20px auto;
  309. }
  310. .loading span:nth-child(2) {
  311. -webkit-animation-delay: 0.2s;
  312. animation-delay: 0.2s;
  313. }
  314. .loading span:nth-child(3) {
  315. -webkit-animation-delay: 0.4s;
  316. animation-delay: 0.4s;
  317. }
  318. .loading span:nth-child(4) {
  319. -webkit-animation-delay: 0.6s;
  320. animation-delay: 0.6s;
  321. }
  322. .loading span:nth-child(5) {
  323. -webkit-animation-delay: 0.8s;
  324. animation-delay: 0.8s;
  325. }
  326. /* 页面访问 */
  327. .pageAccess {
  328. padding: 1em;
  329. background-color: #fff;
  330. overflow-y: scroll;
  331. }