riku
2023-02-24 110a8520fdf3caacd46750e7b76862df8c7eabd1
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
99
100
101
102
103
/* pages/notice/notice.wxss */
.swiper-tab{
  position: fixed;
  width: 100%;
  text-align: center;
  line-height: 80rpx;
  white-space: nowrap;
  z-index: 2;
  background-color: #EAFFF1;
}
 
.swiper-tab-list{
  font-size: 30rpx;
  display: inline-block;
  min-width: 30%;
  padding: 0 1%;
  color: black;
}
 
.on{ 
  color: #6BD9B9;
  font-weight: bold;
  border-bottom: 4rpx solid #6BD9B9;
}
 
.swiper-box{
  position: absolute;
  display: block;
  top: 80rpx;
  width: 100%;
  /* margin-top: 10px; */
  background-color: var(--fyui-BG_1);
}
 
.fyui-box {
  margin-bottom: 16px;
}
 
 
.fyui-box .fyui-box__hd {
  display: flex;
  align-items: center;
}
 
.title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 40rpx;
}
.title>text {
  font-size: small;
  color: var(--fyui-text-color_2);
}
 
 
.fyui-box .fyui-box__hd>image {
  width: 12px;
  height: 12px;
  background-color: #4C97F8;
  padding: 5px;
  border-radius: 50%;
}
 
.fyui-box__ft {
  /* position: relative; */
  /* padding: 20px; */
  margin-top: 40px;
  align-items: center;
}
 
.fyui-box__ft:before{
  content: " ";
  width: 100%;
  height: 1px;
  background-color: var(--fyui-BG_1);
  bottom: 50px;
  position: absolute;
}
 
.detail {
  white-space: nowrap;
  color: var(--fyui-text-color_1);
}
.sign {
  background-color: red;
  margin: 0;
}
 
.des {
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  width: 100%;
  overflow: hidden; */
  /* text-overflow: ellipsis; */
  font-size: 30rpx !important;
}
 
.page__ft {
  color: var(--fyui-text-color_2);
}