77 lines
1.5 KiB
SCSS
77 lines
1.5 KiB
SCSS
.card_info_preview {
|
|
background-color: #f8f8f8;
|
|
width: 400px;
|
|
padding: 15px;
|
|
margin-left: 10px;
|
|
border-radius: 10px;
|
|
.title {
|
|
border-left: 3px solid #1890ff;
|
|
padding-left: 15px;
|
|
margin-bottom: 12px;
|
|
}
|
|
.preview_header {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-bottom: 15px;
|
|
.avatar {
|
|
width: 60px;
|
|
height: 60px;
|
|
background-color: #f8f8f8;
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
padding: 8px;
|
|
text-align: center;
|
|
line-height: 20px;
|
|
}
|
|
.info {
|
|
padding-left: 15px;
|
|
.name {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
.desc {
|
|
font-size: 12px;
|
|
color: #666;
|
|
}
|
|
}
|
|
}
|
|
.preview_content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.item {
|
|
width: 70px;
|
|
height: 70px;
|
|
background-color: #f8f8f8;
|
|
}
|
|
.video_preview {
|
|
width: 150px;
|
|
height: 150px;
|
|
background-color: #f8f8f8;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
.cover_image_preview {
|
|
background-color: #f8f8f8;
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
.cover_image {
|
|
width: 70px;
|
|
height: 70px;
|
|
background-color: #eee;
|
|
text-align: center;
|
|
line-height: 70px;
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
}
|
|
.cover_info {
|
|
flex: 1;
|
|
padding-left: 10px;
|
|
font-size: 12px;
|
|
height: 70px;
|
|
}
|
|
}
|
|
}
|