12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- /* uni.scss */
- .content.data-v-bf1a7b85 {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- background-color: var(--footColor);
- }
- .content .one .icon.data-v-bf1a7b85 {
- padding: 2vw;
- }
- .content .one .margin.data-v-bf1a7b85 {
- margin: 3vw 0 0 0;
- }
- .content .one .other.data-v-bf1a7b85 {
- padding: 3vw 2vw;
- border-bottom: 1px solid var(--footColor);
- }
- .content .one .value.data-v-bf1a7b85 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: var(--mainColor);
- }
- .content .one .value .label .input.data-v-bf1a7b85 {
- text-align: right;
- }
- .content .one .value .label .image.data-v-bf1a7b85 {
- width: 15vw;
- height: 15vw;
- border-radius: 20vw;
- }
- .content .one .remark.data-v-bf1a7b85 {
- padding: 4vw 2vw;
- text-align: center;
- color: var(--f99Color);
- font-size: var(--font18Size);
- }
- .content .one .button.data-v-bf1a7b85 {
- margin: 2vw 0 0 0;
- text-align: center;
- }
- .content .one .button button.data-v-bf1a7b85 {
- background-color: var(--fFFColor);
- font-size: var(--font14Size);
- border-radius: 2vw;
- }
|