about.scss 6.6 KB

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