12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- /* uni.scss */
- .content.data-v-4978fed5 {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- }
- .content .top.data-v-4978fed5 {
- margin: 2vw;
- }
- .content .bottom.data-v-4978fed5 {
- position: relative;
- flex-grow: 1;
- }
- .content .bottom .list.data-v-4978fed5 {
- width: 47vw;
- margin: 2vw 0 0 0;
- border-radius: 5px;
- border: 1px solid var(--f5Color);
- }
- .content .bottom .list .list_1 .left .image.data-v-4978fed5 {
- width: 100%;
- height: 120px;
- border-radius: 5px 5px 0 0;
- }
- .content .bottom .list .list_1 .right.data-v-4978fed5 {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 0 2vw;
- }
- .content .bottom .list .list_1 .right .name.data-v-4978fed5 {
- font-size: var(--font14Size);
- }
- .content .bottom .list .list_1 .right .money.data-v-4978fed5 {
- color: var(--fF0Color);
- font-size: var(--font12Size);
- margin: 0 0 1vw 0;
- }
- .content .bottom .list .list_1 .right .money text.data-v-4978fed5:first-child {
- font-size: var(--font18Size);
- }
- .scroll-view.data-v-4978fed5 {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scroll-view .list-scroll-view.data-v-4978fed5 {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- padding: 0 2vw;
- }
- .is_bottom.data-v-4978fed5 {
- width: 100%;
- text-align: center;
- }
- .is_bottom text.data-v-4978fed5 {
- padding: 2vw 0;
- display: inline-block;
- color: var(--f85Color);
- font-size: var(--font12Size);
- }
|