これは中国語の文字とは関係なく、「box」設定のcategory styleの問題です。
.badge {
&-category-bg, /* <------ bad!! */
&-wrapper.bullet &-category-parent-bg,
&-wrapper.bullet &-category-parent-bg + &-category-bg {
border-radius: 50%;
width: 9px;
}
これを解決するには、テーマコンポーネントとして適用してください。
.badge {
&-wrapper.bar &-category-bg,
&-wrapper.bar &-category-parent-bg,
&-wrapper.bar &-category-parent-bg + &-category-bg {
border-radius: 0%;
}
&-wrapper.box &-category-bg,
&-wrapper.box &-category-parent-bg,
&-wrapper.box &-category-parent-bg + &-category-bg {
border-radius: 0%;
width: 100%;
}
}
