litian
2024-06-26 ccda9ec2fe70d8f51ef184eafc04b78d22dfbabd
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
/* pages/examination/examination.wxss */
@import "./examination.skeleton.wxss";
 
.nacigationBar {
  display: flex;
  align-items: center;
}
 
.navbar-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #0F1214;
  font-size: 40rpx;
  font-weight: 600;
}
 
.lodaing-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  --td-loading-color: #ff6c00;
}
 
.page-content {
  box-sizing: border-box;
  width: 100%;
  height: calc(100vh - env(safe-area-inset-bottom) - 73px);
  padding: 20rpx;
  background-color: #F2F3F8;
}
 
.daytime {
  background-color: #fff;
  color: #000;
}
 
.night {
  background-color: #000;
  color: #fff;
}