search-result.scss 1.62 KB
Newer Older
zhanghaozhe committed
1
@import 'src/assets/css/variable';
zhanghaozhe committed
2
.search-result {
zhanghaozhe committed
3
  padding-top: 44px;
zhanghaozhe committed
4

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

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

zhanghaozhe committed
19 20 21 22 23 24 25 26 27 28
  .result-count {
    width: 375px;
    height: 30px;
    background: #f7f7fb;
    border-top: 1px solid #ddd;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
  }
zhanghaozhe committed
29

zhanghaozhe committed
30 31 32
  ul {
    list-style: none;
  }
zhanghaozhe committed
33

zhanghaozhe committed
34 35 36 37 38
  .v-list-item {
    .content {
      width: 100%;
    }
  }
zhanghaozhe committed
39

zhanghaozhe committed
40 41 42 43 44 45 46 47 48 49 50
  .info {
    width: 50%;
    position: relative;
    display: block;
    .title {
      font-size: $font_16;
      color: #525c65;
      em {
          color: #09f;
      }
    }
zhanghaozhe committed
51

zhanghaozhe committed
52 53 54 55 56
    .des {
      font-size: $font_14;
      color: #777;
      margin-top: 10px;
    }
zhanghaozhe committed
57

zhanghaozhe committed
58 59 60 61 62
    .price {
      color: $red;
      font-size: $font_16;
      margin-right: 14px;
    }
zhanghaozhe committed
63

zhanghaozhe committed
64 65 66 67
    .stale-price {
      text-decoration: line-through;
      color: $color_999;
      font-size: $font_12;
zhanghaozhe committed
68
    }
zhanghaozhe committed
69

zhanghaozhe committed
70 71 72
    .bottom {
      position: absolute;
      bottom: 0;
zhanghaozhe committed
73
    }
zhanghaozhe committed
74
  }
zhanghaozhe committed
75

zhanghaozhe committed
76 77 78 79 80 81 82 83 84 85 86 87
  .empty {
    font-size: 12px;
    color: #777;
    padding: 50px 0 30px 0;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #ddd;
    img {
      width: 100px;
      height: 81px;
      display: block;
      margin: 0 auto 15px auto;
zhanghaozhe committed
88
    }
zhanghaozhe committed
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
  }

  .status {
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
    color: $white;
    background-color: rgba(224, 46, 36, 0.6);
    border-radius: 0 0 4px 4px;
  }
}