/*文章详情页样式*/
.detail_con {
    width: 80%;
    padding: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ececee;
    /*float: left;*/
    margin: 0 auto;
}

/*目录样式*/
.mce-toc {
    border: none;
}

.mce-toc h2 {
    font-size: 20px;
    background: #eee;
    border-radius: 6px;
    min-height: 25px;
    line-height: 25px;
    padding: 8px;
    opacity: 0.8;
    border: 1px dashed #aaa;
    color: #0f0f0f;
}

.mce-toc li {
    list-style-type: none;
    padding-top: 5px;
}

.mce-toc li a {
    color: #4f4f4f;
}

/*一级标题样式*/
.detail_con h1 {
    clear: both;
    background-color: #FBF9F9;
    margin-bottom: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 20px;
    /*padding-left: 20px;*/
    font-size: 22px;
    border-radius: 0;
    color: #258fb8;
}

/*三级标题样式*/
.detail_con h3 {
    font-size: 18px;
    background: #eee;
    border-radius: 6px;
    min-height: 25px;
    line-height: 25px;
    padding: 8px;
    opacity: 0.8;
    border: 1px dashed #aaa;
    color: #0f0f0f;
}

/*四级标题样式*/
.detail_con h4 {
    font-size: 16px;
    background: #eee;
    border-radius: 6px;
    min-height: 25px;
    line-height: 25px;
    /*margin: 18px 5px !important;*/
    padding: 8px;
    opacity: 0.8;
    border: 1px dashed #aaa;
    color: Green !important;
}

/*段落样式*/
.detail_con p {
    font-size: 16px !important;
    line-height: 1.5rem;
    color: #505050;
    text-align: justify;
    /*padding: 8px;*/
    margin: 5px auto;
}

/*摘要样式*/
.summary {
    letter-spacing: .5px;
    text-align: justify;
    background: #f0f2f5;
    font-size: 16px;
    line-height: 28px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 30px;
    position: relative;
    border-radius: 6px;
    text-indent: 0;
}

.detail_con .summary:before {
    position: absolute;
    left: 5px;
    top: 5px;
    /*content: "[";*/
}

.detail_con .summary:after {
    position: absolute;
    right: 5px;
    bottom: 5px;
    /*content: "]";*/
}

/*图片样式*/
.detail_con img {
    width: 80%;
}

/*列表样式*/
.detail_con ul {
    margin-left: 5px;
}

.detail_con ul li {
    font-size: 16px;
    line-height: 1.6rem;
    color: #505050;
    text-align: justify
}

/*表格样式*/
.detail_con table {
    width: 95%;
    border-collapse: collapse;
    height: 210px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #DADFE1;
    border-bottom: 3px solid #aaa;
    border-top: 3px solid #aaa;
}

@media screen and (max-width: 992px) {
    .detail_con {
        width: 90%;
        padding: 20px 10px;
    }

        /*图片样式*/
    .detail_con img {
        width: 80%;
    }

}

@media screen and (max-width: 768px) {
    .detail_con {
        width: 90%;
        padding: 20px 10px;
    }

    /*图片样式*/
    .detail_con img {
        width: 100%;
    }

}

@media screen and (max-width: 460px) {
    .detail_con {
        width: 90%;
        padding: 20px 10px;
    }

    /*图片样式*/
    .detail_con img {
        width: 100%;
    }

}

@media screen and (max-width: 320px) {
    .detail_con {
        width: 90%;
        padding: 20px 10px;
    }

    /*图片样式*/
    .detail_con img {
        width: 100%;
    }

}