50 lines
818 B
CSS
Executable File
50 lines
818 B
CSS
Executable File
/*头部*/
|
|
@media screen and (min-width: 1280px) {
|
|
.swt-Container {
|
|
width: 1200px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
@media screen and (max-width: 1279px) {
|
|
.swt-Container {
|
|
width: 96%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
.footer {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.footl,
|
|
.footr {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
/*底部1440*/
|
|
@media screen and (min-width: 1200px) {
|
|
.footer dl dt .arrow {
|
|
display: none;
|
|
}
|
|
.footer {
|
|
padding-top: 60px;
|
|
padding-bottom: 35px;
|
|
}
|
|
.footer .footl {
|
|
width: 900px;
|
|
}
|
|
.footer .footr {
|
|
width: 300px;
|
|
}
|
|
}
|
|
@media screen and (min-width: 769px) and (max-width: 1199px) {
|
|
.footer .footl {
|
|
width: 70%;
|
|
}
|
|
.footer .footr {
|
|
width: 30%;
|
|
}
|
|
}
|