@media screen and (max-width: 1000px) {
  /****低于1000px后显示里面样式***/
  }
  
@media screen and (min-width: 1200px) {
  /****大于1200px后显示里面样式***/
  }