40 lines
925 B
SCSS
40 lines
925 B
SCSS
.dynamic-content {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.7;
|
|
color: #222;
|
|
// 富文本样式
|
|
:deep(table) {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
margin: 16px 0;
|
|
}
|
|
|
|
:deep(th), :deep(td) {
|
|
border: 1px solid #d1d5db;
|
|
padding: 8px 12px;
|
|
text-align: left;
|
|
}
|
|
:deep(th) {
|
|
background: #f3f4f6;
|
|
font-weight: bold;
|
|
}
|
|
:deep(strong), :deep(b) {
|
|
font-weight: bold !important;
|
|
color: inherit !important;
|
|
font-style: normal !important;
|
|
}
|
|
:deep(em), :deep(i) {
|
|
font-style: italic !important;
|
|
color: inherit !important;
|
|
}
|
|
:deep(a) {
|
|
color: #661FFB !important;
|
|
text-decoration: none !important;
|
|
&:hover {
|
|
text-decoration: underline !important;
|
|
}
|
|
}
|
|
} |