search.less 1.9 KB
page {
  width: 100%;
  height: 100%;
  background: #f9f9f9;
}

.container {
  width: 100%;
  height: 100%;
  border-top: 2rpx solid #F9F9F9;

  .search_box {
    width: 100%;
    height: 108rpx;
    display: flex;
    align-items: center;
    padding: 10rpx 0 10rpx 32rpx;
    box-sizing: border-box;
    background-color: #fff;

    .search {
      flex: 1;
      background-color: #f9f9f9;
      border-radius: 15rpx;
      position: relative;
      height: 68rpx;

      input {
        font-size: 28rpx;
        height: 68rpx;
        width: 100%;
        padding-left: 52rpx;
        box-sizing: border-box;
      }

      image {
        width: 32rpx;
        height: 32rpx;
        position: absolute;
        top: 50%;
        left: 10rpx;
        transform: translateY(-50%);
      }
    }

    .search_btn {
      height: 88rpx;
      color: #E8370F;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: transparent;
    }

    button {
      padding: 8rpx 8rpx !important;
    }
  }

  .his_box {
    width: 100%;
    padding: 28rpx 32rpx;
    box-sizing: border-box;

    .search_history {
      width: 100%;
      display: flex;
      align-items: center;
      height: 68rpx;


      .his_name {
        font-size: 34rpx;
        font-weight: 600;
        color: #323233;
        text-align: left;
        flex: 1;
      }

      image {
        width: 48rpx;
        height: 48rpx;
      }
    }

    .search_num {
      width: 100%;
      margin-top: 20rpx;

      .muim {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 16rpx;

        .itemValue {
          padding: 10rpx 28rpx;
          background-color: #fff;
          border-radius: 4rpx;
          box-sizing: border-box;
          font-size: 28rpx;
          color: #323233;
          margin-right: 16rpx;
        }
      }
    }
  }
}