content9.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. @content9: content9;
  2. @text-color: rgba(0, 0, 0, 0.85);
  3. @text-color2: #697b8c;
  4. .@{content9}-wrapper {
  5. padding-bottom: 64px;
  6. &.home-page-wrapper {
  7. overflow: initial;
  8. }
  9. .@{content9} {
  10. min-height: 800px;
  11. padding: 64px 0 0;
  12. }
  13. .timeline {
  14. position: relative;
  15. &:before {
  16. display: block;
  17. content: '';
  18. position: absolute;
  19. left: 50%;
  20. top: 0;
  21. width: 0;
  22. height: ~"calc(100% - 108px)";
  23. margin: 34px 0;
  24. border-left: 2px #ebedf0 dashed;
  25. }
  26. }
  27. .block-wrapper {
  28. color: @text-color;
  29. display: flex;
  30. position: relative;
  31. margin-bottom: 0px;
  32. min-height: 110px;
  33. &:last-child {
  34. margin-bottom: 0;
  35. }
  36. }
  37. .image-wrapper,
  38. .text-wrapper {
  39. width: 50%;
  40. }
  41. .image-wrapper {
  42. text-align: center;
  43. .block-img,
  44. .name-wrapper {
  45. float: right;
  46. clear: both;
  47. width: 262px;
  48. margin: auto;
  49. }
  50. .block-img {
  51. height: 98px;
  52. img {
  53. height: 100%;
  54. }
  55. }
  56. .name-wrapper {
  57. margin: 16px 0 0;
  58. .block-name {
  59. font-size: 24px;
  60. margin-bottom: 4px;
  61. }
  62. .block-post {
  63. font-size: 12px;
  64. color: @text-color2;
  65. }
  66. }
  67. }
  68. .text-wrapper {
  69. padding-left: 40px;
  70. .block-time {
  71. font-size: 12px;
  72. color: @text-color2;
  73. line-height: 18px;
  74. min-height: 18px;
  75. }
  76. .block-title {
  77. margin: 8px 0 12px;
  78. font-size: 14px;
  79. position: relative;
  80. min-height: 18px;
  81. }
  82. .block-icon {
  83. position: absolute;
  84. left: -40px;
  85. transform: translateX(~"calc(-50% + 1px)");
  86. }
  87. .block-content {
  88. width: 300px;
  89. color: #314659;
  90. font-size: 12px;
  91. min-height: 18px;
  92. }
  93. }
  94. }
  95. @media screen and (max-width: 767px) {
  96. .@{content9}-wrapper {
  97. padding-bottom: 0;
  98. .@{content9} {
  99. padding: 64px 24px;
  100. }
  101. .timeline {
  102. &:before {
  103. left: 0;
  104. height: 100%;
  105. margin: 0;
  106. }
  107. }
  108. .block-wrapper {
  109. display: block;
  110. min-height: 100px;
  111. margin-bottom: 54px;
  112. }
  113. .image-wrapper,
  114. .text-wrapper {
  115. width: 100%;
  116. }
  117. .image-wrapper {
  118. .block-img {
  119. display: none;
  120. }
  121. .name-wrapper {
  122. text-align: left;
  123. float: left;
  124. width: 100%;
  125. padding-left: 40px;
  126. margin: auto;
  127. }
  128. .block-name, .block-post {
  129. display: inline-block;
  130. }
  131. .block-name {
  132. margin-right: 8px;
  133. }
  134. }
  135. .text-wrapper {
  136. .block-content {
  137. display: none;
  138. }
  139. .block-title {
  140. font-size: 16px;
  141. }
  142. }
  143. }
  144. }