/* =========================
文章表格优化
========================= */


.article-main table{

    width:100%;

    margin:25px 0;

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    border-collapse:separate;

    border-spacing:0;

    font-size:15px;

    box-shadow:0 4px 15px rgba(0,0,0,.06);

}


/* 表头 */

.article-main table th{

    background:#111827;

    color:#fff;

    font-weight:600;

    padding:14px 16px;

    text-align:center;

    border:none;

}


/* 内容 */

.article-main table td{

    padding:14px 16px;

    text-align:center;

    color:#555;

    line-height:28px;

    border-bottom:1px solid #eee;

}


/* 最后一行去掉边框 */

.article-main table tr:last-child td{

    border-bottom:none;

}



/* 隔行颜色 */

.article-main table tbody tr:nth-child(even){

    background:#fafafa;

}


/* 鼠标效果 */

.article-main table tbody tr:hover{

    background:#f0f7ff;

}



/* 第一列突出 */

.article-main table tbody td:first-child{

    font-weight:600;

    color:#2563eb;

}



/* 手机适配 */

@media(max-width:768px){

.article-main{

    overflow:hidden;

}


.article-main table{

    min-width:650px;

}


}
.article-main p a{
 color:#3964fe;
}