_index.css 4.76 KB
.help-page {
    .center-content {
        width: 990px;
    }

    .home-icon {
        font-size: 16px;
    }

    .red {
        color: #ce021b;
        margin: 0 5px;
    }

    .foot-pager {
        border-top: none;
        width: 740px;
        margin: 0 auto;
    }

    .help-navigation {
        width: 163px;
        background: #fff;

        .title {
            width: 100%;
            height: 54px;
            background: #eaeaea;
            padding-left: 20px;
            line-height: 54px;
            font-size: 18px;
            box-sizing: border-box;
        }

        .nav {
            li {
                cursor: pointer;
                height: 59px;
                line-height: 59px;
                padding-left: 20px;
                width: 100%;
                font-size: 16px;
                border-bottom: 1px solid #e8e8e8;
                background: #fbfbfb;
                box-sizing: border-box;                

                .plus {
                    cursor: pointer;
                    margin-right: 10px;
                    height: 14px;
                    width: 14px;
                    background-repeat: no-repeat;
                    background-image: resolve("help/plus.png");
                    background-size: 14px 14px;
                    display: inline-block;
                    position: relative;
                    top: 1px;
                }

                .mult {
                    margin-right: 26px;
                    height: 14px;
                    width: 14px;
                }
            }

            li.selected > a {
                color: #ce021b;
            }

            .smll-category {
                display: none;
            }
        }
    }

    .help-main {
        width: 785px;
        margin: 0 0 60px 40px;
        min-height: 600px;
        border: 1px solid #e0e0e0;
        padding-bottom: 20px;
    }

    .problem-box {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        line-height: calc(100vh);
        text-align: center;
        display: none;

        .mark {
            background: #000;
            opacity: 0.5;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 1;
            cursor: pointer;
        }

        .problem-area {
            width: 610px;
            height: 350px;
            position: relative;
            z-index: 2;
            vertical-align: middle;
            display: inline-block;
            line-height: 24px;
            text-align: left;
        }

        .problem-border {
            width: 610px;
            height: 350px;
            background-color: #000;
            opacity: 0.5;
            position: absolute;
        }

        .problem-cont {
            width: 600px;
            height: 340px;
            background: #fff;
            position: absolute;
            left: 5px;
            top: 5px;
        }

        .cont-area {
            height: 220px;
            margin: 60px auto;
            overflow: auto;
            width: 530px;
        }

        .a-area,
        .q-area {
            width: 465px;
            position: relative;
            font-size: 14px;
            color: #1b1b1b;
            min-height: 20px;
            margin-top: 15px;
            padding-left: 36px;

            &:before {
                content: "";
                width: 18px;
                height: 18px;
                display: block;
                position: absolute;
                left: 5px;
            }
        }

        .a-area {
            margin-top: 10px;
        }

        .a-area:before {
            background: url("/help/a.png") no-repeat;
        }

        .q-area:before {
            background: url("/help/q.png") no-repeat;
        }

        .iconfont {
            position: absolute;
            right: 20px;
            top: 20px;
            cursor: pointer;
            font-size: 26px;
            z-index: 4;
        }
    }

    ::-webkit-scrollbar {
        width: 16px;
        height: 16px;
    }

    ::-webkit-scrollbar-track,
    ::-webkit-scrollbar-thumb {
        border-radius: 999px;
        border: 5px solid transparent;
    }

    ::-webkit-scrollbar-track {
        box-shadow: 0 0 6px rgba(0, 0, 0, 0) inset;
    }

    ::-webkit-scrollbar-thumb {
        min-height: 20px;
        background-clip: content-box;
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.3) inset;
    }

    ::-webkit-scrollbar-corner {
        background: transparent;
    }
}

@import "help";
@import "detail";