
.apply-list-wrap {
                    padding-top: 1rem;
                    padding-bottom: 1rem;
                }

                .apply-list-wrap .module-header {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                .apply-list-wrap .al-main {
                    display: flex;
                    flex-wrap: wrap;
                    margin-top: 0.6rem;
                }

                .apply-list-wrap .al-item {
                    position: relative;
                    width: calc((100% - 0.4rem) / 3);
                    height: 3.6rem;
                    border-radius: 0.1rem;
                    overflow: hidden;
                    /* 间隔 */
                    /* 特宽块 */
                }

                .apply-list-wrap .al-item img {
                    transition: 0.5s;
                }

                .apply-list-wrap .al-item:hover img {
                    transform: scale(1.05);
                }

                .apply-list-wrap .al-item:nth-child(n+2) {
                    margin-left: 0.2rem;
                }

                .apply-list-wrap .al-item:nth-child(5n+3),
                .apply-list-wrap .al-item:nth-child(5n+6) {
                    margin-left: 0;
                }

                .apply-list-wrap .al-item:nth-child(n+3) {
                    margin-top: 0.2rem;
                }

                .apply-list-wrap .al-item:nth-child(10n+1),
                .apply-list-wrap .al-item:nth-child(10n+7) {
                    width: calc((100% - 0.4rem) / 3 * 2 + 0.2rem);
                }

                .apply-list-wrap .al-item:nth-child(even) .al-cover::after {
                    background-color: var(--theme-sub-color);
                }

                .apply-list-wrap .al-cover {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.0666666667), rgba(0, 0, 0, 0) 50%);
                }

                .apply-list-wrap .al-cover::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 0.05rem;
                    background-color: var(--theme-color);
                }

                .apply-list-wrap .al-content {
                    line-height: 1.5;
                    margin: auto 0.3rem 0.3rem;
                    color: #fff;
                }

                .apply-list-wrap .al-content * {
                    line-height: unset;
                }

                @media (max-width: 750px) {
                    .apply-list-wrap .al-item {
                        position: relative;
                        width: calc((100% - 0.2rem) / 2);
                        height: 3.6rem;
                        border-radius: 0.1rem;
                        overflow: hidden;
                        /* 间隔 */
                        /* 特宽块 */
                    }

                    .apply-list-wrap .al-item:nth-child(n+2) {
                        margin-left: 0.2rem;
                    }

                    .apply-list-wrap .al-item:nth-child(3n+1),
                    .apply-list-wrap .al-item:nth-child(3n+2) {
                        margin-left: 0;
                    }

                    .apply-list-wrap .al-item:nth-child(n+2) {
                        margin-top: 0.2rem;
                    }

                    .apply-list-wrap .al-item:nth-child(3n+1) {
                        width: 100%;
                    }
                }
         
            .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;}
