brandSearch.wxss 1.96 KB
.searchContainer {
    position: fixed;
    top: 0rpx;
    left: 0rx;
    width: 100%;
    height: 88rpx;
    background-color: white;
    display: flex;
    align-items: center;
}

.search {
    margin-left: 15rpx;
    background-color: #f0f0f0;
    border-radius: 10rpx;
    height: 56rpx;
    display: flex;
    align-items: center;
    width: 96%;
}

.serachIcon {
    width: 25rpx;
    height: 25rpx;
    margin-left: 20rpx;
}

.serachInput {
    display: block;
    color: black;
    font-size: 24rpx;
    font-family: PingFang SC;
    padding-left: 10rpx;
    width: 92%;
}

.placeholder {
    font-family: PingFang SC;
    font-size: 24rpx;
    color: #cccccc;
}

.cancelButton {
    width: 80rpx;
    height: 40rpx;
    margin-left: 40rpx;
    margin-right: 21rpx;
    font-family: PingFang SC Regular;
    font-size: 30rpx;
    color: #b0b0b0;
}

.searchResult {
  margin-top: 88rpx;
  width: 100%;
}

.searchResult .noResult {
  text-align: center;
  font-size: 40rpx;
  color: #999999;
  font-weight: bold;
  margin-top: 200rpx;
  display: flex;
  justify-content: center;
}


.row {
  height: 140rpx;
  width: 100%;
  background: white;
}
.row .content {
  display: flex;
  align-items: center;
  height: 139rpx;
  width: 100%;
}
.row .brand-icon {
  width: 200rpx;
  height: 100rpx;
  margin: 20rpx 20rpx 20rpx 30rpx;
}

.row .rowContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 139rpx;
  width: 460rpx;
}

.row .rowContent .title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: SanFranciscoText-Bold;
  font-weight: bold;
  font-size: 32rpx;
  color: #444444;
  letter-spacing: -0.38px;
}

.row .rowContent .location {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: PingFang-SC-Regular;
  font-size: 24rpx;
  color: #B0B0B0;
  letter-spacing: -0.29px;
  margin-top: 14rpx;
}

.row .spaceLine {
  height: 1rpx;
  width: 690rpx;
  margin-left: 30rpx;
  background: #E0E0E0;
}