/* 整体容器样式 */
.archive-receipt-container {
    font-family: '宋体', SimSun, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* 回执标题样式 */
.receipt-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* 回执表格样式 */
.receipt-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.receipt-left-align {
    text-align: left;
}

.receipt-table td {
    border: 1px solid #ccc;
    padding: 10px;
    vertical-align: top;
}

.receipt-field-label {
    font-weight: bold;
    width: 30%;
    background-color: #f9f9f9;
}

.receipt-field-value {
    width: 70%;
}


/* 安全信息区域样式 */
.receipt-security-info {
    text-align: right;
    margin-bottom: 20px;
}

.receipt-qr-code {
    display: inline-block;
    margin-bottom: 10px;
}

.receipt-verification-url {
    font-size: 12px;
    color: #666;
}

.receipt-print-time {
    font-size: 12px;
    color: #666;
}

.receipt-align-right {
    text-align: right;
}

/* 下载 PDF 按钮样式 */
.generate-pdf-button {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.generate-pdf-button:hover {
    background-color: #005177;
}