

.typeTitle{
    text-align: center;
    font-size: 24px;
    margin: 20px auto;
}

@media screen and (min-width: 1200px) {
    img{
        width: 100%;
        height: 100%;
    }
    main{
        /* max-width: 1200px;
        margin: 0 auto;
        padding: 5px;
        display: flex;
        justify-content: space-between; */
    }
    .newest {
        display: flex;
        width: 100%;
        height: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
        /* width: 30%; */
        margin-top: 30px;
    }
    
    .newest .newest_list {
        width: 30%;
        height: 100%;
        padding: 5px;
    }
}


@media screen and (max-width: 768px) {
    main{
        margin-top: 60px;
        padding: 5px;
    }

    .newest{
        display: flex;
        flex-direction: column;
    }
    .newest .newest_list {
        width: 100%;
        height: 100%;
        padding: 5px;
    }
    .content{
        width: 100%;
    }
    .pc{
        display: none;
    }
    header{
        text-align: center;
        width: 100%;
        height: 60px;
        top: 0;
        position: fixed;
        background-color: #fff;
    }
    .header_title{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 15px;
    }
    .typeList{
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        z-index: 1000;
        background-color: #fff;
        /* display: none; */
    }
    .type{
        display: flex;
        padding: 10px 15px;
        border-bottom: 1px solid #ddd;
    }
    header input{
        display: none;
    }
    main img{
        width: 100%;
        height: 100%;
    }
    
}
