84 lines
1.3 KiB
CSS
84 lines
1.3 KiB
CSS
body {
|
|
font-family: Arial, "Microsoft YaHei";
|
|
background: white;
|
|
}
|
|
|
|
/* ===== A4 容器 ===== */
|
|
.page {
|
|
width: 210mm;
|
|
min-height: 297mm;
|
|
margin: auto;
|
|
padding: 20mm;
|
|
position: relative;
|
|
background: white;
|
|
}
|
|
|
|
/* ===== 水印 ===== */
|
|
.watermark {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%) rotate(-30deg);
|
|
font-size: 50px;
|
|
color: rgba(0, 0, 0, 0.08);
|
|
white-space: nowrap;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
/* ===== 标题 ===== */
|
|
.title {
|
|
text-align: center;
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* ===== 信息表格 ===== */
|
|
.table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 10px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.table td {
|
|
border: 1px solid #ddd;
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.label {
|
|
width: 25%;
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
/* ===== 页脚 ===== */
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 20mm;
|
|
left: 20mm;
|
|
right: 20mm;
|
|
font-size: 12px;
|
|
color: #666;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
/* ===== 打印优化 ===== */
|
|
@media print {
|
|
.no-print {
|
|
display: none;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.page {
|
|
box-shadow: none;
|
|
}
|
|
}
|