Blame view

public/scss/home/_home.css 9.48 KB
lijing authored
1 2 3 4 5 6 7 8
.my-page {
    color: #444;
    background: #f0f0f0;

    a {
        color: #444;
    }
郭成尧 authored
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
    .my-header {
        position: relative;

        .students-entry {
            display: block;
            width: 120px;
            height: 40px;
            line-height: 40px;
            border-top-left-radius: 40px;
            border-bottom-left-radius: 40px;
            background: #d0021b;
            color: #fff;
            padding-left: 20px;
            position: absolute;
            top: 20px;
            right: 0;
            font-size: 24px;
        }
    }
lijing authored
29 30 31 32 33 34
    .user-info {
        display: block;
        position: relative;
        padding: 0 30px;
        color: #fff;
        font-size: 34px;
35
        line-height: 125px;
lijing authored
36
        height: 168px;
37
        background: resolve("home/index/header-bg.jpg");
lijing authored
38 39 40 41 42 43 44 45 46 47
        background-size: cover;

        .user-avatar {
            float: left;
            position: relative;
            top: 16px;
            width: 126px;
            height: 126px;
            border-radius: 50%;
            border: 6px solid #a7a8a9;
48
            background-image: resolve("home/index/user-avatar.png");
lijing authored
49 50 51 52 53 54 55 56 57 58
            background-size: 100%;
        }

        .username {
            float: left;
            padding: 0 16px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            max-width: 260px;
姜枫 authored
59
            font-size: 16PX;
60
            height: 75px;
lijing authored
61 62 63 64 65 66 67 68 69 70
        }

        .vip-icon {
            display: inline-block;
            width: 72px;
            height: 32px;
            vertical-align: middle;
        }

        .vip-3 {
71
            background: url("/home/vip/vip-3.png");
lijing authored
72 73 74
        }

        .vip-2 {
75
            background: url("/home/vip/vip-2.png");
lijing authored
76 77 78
        }

        .vip-1 {
79
            background: url("/home/vip/vip-1.png");
lijing authored
80 81 82 83 84 85 86 87 88 89 90 91
        }

        .more-icon {
            position: absolute;
            top: 40px;
            right: 30px;
            width: 88px;
            height: 88px;
            line-height: 88px;
            text-align: center;

            &.highlight {
郭成尧 authored
92
                background: rgba(200, 200, 200, 0.1) !important;
lijing authored
93 94
            }
        }
95 96

        .invition {
97
            max-width: 600px;
98 99 100 101 102 103 104 105
            font-size: 24px;
            position: absolute;
            top: 95px;
            left: 172px;
            height: 46px;
            line-height: 46px;
            overflow: hidden;
106
            .code {
107 108 109 110
                display: inline-block;
                vertical-align: top;
            }
111 112
            .code-set {
                margin-left: 8px;
113 114
                width: 37px;
                height: 52px;
115 116 117 118 119
                background: url("/home/index/code-set.png");
                background-size: 100%;
                background-repeat: no-repeat;
                display: inline-block;
                position: relative;
zhangxiaoru authored
120
                top: 8px;
张孝茹 authored
121
                z-index: 5;
122 123 124
            }

            .code-tip {
zhangxiaoru authored
125 126 127 128
                margin-left: 4px;
                width: 94px;
                height: 26px;
                background: url("/home/index/clkl.png");
129 130 131 132 133
                background-size: 100%;
                background-repeat: no-repeat;
                display: block;
                float: right;
                position: relative;
zhangxiaoru authored
134
                top: 12px;
135 136
            }
        }
lijing authored
137 138
    }
zhangxiaoru authored
139 140 141 142 143 144 145 146 147
    .family-entry {
        width: 136px;
        height: 136px;
        position: absolute;
        bottom: 0;
        right: 0;
        display: block;
        background-size: 100%;
        background-repeat: no-repeat;
zhangxiaoru authored
148
        background-image: resolve("home/index/family-entry.gif");
zhangxiaoru authored
149 150
    }
lijing authored
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
    .login-btn {
        display: block;
        position: absolute;
        top: 40px;
        left: 194px;
        width: 244px;
        height: 82px;
        line-height: 82px;
        color: #fff;
        border: 4px solid #fff;
        text-align: center;
    }

    .my-link {
        padding: 6px 0;
        text-align: center;
        background: rgba(0, 0, 0, 0.8);
        height: 76px;

        .link-item {
            position: relative;
            float: left;
            color: #fff;
姜枫 authored
174
            font-size: 12PX;
lijing authored
175 176 177 178 179 180 181
            width: 212px;

            &.highlight {
                background: rgba(200, 200, 200, 0.1) !important;
            }

            p {
姜枫 authored
182
                font-size: 12PX;
lijing authored
183 184 185
            }

            &:after {
郭成尧 authored
186
                content: "";
lijing authored
187 188
                position: absolute;
                right: 0;
郭成尧 authored
189
                top: 12px;
lijing authored
190 191
                width: 0;
                height: 44px;
郭成尧 authored
192
                border-right: 4px solid #fff;
lijing authored
193 194 195 196 197 198 199 200 201 202 203
            }

            &:last-of-type:after {
                content: none;
            }
        }

        &.no-login {
            padding: 0;
            height: 88px;
郭成尧 authored
204 205
            .link-item {
                p {
姜枫 authored
206
                    font-size: 12PX;
郭成尧 authored
207 208 209 210 211 212
                    line-height: 88px;
                }

                &:after {
                    top: 24px;
                }
lijing authored
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
            }
        }
    }

    .notice {
        margin-bottom: 30px;
        padding: 0 30px;
        background: #fff;
        height: 72px;
        overflow: hidden;

        .notice-item {
            display: block;
            width: 100%;
            font-size: 24px;
            line-height: 72px;
            color: #444;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .notice-icon {
            display: inline-block;
            margin-right: 10px;
            width: 28px;
            height: 28px;
240
            background: url("/home/index/volume.png");
lijing authored
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
            vertical-align: middle;
        }
    }

    .my-order {
        margin-bottom: 30px;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        background: #fff;

        .order-title {
            display: block;
            padding: 0 30px;
            font-size: 16PX;
            line-height: 88px;

            span {
                color: #e0e0e0;
                float: right;
            }

            &.highlight {
                background: #eee;
            }
郭成尧 authored
265 266

            .iconfont {
姜枫 authored
267
                font-size: 14PX;
郭成尧 authored
268
            }
lijing authored
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
        }

        .order-type {
            padding: 20px 30px;
            text-align: center;
            border-top: 1px solid #e0e0e0;

            .type-item {
                position: relative;
                float: left;
                color: #444;
                font-size: 14PX;
                line-height: 1.5;
                width: 193px;

                &.highlight {
                    background: #eee;
                }

                .num {
                    position: absolute;
                    top: -24px;
                    right: 36px;
                    width: 72px;
                    height: 72px;
                    font-size: 40px;
                    line-height: 72px;
                    color: #fff;
                    background: #f03d35;
                    text-align: center;
                    border-radius: 50%;
                    transform: scale(0.5);
                }
            }

            .iconfont {
                font-size: 40px;
            }
        }
    }
郭成尧 authored
310 311 312 313
    .my-order-top {
        margin-top: 30px;
    }
lijing authored
314 315 316 317 318 319 320 321 322 323 324 325 326 327
    .group-list {
        margin-bottom: 30px;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        background: #fff;

        .list-item {
            display: block;
            position: relative;
            padding: 0 30px;
            font-size: 16PX;
            line-height: 88px;

            .opinion {
姜枫 authored
328 329
                width: 1.2rem;
                height: 1.2rem;
lijing authored
330 331
                overflow: hidden;
                display: inline-block;
332
                background: url("/home/index/talk.png");
lijing authored
333
                position: relative;
姜枫 authored
334
                top: 0.34rem;
lijing authored
335 336 337 338 339 340 341 342
                margin-right: 12px;
            }

            &.highlight {
                background: #eee;
            }

            &:after {
郭成尧 authored
343
                content: "";
lijing authored
344 345 346 347 348 349 350 351 352 353 354
                position: absolute;
                right: 0;
                bottom: 0;
                width: 540px;
                height: 0;
                border-top: 1px solid #e0e0e0;
            }

            &:last-child:after {
                content: none;
            }
姜枫 authored
355 356 357 358 359 360 361 362

            .iconfont {
                font-size: 38px;
            }

            .iconfont.num {
                font-size: 14PX;
            }
lijing authored
363 364
        }
Zhang authored
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
        .invite {
            background: #d0021b;
            color: #fff;

            &:after {
                content: none;
            }

            .horn {
                width: 45px;
                height: 88px;
                display: block;
                background-image: url("/home/index/horn.png");
                background-size: 100%;
                float: left;
                margin-right: 12px;
            }
        }

        .message {
            clear: both;
        }
lijing authored
388 389 390 391 392 393 394 395 396
        .icon {
            margin-right: 10px;
            font-size: 50px;
            vertical-align: top;
        }

        .num {
            color: #e0e0e0;
            float: right;
郭成尧 authored
397
            font-size: 16PX;
lijing authored
398 399
        }
    }
lijing authored
400 401 402 403 404 405 406 407 408 409

    .res-c {
        img {
            width: 100%;
        }

        .thumb-row {
            padding-top: 0;
        }
    }
lijing authored
410
}
李靖 authored
411 412 413 414

.is-mars-app {
    .my-page {
        padding-bottom: 120px;
郭成尧 authored
415 416 417 418 419 420 421 422 423 424

        .my-order > .order-type {
            > .type-item {
                width: 145px;
            }

            > .type-item > .num {
                right: 18px;
            }
        }
李靖 authored
425 426
    }
}