/* 内容页样式 */
.article-container {
    margin: 30px auto;
    width: 1380px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.article-header {
    text-align: center;
    /*padding-bottom: 30px;*/
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.article-title {
    font-size: 32px;
    color: #222;
    /*margin-bottom: 25px;*/
    line-height: 1.4;
    font-weight: bold;
    padding: 0 50px;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555;
    position: relative;
}

.meta-item i {
    margin-right: 8px;
    color: #bd1a2d;
    font-size: 16px;
}

/* 优化后的点击率样式 */
.read-count {
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

.read-count i {
    font-size: 18px;
    color: #888;
    position: relative;
}

.count-badge {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #bd1a2d;
    color: white;
    font-size: 11px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.article-content {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
}

.article-content p {
    margin-bottom: 28px;
    text-indent: 2em;
}

.article-content img {
    max-width: 100%;
    display: block;
    margin: 30px auto;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 15px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
}

.article-nav a {
    color: #1a5276;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    max-width: 45%;
}

.article-nav a:hover {
    background: #e8f0ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.article-nav a.prev i {
    margin-right: 10px;
    font-size: 20px;
}

.article-nav a.next i {
    margin-left: 10px;
    font-size: 20px;
}

.img-desc {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: -15px;
    margin-bottom: 30px;
    font-style: italic;
}

.m-txt-dtt {
    line-height: 36px;
    text-align: center;
    font-weight: normal;
    font-size: 24px;
    padding: 15px 0px;
}

/*适配手机*/
@media (max-width: 768px) {
    .article-container {
        width: 100%;
         margin: 0;
               padding: 10px;
    }

    .article-title {
        font-size: 22px;
        padding: 0;
    }
       .m-txt-dtt {
               font-size: 18px;
       }
    .article-meta {
        gap: 10px;
    }

    .article-footer {
        margin-top: 0;
        padding-top: 0;
    }

    .article-content p {
        margin-bottom: 0;
    }
}