classify.wxss 1.9 KB
/* pages/classify/classify.wxss */

.search_box {
  padding: 16rpx 32rpx;
}

.search {
  width: 100%;
  height: 80rpx;
  background: rgba(245, 247, 250, 1);
  border-radius: 40px;
  padding: 0 29rpx;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.search_img {
  width: 35rpx;
  height: 32rpx;
  margin-right: 21rpx;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.search_input {
  font-size: 32rpx;
  color: #999;
}

.box {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.tabbar_box {
  width: 160rpx;
  height: 100%;
  font-size: 28rpx;
  color: #666;
  background: #f5f6fa;
  border-top: 1rpx solid #ebebeb;
  border-right: 1rpx solid #ebebeb;
  position: fixed;
  top: 112rpx;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

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

.tabbar_item {
  height: 110rpx;
  border-bottom: 1rpx solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.active {
  color: #0f71cd;
  background: #fff;
  position: relative;
}

.active::before {
  content: '';
  width: 10rpx;
  height: 40rpx;
  background: #0f71cd;
  position: absolute;
  left: 0;
}

.content_item {
  width: 78%;
  padding: 0 32rpx 0 50rpx;
  margin-left: 160rpx;
}

.item_list {
  margin-top: 36rpx;
}

.content_title_box {
  font-size: 28rpx;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24rpx;
}

.list_content_box {
  margin-top: 36rpx;
  padding: 24rpx;
  box-shadow: 0rpx 0rpx 10rpx rgba(1, 1, 1, 0.1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.list_content {
  margin-bottom: 30rpx;
}

.list_content_images {
  width: 140rpx;
  height: 140rpx;
  margin-left: 11rpx;
  margin-bottom: 24rpx;
}

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

.content_title {
  font-size: 24rpx;
  color: #1a1a1a;
  text-align: center;
}