about.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. .main .about {
  2. padding: 120px 0;
  3. background: #fff;
  4. }
  5. .main .about .title {
  6. font-size: 34px;
  7. text-align: center;
  8. margin-bottom: 32px;
  9. }
  10. .main .about .description {
  11. font-size: 16px;
  12. color: #505050;
  13. text-align: center;
  14. line-height: 32px;
  15. }
  16. .main .about .content {
  17. display: flex;
  18. justify-content: space-between;
  19. margin-top: 80px;
  20. }
  21. .main .about .content .item {
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. width: 380px;
  26. height: 387px;
  27. box-sizing: border-box;
  28. border: 1px solid #e8e8e8;
  29. padding: 40px 30px;
  30. }
  31. .main .about .content .item img {
  32. display: block;
  33. width: 72px;
  34. height: 72px;
  35. margin-top: 20px;
  36. }
  37. .main .about .content .item .tip {
  38. font-size: 18px;
  39. color: #505050;
  40. font-weight: bold;
  41. margin-top: 32px;
  42. }
  43. .main .about .content .item .desc {
  44. margin-top: 32px;
  45. font-size: 16px;
  46. color: #505050;
  47. line-height: 32px;
  48. text-align: center;
  49. }
  50. .main .profile {
  51. background: #f7f7f7;
  52. padding: 60px 0;
  53. }
  54. .main .profile .cover {
  55. width: 470px;
  56. height: 479px;
  57. overflow: hidden;
  58. background-color: pink;
  59. }
  60. .main .profile .cover img {
  61. display: block;
  62. width: 100%;
  63. height: 100%;
  64. }
  65. .main .profile .content {
  66. width: 672px;
  67. margin-left: 50px;
  68. }
  69. .main .profile .content .title {
  70. font-size: 34px;
  71. }
  72. .main .profile .content .subtitle {
  73. font-size: 34px;
  74. color: #0688d2;
  75. margin: 40px 0 16px;
  76. }
  77. .main .profile .content .subtitle span {
  78. font-size: 24px;
  79. color: #272727;
  80. margin-left: 12px;
  81. }
  82. .main .profile .content .tags {
  83. display: flex;
  84. align-items: center;
  85. font-size: 0;
  86. }
  87. .main .profile .content .tags span {
  88. font-size: 16px;
  89. }
  90. .main .profile .content .tags i {
  91. display: block;
  92. height: 12px;
  93. width: 1px;
  94. background: #505050;
  95. margin: 0 24px;
  96. }
  97. .main .profile .content .line {
  98. width: 100%;
  99. height: 1px;
  100. background: #e8e8e8;
  101. position: relative;
  102. margin: 20px 0 40px;
  103. }
  104. .main .profile .content .line::before {
  105. content: "";
  106. display: block;
  107. width: 24px;
  108. height: 2px;
  109. background: #0688d2;
  110. position: absolute;
  111. left: 0;
  112. bottom: 0;
  113. }
  114. .main .profile .content .description {
  115. font-size: 16px;
  116. color: #999;
  117. line-height: 32px;
  118. text-align: justify;
  119. }
  120. .main .team {
  121. padding: 120px 0;
  122. background: #fff;
  123. }
  124. .main .team .title {
  125. font-size: 34px;
  126. text-align: center;
  127. }
  128. .main .team .content {
  129. margin-top: 80px;
  130. }
  131. .main .team .content .item {
  132. width: 388px;
  133. height: 340px;
  134. float: left;
  135. margin-right: 17px;
  136. margin-top: 18px;
  137. overflow: hidden;
  138. }
  139. .main .team .content .item:first-child {
  140. position: relative;
  141. background: #eff9ff;
  142. display: flex;
  143. justify-content: center;
  144. align-items: center;
  145. }
  146. .main .team .content .item:first-child .cover {
  147. width: 160px;
  148. }
  149. .main .team .content .item:first-child .cover .line {
  150. width: 18px;
  151. height: 3px;
  152. background: #0688d2;
  153. margin: 18px 0 24px;
  154. }
  155. .main .team .content .item:first-child .cover .tip {
  156. font-size: 34px;
  157. }
  158. .main .team .content .item:first-child .cover .desc {
  159. font-size: 16px;
  160. color: #999;
  161. }
  162. .main .team .content .item:nth-child(-n+3) {
  163. margin-top: 0;
  164. }
  165. .main .team .content .item:nth-child(3), .main .team .content .item:nth-child(5), .main .team .content .item:nth-child(8), .main .team .content .item:nth-child(10) {
  166. margin-right: 0;
  167. }
  168. .main .team .content .item:nth-child(5), .main .team .content .item:nth-child(9) {
  169. width: 795px;
  170. }
  171. .main .team .content .item img {
  172. display: block;
  173. width: 100%;
  174. transition: all 0.4s;
  175. }
  176. .main .team .content .item:hover img {
  177. transform: scale(1.2);
  178. }
  179. .main .development {
  180. padding: 100px 0;
  181. background: #f7f7f7;
  182. }
  183. .main .development .title {
  184. font-size: 34px;
  185. text-align: center;
  186. }
  187. .main .development .content {
  188. position: relative;
  189. margin-top: 80px;
  190. width: 2px;
  191. margin: 0 auto;
  192. background: #e8e8e8;
  193. }
  194. .main .development .content .item {
  195. position: relative;
  196. width: 2px;
  197. margin-top: 60px;
  198. }
  199. .main .development .content .item::before {
  200. content: "";
  201. position: absolute;
  202. width: 10px;
  203. height: 10px;
  204. box-sizing: border-box;
  205. border: 1px solid #999999;
  206. background: #fff;
  207. border-radius: 50%;
  208. left: -4px;
  209. z-index: 5;
  210. top: 32px;
  211. }
  212. .main .development .content .item:last-child::before {
  213. background: #0688d2;
  214. border-color: #fff;
  215. }
  216. .main .development .content .item:last-child .time {
  217. border: 1px solid #0688d2;
  218. border-left: 0;
  219. color: #0688d2;
  220. }
  221. .main .development .content .item:last-child .node {
  222. background: #0688d2;
  223. }
  224. .main .development .content .item:last-child .node dt,
  225. .main .development .content .item:last-child .node .tip,
  226. .main .development .content .item:last-child .node .subtip {
  227. color: #ffffff;
  228. }
  229. .main .development .content .item.with-time-left .time {
  230. position: absolute;
  231. left: -16px;
  232. top: 0;
  233. transform: translateX(-100%);
  234. }
  235. .main .development .content .item.with-time-left .node {
  236. padding-left: 44px;
  237. margin-left: -16px;
  238. }
  239. .main .development .content .item.with-time-right .time {
  240. position: absolute;
  241. top: 0;
  242. left: 16px;
  243. }
  244. .main .development .content .item.with-time-right .node {
  245. position: relative;
  246. transform: translate(-100%);
  247. text-align: right;
  248. padding-right: 44px;
  249. right: -16px;
  250. }
  251. .main .development .content .item .time {
  252. font-size: 34px;
  253. color: #505050;
  254. white-space: nowrap;
  255. padding: 20px 24px;
  256. height: 100%;
  257. box-sizing: border-box;
  258. }
  259. .main .development .content .item .time span {
  260. font-size: 14px;
  261. margin-left: 10px;
  262. }
  263. .main .development .content .item .node {
  264. width: 526px;
  265. margin: 0;
  266. box-sizing: border-box;
  267. padding: 20px 24px;
  268. }
  269. .main .development .content .item .node dd,
  270. .main .development .content .item .node dt {
  271. margin-left: 0;
  272. }
  273. .main .development .content .item .node dt {
  274. font-size: 34px;
  275. color: #505050;
  276. }
  277. .main .development .content .item .node dd {
  278. font-size: 14px;
  279. color: #505050;
  280. margin-top: 24px;
  281. }
  282. .main .development .content .item .node dd .tip {
  283. margin-bottom: 8px;
  284. }
  285. .main .honor {
  286. padding: 120px 0;
  287. padding-bottom: 0;
  288. background: #fff;
  289. }
  290. .main .honor .title {
  291. font-size: 32px;
  292. text-align: center;
  293. }
  294. .main .honor .content {
  295. margin-top: 80px;
  296. }
  297. .main .honor .content .item {
  298. width: 288px;
  299. height: 330px;
  300. float: left;
  301. margin-right: 15px;
  302. }
  303. .main .honor .content .item:nth-child(4n) {
  304. margin-right: 0;
  305. }