body {
    /*position: relative;*/
}


.singleNews-page {
    width: 100%;
    padding-bottom: 160px;
    border-bottom: 1px solid #eeeeee;
}

.singleNews-header {
    padding-top: 160px;

    .view-tit {
        padding-bottom: 40px;
        text-align: center;
        border-bottom: 2px solid #111111;
        max-width: 1280px;
        margin: 0 auto;

        .tit {
            padding: 0 100px;
            line-height: 60px;
            font-size: 48px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 16px;
        }

        .date {
            line-height: 20px;
            color: #a9a9a9;
            font-size: 14px;
        }
    }
}

.news-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    box-sizing: border-box;
}

.news-tags {
    max-width: 1280px;
    padding: 0 40px;
    box-sizing: border-box;
    margin: 0 auto;

    .news-title {
        padding-right: 40px;
        font-size: 16px;
    }

    .news-tag {
        display: inline-block;
        color: #0b50f2;
        border-color: #0b50f2;
        padding: 0 9px;
        height: 32px !important;
        line-height: 30px;
        background-color: #ffffff;
        margin: 0 10px 8px 0;
        font-size: 14px;
        border-radius: 30px;
    }
}

.news-prev-next {
    /* 新闻详情页导航 */
    width: 100%;
    padding-top: 60px;


    .news-nav {
        max-width: 1280px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #a9a9a9;
        border-bottom: 1px solid #a9a9a9;
        margin: 0 auto;
    }

    .nav-prev,
    .nav-next {
        display: flex;
        flex: 1;
        align-items: center;
        color: #111111;
        max-width: calc(50% - 40px);
        font-size: 16px;

        .nav-title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: inline-block;
            width: 70%;
        }

        .nav-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: 700;
        }


        .nav-icon {
            font-size: 25px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            color: #767676;
        }
    }

    .nav-divider1,
    .nav-divider {
        padding: 28px 0;
        width: 78px;
        line-height: 22px;
        border-radius: 0;
        color: #ffffff;
        border-color: #111111;
        background-color: #111111;
        font-size: 16px;
        text-align: center;
    }


    .nav-divider:hover {
        border-color: #767676;
        background-color: #767676;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
        .news-nav {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .nav-prev,
        .nav-next {
            max-width: 100%;
            justify-content: center;
        }
    }
}

.news-prev-next1 {
    /* 上一篇/下一篇 容器 */
    display: none;
    padding: 0 20px;
    color: #111111;

    .prev-next-container {
        width: 100%;
        border-top: 1px solid #e5e5e5;
        margin: 20px 0;
    }

    /* 单篇文章链接 */

    .prev-next-item {
        width: 100%;
        align-items: center;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #e5e5e5;
        cursor: pointer;
        transition: background-color 0.2s;
        font-size: 14px;
        line-height: 40px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        padding-left: 12px;

        .arrow-icon {
            color: #999;
            transition: transform 0.2s;
        }

        &.disabled {
            color: #999;
            cursor: default;

            &:hover {
                background-color: transparent;
            }
        }
    }

    .page-bottom-nav {
        background-color: #000;
        color: #fff;
        text-align: center;
        padding: 1rem 0;
        margin-top: 2rem;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.05rem;
    }
}


@media (max-width: 1280px) {
    .singleNews-header {
        padding-top: 80px;

        .view-tit {
            padding-bottom: 40px;
            text-align: center;
            border-bottom: 2px solid #111111;
            max-width: 1280px;
            margin: 0 auto;

            .tit {
                padding: 0 20px;
                margin-bottom: 16px;
                font-size: 32px;
                line-height: 42px;
            }

            .date {
                line-height: 20px;
                color: #a9a9a9;
                font-size: 14px;
            }
        }
    }

    .news-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }

    .singleNews-page {
        padding-bottom: 40px;

        .view-tit {
            border-bottom: 1px solid #111111;

            .tit {
                padding: 0 20px;
                margin-bottom: 16px;
                font-size: 32px;
                font-weight: 600;
                line-height: 42px;

            }


        }
    }

    .news-prev-next {
        display: none;
    }

    .news-prev-next1 {
        display: block;
    }
}