riku
2026-01-21 a2c5def7cf9562312a54216bc195a6ea071a26c5
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
/* pages/module_common/pagevideo/pagevideo.wxss */
.page__hd{
  padding: 0;
}
 
.page__ft{
  text-align: left;
}
 
.video{
  width: 100%;
}
 
.video-series {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--fyui-BG_1);
  border-radius: 4px;
  padding: 2px 16px;
  font-size: 14px;
  color: var(--fyui-text-color_2);
}
 
.title{
  text-align: start;
  padding: 0 16px;
  font-weight: 600;
  font-size: 16px;
}
 
.fyui-box__content {
  text-align: start;
}
 
.custom-action {
  position: relative;
  min-height: 40vh;
}
 
.custom-action__series {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* background-color: blueviolet; */
}
 
.custom-action__series>view {
  width: 50%;
  /* background-color: rosybrown; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}
 
.custom-action__video {
  width: 86%;
  color: var(--fyui-text-color_2);
  border: 1px solid var(--fyui-text-color_2);
  border-radius: 4px;
  padding: 2px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.selected{
  color: white;
  border: 1px solid var(--fyui-primary-color);
  background-color: var(--fyui-primary-color);
}