aerwen_web_nuxt/assets/css/business/news/media.scss
2023-06-29 19:19:30 +08:00

41 lines
652 B
SCSS

//media.scss
/*1440px*/
/*大于*/
@media screen and (min-width: 1440px) {
.container {
max-width: 1420px;
}
}
/*小于*/
@media screen and (min-width: 1440px) {}
/*1200px*/
/*大于*/
@media screen and (min-width: 1200px) {}
/*小于*/
@media screen and (max-width: 1200px) {}
/*880px*/
/*大于*/
@media screen and (min-width: 880px) {}
/*小于*/
@media screen and (max-width: 880px) {
.ach-container{
float: left;
margin-top: 120px;
}
}
/*480px*/
/*大于*/
@media screen and (min-width: 480px) {}
/*小于*/
@media screen and (max-width: 480px) {
.news-box{
padding: 0 !important;
}
}