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
| /* pages/mLearn/baseC/cLearnItem/cLearnItem.wxss */
| .fyui-panel_video .video-poster {
| width: 100%;
| height: 200px;
| background-color: black;
| }
|
| .fyui-panel_video .video-title{
| padding: 2px 16px;
| font-size: 16px;
| }
|
| .fyui-panel_video .video-play {
| position: absolute;
| top: calc(50% - 25px);
| left: calc(50% - 25px);
| z-index: 10;
| background-color: rgba(138, 138, 138, 0.712);
| border-radius: 50%;
| }
|
| .fyui-panel_video .tag{
| display: flex;
| justify-content: space-between;
| font-size: 12px;
| color: var(--fyui-text-color_2);
| padding: 4px 16px;
| }
|
|