/*大型设备（大台式电脑，1200px 起）*/
/* @media screen and (min-1200px){  }  */
/* 中型设备（台式电脑，992px 起） */
/* @media screen and (min-992px){  } */
/* 小型设备（平板电脑，768px 起） */
/* @media screen and (min-768px) {  }  */
/* 超小设备（手机，小于 768px） */
/* @media screen and (min-480px){  } */

@media screen and (max-width:992px){ 
    #home-info,#features{
        flex-direction: column;
    }
    #showcase .showcase-content h1{
        font-size: 40px;
        line-height: 1.2em;
        
    }
    .container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #about-info .info-right{
        display: none;
    }
    .box{
        padding:20;
        padding:50px;
        text-align:left;
    }
 }