xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
91
92
93
94
95
96
97
98
/**app.wxss**/
@import './styles/public.wxss';
@import './styles/animate.wxss';
@import './components/vant/common/index.wxss';
 
/* font-family */
@font-face {
  font-family: 'DingTalk';
  src: url('./font/DingTalk_JinBuTi_Regular.ttf') format('truetype');
 
page {
  color: var(--text-color);
  background-color: var(--bg-color);
  font-size: var(--font-size-main);
  line-height: var(--line-height-main);
  font-family: var(--base-font-family);
}
 
/* iphoneX底部安全距离 */
.safeHeight {
  height: env(safe-area-inset-bottom);
}
 
page .btn {
  background: #ffffff;
  border-radius: 8rpx;
  font-size: 28rpx;
  width: 400rpx;
  height: 80rpx;
  line-height: 80rpx;
  margin: 0;
  border: none;
}
 
page .btn-blue {
  background-color: #26a7df;
  color: #ffffff;
}
 
page .btn-primary {
  background-color: var(--main-color);
  color: #ffffff;
}
 
page .btn-white {
  background-color: #ffffff;
  color: var(--main-color);
}
 
.pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--text-color);
  font-family: var(--base-font-family);
}
 
.public-color {
  color: var(--main-color)
}
 
.more-btn {
  padding: 16rpx 0;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.more-btn-image {
  height: 28rpx;
  width: 28rpx;
  margin-left: 8rpx;
}
 
page .tab-active-class {
  color: var(--main-color);
}
 
.myMediate .tab-nav-class,
.messageCenter-tabs .tab-nav-class {
  background-color: var(--bg-color);
}
 
.popup-bottom-button {
  padding: 32rpx 0;
  border-top: 2rpx solid var(--border-color);
  position: fixed;
  bottom: 0;
  left: 32rpx;
  right: 32rpx;
  background-color: #ffffff;
}
 
.second-font {
  font-size: 24rpx;
  line-height: 40rpx;
}