38 lines
599 B
CSS
38 lines
599 B
CSS
.hot-word-management {
|
|
padding: 16px 0;
|
|
}
|
|
|
|
.hot-word-management .status-bar {
|
|
background-color: #e6f7ff;
|
|
border: 1px solid #91d5ff;
|
|
padding: 10px 16px;
|
|
border-radius: 4px;
|
|
margin-bottom: 16px;
|
|
font-size: 14px;
|
|
color: #003a8c;
|
|
}
|
|
|
|
.hot-word-management .table-header {
|
|
margin-bottom: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.hot-word-management .helper-text {
|
|
font-size: 13px;
|
|
color: #8c8c8c;
|
|
}
|
|
|
|
.animate-spin {
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
} |