199 lines
5.0 KiB
Plaintext
199 lines
5.0 KiB
Plaintext
.container {
|
|
width: 100%;
|
|
|
|
.editor {
|
|
display: flex;
|
|
flex-direction: row;
|
|
border: 1px solid #dbdbdb;
|
|
width: 600px;
|
|
position: relative;
|
|
}
|
|
|
|
.content {
|
|
padding: 40px;
|
|
border-bottom: 1px solid #EDEEEF;
|
|
background: #fcfcfc;
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.title {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.label {
|
|
width: 94px;
|
|
text-align: left;
|
|
}
|
|
|
|
.coverImage {
|
|
width: 300px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
.img {
|
|
width: 100%;
|
|
object-fit: contain;
|
|
}
|
|
}
|
|
|
|
.fileCover {
|
|
width: 300px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.buttonGroup {
|
|
margin-left: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 36px;
|
|
min-height: 36px;
|
|
max-height: 72px;
|
|
border-radius: 18px;
|
|
background: #fcfcfc;
|
|
font-size: 18px;
|
|
padding: 3px;
|
|
box-shadow: 0 1px 6px #e4e8eb;
|
|
.buttonItem {
|
|
height: 30px;
|
|
width: 30px;
|
|
border-radius: 50%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
cursor: pointer;
|
|
}
|
|
.buttonItem:hover {
|
|
background: #EDEEEF;
|
|
}
|
|
}
|
|
|
|
.menuContent {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
.item {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 10px;
|
|
background: #F6F7F8;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.item:hover {
|
|
color: #1677FF;
|
|
}
|
|
}
|
|
|
|
.delete {
|
|
font-size: 14px;
|
|
color: #FF5557;
|
|
cursor: pointer;
|
|
width: 60px;
|
|
}
|
|
.delete:hover {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
.actionBar {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
background: #fcfcfc;
|
|
border-bottom-left-radius: 8px;
|
|
border-bottom-right-radius: 8px;
|
|
padding: 20px 40px 20px 40px;
|
|
}
|
|
|
|
.news {
|
|
width: 310px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
border: 1px solid #dbdbdb;
|
|
border-radius: 4px;
|
|
.multiNews {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.cover {
|
|
width: 308px;
|
|
height: 130px;
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
.img {
|
|
object-fit: contain;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.articleTitle {
|
|
// color: #fff;
|
|
padding: 0 12px;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
position: absolute;
|
|
top: 100px;
|
|
}
|
|
}
|
|
.newsItem {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding: 12px;
|
|
align-items: center;
|
|
.articleTitle {
|
|
width: 220px;
|
|
font-size: 14px;
|
|
color: #353535;
|
|
line-height: 48px;
|
|
border-bottom: 1px solid #dbdbdb;
|
|
font-weight: 500;
|
|
}
|
|
.imgCover {
|
|
object-fit: cover;
|
|
width: 48px;
|
|
height: 48px;
|
|
.img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
.newsItem:last-child {
|
|
.articleTitle {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
.singleNews {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.cover {
|
|
width: 308px;
|
|
height: 130px;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
.img {
|
|
object-fit: contain;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
.articleTitle {
|
|
padding: 12px;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
color: #353535;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|
|
} |