.listbox .box{
    padding: 8rem 0; 
    border-top: 1px solid #E9E9E9;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.listbox .box:nth-child(2n){
    flex-direction: row-reverse;
}
.listbox .box:first-child{
    padding-top: 12rem;
    border-top: 0;
}
.listbox .box .imgbox{
    width: 50rem;
}
.listbox .box .info{
    width: calc(100% - 56rem);
}
.listbox .box .info .tit{
    font-weight: 600;
    font-size: 2.4rem;
    color: #000000;
    line-height: 3.4rem;
}
.listbox .box .info .txt{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
}
.listbox .box .info .time{
    margin: 1rem 0 2.4rem;
    font-weight: 400;
    font-size: 1.4rem;
    color: #999999;
    line-height: 2.0rem;
}
.listbox .more{
    margin: 0 auto 10rem;
    text-align: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #333333;
    line-height: 2.2rem;
    cursor: pointer;
}
.listbox .more .ico{
    width: 1.6rem;
    display: block;
    margin: 1.5rem auto 0;
}


.detailbody{
    background: #F6F7F9; 
}
.detailbody .navbox{
    padding: 3rem 0 0;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 2.2rem;
}
.detailbody .detail{
    margin: 6rem 0;
}
.detailbody .detail .title{
    font-weight: 600;
    font-size: 3.6rem;
    color: #333333;
    line-height: 5.0rem; 
}
.detailbody .detail .time{
    font-weight: 400;
    font-size: 1.4rem;
    color: #999999;
    line-height: 2.0rem;
    padding: 2rem 0;
    border-bottom: 1px solid #E9E9E9;
}
.detailbody .detail .content{
    font-size: 1.6rem;
    color: #666666;
    line-height: 2.8rem;
    margin: 2rem 0;
}
.detailbody .detail .content p{
    margin: 2rem 0;
}
.detailbody .detail .content img{
    max-width: 100%;
    display: block;
    margin: 2rem auto;
}
.detailbody .morelist{
    padding: 6rem 0 12rem;
    border-top: 1px solid #E9E9E9;
}
.detailbody .morelist .titbox{
    font-weight: 600;
    font-size: 2.4rem;
    color: #333333;
    line-height: 3.4rem;
    margin-bottom: 2rem;
}
.detailbody .morelist .flexbox{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.detailbody .morelist .flexbox .box{
    width: 31.5%;
}
.detailbody .morelist .flexbox .box+.box{
    margin-left: 2.8%;
}
.detailbody .morelist .flexbox .box .info .tit{
    font-weight: 500;
    font-size: 1.8rem;
    color: #333333;
    line-height: 2.8rem;
    margin: 2rem 0 1rem;
}
.detailbody .morelist .flexbox .box .info .time{
    font-weight: 400;
    font-size: 1.4rem;
    color: #999999;
    line-height: 2.8rem;
}






/* 移动端兼容 */
@media screen and (max-width:750px) {  
    .listbox .box{
        padding: 4rem 0;  
        display: block;
    }  
    .listbox .box .imgbox{
        width: 100%;
        margin-bottom: 2rem;
    }
    .listbox .box .info{
        width: calc(100% );
    }
    .listbox .box .info .tit{
        font-weight: 600;
        font-size: 2.4rem;
        color: #000000;
        line-height: 3.4rem;
    }
    .listbox .box .info .txt{
        font-size: 2rem;
    } 
     
    .detailbody .navbox{
        padding: 3rem 0 0;
        font-weight: 400;
        font-size:2rem;
        color: #666666;
        line-height: 2.8rem;
    }
    .detailbody .detail{
        margin: 6rem 0;
    }
    .detailbody .detail .title{
        font-weight: 600;
        font-size: 3.6rem;
        color: #333333;
        line-height: 5.0rem; 
    }
    .detailbody .detail .time{ 
        font-size: 2rem; 
        line-height: 2.6rem; 
    }
    .detailbody .detail .content{
        font-size:2.4rem;
        color: #666666;
        line-height: 3.8rem; 
    }  
    .detailbody .morelist .titbox{ 
        font-size: 3rem; 
    }
    .detailbody .morelist .flexbox{
        display:block;
    }
    .detailbody .morelist .flexbox .box{
        width: 100%;
        display: block;
    }
    .detailbody .morelist .flexbox .box+.box{
        margin-left: 0;
        margin-top: 4rem;
    }
    .detailbody .morelist .flexbox .box .info .tit{
        font-weight: 500;
        font-size: 2.8rem;
        color: #333333;
        line-height: 4rem;
        margin: 2rem 0 1rem;
    }
    .detailbody .morelist .flexbox .box .info .time{
        font-weight: 400;
        font-size:2.2rem;
        color: #999999;
        line-height: 2.8rem;
    }
}