@import "./var.scss";

.miao-page {
    &-header {
        // position: absolute;

        width: 100%;
        z-index: 800;

        &.fixed-header {
            position: fixed;
            width: 100%;
            top: 0;
        }
    }

    &-footer {


        &.fixed {
            position: fixed;
            bottom: 0;
            width: 100%;
        }


    }

    &-content {
        height: 100%;
        position: relative;
        overflow: hidden;

        // background: $color-bg-content;
        .refresher {
            width: 100%;
            justify-content: center;
            align-items: center;
            height: 0;
            display: flex;
            position: fixed;
            overflow: hidden;

            .refresher-holder {
                display: flex;
                flex-direction: column;
                width: 100%;
                justify-content: center;
                align-items: center;
                font-size: 30px;

                .down-text {
                    padding-top: 40px;
                    font-size: 24px;
                }
            }
        }

        .load-more {
            // display: flex;
            position: absolute;
            text-align: center;
            bottom: 0;
            overflow: hidden;
            justify-content: center;
            //    align-items: center;
            font-size: 24px;
            height: 0;
            width: 100%;
        }

        .scroll-content {
            height: 100%;
            width: 100%;
            position: absolute;
        }

        .downText {
            margin-left: 20px;
        }

        .no-more {
            text-align: center;
            font-size: 24px;
            line-height: 60px;
            padding: 50px;
            //color: $color-text-primary;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #f5f5f5;

            .divider {
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                width: 100%;
                height: 40px;
                font-size: 24px;
                text-align: center;

                &::after,
                &::before {
                    content: "";
                    flex: 1;
                    font-family: "EIcon";
                    display: block;
                    font-size: 34px;
                    border: 1px solid #ccc;
                    box-sizing: border-box;
                    margin: 0 20px;
                    width: 100%;
                }

                /* elements */
                &__content {
                    display: inline-block;
                    position: relative;
                    padding: 0 10px;
                    color: #ccc;
                    font-size: 24px;
                    z-index: 101;
                }

                &__line {
                    position: absolute;
                    top: 50%;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    background-color: #ccc;
                    z-index: 100;
                }
            }
        }

        .empty {
            //color: $color-text-primary;
            line-height: 60px;
            font-size: 24px;
            text-align: center;
        }

        .keyboard {
            height: 300px;
        }
    }
}