
.news-wrap {
                    padding-top: 0.9rem;
                    padding-bottom: 1.2rem;
                    background-color: #f1f5fa;
                }

                .news-wrap .module-header {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                .news-wrap .news-main {
                    display: flex;
                    flex-wrap: wrap;
                    margin-top: 0.6rem;
                }

                .news-wrap .news-item {
                    display: flex;
                    flex-direction: column;
                    width: calc((100% - 1.05rem) / 3);
                    height: 5.7rem;
                    border-radius: 0.1rem;
                    overflow: hidden;
                    background-color: #fff;
                    transition: 0.3s;
                }

                .news-wrap .news-item:nth-child(n+2) {
                    margin-left: 0.35rem;
                }

                .news-wrap .news-item:nth-child(n+4) {
                    margin-top: 0.5rem;
                }

                .news-wrap .news-item:nth-child(3n+1) {
                    margin-left: 0;
                }

                .news-wrap .news-item:hover {
                    background-color: var(--theme-color);
                }

                .news-wrap .news-item:hover .news-tag,
                .news-wrap .news-item:hover .news-title,
                .news-wrap .news-item:hover .news-date {
                    color: #fff;
                }

                .news-wrap .news-item:hover .pic-box img {
                    transform: scale(1.05);
                }

                .news-wrap .pic-box {
                    height: 3rem;
                    overflow: hidden;
                }

                .news-wrap .pic-box img {
                    transition: 0.5s;
                }

                .news-wrap .news-content {
                    display: flex;
                    flex-direction: column;
                    flex: 1 0 0;
                    position: relative;
                    margin-top: auto;
                    padding: 0.4rem;
                }

                .news-wrap .news-tag {
                    color: var(--theme-color);
                }

                .news-wrap .news-title {
                    line-height: 1.3;
                    margin-top: 0.2rem;
                    color: #333;
                }

                .news-wrap .news-date {
                    line-height: 1.5;
                    color: #999;
                    margin-top: auto;
                    padding-top: 0.3rem;
                }

                .news-wrap .paging-turner {
                    margin-top: 0.6rem;
                }

                @media (max-width: 750px) {
                    .news-wrap .news-main {
                        flex-direction: column;
                    }

                    .news-wrap .news-item {
                        width: 100%;
                    }

                    .news-wrap .news-item:nth-child(n+2) {
                        margin-left: 0;
                        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;}
