about.scss 6.6 KB

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