yeban8090_book-smith/src/styles/components/paginated-engine.css
2025-06-10 03:46:51 +08:00

158 lines
No EOL
2.7 KiB
CSS

/* 分页容器样式 */
.typography-content-pages {
display: flex;
flex-direction: column;
gap: 30px;
margin-top: 30px;
}
/* 页面样式 */
.book-page {
position: relative;
background-color: white;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
page-break-after: always;
padding: 20px 25px;
border: 1px solid #ddd;
}
/* 不同开本大小的页面样式 */
.book-size-a4 {
width: 210mm;
min-height: 297mm;
max-height: 297mm;
padding-bottom:10px
}
.book-size-a5 {
width: 148mm;
min-height: 210mm;
max-height: 210mm;
}
.book-size-b5 {
width: 176mm;
min-height: 250mm;
max-height: 250mm;
}
.book-size-16k {
width: 184mm;
min-height: 260mm;
max-height: 260mm;
padding: 18mm;
}
.book-size-custom {
width: 180mm;
min-height: 240mm;
max-height: 240mm;
padding: 15mm;
}
/* 目录样式 */
.typography-toc {
margin-bottom: 30px;
padding: 15px;
border: 1px solid #ddd;
background-color: #f9f9f9;
}
.typography-toc-pages {
display: flex;
flex-direction: column;
gap: 30px;
margin-bottom: 30px;
}
.toc-page {
position: relative;
}
.toc-list {
list-style-type: none;
padding-left: 0;
}
.toc-list li {
margin: 5px 0;
line-height: 1.5;
}
.toc-item-content {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
border-bottom: 1px dotted #ccc;
}
.toc-page-ref {
margin-left: 10px;
color: #666;
}
.toc-list a {
text-decoration: none;
color: #333;
flex-grow: 1;
}
.toc-list a:hover {
text-decoration: underline;
}
/* 目录级别样式 */
.toc-level-1 { font-weight: bold; font-size: 1.2em; }
.toc-level-2 { padding-left: 20px; font-weight: bold; }
.toc-level-3 { padding-left: 20px; }
.toc-level-4 { padding-left: 40px; }
.toc-level-5 { padding-left: 60px; }
.toc-level-6 { padding-left: 80px; }
/* 页面信息样式 */
.page-info {
text-align: center;
margin-top: 20px;
color: #666;
font-size: 14px;
}
/* 封面和内容容器 */
.typography-preview-container {
display: flex;
flex-direction: column;
gap: 30px;
width: 100%;
}
.typography-cover-container,
.typography-content-container {
width: 100%;
}
/* 页码样式 */
.page-number {
position: absolute;
bottom: 10px;
left: 0;
right: 0;
text-align: center;
font-size: 12px;
color: #666;
}
/* 页码标记样式 */
.page-marker {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
text-align: center;
font-size: 12px;
color: #999;
border-top: 1px solid #eee;
padding-top: 5px;
margin-top: 10px;
}