<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div,
span,
p,
li {
    word-break: normal;
}

article,
aside,
header,
footer,
section,
nav,
main,
div {
    box-sizing: border-box;
}

#app {
    height: 100%;
}

    #app .app-wrapper,
    #app .app-content {
        height: 100%;
        width: 100%;
    }

    #app .app-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #app .app-content {
        width: 1500px;
        padding: 0 20px;
        max-width: 100%;
    }

    #app .app-container {
        display: flex;
        height: calc(100% - 96px);
    }

    #app .app-container-content {
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        height: 100%;
        padding: 8px 12px;
    }

        #app .app-container-content::-webkit-scrollbar {
            width: 0 !important;
        }

        #app .app-container-content .share-info-tab-child {
            padding: 0 18px;
        }

            #app .app-container-content .share-info-tab-child .tab-child-content .child-item {
                display: none;
            }

                #app .app-container-content .share-info-tab-child .tab-child-content .child-item.active {
                    display: block;
                }

@media screen and (max-width: 960px) {
    #app {
        height: 100%;
    }

        #app .app-container {
            display: flex;
            height: calc(100% - 96px);
            padding-bottom: 66px;
        }
}
</pre></body></html>