12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- /* uni.scss */
- .content.data-v-4978fed5 {
- display: flex;
- flex-direction: column;
- background-color: var(--f1Color);
- }
- .content .thr.data-v-4978fed5 {
- margin: 2vw 0;
- }
- .content .thr .list.data-v-4978fed5 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: var(--mainColor);
- margin: 2vw 2vw 0 2vw;
- padding: 3vw;
- border-radius: 2vw;
- }
- .content .thr .list .image.data-v-4978fed5 {
- width: 18vw;
- height: 18vw;
- border-radius: 18vw;
- }
- .content .thr .list .left.data-v-4978fed5 {
- width: 60vw;
- }
- .content .thr .list .left .name.data-v-4978fed5 {
- font-weight: bold;
- font-size: var(--font16Size);
- }
- .content .thr .list .left .other.data-v-4978fed5 {
- margin: 2vw 0 0 0;
- font-size: var(--font12Size);
- color: var(--f85Color);
- }
|