.blog{
    padding: 50px 0 10px 0 ;
}
.blog .content{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 2%;
}
.blog article{
    width: 70%;
}
.blog .article .allArticle{
    display: flex;
    gap: 5%;
    flex-wrap: wrap;
}
.blog .article .allArticle .sinArt{
    width: 45%;
    box-shadow: 0 0 10px #ddd;
    margin-bottom: 35px;
}
.blog .article .allArticle .sinArt .img{
    position: relative;
    height: 260px;
    width: 100%;
}
.blog .article .allArticle .sinArt .img img{
    height: 260px;
    object-fit: cover;
}
.blog .article .allArticle .sinArt .img .dt{
    position: absolute;
    width: 60px;
    background: #0e3055;
    height: 65px;
    display: grid;
    place-content: center;
    bottom: -32px;
    right: 8%;
}
.blog .article .allArticle .sinArt:nth-child(even) .img .dt{
    background: #65bdc2;
}
.blog .article .allArticle .sinArt .img .dt h4{
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
    font-size: 16px;

}
.blog .article .allArticle .sinArt .img .dt p{
    text-align: center;
    color: #fff;
    font-size: 13px;

}
.blog .article .allArticle .sinArt .img img{}
.blog .article .allArticle .sinArt .info{
    padding: 40px;
}
.blog .article .allArticle .sinArt .info h4{
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 2em;
    padding: 0px;
    color: #5c5c5c;
    margin-bottom: 10px;
}
.blog .article .allArticle .sinArt .info h2{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 2px;
    padding: 0px;
    margin-bottom: 12px;
    color: #2e2e2e;
}
.blog .article .allArticle .sinArt .info p{
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 28px;
    color: #5c5c5c;
    /*text-align:justify;*/
}
.blog .article .allArticle .sinArt .info .lkcm{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}
.blog .article .allArticle .sinArt .info .like{}
.blog .article .allArticle .sinArt .info .like i{
    margin-right: 10px;
    color: #0e3055;
}
.blog .article .allArticle .sinArt .info .like i.icon-user{
    color: #65bdc2;
}
.blog .article .allArticle .sinArt .info .like span{
    font-size: 13px;
}

.blog aside{
    width: 28%;
}
.blog aside h3{
    font-size: 25px;
    line-height: 1.2em;
    letter-spacing: 1px;
    font-weight: normal;
    margin: 0px;
    padding: 0px;
    color: #2e2e2e;
    margin-bottom: 15px;
}
.blog aside .all{}
.blog aside .all .sin{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.blog aside .all .sin img{
    width: 120px;
    height: 120px;
}
.blog aside .all .sin .info{
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 120px;
}
.blog aside .all .sin .info a h2{
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
    color: #2e2e2e;
}
.blog aside .all .sin .info p{
    font-size: 12px;
    line-height: 2em;
    letter-spacing: 1px;
    margin: 0px;
    padding: 0px;
    color: #5c5c5c;
}
.blog aside .all .sin .info p a{
    font-size: 10px;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 4px;
    color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    background-color: #65BDC2;
    padding: 5px 10px;
    display: inline-block;
}
.blog aside .all .sin:nth-child(even) .info p a{
    background: #0e3055;
}



.postImg img{
    width:840px;
    height:400px;
    object-fit:cover;
}


.postInfo{
    margin-top: 15px;
}
.postInfo h2{
    font-size: 35px;
    margin-bottom: 10px;
    color: #002244;
}
.postInfo p{
    font-size: 16px;
    line-height: 2em;
    letter-spacing: 1px;
    margin: 0px;
    padding: 0px;
    color: #5c5c5c;
    margin-bottom: 30px;
    text-align:justify;
}








.redmr{
    font-size: 13px;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 4px;
    color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    background-color: #65BDC2;
    padding: 10px 20px;
    display: inline-block;
    margin-top:10px;
}






@media only screen and (min-width: 320px) and (max-width: 480px) {
    .blog .content {
        max-width: 360px;
        flex-direction: column;
        gap:0;
    }
    .blog article {
        width: 100%;
    }
    .blog .article .allArticle .sinArt {
        width: 100%;
    }
    .blog aside {
        width: 100%;
        margin-top:10px;
        
    }
    .postImg img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

