aerwen_u_site/assets/css/Carousel/media.scss
2024-05-03 18:19:56 +08:00

39 lines
520 B
SCSS

//media.scss
/*480px*/
/*小于*/
@media screen and (max-width: 480px) {
.Carousel-container{
margin-top: 105px !important;
height: 40vw!important;
}
.carousel-items{
height: 55vw!important;
}
.swiper-slide img {
width: 95vw !important;
}
}
/*880px*/
/*小于*/
@media screen and (max-width: 880px) {
}
/*1200px*/
/*小于*/
@media screen and (max-width: 1200px) {
}
/*大于*/
@media screen and (min-width: 1200px) {
}
/*1440px*/
/*小于*/
@media screen and (max-width: 1440px) {
}