node环境下,使用global,global会全局匹配样式
eg:
<AtListItem
title="消息中心"
note=""
arrow="right"
extraText={`${this.state.totalCount}`}
onClick={() => {
Taro.navigateTo({
url: "/pages/xxx/xxx/index"
});
}}
className={styles.messlist}
/>
.messlist :global(.item-extra__info){
padding-right: 45rpx;
color: #e33e33;
}
效果: