/*PC端媒体查询*/
@media(min-width: 768px){
    .about-inner{
        color: #666;
        padding: 50px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 1200px;
        margin: 0 auto;
    }
    .about-text{
        width: 600px;
        font-size: 16px;
        line-height: 1.7;
    }
    .about-text p{
        text-indent: 0.38rem;
    }
    .about-img{
        width: 500px;
        height: 430px;
        overflow: hidden;
        flex-shrink: 0;
    }
}

@media(max-width: 768px){
    .about-inner{
        color: #666;
        padding: 20px;
    }
    .about-text{
        width: 100%;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .about-text p{
        text-indent: 0.38rem;
    }
    .about-img{
        width: 100%;
        overflow: hidden;
        flex-shrink: 0;
    }

}
