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
|
| .index-banner {
| width: 100%;
| height: 800px;
| background-image: url("../assets/images/banner_news@2x.png");
| background-repeat: no-repeat;
| background-size: 100% 100%;
| }
| .index-banner-c {
| width: 1200px;
| height: 100%;
| margin: 0 auto;
| display: flex;
| flex-direction: column;
| align-items: start;
| justify-content: center;
| }
| .index-banner-c-a {
| font-weight: bold;
| font-size: 60px;
| color: #191B1F;
| margin-bottom: 12px;
| }
| .index-banner-c-b {
| font-weight: 400;
| font-size: 16px;
| color: #191B1F;
| margin-bottom: 50px;
| }
| .index-banner-c-c {
| width: 124px;
| height: 46px;
| padding: 0 19px;
| box-sizing: border-box;
| display: flex;
| align-items: center;
| justify-content: space-between;
| background: #FF7900;
| box-shadow: 0 2px 10px 0 rgba(255,121,0,0.2);
| border-radius: 30px;
| cursor: pointer;
| }
| .index-banner-c-c span {
| font-weight: 500;
| font-size: 16px;
| color: #FFFFFF;
| margin-right: 5px;
| }
| .index-banner-c-c img {
| width: 16px;
| height: 16px;
| }
| .index-y {
| width: 100%;
| padding: 60px 0;
| display: flex;
| align-content: center;
| justify-content: center;
| box-sizing: border-box;
| }
| .index-y-list {
| width: 1200px;
| display: flex;
| flex-direction: column;
| }
| .index-y-list a {
| width: 100%;
| margin-bottom: 50px;
| }
| .item1 {
| width: 100%;
| display: flex;
| align-content: center;
| justify-content: space-between;
| cursor: pointer;
| }
| .item1:last-child {
| margin: 0 !important;
| }
| .item-img {
| flex-shrink: 0;
| width: 360px;
| height: 270px;
| border-radius: 8px;
| margin-right: 30px;
| display: flex;
| align-content: center;
| justify-content: center;
| overflow: hidden;
| }
| .item-img img {
| width: 100%;
| height: 100%;
| }
| .item-info {
| flex: 1;
| height: 100%;
| display: flex;
| justify-content: space-between;
| flex-direction: column;
| }
| .item-info-top {
| display: flex;
| flex-direction: column;
| }
| .item-info-top span:nth-child(1) {
| font-weight: 500;
| font-size: 30px;
| color: #191B1F;
| }
| .item-info-top span:nth-child(2) {
| font-weight: 400;
| font-size: 16px;
| color: #333333;
| margin-top: 20px;
| }
| .item-info-bottom {
| font-weight: 400;
| font-size: 16px;
| color: #7B7F87;
| }
| .fenye {
| display: flex;
| align-items: center;
| justify-content: center;
| }
| .fenye-hz {
| width: 1200px;
| display: flex;
| align-items: end;
| justify-content: end;
| }
|
|