我的排行榜名字太长出现了样式问题

不太懂css,请问我要加入什么样的字段?才能让玩家名字不显示那么长,多谢大神

let newStyle = {
            width: '25%',  // 适当减小宽度
            fontWeight: 'bold',
            marginTop: 10,
            height: 100,
            fontSize: 30,   // 减小字体大小
            lineHeight: 100,
            marginLeft: 60, // 减小左边距
            textAlign: 'left',
            overflow: 'hidden', // 添加溢出隐藏
            textOverflow: 'ellipsis' // 文本溢出显示省略号
            max-width: 200px;  /* 限制最大宽度 */
        };

666多谢