.post-detail-header{
    background:  url('../img/background-pin-word.svg') 30px, linear-gradient(to bottom, #7FD5FF 0% , #00BAF4 100%);
    background-size: 1314px 320px;
    background-position: center -85px;
    padding: 0px 15px;
}

.post-detail-header .header-cover{
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    position: relative;
    min-height: 200px;
}

.post-detail-body{
    padding: 0px 15px;
}

.post-detail-body .body-cover{
    max-width: 950px;
    margin: -150px auto 0px;
    position: relative;
    z-index: 2;
}

.post-detail-main{
    background: #fff;
    border: 1px solid #E3E4E5;
    border-radius: 10px;
    padding: 25px 15px 50px;
    position: relative;
}

.post-detail-main::before{
    content: "";
    display: block;
    position: absolute;
    height: calc(100% - 150px);
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    box-shadow: 0px 0px 10px 0px #E8E8E8;
    border-radius: inherit;
}

.post-detail-main.list-post{
    background: transparent;
    border: 0px;
    box-shadow: none;
    padding-top: 45px;
}

.post-detail-main.list-post::before{
    display: none;
}

.post-detail-cover{
    max-width: 750px;
    margin: auto;
}

.post-detail-title{
    font-weight: 500;
    font-size: 15px;
    color: #58595B;
    margin-bottom: 30px;
    margin-top: 15px;
    float: left;
	text-transform: uppercase;
}

.post-detail-main .post-detail-button{
    display: inline-block;
    width: 210px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
    outline: 0px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    background: var(--color-green-bg);
    float: right;
    margin-bottom: 25px;
}

.post-detail-line{
    width: 100%;
    height: 1px;
    background: #D1D3D4;
    margin-bottom: 30px;
}

.post-detail-author{
    display: flex;
    margin-bottom: 30px;
}

.post-detail-author .author-image{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto 30px auto 0px;
}

.post-detail-author .author-info{
    margin: auto 0px;
}

.post-detail-author .author-name{
    font-weight: 500;
    font-size: 20px;
    color: var(--color-default-title);
    margin-bottom: 0px;
}

.post-detail-author .author-level{
    font-weight: 400;
    font-size: 13px;
    color: var(--color-default-text);
    margin-bottom: 0px;
}

.post-detail-author .author-level span{
    color: var(--color-blue-text);
}

.post-detail-text{
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--color-default-text);
    margin-bottom: 25px;
}

.post-detail-more-title{
    font-weight: 300;
    font-size: 20px;
    color: #58595B;
    margin-bottom: 30px;
    float: left;
}

.post-detail-main .post-detail-more-link{
    font-weight: 400;
    font-size: 15px;
    color: #58595B;
    margin-top: 5px;
    margin-bottom: 30px;
    float: right;
    text-decoration: none;
    outline: 0px;
}

.post-detail-main .post-detail-more-link i{
    font-size: 20px;
    margin-left: 5px;
    vertical-align: bottom;
}

.post-detail-main .post-content{
    margin-left: -15px;
    margin-right: -15px;
    
}

.post-detail-main .post-item{
    display: inline-block;
    vertical-align: top;
    margin: 0px 15px 30px;
}

.post-detail-main .post-item .post-item-cover{
    display: inline-block;
    width: 162px;
    height: 220px;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    outline: 0px;
    box-shadow: 0px 0px 10px 0px #E8E8E8;
    padding: 15px;
    transition: 0.1s all linear;
    position: relative;
}

.post-detail-main .post-item:hover .post-item-cover{
    transform: translate(0px, -3px);
    box-shadow: 0px 2px 10px 0px #E8E8E8;
}

.post-detail-main .post-image{
    width: 60px;
    height: 60px;
    margin: 0px auto 10px;
}

.post-detail-main .post-image img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.post-detail-main .post-author{
    font-weight: 400;
    font-size: 15px;
    color: var(--color-blue-text);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    text-align: center;
}

.post-detail-main .post-detail{
    font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	color: var(--color-default-text);
	text-align: center;
	overflow: hidden;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	margin: 0px;
	max-height: 64px;
}

.post-detail-main .post-button{
    display: block;
    width: calc(100% - 30px);
    height: 30px;
    font-weight: 500;
    font-size: 13px;
    color: var(--color-orange);
    line-height: 29px;
    border-top: 1px solid #E5E5E5;
    text-decoration: none;
    outline: 0px;
    text-align: center;
    position: absolute;
    left: 15px;
    bottom: 0px;
}

.post-detail-main .post-detail-view-all{
    display: block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
    outline: 0px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    background: var(--color-blue-bg);
}