Blame view

public/scss/help/_help.css 3.85 KB
王水玲 authored
1 2
.help-page {
    .search-box {
王水玲 authored
3
        width: 310px;
王水玲 authored
4 5 6 7 8 9 10 11 12 13 14
        margin: 0 auto;

        .search-area {
            width: 308px;
            height: 33px;
            border: 1px solid #3a3a3a;
            background: #fff;

            input {
                width: 250px;
                border: none;
王水玲 authored
15 16
                padding: 6px 0 6px 20px;
                line-height: 21px;
王水玲 authored
17 18 19 20
                display: inline-block;
            }

            .iconfont {
王水玲 authored
21
                font-size: 16px;
王水玲 authored
22 23 24
                color: #3a3a3a;
                cursor: pointer;
                position: relative;
王水玲 authored
25
                top: 2px;
王水玲 authored
26 27 28 29 30 31 32
            }
        }

        .keyword {
            margin: 10px 0 45px;
            font-size: 14px;
            color: #000;
王水玲 authored
33
            text-align: center;
王水玲 authored
34 35

            a {
yyq authored
36
                margin: 0 6px;
王水玲 authored
37
                display: inline-block;
王水玲 authored
38
                color: #3a3a3a;
王水玲 authored
39 40
                line-height: 18px;
                text-align: left;
王水玲 authored
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
            }

            a:hover {
                color: #d2021c;
            }
        }
    }

    .dot-icon {
        background: url("/help/dot.png") no-repeat;
        position: relative;
        left: -3px;
        top: -2px;
        width: 4px;
        height: 4px;
        display: inline-block;
    }

    .nav-top {
        height: 220px;
        background: #f5f5f5;
        padding-top: 25px;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 25px;

        .title-img {
            width: 229px;
            height: 68px;
            display: block;
            background: url("/help/help-title.jpg") no-repeat;
            margin: 0 auto;
        }
    }

    .notice {
王水玲 authored
76
        margin: 3px 0 5px;
王水玲 authored
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
        height: 30px;
        overflow: hidden;

        li {
            text-align: center;
            line-height: 30px;
            height: 30px;
        }

        .notice-cont {
            display: inline-block;
            overflow: hidden;
            height: 30px;
            font-size: 14px;
            margin: 0 5px;
            padding-left: 3px;
王水玲 authored
93
            color: #3a3a3a;
王水玲 authored
94 95 96 97 98 99 100 101
        }

        .notice-cont:hover {
            color: #d2021c;

            .dot-icon {
                background: url("/help/dot-red.png") no-repeat;
            }
yyq authored
102
        }
王水玲 authored
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
    }

    .nav-title {
        width: 740px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        background: #f0f0f0;
        margin: 0 auto;
        padding-left: 15px;
        box-sizing: border-box;
    }

    .menu-common {
        width: 740px;
王水玲 authored
118
        margin: 0 auto 30px;
王水玲 authored
119 120
        height: auto;
        overflow: hidden;
OF1706 authored
121
        padding: 0 20px;
王水玲 authored
122 123 124 125
        box-sizing: border-box;

        li {
            float: left;
王水玲 authored
126
            margin-top: 30px;
王水玲 authored
127 128 129
        }

        a {
王水玲 authored
130
            width: 56px;
王水玲 authored
131 132
            text-align: center;
            display: block;
王水玲 authored
133
            float: left;
王水玲 authored
134 135 136 137 138
        }

        p {
            width: 100%;
            font-size: 14px;
王水玲 authored
139
            color: #3a3a3a;
王水玲 authored
140 141
            line-height: 15px;
            margin-top: 12px;
王水玲 authored
142 143 144 145
            text-align: center;
        }
    }
王水玲 authored
146
    .new-guide a {
OF1706 authored
147
        margin-left: 72.4px;
王水玲 authored
148 149
    }
王水玲 authored
150
    .self-service {
OF1706 authored
151
        padding: 0 20px;
王水玲 authored
152
王水玲 authored
153
        a {
王水玲 authored
154
            margin-left: 158px;
王水玲 authored
155 156 157 158 159 160
        }
    }

    .problem {
        width: 700px;
        margin: 0 auto;
王水玲 authored
161
        padding-top: 21px;
王水玲 authored
162 163 164 165 166 167 168 169 170 171 172 173 174 175

        a {
            width: 48%;
            text-align: left;
            line-height: 30px;
            margin-left: 10px;
            display: inline-block;
            height: 30px;
            overflow: hidden;
            padding-left: 3px;
            text-overflow: ellipsis;
            white-space: nowrap;
            box-sizing: border-box;
            font-size: 14px;
王水玲 authored
176
            color: #3a3a3a;
王水玲 authored
177 178 179 180 181 182 183 184 185 186
        }

        a:hover {
            color: #d2021c;

            .dot-icon {
                background: url("/help/dot-red.png") no-repeat;
            }
        }
    }
yyq authored
187
}