101 lines
1.9 KiB
Plaintext
101 lines
1.9 KiB
Plaintext
ul {
|
|
display: flex;
|
|
overflow: hidden;
|
|
justify-content: space-around;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.video {
|
|
text-align: center;
|
|
background: rgba(0, 0, 0, 0.8784313725490196);
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
z-index: 9;
|
|
display: none;
|
|
.close {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: rgba(255, 255, 255, 0.611764705882353);
|
|
border-radius: 100%;
|
|
color: #615e5e;
|
|
text-align: center;
|
|
line-height: 55px;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: 30px;
|
|
font-size: 31px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.list {
|
|
width: 15%;
|
|
margin: 10px 10px 10px 10px;
|
|
background: #fff;
|
|
.back {
|
|
width: 100%;
|
|
height: 178px;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
.zz {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 2;
|
|
background: #000;
|
|
filter: blur(10px);
|
|
}
|
|
img {
|
|
width: 103px;
|
|
height: 178px;
|
|
position: absolute;
|
|
z-index: 3;
|
|
left: 50%;
|
|
margin-left: -103px / 2;
|
|
}
|
|
}
|
|
.list-bottom {
|
|
padding: 10px 5px 5px 5px;
|
|
box-sizing: border-box;
|
|
.action {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
height: 36px;
|
|
align-items: center;
|
|
padding: 3px 5px 0 5px;
|
|
color: #b7b7b7;
|
|
font-size: 13px;
|
|
a {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.pid {
|
|
font-size: 16px;
|
|
margin: 10px 0;
|
|
color: #8e8d8d;
|
|
}
|
|
.bottom-info {
|
|
|
|
a {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
color: #bababa;
|
|
.avatar {
|
|
width: 35px;
|
|
height: 35px;
|
|
border-radius: 100%;
|
|
}
|
|
.title {
|
|
font-size: 13px;
|
|
width: 230px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow:ellipsis;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |