style.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. @charset 'UTF-8';
  2. html {
  3. overflow-x: auto;
  4. overflow-y: auto;
  5. }
  6. * {
  7. padding: 0;
  8. margin: 0;
  9. outline: none !important;
  10. }
  11. ul,
  12. ol,
  13. li {
  14. list-style-type: none;
  15. }
  16. body,
  17. button,
  18. input,
  19. select,
  20. textarea {
  21. font-family: 'Microsoft yahei';
  22. font-size: 12px;
  23. }
  24. code,
  25. kbd,
  26. pre,
  27. samp {
  28. font-family: 'Microsoft yahei';
  29. }
  30. a {
  31. text-decoration: none;
  32. color: #333;
  33. cursor: pointer;
  34. -webkit-transition: all 0.2s ease-out 0s;
  35. -moz-transition: all 0.2s ease-out 0s;
  36. -o-transition: all 0.2s ease-out 0s;
  37. transition: all 0.2s ease-out 0s;
  38. }
  39. img {
  40. border: 0;
  41. max-width: 100%;
  42. max-height: 100%;
  43. vertical-align: middle;
  44. }
  45. li {
  46. line-height: normal;
  47. }
  48. table {
  49. border-collapse: collapse;
  50. border-spacing: 0;
  51. }
  52. h1,
  53. h2,
  54. h3,
  55. h4,
  56. h5,
  57. h6 {
  58. margin: 0;
  59. font-weight: normal;
  60. font-family: 'Microsoft yahei';
  61. }
  62. input,
  63. table,
  64. tr,
  65. td {
  66. margin: 0;
  67. padding: 0;
  68. border: none;
  69. }
  70. button,
  71. table {
  72. border: none;
  73. background: none;
  74. margin: 0;
  75. padding: 0;
  76. }
  77. body {
  78. position: relative;
  79. float: left;
  80. width: 100%;
  81. }
  82. select {
  83. margin: 0;
  84. padding: 0;
  85. font-family: 'Microsoft yahei';
  86. border: none;
  87. }
  88. textarea {
  89. resize: none;
  90. outline: none;
  91. }
  92. label {
  93. margin-bottom: 0;
  94. font-weight: normal;
  95. }
  96. input,
  97. select,
  98. textarea {
  99. margin: 0;
  100. padding: 0;
  101. border: 0;
  102. outline: none;
  103. -moz-border-radius: 0px;
  104. -webkit-border-radius: 0;
  105. -khtml-border-radius: 0;
  106. border-radius: 0;
  107. }
  108. .textOver {
  109. overflow: hidden;
  110. text-overflow: ellipsis;
  111. white-space: nowrap;
  112. }
  113. .pz_top {
  114. float: left;
  115. width: 100%;
  116. min-width: 1200px;
  117. z-index: 101;
  118. position: relative;
  119. }
  120. .pz_banner {
  121. float: left;
  122. width: 100%;
  123. min-width: 1200px;
  124. position: relative;
  125. overflow: hidden;
  126. }
  127. .pz_main {
  128. float: left;
  129. width: 100%;
  130. min-width: 1200px;
  131. position: relative;
  132. }
  133. .pz_down {
  134. float: left;
  135. width: 100%;
  136. min-width: 1200px;
  137. }
  138. .pz_menu {
  139. float: left;
  140. width: 100%;
  141. min-width: 1200px;
  142. }
  143. .w_0100 {
  144. float: left;
  145. width: 100%;
  146. margin: 0 auto;
  147. }
  148. .w_1200 {
  149. margin: 0 auto;
  150. width: 1200px;
  151. /* width: 80%; */
  152. }
  153. /* 科技超市开始 */
  154. .superbanner {
  155. position: relative;
  156. height: 250px;
  157. overflow: hidden;
  158. }
  159. .superbanner img {
  160. width: 100%;
  161. height: 250px;
  162. overflow: hidden;
  163. }
  164. .supertop {
  165. position: absolute;
  166. top: 0;
  167. height: 40px;
  168. width: 100%;
  169. color: #fff;
  170. background: #2152991f;
  171. }
  172. .supertop p:first-child {
  173. float: left;
  174. height: 40px;
  175. line-height: 40px;
  176. font-size: 16px;
  177. }
  178. .supertop p:last-child {
  179. float: right;
  180. height: 40px;
  181. line-height: 40px;
  182. font-size: 20px;
  183. color: #000;
  184. font-weight: bold;
  185. font-family: cursive;
  186. }
  187. .supertop p:last-child button {
  188. color: #fff;
  189. }
  190. .superlogo {
  191. position: absolute;
  192. top: 40px;
  193. width: 100%;
  194. padding: 50px 0 0 0;
  195. }
  196. .superlogo img {
  197. width: 76px;
  198. height: 64px;
  199. overflow: hidden;
  200. }
  201. .superlogo span {
  202. color: #2d64b3;
  203. font-size: 36px;
  204. font-family: cursive;
  205. text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
  206. font-weight: 600;
  207. position: relative;
  208. top: 10px;
  209. padding: 0 0 0 10px;
  210. }
  211. .supermenu {
  212. position: absolute;
  213. bottom: 0;
  214. width: 100%;
  215. height: 50px;
  216. }
  217. .supermenu .info {
  218. height: 50px;
  219. line-height: 50px;
  220. background: #0085d2;
  221. }
  222. .supermenu .info ul li {
  223. float: left;
  224. height: 50px;
  225. line-height: 50px;
  226. font-size: 20px;
  227. /* border-right: 1px solid #76bdfe; */
  228. width: 20%;
  229. text-align: center;
  230. }
  231. .supermenu .info ul li span{
  232. background-color:#76bdfe ;
  233. height: 50px;
  234. float: right;
  235. width: 1px;
  236. }
  237. /* .supermenu .info ul li:last-child{
  238. width: 300px;
  239. } */
  240. .supermenu .info ul .active {
  241. background-color: #fe950e;
  242. }
  243. .supermenu .info ul li a {
  244. color: #fff;
  245. }
  246. .supermenu .info ul li:last-child {
  247. border-right: 0;
  248. /* padding: 0 70px; */
  249. }
  250. .superdown {
  251. margin: 0 auto;
  252. padding: 15px 0 0 0;
  253. height: 135px;
  254. overflow: hidden;
  255. background-color: #3a3637;
  256. color: #fff;
  257. }
  258. .superdown p {
  259. font-size: 14px;
  260. color: #999999;
  261. font-family: 微软雅黑;
  262. padding: 10px 200px;
  263. }