base.css 3.2 KB

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