English
Use the @import statement to import the external style sheet, @import is followed by the relative path of the external style sheet to be imported, and ; indicates the end of the statement.
Sample code:
<style>
@import "../../common/uni.css";
.uni-card {
box-shadow: none;
}
</style>