104 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>費用明細</title>
 | 
						|
</head>
 | 
						|
<style>
 | 
						|
    body {
 | 
						|
        font-family: Arial, sans-serif;
 | 
						|
        zoom:1.5;
 | 
						|
    }
 | 
						|
 | 
						|
    .container {
 | 
						|
        width: 100%;  
 | 
						|
        height: 100%;  
 | 
						|
        max-width: 21cm;  
 | 
						|
        max-height: 29.7cm; 
 | 
						|
    }
 | 
						|
 | 
						|
    .header {
 | 
						|
        position: relative;
 | 
						|
        padding: 10px;
 | 
						|
    }
 | 
						|
 | 
						|
    .header img {
 | 
						|
        position: absolute;
 | 
						|
        left: 0;
 | 
						|
        top: 50%;
 | 
						|
        transform: translateY(-50%);
 | 
						|
    }
 | 
						|
 | 
						|
    .header h2 {
 | 
						|
        text-align: center;
 | 
						|
        font-size: 35px;
 | 
						|
        font-weight: normal;
 | 
						|
    }
 | 
						|
 | 
						|
    .statistics {
 | 
						|
        position: relative;
 | 
						|
        padding: 30px 10px;
 | 
						|
        border-top: 1px solid #ccc;
 | 
						|
        border-bottom: 1px solid #ccc;
 | 
						|
    }
 | 
						|
 | 
						|
    .statistics h3 {
 | 
						|
        margin-top: 0;
 | 
						|
    }
 | 
						|
 | 
						|
    .statistics table {
 | 
						|
        width:700px;
 | 
						|
    }
 | 
						|
    .statistics p {
 | 
						|
        margin: 20px 0;
 | 
						|
    }
 | 
						|
    .total {
 | 
						|
        display: flex;
 | 
						|
        align-items: end;
 | 
						|
        justify-content: flex-start;
 | 
						|
        padding: 20px 10px;
 | 
						|
    }
 | 
						|
 | 
						|
    .total .total-area p {
 | 
						|
        font-size: 1.2rem;
 | 
						|
        margin: 20px 0;
 | 
						|
    }
 | 
						|
 | 
						|
    .total-box {
 | 
						|
        width: 400px;
 | 
						|
        height: 180px;
 | 
						|
        display: flex;
 | 
						|
        align-items: flex-start;
 | 
						|
        justify-content: flex-start;
 | 
						|
        padding: 20px;
 | 
						|
        border: 1px solid #ccc;
 | 
						|
    }
 | 
						|
 | 
						|
    .total-box .total-money {
 | 
						|
        font-size: 40px;
 | 
						|
        padding-right: 8px;
 | 
						|
    }
 | 
						|
    @page {
 | 
						|
        size: A4;
 | 
						|
        margin: 0;
 | 
						|
    }
 | 
						|
 | 
						|
    body {
 | 
						|
        margin: 1cm;
 | 
						|
    }
 | 
						|
 | 
						|
    .a4-page {
 | 
						|
        page-break-before: always;
 | 
						|
    }
 | 
						|
    .br {
 | 
						|
        border-spacing: 0px 20px;
 | 
						|
    }
 | 
						|
</style>
 | 
						|
 | 
						|
<body>
 | 
						|
 {{bill}}
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |