develop.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. @charset "utf-8";
  2. body,
  3. html {
  4. width: 100%;
  5. height: 100%;
  6. padding: 0;
  7. margin: 0
  8. }
  9. .about-history {
  10. height: 701px;
  11. padding: 64px 106px 0;
  12. -webkit-background-size: 100% 100%;
  13. background-size: 100% 100%
  14. }
  15. .about-title {
  16. margin-bottom: 25px
  17. }
  18. .about-title h3 {
  19. margin: 0 0 10px;
  20. font-size: 34px;
  21. font-weight: 400;
  22. color: #2c2c2c
  23. }
  24. .about-title p {
  25. margin: 0;
  26. font-size: 36px;
  27. font-weight: 300;
  28. color: #ececec
  29. }
  30. .title-white h3 {
  31. color: #d6d6d6
  32. }
  33. .title-white p {
  34. color: rgba(222, 222, 222, .09)
  35. }
  36. .about-history-list {
  37. position: relative;
  38. width: 100%
  39. }
  40. .about-history-list .flex-viewport {
  41. padding: 0 31px
  42. }
  43. .about-history-list .flex-viewport:before {
  44. position: absolute;
  45. top: 50%;
  46. right: 0;
  47. left: 0;
  48. border-top: 8px solid #c39857;
  49. content: ''
  50. }
  51. .about-history-list .slides li {
  52. width: 253px !important;
  53. height: 470px;
  54. margin-right: 31px;
  55. position: relative
  56. }
  57. .about-history-list .slides li:nth-child(24)::after {
  58. content: "";
  59. width: 1px;
  60. height: 100%;
  61. border-right: 2px dashed #c39857;
  62. position: absolute;
  63. right: -41px;
  64. top: 0
  65. }
  66. .about-history-list .slides li:nth-of-type(2n-1) {
  67. position: relative;
  68. width: 253px !important;
  69. height: 430px;
  70. margin-right: 31px
  71. }
  72. .about-history-list .slides li .item {
  73. position: absolute;
  74. right: -32px;
  75. bottom: 0;
  76. left: -32px;
  77. min-height: 152px;
  78. padding: 44px 0 0;
  79. background-color: #fff;
  80. -webkit-transition: all .2s ease;
  81. -moz-transition: all .2s ease;
  82. -ms-transition: all .2s ease;
  83. -o-transition: all .2s ease;
  84. transition: all .2s ease;
  85. border-radius: 10px
  86. }
  87. .about-history-list .slides li .item:after,
  88. .about-history-list .slides li .item:before {
  89. position: absolute;
  90. top: -49px;
  91. left: 50%;
  92. width: 20px;
  93. height: 20px;
  94. overflow: hidden;
  95. margin-left: -10px;
  96. -webkit-border-radius: 100%;
  97. -moz-border-radius: 100%;
  98. border-radius: 100%;
  99. background-color: #c39857;
  100. content: ''
  101. }
  102. .about-history-list .slides li .item:after {
  103. top: -45px;
  104. width: 12px;
  105. height: 12px;
  106. margin-left: -6px;
  107. background-color: #fff
  108. }
  109. .about-history-list .slides li:nth-child(even) .item {
  110. top: 47px;
  111. bottom: auto;
  112. padding: 0 0 44px
  113. }
  114. .about-history-list .slides li:nth-child(even) .item:before {
  115. top: auto;
  116. bottom: -49px
  117. }
  118. .about-history-list .slides li:nth-child(even) .item:after {
  119. top: auto;
  120. bottom: -45px
  121. }
  122. .about-history-list .slides li .item:hover {
  123. background-color: #c39857
  124. }
  125. .about-history-list .slides li .item h3 {
  126. position: absolute;
  127. top: 0;
  128. right: 0;
  129. left: 0;
  130. height: 44px;
  131. line-height: 44px;
  132. margin: 0;
  133. font-size: 20px;
  134. font-weight: 400;
  135. color: #fff;
  136. text-align: center;
  137. background-color: #c39857;
  138. -webkit-transition: all .2s ease;
  139. -moz-transition: all .2s ease;
  140. -ms-transition: all .2s ease;
  141. -o-transition: all .2s ease;
  142. transition: all .2s ease;
  143. border-radius: 10px
  144. }
  145. .about-history-list .slides li .item:hover h3 {
  146. color: #fff;
  147. background-color: #c39857
  148. }
  149. .about-history-list .slides li .item h3:before {
  150. position: absolute;
  151. border-width: 2px;
  152. border-style: solid;
  153. border-color: #c39857;
  154. content: '';
  155. height: 30px;
  156. top: -65%;
  157. left: 50%;
  158. transform: translateX(-50%)
  159. }
  160. .about-history-list .slides li:nth-child(even) .item h3 {
  161. top: auto;
  162. bottom: 0
  163. }
  164. .about-history-list .slides li:nth-child(even) .item h3:before {
  165. position: absolute;
  166. border-width: 2px;
  167. border-style: solid;
  168. border-color: #c39857;
  169. content: '';
  170. height: 30px;
  171. top: 100%;
  172. left: 50%;
  173. transform: translateX(-50%)
  174. }
  175. .about-history-list .slides li .item .desc {
  176. line-height: 24px;
  177. padding: 0 26px;
  178. font-size: 14px;
  179. color: #929292
  180. }
  181. .about-history-list .slides li:nth-of-type(2n) .item .desc {
  182. line-height: 24px;
  183. padding: 22px 26px 0;
  184. font-size: 14px;
  185. color: #929292
  186. }
  187. .about-history-list .slides li .item:hover .desc {
  188. color: #fff
  189. }
  190. .about-history-list .slides li .item .desc p,
  191. .about-history-swiper .swiper-slide .item .desc p {
  192. margin: 0
  193. }
  194. .about-history-list .flex-direction-nav {
  195. padding: 0;
  196. margin: 0;
  197. list-style: none
  198. }
  199. .flex-direction-nav {
  200. display: none
  201. }
  202. #left {
  203. position: absolute;
  204. left: -5%;
  205. top: 39%;
  206. width: 48px;
  207. font-size: 80px;
  208. font-family: simsun;
  209. color: #c39857;
  210. text-align: center;
  211. cursor: pointer;
  212. font-weight: 700
  213. }
  214. #changeUl {
  215. transition: 1s ease
  216. }
  217. #right,
  218. .about-history-list .flex-direction-nav a {
  219. position: absolute;
  220. width: 48px;
  221. font-family: simsun;
  222. text-align: center
  223. }
  224. #right {
  225. right: -5%;
  226. cursor: pointer;
  227. font-weight: 700;
  228. top: 39%;
  229. font-size: 80px;
  230. color: #c39857
  231. }
  232. .about-history-list .flex-direction-nav a {
  233. top: 50%;
  234. height: 160px;
  235. line-height: 160px;
  236. overflow: hidden;
  237. margin-top: -80px;
  238. font-size: 50px;
  239. color: #000
  240. }
  241. .about-history-list .flex-direction-nav a.flex-prev {
  242. left: -48px
  243. }
  244. .about-history-list .flex-direction-nav a.flex-next {
  245. right: -48px
  246. }
  247. .about-history-swiper {
  248. width: 100%
  249. }
  250. .about-history-swiper .swiper-slide .item {
  251. overflow: hidden;
  252. -webkit-border-radius: 5px;
  253. -moz-border-radius: 5px;
  254. border-radius: 5px;
  255. background-color: #fff
  256. }
  257. .about-history-swiper .swiper-slide .item h3 {
  258. margin: 0;
  259. height: 40px;
  260. line-height: 40px;
  261. overflow: hidden;
  262. font-size: 20px;
  263. text-align: center;
  264. color: #999;
  265. background-color: #e2e2e2
  266. }
  267. .about-history-swiper .swiper-slide .item .desc {
  268. line-height: 20px;
  269. padding: 10px;
  270. font-size: 14px;
  271. color: #929292
  272. }
  273. .about-history-swiper .about-history-pagination {
  274. position: static;
  275. margin-top: 10px
  276. }
  277. .about-history-swiper .about-history-pagination .swiper-pagination-bullet {
  278. background: #fff
  279. }
  280. .about-history-swiper .about-history-pagination .swiper-pagination-bullet-active {
  281. background: #c91523
  282. }
  283. a {
  284. color: #414141;
  285. -webkit-transition: all .2s ease;
  286. -moz-transition: all .2s ease;
  287. -ms-transition: all .2s ease;
  288. -o-transition: all .2s ease;
  289. transition: all .2s ease
  290. }
  291. a,
  292. a:hover {
  293. text-decoration: none
  294. }
  295. .pull-left {
  296. float: left
  297. }
  298. .pull-right {
  299. float: right
  300. }
  301. .pull-none {
  302. float: none
  303. }
  304. .clearfix:after {
  305. clear: both;
  306. display: block;
  307. visibility: hidden;
  308. height: 0;
  309. content: ".";
  310. font-size: 0
  311. }
  312. * html .clearfix {
  313. zoom: 1
  314. }
  315. :first-child+html .clearfix {
  316. zoom: 1
  317. }
  318. img {
  319. max-width: 100%
  320. }
  321. img.full {
  322. display: block;
  323. width: 100%
  324. }
  325. .list {
  326. padding: 0;
  327. margin: 0;
  328. list-style: none
  329. }
  330. .hidden {
  331. display: none
  332. }
  333. .col-1 {
  334. float: left;
  335. width: 8.33333333%
  336. }
  337. .col-2,
  338. .col-3 {
  339. float: left;
  340. width: 16.66666667%
  341. }
  342. .col-3 {
  343. width: 25%
  344. }
  345. .col-4,
  346. .col-5 {
  347. float: left;
  348. width: 33.33333333%
  349. }
  350. .col-5 {
  351. width: 41.66666667%
  352. }
  353. .col-6,
  354. .col-7 {
  355. float: left;
  356. width: 50%
  357. }
  358. .col-7 {
  359. width: 58.33333333%
  360. }
  361. .col-8,
  362. .col-9 {
  363. float: left;
  364. width: 66.66666667%
  365. }
  366. .col-9 {
  367. width: 75%
  368. }
  369. .col-10,
  370. .col-11 {
  371. float: left;
  372. width: 83.33333333%
  373. }
  374. .col-11 {
  375. width: 91.66666667%
  376. }
  377. .col-12,
  378. .col-13 {
  379. float: left;
  380. width: 100%
  381. }
  382. .col-13 {
  383. width: 20%
  384. }
  385. .col-offset-3 {
  386. margin-left: 25%
  387. }
  388. .tb {
  389. display: table;
  390. width: 100%;
  391. height: 100%
  392. }
  393. .tbr {
  394. display: table-row
  395. }
  396. .tbc {
  397. display: table-cell;
  398. vertical-align: middle
  399. }