Blame view

public/scss/channel/_new-user-floor.css 2.05 KB
zzzzzzz authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
.new-user-floor {
    position: relative;
    background: #fff;
    -webkit-overflow-scrolling: touch;

    .new-user-icon {
        position: absolute;
        bottom: 26px;
        left: 0;
        height: 171px;
        width: 35px;
        font-size: 22px;
        color: #fff;
        text-align: center;
        letter-spacing: 4px;
        line-height: 2;
ccbikai(👎🏻🍜) authored
17
        background: resolve("channel/new-user.png");
zzzzzzz authored
18 19 20 21
        background-size: 100% 100%;
        writing-mode: tb-rl;
        -webkit-writing-mode: tb-rl;
        -ms-writing-mode: tb-rl;
zzzzzzz authored
22
        z-index: 2;
zzzzzzz authored
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
    }
}

.new-user-banner {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.new-user-goods-container {
    height: 213px;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    background-size: 100% 100%;

    ul {
zzzzzzz authored
40
        height: 213px;
zzzzzzz authored
41 42 43 44 45 46 47 48 49 50 51 52 53
        padding: 17px 0 26px 50px;
        white-space: nowrap;
    }

    .new-user-good {
        display: inline-block;
        height: 171px;
        width: 256px;
        background: #ccc;
        margin-right: 16px;
    }

    .goods-pic {
zzzzzzz authored
54
        float: left;
zzzzzzz authored
55 56 57 58 59
        height: 100%;
        width: 50%;
    }

    .goods-info {
zzzzzzz authored
60
        float: right;
zzzzzzz authored
61 62
        height: 100%;
        width: 50%;
zzzzzzz authored
63 64 65 66 67 68
        background: #fff;

        .title {
            height: 50px;
            width: 85px;
            margin: 26px 22px 0 26px;
zzzzzzz authored
69
            line-height: 1.4;
zzzzzzz authored
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
            text-align: center;
            font-size: 17px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            white-space: normal;
        }

        .price {
            height: 20px;
            width: 85px;
            margin: 20px 22px 0 26px;
            line-height: 1.5;
            text-align: center;
            font-size: 17px;
        }

        .buy-now {
            height: 20px;
            width: 85px;
            margin: 25px 22px 0 26px;
            line-height: 1.5;
            text-align: right;
zzzzzzz authored
94
            font-size: 15px;
zzzzzzz authored
95 96
            color: #c5c5c5;
        }
zzzzzzz authored
97
    }
郭成尧 authored
98
}