search_result.wxss 1.6 KB
page {
  width: 100%;
  height: 100%;
  background: #f9f9f9;
}

.page {
  width: 100%;
  min-height: 100%;
}

.horizontal_nav {
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  height: 88rpx;
  background: rgba(61, 154, 248, 1);
  line-height: 88rpx;
  font-size: 28rpx;
  font-family: PingFang SC;
  font-weight: 400;
  color: rgba(174, 214, 255, 1);
  padding: 0 12rpx;
  box-sizing: border-box;
}

.horizontal_nav::-webkit-scrollbar {
  display: none;
}

.nav_item {
  padding: 0 40rpx;
  box-sizing: border-box;
  display: inline-block;
}

.nav_item.active {
  color: #fff;
}

.select_box {
  height: 88rpx;
  width: 100%;
  background: #fff;
  padding: 0 98rpx;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select_item {
  font-size: 28rpx;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 40rpx;
  color: rgba(156, 156, 156, 1);
  position: relative;
}

.select_item.active {
  color: rgba(61, 154, 248, 1);
}

.select_item.active::after {
  content: '';
  width: 100%;
  height: 4rpx;
  border-radius: 4rpx 4rpx 0 0;
  background: rgba(61, 154, 248, 1);
  position: absolute;
  bottom: -20rpx;
  left: 0;
}

.select_img {
  height: 22rpx;
  width: 10rpx;
  position: absolute;
  right: -14rpx;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.select_img image {
  width: 100%;
  height: 100%;
}

.empty {
  font-size: 36rpx;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ccc;
  margin-top: 200rpx;
  text-align: center;
}