style.css 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. html,body{
  2. width: 100%;
  3. height: 100%;
  4. font-family: "微软雅黑";
  5. overflow: hidden;
  6. background: url(../../images/hardware/pad/index_bg.jpg) center center no-repeat;
  7. background-size:100% 100%;
  8. }
  9. a:link {
  10. text-decoration: none
  11. }
  12. a:visited {
  13. text-decoration: none
  14. }
  15. a:hover {
  16. color: #fff;
  17. text-decoration: none;
  18. }
  19. a:active {
  20. text-decoration: none;
  21. }
  22. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  23. a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
  24. small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
  25. fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
  26. article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
  27. time, mark, audio, video, input {
  28. margin: 0;
  29. padding: 0;
  30. border: none;
  31. outline: 0;
  32. vertical-align: baseline;
  33. }
  34. html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
  35. -webkit-text-size-adjust: none;
  36. }
  37. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  38. display: block;
  39. }
  40. ol, ul {
  41. list-style: none;
  42. }
  43. textarea, input {
  44. border: 0;
  45. }
  46. blockquote, q {
  47. quotes: none;
  48. }
  49. blockquote:before, blockquote:after, q:before, q:after {
  50. content: '';
  51. content: none;
  52. }
  53. ins {
  54. text-decoration: none;
  55. }
  56. del {
  57. text-decoration: line-through;
  58. }
  59. table {
  60. border-collapse: collapse;
  61. border-spacing: 0;
  62. }
  63. li {
  64. display: list-item;
  65. text-align: -webkit-match-parent;
  66. }
  67. a {
  68. text-decoration: none;
  69. color: #333;
  70. }
  71. .clearfix:after {
  72. content: "\0020";
  73. display: block;
  74. height: 0;
  75. clear: both;
  76. visibility: hidden;
  77. overflow: hidden;
  78. }
  79. .fr{ float:right;}
  80. .fl{ float:left;}
  81. /*头部*/
  82. .header{
  83. width: 100%;
  84. height: 40px;
  85. position: fixed;
  86. /*padding-right: 15px;*/
  87. top: 0;
  88. left: 0;
  89. background: #fff;
  90. z-index: 99999;
  91. border-bottom: 1px solid #d7d7d7;
  92. }
  93. .user_img{
  94. width:24px;
  95. height: 24px;
  96. float: left;
  97. position: absolute;
  98. top: 8px;
  99. left: 8px;
  100. }
  101. .user_img img{
  102. width:24px;
  103. height: 24px;
  104. /*border-radius: 12px;*/
  105. }
  106. .search{
  107. padding-left: 35px;
  108. padding-top: 8px;
  109. /*float: left;*/
  110. position: relative;
  111. overflow: hidden;
  112. *zoom: 1;
  113. }
  114. .search_input{
  115. border: none;
  116. font-size: 12px;
  117. height: 24px;
  118. background: #e5e5e5;
  119. border-radius: 0;
  120. padding-right: 20px;
  121. }
  122. .search_icon{
  123. position: absolute;
  124. width: 17px;
  125. height: 18px;
  126. background: url(../../images/hardware/pad/search_icon.png) center center no-repeat;
  127. background-size: 100%;
  128. display: block;
  129. right: 2px;
  130. top: 11px;
  131. }
  132. .container{
  133. padding-left: 5px;
  134. padding-right: 5px;
  135. }
  136. .content{
  137. width: 100%;
  138. height: 706px;
  139. overflow: auto;
  140. text-align: center;
  141. }
  142. /*底部*/
  143. .footer{
  144. width: 100%;
  145. height: 39px;
  146. border-top: 1px solid #d7d7d7;
  147. border-left: 1px solid #d7d7d7;
  148. position: fixed;
  149. bottom: 0;
  150. left: 0;
  151. z-index: 99999;
  152. background: #fff;
  153. }
  154. .footer a{
  155. width: 20%;
  156. font-family: "微软雅黑";
  157. color:#333;
  158. text-align: center;
  159. display: inline-block;
  160. text-decoration: none;
  161. padding-top: 21px;
  162. font-size: 10px;
  163. }
  164. .info_icon{
  165. width: 14px;
  166. height: 14px;
  167. background: url(../../images/hardware/pad/info_gt.png) no-repeat;
  168. background-size: 100%;
  169. display: block;
  170. position: absolute;
  171. top: 0px;
  172. left: 50%;
  173. }
  174. /*大标题*/
  175. .menu_title{
  176. text-align: center;
  177. /* max-width: 80%; */
  178. height: 42px;
  179. overflow: hidden;
  180. min-width: 75%;
  181. /* display: inline-block; */
  182. }
  183. .menu_title .title-only {
  184. line-height: 42px;
  185. font-size: 20pt;
  186. -webkit-transform:translateZ(0);
  187. transform:translateZ(0);
  188. }
  189. /*返回*/
  190. .return{
  191. width: 19px;
  192. height: 58px;
  193. background: url(../../images/hardware/pad/back.png) no-repeat;
  194. position: absolute;
  195. left: 15px;
  196. top: 10px;
  197. display: block;
  198. }
  199. /*返回*/
  200. .index_icon{
  201. width: 19px;
  202. height: 30px;
  203. background: url(../../images/hardware/pad/more.png) no-repeat;
  204. position: absolute;
  205. right: 15px;
  206. top: 10px;
  207. display: block;
  208. }
  209. /*颜色*/
  210. .cRed{
  211. color: red;
  212. }
  213. .cPurple{
  214. color: #800080;
  215. }
  216. .cBlue{
  217. color: #0099ff;
  218. }
  219. .cGray{
  220. color: #999;
  221. }
  222. .cBlack{
  223. color: #000;
  224. }
  225. .cDarkgray{
  226. color: #333;
  227. }
  228. .hide{
  229. display: none;
  230. width: 0px;
  231. height: 0px;
  232. }
  233. .normal_tips_box{
  234. width: 240px;
  235. line-height: 30px;
  236. text-align: center;
  237. position: fixed;
  238. left: 50%;
  239. margin-left: -120px;
  240. top: 50%;
  241. margin-top: -60px;
  242. border: 0px solid #ccc;
  243. border-radius: 10px;
  244. font-family: "Microsoft YaHei";
  245. z-index: 9999;
  246. background: #fff;
  247. -moz-box-shadow:2px 2px 8px rgba(0,0,0,.5);
  248. -webkit-box-shadow:2px 2px 8px rgba(0,0,0,.5);
  249. box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  250. display: none;
  251. }
  252. .success_box{
  253. height: auto;
  254. }
  255. .nonetwoking{
  256. width: 240px;
  257. height: 130px;
  258. line-height:22px;
  259. text-align: center;
  260. position: fixed;
  261. left: 50%;
  262. margin-left: -120px;
  263. top: 50%;
  264. margin-top: -60px;
  265. border: 1px solid #ccc;
  266. border-radius: 10px;
  267. font-family: "Microsoft YaHei";
  268. z-index: 9999;
  269. background: rgba(255,255,255,0.7);
  270. -moz-box-shadow:2px 2px 8px rgba(0,0,0,.5);
  271. -webkit-box-shadow:2px 2px 8px rgba(0,0,0,.5);
  272. box-shadow:2px 2px 8px rgba(0,0,0,.5);
  273. font-size: 16px;
  274. padding-top: 30px;
  275. }
  276. .deleteGroup{
  277. display: inline-block;
  278. color: #fff;
  279. width:70px;
  280. height: 100%;
  281. position: absolute;
  282. right: 0;
  283. top: 0;
  284. background-color: #ff0000;
  285. line-height: 73px;
  286. text-align: center;
  287. font-size: 16px;
  288. }
  289. .impowerBox .normalPanel{
  290. width: 150px;height:150px;
  291. }
  292. .impowerBox .qrcode {width: 150px !important;height:150px !important;}
  293. .impowerBox .title {display: none !important;}
  294. .impowerBox .info {width: 100px !important;}
  295. .status_icon {display:none !important}
  296. .impowerBox .status {text-align: center !important;}
  297. .mt40{margin-top:40px; }
  298. /*报错、成功提示框*/
  299. .error_box{
  300. width: 240px;
  301. height: 155px;
  302. line-height: 30px;
  303. text-align: center;
  304. position: fixed;
  305. left: 50%;
  306. margin-left: -120px;
  307. top: 50%;
  308. margin-top: -60px;
  309. border: 0px solid #ccc;
  310. border-radius: 10px;
  311. font-family: "Microsoft YaHei";
  312. z-index: 9999;
  313. background: #fff;
  314. -moz-box-shadow:2px 2px 8px rgba(0,0,0,.5);
  315. -webkit-box-shadow:2px 2px 8px rgba(0,0,0,.5);
  316. box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  317. display: none;
  318. }
  319. .error_box span{
  320. margin: 0 auto;
  321. width: 100%;
  322. }
  323. .error_box p{
  324. margin-top: 15px;
  325. }
  326. .error_box .icon{
  327. display: block;
  328. width: 50px;
  329. height: 50px;
  330. background: url(../../images/hardware/pad/error.png) no-repeat;
  331. background-size: cover;
  332. margin-top: 20px;
  333. }
  334. .success_box {
  335. width: 240px;
  336. height: 55px;
  337. line-height: 30px;
  338. text-align: center;
  339. position: fixed;
  340. left: 50%;
  341. margin-left: -120px;
  342. top: 50%;
  343. margin-top: -26px;
  344. border: 0px solid #ccc;
  345. border-radius: 10px;
  346. font-family: "Microsoft YaHei";
  347. z-index: 9999;
  348. background: #fff;
  349. -moz-box-shadow:2px 2px 8px rgba(0,0,0,.5);
  350. -webkit-box-shadow:2px 2px 8px rgba(0,0,0,.5);
  351. box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
  352. display: none;
  353. line-height: 55px;
  354. }
  355. .split-block-title{
  356. margin-top:62px;
  357. }
  358. .list_con{ width: 100%; text-align: center; margin: 25px 0; }
  359. .global-header {
  360. box-sizing: border-box;
  361. width: 100%;
  362. height: 62px;
  363. padding: 10px 15px;
  364. background-color: #425560;
  365. color: #fff;
  366. text-align: center;
  367. border-bottom: 1px solid #fff;
  368. position: relative;
  369. position:fixed;
  370. z-index:99;
  371. }
  372. .global-header .header-left {
  373. position: absolute;
  374. left: 15px;
  375. top: 15px;
  376. }
  377. .global-header .header-right {
  378. position: absolute;
  379. right: 15px;
  380. top: 15px;
  381. }
  382. .header-left .header-back,.header-right .header-back {
  383. color: #fff;
  384. position: relative;
  385. top: 0px;
  386. left: 0px;
  387. height: 34px;
  388. display: block;
  389. }
  390. .w-icon-back{
  391. color: #fff;
  392. background: url(../../images/hardware/pad/back.png) no-repeat;
  393. display: inline-block;
  394. height: 32px;
  395. width: 32px;
  396. text-align: center;
  397. text-decoration: none;
  398. }
  399. .w-icon-home{
  400. color: #fff;
  401. background: url(../../images/hardware/pad/home.png) no-repeat;
  402. display: inline-block;
  403. height: 34px;
  404. width: 34px;
  405. text-align: center;
  406. text-decoration: none;
  407. }
  408. .clear {
  409. clear: both;
  410. height: 0px;
  411. font-size: 0px;
  412. line-height: 0px;
  413. }
  414. .color1{ background-color:#65717e; }
  415. .color2{ background-color:#58585c; }
  416. .none_jobs{ font-size: 18pt; color: #fff; padding: 20px; }
  417. .qspage{font-size:12px;line-height:450%; text-align:center;}
  418. .qspage a{padding:7px 12px;border:1px #CCCCCC solid;margin-right:5px;text-decoration:none;color: #666666;background-color: #F6F6F6;border-radius:4px;}
  419. .qspage a:hover{background-color:#FFFFFF;color: #333333}
  420. .qspage .current{padding:7px 12px;border:1px #0190dc solid;color:#FFFFFF;margin-right:5px;background-color:#0190dc;border-radius:4px;}