//media.scss /*1440px*/ /*大于*/ @media screen and (min-width: 1440px) { } /*小于*/ @media screen and (max-width: 1440px) { } /*1200px*/ /*大于*/ @media screen and (min-width: 1200px) { } /*小于*/ @media screen and (max-width: 1440px) { } /*880px*/ /*大于*/ @media screen and (min-width: 880px) { } /*小于*/ @media screen and (max-width: 880px) { .Poster-title{ font-size: 22px!important; } .Poster-text{ font-size: 12px!important; } } /*480px*/ /*大于*/ @media screen and (min-width: 480px) { } /*小于*/ @media screen and (max-width: 480px) { .Poster-text{ display: none !important; } }