css
litian
2024-07-09 e2b9cf5cb19ba0ae4bffd787d96f0d0cb8fb63bf
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
/* packageBookService/pages/bookServices/detail/buyResource/index.wxss */
@import "./index.skeleton.wxss";
 
.nacigationBar {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.navbar-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #0F1214;
  font-size: 38rpx;
  font-weight: bold;
}
 
.buy-resource {
  overflow-y: auto;
  height: calc(100vh - env(safe-area-inset-bottom) - 146px);
}
 
.flex {
  display: flex;
}
 
.space-between {
  justify-content: space-between;
}
 
.noData {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  --td-loading-color: #ff6c00;
}
 
.page-bottom {
  margin-bottom: 20rpx;
  position: fixed;
  bottom: env(safe-area-inset-bottom);
  width: 100%;
  height: min-content;
  display: flex;
  justify-content: center;
}
 
 
 
.page-bottom {
  --td-button-primary-bg-color: #ff6c00;
  --td-button-primary-border-color: #ff6c00;
  --td-button-primary-active-bg-color: #ff984d;
  --td-button-primary-active-border-color: #ff984d;
  --td-button-border-radius: 60rpx;
}
 
.btn-buy {
  width: 86vw;
}