Angular 如何在其他模块中重新定义全局主体样式?

Angular How can i redefine global body styles in other module?

我在应用程序模块中有一个 index.scss。有款式

html,
body {
        max-width: 1400px;
        margin: auto;
}

我还有其他模块,module2,我不需要上面的样式,我怎样才能“关闭”它? 我尝试在 module2 的主要组件中重新声明此样式,但没有帮助:

max-width: unset !important;
margin: 0 !important;

在第二个模块主要组件样式文件中编写您的 css 选择器。 然后在第二个模块

的主组件中将ViewEncapsulation设置为None