question-list.page.scss 1.83 KB
.nav-home {
    display: none !important;
}

.qs-list-page {
    font-size: 28px;
    $borderColor: #ececec;

    .qs-list {
        line-height: 90px;
        color: #444;
        padding-left: 30px;
        border-bottom: 1px solid $borderColor;

        > li {
            border-top: 1px solid $borderColor;
        }
    }

    .empty-list {
        font-size: 24px;
        color: #bbb;
        text-align: center;
        padding-top: 360px;
        line-height: 2;
    }

    .tip-dialog {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 10;

        &:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        .dg-wrap {
            width: 70%;
            background: #fff;
            border-radius: 6px;
            position: absolute;
            left: 15%;
            top: 50%;
            margin-top: -95px;
        }

        .dg-content {
            height: 140px;
            line-height: 140px;

            > p {
                width: 100%;
                line-height: 1.4;
                display: inline-block;
                text-align: center;
                vertical-align: middle;
            }
        }

        .dg-btns {
            border-top: 1px solid #efefef;

            > * {
                width: 50%;
                line-height: 60px;
                text-align: center;
                display: block;
                float: left;
                cursor: pointer;
            }
        }

        .dg-btns .sure-btn {
            width: 100%;
        }

        .share-btn {
            border-left: 1px solid #efefef;
            box-sizing: border-box;
            color: #d90005;
        }
    }
}