index.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. html,body{
  2. height: 100%;
  3. font-family: "microsoft yahei";
  4. font-size: 16px;
  5. background-color: #fff;
  6. overflow: hidden;
  7. }
  8. .layui-nav *{
  9. font-size: 16px;
  10. }
  11. .zhdj_top{
  12. height: 100px;
  13. background: url(/assets/img/djzhb/head_bg.png) no-repeat;
  14. }
  15. /* logo */
  16. .zhdj_logo{
  17. float: left;
  18. width: 343px;
  19. height: 100px;
  20. padding-left: 55px;
  21. }
  22. .zhdj_logo img{
  23. margin-top: 20px;
  24. }
  25. /* second menu */
  26. .zhdj_second_menu{
  27. float: left;
  28. width: calc(100% - 478px);
  29. padding: 0px;
  30. background-color: transparent;
  31. }
  32. .zhdj_second_menu li{
  33. height: 100px;
  34. cursor: pointer;
  35. text-align: center;
  36. position: relative;
  37. }
  38. .zhdj_second_menu li>a{
  39. position: absolute;
  40. left: 50%;
  41. top: 50%;
  42. transform: translate(-50%,-50%);
  43. display: inline-block;
  44. width: 100%;
  45. }
  46. .zhdj_second_menu li span{
  47. display: inline-block;
  48. width: 100%;
  49. color: #fff;
  50. margin-top: 20px;
  51. }
  52. .zhdj_second_menu img{
  53. width: 28px;
  54. }
  55. .zhdi_drop_icon{
  56. float: left;
  57. width: 80px;
  58. height:100px;
  59. line-height: 100px;
  60. text-align: center;
  61. cursor: pointer;
  62. background-color: #3779c6;
  63. }
  64. .zhdj_dropdown {
  65. position: absolute;
  66. top: 100px;
  67. left: 0px;
  68. right: -80px;
  69. background: url(/assets/img/djzhb/drop_bg.png) repeat-y;
  70. display: none;
  71. }
  72. .zhdj_dropdown li{
  73. height: 100px;
  74. color: #fff;
  75. cursor: pointer;
  76. text-align: center;
  77. position: relative;
  78. }
  79. .zhdj_dropdown li>div{
  80. position: absolute;
  81. left: 50%;
  82. top: 50%;
  83. transform: translate(-50%,-50%);
  84. width: 100%;
  85. }
  86. .zhdj_dropdown li span{
  87. display: inline-block;
  88. width: 100%;
  89. margin-top: 20px;
  90. }
  91. .zhdj_top li.current{
  92. background: #00389b;
  93. }
  94. /* menu */
  95. .zhdj_menu{
  96. top: 100px;
  97. background: #004fcd;
  98. }
  99. .zhdj_menu ul{
  100. width: 100%;
  101. background: #004fcd;
  102. }
  103. .zhdj_menu .layui-nav-tree .layui-nav-item,
  104. .zhdj_menu .layui-nav-tree .layui-nav-item a{
  105. height: 60px;
  106. line-height: 60px;
  107. padding: 0px;
  108. cursor: pointer;
  109. }
  110. .zhdj_menu .layui-nav-tree .layui-nav-item a{
  111. padding-left: 35px;
  112. }
  113. .zhdj_menu .layui-nav-tree .layui-nav-child dd.layui-this,
  114. .zhdj_menu .layui-nav-tree .layui-nav-child dd.layui-this a,
  115. .zhdj_menu .layui-nav-tree .layui-this,
  116. .zhdj_menu .layui-nav-tree .layui-this>a,
  117. .zhdj_menu .layui-nav-tree .layui-this>a:hover {
  118. background-color: #003fa4;
  119. color: #fff;
  120. }
  121. .zhdj_menu .layui-nav-tree .layui-nav-item a:hover {
  122. background-color: #003fa4;
  123. }
  124. .zhdj_menu .layui-nav-tree .layui-nav-bar {
  125. width: 5px;
  126. height: 0;
  127. background-color: #001f52;
  128. }
  129. .zhdj_menu .layui-nav-tree .layui-nav-item .icon{
  130. display: inline-block;
  131. vertical-align: top;
  132. margin-top: 2px;
  133. margin-right: 10px;
  134. }
  135. .zhdj_menu a cite{
  136. color: #fff;
  137. }
  138. .zhdj_open_close{
  139. position: absolute;
  140. right: 0px;
  141. top: 50%;
  142. margin-top: -22px;
  143. cursor: pointer;
  144. }
  145. /* content */
  146. .zhdj_content{
  147. top: 100px;
  148. }
  149. .zhdj_content .zhdj_tab{
  150. width: 100%;
  151. height: 45px;
  152. margin: 0px;
  153. background: #eeeeee;
  154. }
  155. .zhdj_content .layui-tab{
  156. position: absolute;
  157. left: 0px;
  158. right: 0px;
  159. top: 0px;
  160. bottom: 0px;
  161. margin: 0px;
  162. }
  163. .zhdj_content .layui-tab-title{
  164. height: 45px;
  165. padding: 0px 30px;
  166. }
  167. .zhdj_content .layui-tab-title li{
  168. height: 30px;
  169. line-height: 30px;
  170. font-size: 16px;
  171. color: #555;
  172. margin: 8px 10px;
  173. border-radius: 3px;
  174. background-color: #fff;
  175. }
  176. .zhdj_content .layui-tab-title li .layui-tab-close {
  177. top: 1px;
  178. font-size: 18px;
  179. color: #919191;
  180. }
  181. .zhdj_content .layui-tab-title li .layui-tab-close:hover {
  182. border-radius: 2px;
  183. background-color: #fff;
  184. color: #000;
  185. }
  186. .zhdj_form{
  187. position: absolute;
  188. left: 0px;
  189. top: 10px;
  190. right: 0px;
  191. bottom: 0px;
  192. padding: 0px;
  193. }
  194. .zhdj_btns{
  195. margin: 10px 0px;
  196. text-align: right;
  197. }
  198. .zhdj_btns button{
  199. margin-left: 20px;
  200. }
  201. .zhdj_search{
  202. height: 49px;
  203. border: 1px solid #c2c2c2;
  204. border-left-width: 7px;
  205. border-radius: 5px;
  206. padding: 20px;
  207. text-align: center;
  208. }
  209. .zhdj_search ul li{
  210. padding: 0px 12px;
  211. }
  212. .zhdj_search .layui-input{
  213. height: 49px;
  214. border-radius: 5px;
  215. padding-left: 20px;
  216. }
  217. .layui-form-select .layui-edge{
  218. border-top-color: #7f7f7f;
  219. }
  220. .zhdj_search button{
  221. width: 70px;
  222. height: 48px;
  223. }
  224. .zhdj_search button img{
  225. vertical-align: middle;
  226. }
  227. .layui-btn .layui-icon{
  228. width: 70px;
  229. height: 48px;
  230. font-size: 24px;
  231. }
  232. .layui-form-select dl dd.layui-this {
  233. background-color: #004fcd;
  234. color: #fff;
  235. }
  236. .x-iframe{
  237. width: 100%;
  238. height: 100%;
  239. }
  240. .zhdj_content .layui-tab-item{
  241. height: 100%;
  242. }
  243. .zhdj_box{
  244. position: absolute;
  245. left: 0px;
  246. top: 0px;
  247. bottom: 0px;
  248. right: 0px;
  249. }
  250. .zhdj_box form{
  251. width: calc(100% - 50px);
  252. margin: 0px 25px;
  253. }
  254. .callback>img{
  255. width: 32px!important;
  256. }