/** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App /* uni.scss */ .list .text.data-v-bd19021e { margin: 2vw; font-weight: bold; font-size: var(--font16Size); } .list .one.data-v-bd19021e { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; padding: 2vw 4vw; } .list .one .list.data-v-bd19021e { display: flex; flex-direction: column; align-items: center; width: 18vw; margin: 0 0 1vw 0; } .list .one .list .image.data-v-bd19021e { width: 40px; height: 40px; border-radius: 40px; } .list .one .list .title.data-v-bd19021e { margin: 0 0 1vw 0; font-size: var(--font14Size); } .list-cell.data-v-bd19021e { display: flex; align-items: center; box-sizing: border-box; width: 100%; padding: 10px 24rpx; overflow: hidden; color: #323233; font-size: 14px; line-height: 24px; background-color: #fff; } .list-cell .image.data-v-bd19021e { width: 40px; height: 40px; border-radius: 40px; } .list-cell .title.data-v-bd19021e { margin: 0 0 0 1vw; }