/* 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);
|
}
|