html,body{
    height: 100%;
}
body{
    display: flex;
    flex-direction: column;
}
code {
    background-color: #f3f4f4;
    border-radius: 3px;
    margin: 0;
    padding: 2px 5px;
}
.blog-page {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.header{
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}
.header .logo{
    font-size: 30px;
    font-weight: bold;
    color: #16baaa;
}
.body-content {
    width: 100%;
    padding: 15px 0;
    flex: 1;
    line-height: 1.6;
}
.bdr1{
    border-right: 1px solid #e9e9e9;
}
.body-content p {
    padding: 10px 0;
    font-size: 14px;
}

.body-content h4 {
    padding: 15px 0 5px;
    font-size: 16px;
}

.body-content ol {
    list-style: disc;
}

.body-content ol>li {
    margin-left: 15px;
    list-style: auto;
}

.body-content ul>li {
    list-style: disc;
    margin-left: 30px;
}

.body-content ul {
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.body-content ul.cate li{
    margin-left: 0;
    list-style: none;
    padding: 0 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #dedede;
}
.body-content ul.cate li:last-child{
    border: none;
}
.a-list-item{
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
}
.a-list-item a{
    padding: 0;
    display: block;
}
.a-list-item a .title{
    font-size: 17px;
}
.tag-box {
    padding: 15px 0;
}
.tag-box .tag {
    font-size: 12px;
    margin: 0 5px 5px 0;
    padding: 0 8px;
    background: #f5f5f6;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    line-height: 20px;
    height: 22px;
    display: block;
    float: left;
}
.tag-box .tag:hover {
    background-color: #fff0e4;
    border: 1px solid #fff0e4;
    color: #ff6a00;
}
.cate-box{
    padding: 10px 0;
}
.mz{
    text-align: center;
    font-size: 12px;
    color: #777;
    padding-top: 10px;
    padding-bottom: 30px;
}
.sub-title{
    color: #777;
    text-align: center;
    padding-bottom: 15px;
}
.empty {
    padding: 15px 0;
    text-align: center;
    color: #666;
}

.empty i {
    font-size: 50px;
}

.empty p {
    padding-top: 0;
    font-size: 20px;
}
.footer{
    display: block;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .1);
}
.copyright {
    padding: 30px 0 20px;
}
@media screen and (max-width: 970px) {
    .bdr1{
        border-right: none;
    }
}