zhengyiming
2025-07-11 cd837f7efcfaf427b478236c5cd2eb98e78d170b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
@content9: content9;
@text-color: rgba(0, 0, 0, 0.85);
@text-color2: #697b8c;
.@{content9}-wrapper {
  padding-bottom: 64px;
  &.home-page-wrapper {
    overflow: initial;
  }
  .@{content9} {
    // min-height: 400px;
    height: 1110px;
    box-sizing: content-box;
    padding: 64px 0 0;
 
    &.hor {
      height: 658px;
      .timeline {
        display: flex;
        flex-wrap: wrap;
        &:before {
          display: none;
        }
 
        .block-wrapper {
          width: 50%;
        }
      }
    }
  }
  .timeline {
    position: relative;
    &:before {
      display: block;
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      width: 0;
      height: ~'calc(100% - 108px)';
      margin: 34px 0;
      border-left: 2px #1890ff dashed;
    }
  }
  .block-wrapper {
    color: @text-color;
    display: flex;
    position: relative;
    margin-bottom: 70px;
    min-height: 160px;
    &:last-child {
      margin-bottom: 0;
    }
  }
  .image-wrapper,
  .text-wrapper {
    width: 50%;
  }
  .image-wrapper {
    text-align: center;
    .block-img,
    .name-wrapper {
      float: right;
      clear: both;
      width: 262px;
      margin: auto;
    }
    .block-img {
      height: 98px;
      img {
        height: 100%;
      }
    }
    .name-wrapper {
      margin: 16px 0 0;
      .block-name {
        font-size: 14px;
        margin-bottom: 4px;
      }
      .block-post {
        font-size: 12px;
        color: @text-color2;
      }
    }
  }
  .text-wrapper {
    padding-left: 40px;
    .block-time {
      font-size: 12px;
      color: @text-color2;
      line-height: 18px;
      min-height: 18px;
    }
    .block-title {
      margin: 8px 0 12px;
      font-size: 14px;
      position: relative;
      min-height: 18px;
      font-weight: bold;
    }
    .block-icon {
      position: absolute;
      left: -40px;
      transform: translateX(~'calc(-50% + 1px)');
    }
    .block-content {
      width: 300px;
      color: #314659;
      font-size: 14px;
      min-height: 18px;
      word-break: break-all;
    }
  }
}
 
@media screen and (max-width: 767px) {
  .@{content9}-wrapper {
    padding-bottom: 0;
    .@{content9} {
      height: 722px;
      padding: 64px 24px;
 
      &.hor {
        .timeline {
          display: block;
          &:before {
            display: block;
          }
 
          .block-wrapper {
            width: auto;
          }
        }
      }
    }
    .timeline {
      &:before {
        left: 0;
        height: 100%;
        margin: 0;
      }
    }
    .block-wrapper {
      display: block;
      min-height: 100px;
      margin-bottom: 54px;
    }
    .image-wrapper,
    .text-wrapper {
      width: 100%;
    }
    .image-wrapper {
      .block-img {
        display: none;
      }
      .name-wrapper {
        text-align: left;
        float: left;
        width: 100%;
        padding-left: 40px;
        margin: auto;
      }
      .block-name,
      .block-post {
        display: inline-block;
      }
      .block-name {
        margin-right: 8px;
      }
    }
    .text-wrapper {
      .block-content {
        display: none;
      }
      .block-title {
        font-size: 16px;
      }
    }
  }
}