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
| @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: 800px;
| padding: 64px 0 0;
| }
| .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 #ebedf0 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;
| }
| .block-icon {
| position: absolute;
| left: -40px;
| transform: translateX(~'calc(-50% + 1px)');
| }
| .block-content {
| width: 300px;
| color: #314659;
| font-size: 12px;
| min-height: 18px;
| word-break: break-all;
| }
| }
| }
|
| @media screen and (max-width: 767px) {
| .@{content9}-wrapper {
| padding-bottom: 0;
| .@{content9} {
| padding: 64px 24px;
| }
| .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;
| }
| }
| }
| }
|
|