style.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. @CHARSET "UTF-8";
  2. #loading {
  3. width:200px;
  4. height:25px;
  5. position:absolute;
  6. top:280px;
  7. left:500px;
  8. z-index:1000000;
  9. background-color:#F7F9FC;
  10. line-height:25px;
  11. vertical-align:middle;
  12. font-size:11pt;
  13. display:none;
  14. }
  15. /**全局css设置*/
  16. html{width:100%;height:100%;}
  17. body{width:100%;height:100%;font-size:16px;position:relative;margin:0;padding:0;color:#000;font-family:"Microsoft YaHei",sans-serif;}
  18. /**列表,包括查询和列表展示*/
  19. .box {
  20. padding: 10px 15px 15px 2px;
  21. }
  22. .box-content {
  23. padding: 5px 5px 5px 40px;
  24. border:1px solid #d0d1d6;background-color:#f4f4f5;
  25. }
  26. .treediv{
  27. width: 25%;
  28. float: left;
  29. height: 100%;
  30. border-right: 1px solid #595959;
  31. }
  32. .treecontent{
  33. width: 73%;
  34. float: left;
  35. margin-left:2%;
  36. height: 100%;
  37. }
  38. .main_table{
  39. width:100%;
  40. background-color:#FFFFFF;
  41. }
  42. .main_table th{
  43. height:33px;
  44. border-bottom:1px solid #dadbda;
  45. font-size:14px;
  46. text-align:center;
  47. background: #618fbc;color: #fff;
  48. border-bottom: 1px solid #cdcecd;
  49. }
  50. .main_table tr:nth-child(even){background: #f7fafd;}
  51. .main_table tr:nth-child(odd){background: #fff;}
  52. .main_table td{
  53. border:1px solid #dadbda;
  54. height:33px;
  55. border-top:0px;
  56. text-align:center;
  57. font-size: 14px;
  58. }
  59. .main_table tr:hover{
  60. background-color:#fbf6c9;
  61. }
  62. .search_table{
  63. width:100%;
  64. }
  65. .search_table .right{
  66. text-align: right;
  67. }
  68. .search_table td input{
  69. width: 80%;
  70. }
  71. .search_table td{
  72. padding: 5px 0 5px 0;
  73. font-size: 14px;
  74. }
  75. /**分页*/
  76. .search_button_table {
  77. margin-left: 1%;
  78. margin-top:5px;
  79. width: 99%;
  80. }
  81. .search_button_table td{
  82. width: 30%;
  83. text-align: right;
  84. font-size: 14px;
  85. }
  86. .search_button_table tr{
  87. padding-top: 2px;
  88. }
  89. /**新增页面*/
  90. .apply_fill{width:100%;padding: 1%;}
  91. .apply{width:100%;border:1px solid #e2e3cb;background-color:#FFFFFF;}
  92. .apply th{width:18%;height:35px;font-weight:normal; border-bottom:1px solid #dadbda;color:#185f8a;background:#e6eff9;font-size:14px;text-align:right;}
  93. .apply td{width:32%;height:40px;border:1px solid #e2e3cb;text-indent: 5px;font-size: 14px;}
  94. .apply input{width:80%;margin-left:5px;}
  95. .apply textarea{width:80%; margin-left:5px;}
  96. #buttons{margin:20px 0 0 0;text-align:center;}
  97. .apply2{width:100%;border:1px solid #e2e3cb;background-color:#FFFFFF;}
  98. .apply2 th{width:16%;height:35px;font-weight:normal; border-bottom:1px solid #dadbda;color:#185f8a;background:#e6eff9;font-size:16px;text-align:right;}
  99. .apply2 td{width:16%;height:40px;border:1px solid #e2e3cb;text-indent: 5px;font-size: 14px;}
  100. .apply3{width:100%;border:1px solid #e2e3cb;background-color:#FFFFFF;}
  101. .apply3 th{height:35px;font-weight:normal; border-bottom:1px solid #dadbda;color:#185f8a;background:#e6eff9;font-size:14px;text-align:right;}
  102. .apply3 td{height:40px;border:1px solid #e2e3cb;text-indent: 5px;font-size: 14px;}
  103. .apply3 input{width:80%;margin-left:5px;}
  104. .apply3 textarea{width:80%; margin-left:5px;}
  105. .apply4{width:100%;border:1px solid #e2e3cb;background-color:#FFFFFF;}
  106. .apply4 th{width:12%;height:35px;font-weight:normal; border-bottom:1px solid #dadbda;color:#185f8a;background:#e6eff9;font-size:14px;text-align:right;}
  107. .apply4 td{height:40px;border:1px solid #e2e3cb;text-indent: 5px;font-size: 14px;}
  108. .apply4 input{width:80%;margin-left:5px;}
  109. .apply4 textarea{width:80%; margin-left:5px;}
  110. /*弹出框*/
  111. .theme-popover-mask-tc {
  112. z-index: 6666;
  113. position:fixed;
  114. top:0;
  115. left:0;
  116. width:100%;
  117. height:100%;
  118. background:#000;
  119. opacity:0.4;
  120. filter:alpha(opacity=40);
  121. display:none
  122. }
  123. .theme-popover-tc {
  124. z-index:9999;
  125. position:fixed;
  126. top:10%;
  127. left:10%;
  128. /* width:660px;
  129. height:360px; 这两个属性自己定义*/
  130. border-radius:5px;
  131. border:solid 2px #666;
  132. background-color:#fff;
  133. display:none;
  134. box-shadow: 0 0 10px #666;
  135. }
  136. .theme-poptit-tc {
  137. width:100%;
  138. height:40px;
  139. margin-bottom:10px;
  140. position: relative;
  141. background-color:#387dc9;-ms-border-radius:8px 8px 0 0;-moz-border-radius:8px 8px 0 0;-webkit-border-radius:8px 8px 0 0;-o-border-radius:8px 8px 0 0;
  142. }
  143. .popContent-tc {
  144. width:100%;
  145. }
  146. .popTitle-tc{
  147. color:#fff;
  148. float:left;
  149. padding: 1px 0px 0px 10px;
  150. width: 80%;
  151. }
  152. .close-tc {
  153. text-align:right;
  154. float:right;
  155. width: 20%;
  156. padding: 8px 15px 8px 15px;
  157. }
  158. /**弹出框选择经营人*/.theme-popover-mask {
  159. z-index: 6666;
  160. position:fixed;
  161. top:0;
  162. left:0;
  163. width:100%;
  164. height:100%;
  165. background:#000;
  166. opacity:0.4;
  167. filter:alpha(opacity=40);
  168. display:none
  169. }
  170. .theme-popover {
  171. z-index:9999;
  172. position:fixed;
  173. top:10%;
  174. left:10%;
  175. /* width:660px;
  176. height:360px; 这两个属性自己定义*/
  177. border-radius:5px;
  178. background-color:#fff;
  179. display:none;
  180. -ms-border-radius:8px 8px 0 0;-moz-border-radius:8px 8px 0 0;-webkit-border-radius:8px 8px 0 0;-o-border-radius:8px 8px 0 0;
  181. }
  182. .theme-poptit {
  183. width:100%;
  184. height:40px;
  185. margin-bottom:10px;
  186. position: relative;
  187. background-color:#387dc9;-ms-border-radius:8px 8px 0 0;-moz-border-radius:8px 8px 0 0;-webkit-border-radius:8px 8px 0 0;-o-border-radius:8px 8px 0 0;
  188. }
  189. .popContent {
  190. width:100%;
  191. }
  192. .popTitle{
  193. color:#fff;
  194. float:left;
  195. padding: 1px 0px 0px 10px;
  196. width: 80%;
  197. }
  198. .close {
  199. text-align:right;
  200. float:right;
  201. width: 20%;
  202. padding: 8px 15px 8px 15px;
  203. opacity:1;
  204. }
  205. .close a{
  206. text-decoration: none;
  207. color: #ffffff;
  208. text-shadow: none;
  209. }
  210. .close-tc a{
  211. text-decoration: none;
  212. color: #ffffff;
  213. text-shadow: none;
  214. }
  215. /**上传按钮*/
  216. .file {
  217. padding: 5px 10px;
  218. font-size: 12px;
  219. line-height: 1.5;
  220. border-radius: 3px;
  221. position: relative;
  222. display: inline-block;
  223. background: #FFF;
  224. border: 1px solid #808080;
  225. border-radius: 4px;
  226. overflow: hidden;
  227. color: #000000;
  228. text-decoration: none;
  229. text-indent: 0;
  230. }
  231. .file input {
  232. position: absolute;
  233. font-size: 100px;
  234. right: 0;
  235. top: 0;
  236. opacity: 0;
  237. }
  238. .file:hover {
  239. background: #CCC;
  240. border-color: #FFF;
  241. color: #000000;
  242. text-decoration: none;
  243. }
  244. .needwrite{
  245. color:red;
  246. margin-right: 2px;
  247. vertical-align: middle;
  248. line-height: 35px;
  249. }
  250. .searchdiv{
  251. margin-bottom:3px;
  252. border:1px solid #d0d1d6;
  253. }
  254. .expanddiv{
  255. text-align:right;
  256. /**border:1px solid #d0d1d6;*/
  257. height:22px;
  258. }
  259. .expandlink{
  260. margin:3px 3px 0px 0px;
  261. float:right;
  262. display:block;
  263. width:16px;
  264. height:16px;
  265. background-image:url(../image/expand.png) ;
  266. }
  267. .collapselink{
  268. margin:3px 3px 0px 0px;
  269. float:right;
  270. display:block;
  271. width:16px;
  272. height:16px;
  273. background-image:url(../image/collapse.png) ;
  274. }
  275. .operatetd{
  276. white-space:nowrap;
  277. padding: 0px 5px;
  278. }