* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
}






.typeTitle{
    margin: 20px auto;
}


.title {
    /* width: 200px; */
    /* 指定容器的宽度 */
    height: auto;
    /* 高度自适应 */
    overflow: hidden;
    /* 控制元素溢出部分不显示 */
    text-overflow: ellipsis;
    /* 当文字超出时显示省略号 */
    display: -webkit-box;
    /* 将元素作为弹性伸缩盒子模型处理 */
    -webkit-line-clamp: 2;
    /* 限制最多显示两行文本 */
    -webkit-box-orient: vertical;
    /* 设置垂直布局 */
    margin: 3px 5px;
    font-size: 14px;
    margin: 5px auto;
    padding: 5px;
}



@media screen and (min-width: 1200px) {

    .mo{
        display: none !important;
    }
    img{
        width: 100%;
        height: 100%;
    }
    .header_top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #app {
        max-width: 1200px;
        margin: 10px auto;
    }

    .search_wrap{
        /* background-color:gray; */
        display: flex;
        align-items: center;
        border-bottom-left-radius: 6px;
        border: 1px solid #dfe1e5;
    }

    .search_iocn{
        width: 40px;
        text-align: center;
    }

    .search_input{
        width: 300px;
        height: 40px;
        line-height: 40px;
        border-bottom-left-radius: 5px;
        border: 1px solid #dfe1e5;
        padding-left: 5px;
        font-size: 18px;
    }

    .typeList {
        display: flex;
        align-items: center;
    }

    .typeList .type {
        padding: 5px 15px;
        font-size: 18px;
        font-weight: 600;
    }

    .newlist_top {
        display: flex;
        justify-content: space-between;
    }

    /* main img{} */

    main .newlist_left .newlist_left_list:nth-child(1) {
        width: 100%;
        height: 100%;

        /* max-height: 500px; */
    }
    main .newlist_left .newlist_left_list:nth-child(1) img{
        width: 100%;
        height: 500px;
    }

    main .newlist_left {
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-right: 10px;
    }

    /* main .newlist_left img{} */

    main .newlist_left .newlist_left_list {

        /* max-width: 400px; */
        width: 50%;
        padding: 0 5px;
        height: 100%;

    }

    main .newlist_right {
        display: flex;
        flex-direction: column;
        height: 100%;
        /* max-width: 400px; */
        /* max-height: 300px; */
    }

    main .newlist_right .newlist_right_list {
        /* margin-bottom: 45px; */
        display: inline-block;
        max-width: 400px;
        
    }

    main .newlist_right .newlist_right_list p{
        height: auto;
        /* 高度自适应 */
        overflow: hidden;
        /* 控制元素溢出部分不显示 */
        text-overflow: ellipsis;
        /* 当文字超出时显示省略号 */
        display: -webkit-box;
        /* 将元素作为弹性伸缩盒子模型处理 */
        -webkit-line-clamp: 2;
        /* 限制最多显示两行文本 */
        -webkit-box-orient: vertical;
        /* 设置垂直布局 */
        margin: 3px 5px;
        font-size: 14px;
        margin: 5px auto;
        padding: 5px 10px;
    }

    .newest {
        display: flex;
        width: 100%;
        height: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
        /* width: 30%; */
    }

    .newest .newest_list {
        width: 30%;
        height: 100%;
        padding: 5px;
    }

}
@media screen and (max-width: 768px) {
    .pc{
        display: none;
    }
    main {

        margin-top: 60px;
        padding: 5px;
    }
    .information{
        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%;
    }
    
}