@media screen and (max-width: 1000px) {

    /* 中间内容 */
    .main {
        height: auto;
    }

    /* 左侧装饰图 */
    .main-left {
        display: none;
    }


    /* 右侧栏目信息 */
    .main-right {
        width: 100%;
        padding: 20px 5%;
    }

    .main-right-column {
        display: none;
    }

    .main-right-info {
        width: 100%;
        margin-top: 6px;
    }

    .info-word {
        font-size: 16px;
        height: auto;
        max-height: none;
        overflow-y: visible;
    }

    .info-img {
        margin-top: 15px;
    }
    
    .info-img ul li img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}



@media screen and (max-width: 500px) {


    /* 右侧栏目信息 */
    
    .info-img {
        margin-top: 30px;
    }

    .info-img ul {
        flex-direction: column;
        align-items: center;
    }

    .info-img ul li {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .info-img ul li img {
        height: auto;
    }

}