
.news-detail-wrap {
                    padding-top: 0.6rem;
                    padding-bottom: 1.13rem;
                    background-color: #f1f5fa;
                }

                .news-detail-wrap .news-detail {
                    display: flex;
                    justify-content: space-between;
                }

                .news-detail-wrap .news-article {
                    max-width: 11rem;
                    width: 100%;
                }

                .news-detail-wrap .nd-header {
                    padding-bottom: 0.2rem;
                    border-bottom: 0.01rem solid #d9dee4;
                }

                .news-detail-wrap .nd-title {
                    line-height: 1.2;
                }

                .news-detail-wrap .nd-info {
                    display: flex;
                    align-items: center;
                    margin-top: 0.25rem;
                    color: #666;
                }

                .news-detail-wrap .nd-info>div:nth-child(n+2) {
                    margin-left: 0.55rem;
                }

                .news-detail-wrap .nd-share-box {
                    display: flex;
                    align-items: center;
                }

                .news-detail-wrap .nd-share {
                    display: flex;
                    align-items: center;
                }

                .news-detail-wrap .nds-item {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 0.34rem;
                    height: 0.34rem;
                    padding: 0.11rem 0.1rem;
                    border-radius: 50%;
                    margin-left: 0.1rem;
                    transition: 0.3s;
                }

                .news-detail-wrap .nd-main {
                    line-height: 1.777;
                    color: #666;
                    padding-top: 0.45rem;
                }

                .news-detail-wrap .nd-main img {
                    position: relative;
                    left: 50%;
                    transform: translateX(-50%);
                    max-width: 100%;
                    margin: 0.55rem 0;
                    -o-object-fit: contain;
                    object-fit: contain;
                }

                .news-detail-wrap .nd-main * {
                    line-height: unset;
                }

                .news-detail-wrap .nd-turner {
                    position: relative;
                    display: flex;
                    justify-content: space-between;
                    padding: 0.3rem;
                    margin-top: 0.55rem;
                    border-radius: 0.1rem;
                    color: #666;
                    background-color: #fff;
                    overflow: hidden;
                }

                .news-detail-wrap .nd-turner::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 0.05rem;
                    background-color: var(--theme-color);
                }

                .news-detail-wrap .ndt-list {
                    display: flex;
                    flex-direction: column;
                }

                .news-detail-wrap .ndt-prev,
                .news-detail-wrap .ndt-next {
                    line-height: 1.5;
                    transition: 0.3s;
                }

                .news-detail-wrap .ndt-prev:hover,
                .news-detail-wrap .ndt-next:hover {
                    color: var(--theme-color);
                }

                .news-detail-wrap .ndt-next {
                    margin-top: 0.2rem;
                }

                .news-detail-wrap .go-back i {
                    margin-left: 0.25rem;
                    margin-right: 0;
                }

                .news-detail-wrap .news-sidebar {
                    max-width: 3.8rem;
                    width: 100%;
                    margin-left: 0.6rem;
                }

                .news-detail-wrap .sidebar-item {
                    display: flex;
                    padding: 0.3rem 0;
                    border-bottom: 0.01rem solid #d9dee4;
                }

                .news-detail-wrap .sidebar-item:hover .sidebar-title {
                    color: var(--theme-color);
                }

                .news-detail-wrap .sidebar-item:hover .pic-box img {
                    transform: scale(1.05);
                }

                .news-detail-wrap .pic-box {
                    flex-shrink: 0;
                    width: 1.2rem;
                    height: 0.8rem;
                    border-radius: 0.1rem;
                    overflow: hidden;
                }

                .news-detail-wrap .pic-box img {
                    transition: 0.5s;
                }

                .news-detail-wrap .sidebar-content {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    margin-left: 0.2rem;
                }

                .news-detail-wrap .sidebar-title {
                    line-height: 1.38;
                    color: #333;
                }

                .news-detail-wrap .sidebar-date {
                    color: #999;
                }

                @media (max-width: 750px) {
                    .news-detail-wrap .news-sidebar {
                        display: none;
                    }

                    .news-detail-wrap .nd-info {
                        flex-direction: column;
                        align-items: flex-start;
                    }

                    .news-detail-wrap .nd-info>div:nth-child(n+2) {
                        margin-left: 0;
                        margin-top: 0.2rem;
                    }

                    .news-detail-wrap .nd-turner {
                        flex-direction: column;
                    }

                    .news-detail-wrap .ndt-next {
                        margin-top: 0.5rem;
                    }

                    .news-detail-wrap .go-back {
                        margin-top: 0.5rem;
                    }
                }
                
                .window {
                position: relative;
            }

            .share-side {
                position: absolute;
                top: 0;
                right: 0.1rem;
                display: flex;
                flex-direction: column;
                width: 2em;
                height: 100%;
                pointer-events: none;
                z-index: 50;
            }

            .share-side .share-list {
                position: sticky;
                top: 2.5rem;
                margin: 0.1rem 0;
            }

            
.share-side .share-item {position: relative;display: flex;align-items: center;justify-content: center;width: 2em;height: 2em;padding: 0.15rem;border-radius: 0.04rem;background-color: #fff;pointer-events: auto;}
.share-side .share-item:nth-child(n+2) {margin-top: 0.04rem;}
.share-side .share-item:hover .popup {transform: translateY(-50%) scaleX(1);opacity: 1;pointer-events: auto;}
