about.scss 6.8 KB

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