base.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. font-family: PingFangSC-Light, 微软雅黑;
  5. }
  6. body,html{
  7. width: 100%;
  8. height: auto;
  9. color:#333;
  10. /* overflow: hidden;*/
  11. background: url('../img/true.png') no-repeat;
  12. background-size: 100% 100%;
  13. }
  14. /*各浏览器显示不同,去掉蓝色边框*/
  15. fieldset, img, input, button {
  16. border: none;
  17. padding: 0;
  18. margin: 0;
  19. outline-style: none;
  20. }
  21. img {
  22. border: 0;
  23. vertical-align: middle;
  24. }
  25. ul, li {
  26. list-style: none;
  27. }
  28. a {
  29. text-decoration: none;
  30. cursor: pointer;
  31. }
  32. /*清除浮动*/
  33. .clear-both:before, .clear-both:after {
  34. display: table;
  35. content: "";
  36. -webkit-box-sizing: border-box;
  37. -moz-box-sizing: border-box;
  38. box-sizing: border-box;
  39. clear: both;
  40. }
  41. .clearfix {
  42. *zoom: 1; /*IE/7/6*/
  43. }
  44. .fl{
  45. float: left;
  46. }
  47. .fr{
  48. float: right;
  49. }
  50. /*header开始*/
  51. .header{
  52. width: 100%;
  53. height: 80px;
  54. padding:0 20px;
  55. min-width: 1366px;
  56. }
  57. .bg_header{
  58. width: 100%;
  59. height: 80px;
  60. background: url(../img/title.png) no-repeat;
  61. background-size: 100% 100%;
  62. }
  63. .header>.header_logo{
  64. padding:18px 10px 10px 0px;
  65. }
  66. .header>.header_logo>a{
  67. display: block;
  68. }
  69. .header>.header_logo>a>img{
  70. width:260px;
  71. }
  72. .header>.header_nav{
  73. margin-left: 20px;
  74. }
  75. .header>.header_nav>ul>li{
  76. float: left;
  77. margin-right: 6px;
  78. position: relative;
  79. }
  80. .header>.header_nav>ul>li>a{
  81. display: block;
  82. height: 80px;
  83. padding:0 10px 0 30px;
  84. line-height: 80px;
  85. color:#fff;
  86. }
  87. .header>.header_nav>ul>li>a:hover{
  88. border-bottom: 4px solid #4b8df8;
  89. }
  90. .header>.header_nav>ul>li>img{
  91. float: left;
  92. position: absolute;
  93. top: 33px;
  94. left:10px;
  95. }
  96. .header>.header_nav>ul>li>a.nav_current{
  97. border-bottom: 4px solid #4b8df8;
  98. }
  99. .header>.header_myself{
  100. width: 90px;
  101. text-align: center;
  102. }
  103. .header>.header_myself>p{
  104. color:#fff;
  105. font-size: 13px;
  106. margin-top: 15px;
  107. }
  108. .header>.header_myself>a{
  109. color:#fff;
  110. font-size: 13px;
  111. }
  112. /*content 开始*/
  113. .content{
  114. margin: 20px;
  115. width: calc(100% - 40px);
  116. min-width: 1366px;
  117. }
  118. .content>.content_title{
  119. width: 100%;
  120. height: 35px;
  121. line-height: 35px;
  122. background-color: #4b8df8;
  123. box-sizing: border-box;
  124. margin-bottom: 20px;
  125. }
  126. .content>.content_title>p{
  127. color:#fff;
  128. font-size: 16px;
  129. font-weight: 600;
  130. }
  131. .content>.content_title>img{
  132. margin: 10px 10px 0px 10px;
  133. }
  134. .content>.content_main{
  135. min-width: 1366px;
  136. }
  137. .content>.content_main>.content_search>div{
  138. margin-right: 25px;
  139. }
  140. .content>.content_main>.content_search>div>label{
  141. width: 80px;
  142. text-align: right;
  143. }
  144. .content>.content_main>.content_search>div>select,
  145. .content>.content_main>.content_search>div>input
  146. {
  147. width: 200px;
  148. }
  149. .content>.content_main>.content_table{
  150. margin-top: 30px;
  151. }
  152. .content>.content_main>.content_table>table{
  153. margin-top: 15px;
  154. }
  155. .content>.content_main>.content_table>table th:nth-child(1),
  156. .content>.content_main>.content_table>table td:nth-child(1){
  157. width: 50px;
  158. text-align: center;
  159. }
  160. .content>.content_main>.content_page>span {
  161. font-size: 12.8px;
  162. margin-top: 7px;
  163. }
  164. .content>.content_main>.content_page>select{
  165. width: 70px;
  166. margin-right: 10px;
  167. }
  168. /*content 结束*/