style-css.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. html, body, div, span, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. abbr, address, cite, code,
  4. del, dfn, em, img, ins, kbd, q, samp,
  5. small, strong, sub, sup, var,
  6. b, i,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, figcaption, figure,
  11. footer, header, hgroup, menu, nav, section, summary,
  12. time, mark, audio, video {
  13. margin:0;
  14. padding:0;
  15. border:0;
  16. outline:0;
  17. font-size:100%;
  18. vertical-align:baseline;
  19. background:transparent;
  20. }
  21. html,body{
  22. height: 100%;
  23. font-size: 0px;
  24. font-family: '微软雅黑';
  25. }
  26. body {
  27. line-height:1;
  28. }
  29. :focus {
  30. outline: 1;
  31. }
  32. article,aside,canvas,details,figcaption,figure,
  33. footer,header,hgroup,menu,nav,section,summary {
  34. display:block;
  35. }
  36. nav ul {
  37. list-style:none;
  38. }
  39. blockquote, q {
  40. quotes:none;
  41. }
  42. blockquote:before, blockquote:after,
  43. q:before, q:after {
  44. content:'';
  45. content:none;
  46. }
  47. a {
  48. margin:0;
  49. padding:0;
  50. border:0;
  51. font-size:100%;
  52. vertical-align:baseline;
  53. background:transparent;
  54. text-decoration: none;
  55. color: #72a7ee;
  56. }
  57. ins {
  58. background-color:#ff9;
  59. color:#000;
  60. text-decoration:none;
  61. }
  62. mark {
  63. background-color:#ff9;
  64. color:#000;
  65. font-style:italic;
  66. font-weight:bold;
  67. }
  68. del {
  69. text-decoration: line-through;
  70. }
  71. abbr[title], dfn[title] {
  72. border-bottom:1px dotted #000;
  73. cursor:help;
  74. }
  75. table {
  76. border-collapse:collapse;
  77. border-spacing:0;
  78. }
  79. hr {
  80. display:block;
  81. height:1px;
  82. border:0;
  83. border-top:1px solid #cccccc;
  84. margin:1em 0;
  85. padding:0;
  86. }
  87. input, select {
  88. vertical-align:middle;
  89. }
  90. /**/
  91. body{
  92. width:100%;
  93. background-color:#fff;
  94. }
  95. header{
  96. width:100%;
  97. height:70px;
  98. background-color:#373d41;
  99. }
  100. header>.center{
  101. width:1200px;
  102. margin:0 auto;
  103. height:70px;
  104. display:flex;
  105. align-items:center;
  106. justify-content:space-between;
  107. }
  108. .nav a{
  109. font-size: 14px;
  110. color: #ffffff;
  111. margin:0 25px;
  112. cursor:pointer;
  113. }
  114. .nav a.current{
  115. border-bottom:1px solid #fff;
  116. }
  117. .main{
  118. width:1200px;
  119. margin:0 auto;
  120. padding:70px 0;
  121. }
  122. .main-nav{
  123. display: inline-block;
  124. height:40px;
  125. border-top:solid 1px #eaeaea;
  126. box-sizing:border-box;
  127. }
  128. .main-nav>a{
  129. width: 140px;
  130. height: 40px;
  131. text-align:center;
  132. line-height:40px;
  133. font-size: 20px;
  134. color: #5f6367;
  135. display:inline-block;
  136. box-sizing:border-box;
  137. border-bottom:solid 1px #eaeaea;
  138. cursor:pointer;
  139. }
  140. .main-nav>a.current{
  141. border-bottom:solid 1px #fff;
  142. border-left:solid 1px #eaeaea;
  143. border-right:solid 1px #eaeaea;
  144. border-top:solid 2px #373d41;
  145. }
  146. .main-nav>a:first-child{
  147. border-left:solid 1px #eaeaea;
  148. }
  149. .main-nav>a:last-child{
  150. border-right:solid 1px #eaeaea;
  151. }
  152. .box{
  153. width:1200px;
  154. margin-top:70px;
  155. }
  156. .box>p{
  157. font-size: 20px;
  158. text-align:center;
  159. color: #dcdcdc;
  160. margin-top:15px;
  161. }
  162. .title{
  163. width:800px;
  164. margin:0 auto;
  165. display:flex;
  166. align-items:center;
  167. justify-content:center;
  168. }
  169. .tit{
  170. width: 271px;
  171. height: 66px;
  172. background-color: rgba(9, 17, 45, 0.05);
  173. font-size: 28px;
  174. color: #111111;
  175. letter-spacing: 13px;
  176. line-height:66px;
  177. text-align:center;
  178. }
  179. .titL,.titR{
  180. color: #dcdcdc;
  181. font-size: 18px;
  182. margin:0 50px;
  183. }
  184. .detail{
  185. margin:30px auto;
  186. color: #111111;
  187. font-size: 18px;
  188. line-height: 38px;
  189. letter-spacing: 2px;
  190. text-align:center;
  191. }
  192. .banner{
  193. width:1200px;
  194. height:420px;
  195. background-color:#ddd;
  196. }
  197. .column{
  198. width:1200px;
  199. height:420px;
  200. background-color: #fafafa;
  201. }
  202. .col-left{
  203. width:50%;
  204. float:left;
  205. }
  206. .col-right{
  207. width:50%;
  208. float:left;
  209. padding-left:50px;
  210. box-sizing:border-box;
  211. }
  212. .col-right .titbit{
  213. color: #111111;
  214. font-size: 24px;
  215. margin-top:54px;
  216. }
  217. .col-right .det{
  218. color: #5f6367;
  219. font-size: 18px;
  220. margin-top:20px;
  221. }
  222. /* Browser Resets */
  223. .flex-container a:active,
  224. .flexslider a:active {outline: none;}
  225. .slides,
  226. .flex-control-nav,
  227. .flex-direction-nav {margin: 0; padding: 0; list-style: none;}
  228. /* FlexSlider Necessary Styles
  229. *********************************/
  230. .flexslider {width: 100%; height: 420px;margin: 0; padding: 0;}
  231. .flexslider .slides{ width:100%; height:100%;}
  232. .flexslider .slides > li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
  233. .flexslider .slides > li{ width:100%;height:100%;}
  234. .flexslider .slides > li > a{ display:block; width:100%; height:100%;}
  235. .flexslider .slides img {max-width: 100%; display: block;height: 420px;}
  236. .flex-pauseplay span {text-transform: capitalize;}
  237. /* Clearfix for the .slides element */
  238. .slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
  239. html[xmlns] .slides {display: block;}
  240. * html .slides {height: 1%;}
  241. /* No JavaScript Fallback */
  242. /* If you are not using another script, such as Modernizr, make sure you
  243. * include js that eliminates this class on page load */
  244. .no-js .slides > li:first-child {display: block;}
  245. /* FlexSlider Default Theme
  246. *********************************/
  247. .flexslider {/* background: #fff; */ /* border: 4px solid #fff; */ position: relative; -webkit-border-radius: 5px; -moz-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; zoom: 1;}
  248. .flexslider .slides {zoom: 1;}
  249. .flexslider .slides > li {position: relative;}
  250. /* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
  251. .flex-container {zoom: 1; position: relative;}
  252. /* Caption style */
  253. /* IE rgba() hack */
  254. .flex-caption {background:none; -ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
  255. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000); zoom: 1;}
  256. .flex-caption {width: 96%; padding: 2%; position: absolute; left: 0; bottom: 0; background: rgba(0,0,0,.3); color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,.3); font-size: 14px; line-height: 18px;}
  257. /* Direction Nav */
  258. .flex-direction-nav li a {width: 52px; height: 52px; margin: -13px 0 0; display: block; background: url(../images/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px;}
  259. .flex-direction-nav li a.next {background-position: -52px 0; right: 30px;}
  260. .flex-direction-nav li a.prev {background-position: 0 0; left: 30px;}
  261. .flex-direction-nav li a.disabled {opacity: .3; filter:alpha(opacity=30); cursor: default;}
  262. /* Control Nav */
  263. .flex-control-nav {width: 100%;position: absolute;bottom: 20px;text-align: center;}
  264. .flex-control-nav li {margin: 0 5px;display: inline-block;zoom: 1; *display: inline;}
  265. .flex-control-nav li:first-child {/* margin: 0; */}
  266. .flex-control-nav li a {width: 14px;height: 14px;display: block;cursor: pointer;text-indent: -9999px;background: #fff;border-radius: 50px;}
  267. .flex-control-nav li a:hover {background-position: 0 -13px;}
  268. .flex-control-nav li a.active {cursor: default;background: #e3cb2b;}
  269. footer{
  270. width: 100%;
  271. height: 120px;
  272. padding:20px 0;
  273. background-color: #373d41;
  274. }
  275. footer>.foot{
  276. width:1200px;
  277. height: 120px;
  278. margin:0 auto;
  279. }
  280. footer>.foot>.footL{
  281. width:45%;
  282. height: 120px;
  283. float:left;
  284. border-right:1px solid #fff;
  285. box-sizing:border-box;
  286. }
  287. footer>.foot>.footR{
  288. width:55%;
  289. height: 120px;
  290. float:left;
  291. position:relative;
  292. }
  293. .footL>img{
  294. margin-top:26px;
  295. }
  296. .footL>p{
  297. font-size: 13px;
  298. color: #bdbdbd;
  299. margin-top:20px;
  300. }
  301. .line>p{
  302. font-size: 14px;
  303. color: #ffffff;
  304. margin-left:50px;
  305. margin-top:20px;
  306. }
  307. .line>p>text{
  308. margin-left:70px;
  309. }
  310. .footR>.er{
  311. width:90px;
  312. height:120px;
  313. position:absolute;
  314. right:0;
  315. top:0;
  316. }
  317. .er>p{
  318. font-size: 14px;
  319. color: #ffffff;
  320. margin-bottom:10px;
  321. text-align:center;
  322. }