contact.css
1.7 KB
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
@media(min-width:768px){
.content{
display: flex;
width:1180px;
margin:40px auto 100px;
}
.content_left{
width:450px;
text-align: center;
}
.content_left_txt1{
padding-bottom:62px;
border-bottom:1px solid #2C82E6;
}
.content_left_txt1 p,.content_left_txt2 p{
font-family:MicrosoftYaHei;
font-weight:400;
color:rgba(51,51,51,1);
}
.content_left_txt1 p:nth-child(1),.content_left_txt2 p:nth-child(1){
font-size:36px;
cursor: pointer;
}
.content_left_txt1 p:nth-child(2){
font-size:24px;
margin-top:40px;
cursor: pointer;
}
.content_left_txt2 p:nth-child(1){
margin-top:58px;
}
.content_left_txt2 p:nth-child(2){
font-size:24px;
margin-top:42px;
cursor: pointer;
}
.content_right{
width:675px;
height:378px;
cursor: pointer;
margin-left:28px;
}
.content_right img{
width:100%;
height:100%;
}
}
@media(max-width:768px){
.content{
width:100%;
margin:20px auto 100px;
}
.content_left{
text-align: center;
}
.content_left_txt1{
padding-bottom:17px;
border-bottom:1px solid #2C82E6;
}
.content_left_txt1 p,.content_left_txt2 p{
font-family:MicrosoftYaHei;
font-weight:400;
color:rgba(51,51,51,1);
}
.content_left_txt1 p:nth-child(1),.content_left_txt2 p:nth-child(1){
font-size:23px;
font-weight: bold;
cursor: pointer;
}
.content_left_txt1 p:nth-child(2){
font-size:17px;
margin-top:5px;
cursor: pointer;
}
.content_left_txt2 p:nth-child(1){
margin-top:16px;
}
.content_left_txt2 p:nth-child(2){
font-size:20px;
margin-top:6px;
cursor: pointer;
}
.content_right{
cursor: pointer;
margin-top: 20px;
padding: 0 10px;
}
.content_right img{
width:100%;
height:100%;
}
}