search-result.scss 1.76 KB
Newer Older
zhanghaozhe committed
1
.search-result {
zhanghaozhe committed
2 3
    padding-top: 44px;

FE committed
4 5 6
    .search-head {
        // position: absolute;
        position: fixed;
zhanghaozhe committed
7 8 9 10
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
FE committed
11 12 13 14 15
        transition: top 0.5 ease;

        &.hide {
            top: -44px;
        }
zhanghaozhe committed
16 17
    }

zhanghaozhe committed
18 19
    ul {
        list-style: none;
xuzhenghua committed
20
        border-top:1px solid #ddd;
zhanghaozhe committed
21
    }
zhanghaozhe committed
22

zhanghaozhe committed
23 24 25 26 27 28
    .v-list-item{
        .content{
            width: 100%;
        }
    }

zhanghaozhe committed
29 30 31
    .info {
        display: flex;
        flex-wrap: wrap;
zhanghaozhe committed
32
        width: 50%;
zhanghaozhe committed
33

zhanghaozhe committed
34 35
        .title{
            overflow: hidden;
xuzhenghua committed
36 37
            font-size: $font_16;
            color:#525C65;
zhanghaozhe committed
38 39
            white-space: nowrap;
            text-overflow: ellipsis;
zhanghaozhe committed
40

zhanghaozhe committed
41 42
        }

zhanghaozhe committed
43
        .des {
xuzhenghua committed
44 45
            font-size: $font_14;
            color:#777;
zhanghaozhe committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
            line-height: 16px;
            align-self: flex-start;

        }

        .price {
            color: $red;
            font-size: $font_16;
            margin-right: 14px;
        }

        .stale-price {
            text-decoration: line-through;
            color: $color_999;
            font-size: $font_12;
        }
zhanghaozhe committed
62 63

        .bottom {
zhanghaozhe committed
64 65 66
            align-self: flex-end;
        }
    }
zhanghaozhe committed
67 68 69

    .empty {
        font-size: 12px;
xuzhenghua committed
70 71
        color: #777;
        padding: 50px 0 30px 0;
zhanghaozhe committed
72
        text-align: center;
xuzhenghua committed
73 74 75 76 77 78 79 80
        background-color: #fff;
        border-top: 1px solid #ddd;
        img {
            width: 100px;
            height: 81px;
            display: block;
            margin: 0 auto 15px auto;
        }
zhanghaozhe committed
81 82 83 84 85
    }

    .status {
        width: 100%;
        position: absolute;
zhanghaozhe committed
86
        bottom: -2px;
zhanghaozhe committed
87 88 89 90 91 92
        left: 0;
        height: 24px;
        text-align: center;
        line-height: 24px;
        font-size: 13px;
        color: $white;
zhanghaozhe committed
93
        background-color: rgba(224, 46, 36, 0.6);
zhanghaozhe committed
94
    }
zhanghaozhe committed
95
}