You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
662 B
36 lines
662 B
|
3 weeks ago
|
// 引入公共基础类
|
||
|
|
@import "./libs/css/common.scss";
|
||
|
|
@import "./libs/css/color.scss";
|
||
|
|
|
||
|
|
// 非nvue的样式
|
||
|
|
/* #ifndef APP-NVUE */
|
||
|
|
@import "./libs/css/style.vue.scss";
|
||
|
|
/* #endif */
|
||
|
|
|
||
|
|
// nvue的特有样式
|
||
|
|
/* #ifdef APP-NVUE */
|
||
|
|
@import "./libs/css/style.nvue.scss";
|
||
|
|
/* #endif */
|
||
|
|
|
||
|
|
// 小程序特有的样式
|
||
|
|
/* #ifdef MP */
|
||
|
|
@import "./libs/css/style.mp.scss";
|
||
|
|
/* #endif */
|
||
|
|
|
||
|
|
// H5特有的样式
|
||
|
|
/* #ifdef H5 */
|
||
|
|
@import "./libs/css/style.h5.scss";
|
||
|
|
/* #endif */
|
||
|
|
// ::v-deep .u-tag{
|
||
|
|
// font-weight: bold;
|
||
|
|
// }
|
||
|
|
.font_bold{
|
||
|
|
font-family: FZLanTingHeiS-M-GB;
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
.primary{
|
||
|
|
color: $u-type-primary;
|
||
|
|
}
|
||
|
|
.error{
|
||
|
|
color: $u-type-error;
|
||
|
|
}
|