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
| /*当浏览器可视部分宽度大于1920px小于3860px*/
| @media screen and (min-width: 1921px) and (max-width: 3840px) {
| header,.logo{
| height: 80px;
| }
| .container{
| top: 140px;
| }
| #satellite_content_top,#satellite_content_bottom,#Industry_content,#Handle_content,.container_rg_box{
| width: 440px;
| height: 300px;
| }
|
| #satellite_content_top{
| margin-top:40px;
| }
| #satellite_content_bottom{
| margin-top:80px;
| }
|
| #td_case_content,#typical_case_content{
| width: 443px;
| height: 90px;
| }
| .td_case{
| margin-top: 40px;
| }
| .Industry,.Handle,.Industry title{
| margin-bottom: 40px;
| }
|
| }
|
| /*当浏览器可视部分宽度大于1600px小于1920px*/
| /*@media screen and (min-width: 1600px) and (max-width: 1920px) {*/
| /* header,.logo{*/
| /* height: 60px;*/
| /* }*/
| /* .container{*/
| /* top: 90px;*/
| /* }*/
| /* #satellite_content_top,#satellite_content_bottom,#Industry_content,#Handle_content,.container_rg_box{*/
| /* width: 378px;*/
| /* height: 256px;*/
| /* }*/
|
| /* #satellite_content_top{*/
| /* margin-top: 5%;*/
| /* }*/
| /* #satellite_content_bottom{*/
| /* margin-top: 5%;*/
| /* }*/
|
| /* #td_case_content,#typical_case_content{*/
| /* width: 378px;*/
| /* height: 80px;*/
| /* }*/
| /* .td_case{*/
| /* margin-top: 25px;*/
| /* }*/
| /* .Industry,.Handle,.Industry title{*/
| /* margin-bottom: 5%;*/
| /* }*/
|
| /*}*/
|
| /*当浏览器可视部分宽度小于800px*/
| @media screen and (max-width: 800px) {
| body,html{
| background-image: none;
| background-color: #000;
| overflow-y: auto;
| }
| .container_lf,.container_rg{
| float: unset;
| width: 378px;
| margin: auto;
| }
| menu,.sys_date,.vis_user,.logo,.earth{
| display: none;
| }
| .container_rg_box{
| right: -20px;
| }
| }
|
| /*!*当浏览器可视部分高度小于916px*!*/
| /*@media screen and (max-height: 916px) {*/
| /* body, html{*/
| /* overflow-y: auto;*/
| /* }*/
| /*}*/
|
|