.discover-tabs{
width: 100%;
display: grid;
grid-template-columns: repeat(3,1fr);
.tab {
height: 80px;
background: rgba(255, 255, 255, 0.01);
display: flex;
justify-content: center;
align-items: center;
border-bottom: 2px solid #F3F3F3;
border-top: 2px solid #F3F3F3;
font-size: 30px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: $neutrals-color-icon;
}
<View className="discover-tabs">
{tabs.map(item => (
<View
key={item.type}
className={classNames("tab", { active: curType === item.type })}
onClick={() => {
this.changeTab(item.type);
}}
>
{item.name}
</View>
))}
</View>