39 lines
516 B
SCSS
39 lines
516 B
SCSS
.notice-info {
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
padding: 16px 18px;
|
|
}
|
|
|
|
.notice-section {
|
|
margin-bottom: 20px;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.notice-title {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
}
|
|
|
|
.notice-icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.notice-content {
|
|
font-size: 12px;
|
|
color: #666;
|
|
padding-left: 28px;
|
|
}
|
|
|
|
.notice-item {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
} |