Book_system/app/static/css/book-import.css
2025-04-30 16:23:05 +08:00

71 lines
1.2 KiB
Plaintext

/* 图书批量导入页面样式 */
.import-container {
padding: 20px;
}
.page-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #eee;
}
.card {
margin-bottom: 20px;
border: 1px solid rgba(0,0,0,0.125);
border-radius: 0.25rem;
}
.card-header {
padding: 0.75rem 1.25rem;
background-color: rgba(0,0,0,0.03);
border-bottom: 1px solid rgba(0,0,0,0.125);
}
.card-body {
padding: 1.25rem;
}
.import-instructions {
margin-top: 20px;
}
.import-instructions h5 {
margin-bottom: 15px;
color: #555;
}
.import-instructions ul {
margin-bottom: 20px;
padding-left: 20px;
}
.import-instructions li {
margin-bottom: 8px;
color: #666;
}
.required-field {
color: #dc3545;
font-weight: bold;
}
.template-download {
margin-top: 20px;
text-align: center;
padding: 15px;
background-color: #f8f9fa;
border-radius: 5px;
}
/* 响应式调整 */
@media (max-width: 768px) {
.page-header {
flex-direction: column;
align-items: flex-start;
gap: 15px;
}
}