tabs.wxss 413 字节
.tabs {
  background-color: #fff;
}
.tabs .tabs_title {
  display: flex;
  padding: 32rpx;
  box-sizing: border-box;
}
.tabs .tabs_title .title_item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs .tabs_title .active {
  color: #E8370F;
  border-bottom: 5rpx solid #E8370F;
}
.tabs .tabs_content {
  background-color: #f9f9f9;
  padding: 32rpx;
  box-sizing: border-box;
}