李凌
2025-12-16 9337c3cf960b60078558b7f942fd27f1ab39364b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
@tailwind base;
@tailwind components;
@tailwind utilities;
 
@import './variable.scss';
@import '../theme/index.scss';
@import './vant-theme.scss';
 
/* overwite default */
:root {
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  width: 100vw;
  height: 100vh;
  color-scheme: light dark;
  /* color: rgba(0, 0, 0, 0.87); */
  // background-color: $mainBgColor;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  --van-sidebar-selected-border-height: 44px !important;
  --van-sidebar-selected-border-width: 2px !important;
}
 
/* Vant 组件主题变量已移至 vant-theme.scss */
 
body {
  width: 100vw;
  height: 100vh;
  @include themify() {
    background-color: themed("main_background");
    color: themed("text_color");
  }
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
 
@supports (bottom: constant(safe-area-inset-bottom)) {
  body {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
}
 
.safe-area-pb {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
 
.pb-fix {
  padding-bottom: 6rem;
}
 
input {
  outline: none;
}
 
input::-webkit-input-placeholder {
  @include themify() {
    color: themed("text_color1");
  }
  opacity: 0.6;
}
 
ul,
li {
  list-style: none;
}
 
p {
  padding: 0;
  margin: 0;
}
 
/* component css */
.divider {
  height: 6px;
  width: 100%;
  background: #0D1224;
}
 
.no-data-img {
  width: 90px !important;
  height: 90px !important;
  opacity: 0.6;
}