@import 'src/assets/css/variable';
.search-result {
  padding-top: 44px;

  .search-head {
    // position: absolute;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: top 0.5 ease;

    &.hide {
      top: -44px;
    }
  }

  .result-count {
    width: 375px;
    height: 30px;
    background: #f7f7fb;
    border-top: 1px solid #ddd;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
  }

  ul {
    list-style: none;
  }

  .v-list-item {
    .content {
      width: 100%;
    }
  }

  .info {
    width: 50%;
    position: relative;
    display: block;
    .title {
      font-size: $font_16;
      color: #525c65;
      em {
          color: #09f;
      }
    }

    .des {
      font-size: $font_14;
      color: #777;
      margin-top: 10px;
    }

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

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

    .bottom {
      position: absolute;
      bottom: 0;
    }
  }

  .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;
    }
  }

  .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;
  }
}