base.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /*引用字库*/
  2. @font-face { font-family:'electronicFont'; src: url("../font/DS-DIGIT.TTF"); }
  3. #id{
  4. font-family: 'electronicFont';
  5. font-size: 16px;
  6. text-align: center;
  7. padding: 6px 6px;
  8. }
  9. *{
  10. margin: 0;
  11. padding: 0;
  12. font-family: PingFangSC-Light, 微软雅黑;
  13. }
  14. body,html{
  15. width: 100%;
  16. /*height: auto;*/
  17. color:#333;
  18. overflow: hidden;
  19. background: url('../img/true.png') no-repeat;
  20. background-size: 100% 100%;
  21. }
  22. /*各浏览器显示不同,去掉蓝色边框*/
  23. fieldset, img, input, button {
  24. border: none;
  25. padding: 0;
  26. margin: 0;
  27. outline-style: none;
  28. }
  29. img {
  30. border: 0;
  31. vertical-align: middle;
  32. }
  33. ul, li {
  34. list-style: none;
  35. }
  36. a {
  37. text-decoration: none;
  38. cursor: pointer;
  39. }
  40. /*清除浮动*/
  41. .clear-both:before, .clear-both:after {
  42. display: table;
  43. content: "";
  44. -webkit-box-sizing: border-box;
  45. -moz-box-sizing: border-box;
  46. box-sizing: border-box;
  47. clear: both;
  48. }
  49. .clear{
  50. clear: both;
  51. }
  52. .clearfix {
  53. *zoom: 1; /*IE/7/6*/
  54. }
  55. .fl{
  56. float: left;
  57. width: 100%;
  58. position: relative;
  59. }
  60. .fr{
  61. float: right;
  62. }
  63. /*header开始*/
  64. .header{
  65. width: 100%;
  66. height: 80px;
  67. padding:0 20px;
  68. min-width: 1366px;
  69. }
  70. .bg_header{
  71. width: 100%;
  72. height: 80px;
  73. background: url(../img/title.png) no-repeat;
  74. background-size: 100% 100%;
  75. }
  76. .header>.header_logo{
  77. padding:18px 10px 10px 0px;
  78. }
  79. .header>.header_logo>a{
  80. display: block;
  81. }
  82. .header>.header_logo>a>img{
  83. width:260px;
  84. }
  85. .header>.header_nav{
  86. margin-left: 20px;
  87. }
  88. .header>.header_nav>ul>li{
  89. float: left;
  90. margin-right: 6px;
  91. position: relative;
  92. }
  93. .header>.header_nav>ul>li>a{
  94. display: block;
  95. height: 80px;
  96. padding:0 10px 0 30px;
  97. line-height: 80px;
  98. color:#fff;
  99. }
  100. .header>.header_nav>ul>li>a:hover{
  101. border-bottom: 4px solid #4b8df8;
  102. }
  103. .header>.header_nav>ul>li>img{
  104. float: left;
  105. position: absolute;
  106. top: 33px;
  107. left:10px;
  108. }
  109. .header>.header_nav>ul>li>a.nav_current{
  110. border-bottom: 4px solid #4b8df8;
  111. }
  112. .header>.header_myself{
  113. width: 90px;
  114. text-align: center;
  115. }
  116. .header>.header_myself>p{
  117. color:#fff;
  118. font-size: 13px;
  119. margin-top: 15px;
  120. }
  121. .header>.header_myself>a{
  122. color:#fff;
  123. font-size: 13px;
  124. }
  125. /*content 开始*/
  126. .content{
  127. margin: 20px;
  128. width: calc(100% - 40px);
  129. min-width: 1366px;
  130. }
  131. .content>.content_title{
  132. width: 100%;
  133. height: 35px;
  134. line-height: 35px;
  135. background-color: #4b8df8;
  136. box-sizing: border-box;
  137. margin-bottom: 20px;
  138. }
  139. .content>.content_title>p{
  140. color:#fff;
  141. font-size: 16px;
  142. font-weight: 600;
  143. }
  144. .content>.content_title>img{
  145. margin: 10px 10px 0px 10px;
  146. }
  147. .content>.content_main{
  148. min-width: 1366px;
  149. }
  150. .content>.content_main>.content_search>div{
  151. margin-right: 25px;
  152. }
  153. .content>.content_main>.content_search>div>label{
  154. width: 80px;
  155. text-align: right;
  156. }
  157. .content>.content_main>.content_search>div>select,
  158. .content>.content_main>.content_search>div>input
  159. {
  160. width: 200px;
  161. }
  162. .content>.content_main>.content_table{
  163. margin-top: 30px;
  164. }
  165. .content>.content_main>.content_table>table{
  166. margin-top: 15px;
  167. }
  168. .content>.content_main>.content_table>table th:nth-child(1),
  169. .content>.content_main>.content_table>table td:nth-child(1){
  170. width: 50px;
  171. text-align: center;
  172. }
  173. .content>.content_main>.content_page>span {
  174. font-size: 12.8px;
  175. margin-top: 7px;
  176. }
  177. .content>.content_main>.content_page>select{
  178. width: 70px;
  179. margin-right: 10px;
  180. }
  181. .wlsj-down{
  182. border-top: 1px solid #1a3866;
  183. margin-top: -20px;
  184. }
  185. .wlsj-down2{
  186. border-top: 1px solid #1a3866;
  187. }
  188. .centertable{
  189. width: 100%;
  190. position: relative;
  191. }
  192. .centerdata-th{
  193. font-size: 15px;
  194. font-weight: 600;
  195. color: #61d2f7;
  196. text-align: center;
  197. white-space: nowrap;
  198. padding: 5px 20px;
  199. }
  200. .centertable-td>td{
  201. color: #fff;
  202. font-size: 12px;
  203. text-align: center;
  204. padding: 4px 8px;
  205. }
  206. .centertable-td2>td{
  207. color: #fff;
  208. font-size: 12px;
  209. text-align: center;
  210. padding: 8px;
  211. }
  212. #produce table td {
  213. text-align: center;
  214. border: 1px solid #069;
  215. padding: 2px 0px;
  216. }
  217. #produce {
  218. color: #B7E2FF;
  219. /*font-size: 24px;*/
  220. margin-top: 20px;
  221. }
  222. #produce table {
  223. width: 100%;
  224. font-size: 12px;
  225. }
  226. .row1{
  227. font-size: 13px;
  228. font-weight: bold;
  229. color: #fff;
  230. background-color: #14181c;
  231. box-shadow: -10px 0px 15px #2C58A6 inset, 10px 0px 15px #2C58A6 inset
  232. }
  233. .row1td{
  234. padding:2px 0px;
  235. }
  236. /*.left-y{
  237. float: left;
  238. }
  239. .right-y{
  240. display: inline;
  241. }*/
  242. /*.t_btn9{
  243. display: inline;
  244. }*/
  245. /*content 结束*/