李凌
2025-09-10 f703fe33aa10a7be7d82e7ea75f8e5ad143233fd
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
@tailwind base;
@tailwind components;
@tailwind utilities;
 
@import './variable.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;
  --van-nav-bar-background: $mainBgColor !important;
  --van-nav-bar-title-text-color: #fff !important;
  --van-uploader-upload-background: #232C46 !important;
  --van-index-anchor-text-color: #fff !important;
}
 
body {
  width: 100vw;
  height: 100vh;
  color: $mainTextColor;
  // color: $log-c;
  background-color: $mainBgColor;
  // background-color: $mainbgWhiteColor;
  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 {
  color: #c0c4cc;
}
 
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;
}