body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.header {
    background-image: url('images/top.jpg');
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    height: 80px; /* 调整高度以适应图片 */
    padding: 0; /* 移除内边距 */
    margin: 0; /* 移除外边距 */
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.nav {
    background-color: white;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.nav-text {
    font-size: 16px;
    color: #333;
}

.date-time {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #333;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    border: 1px solid #e0e0e0;
    padding: 15px;
}

.info-label {
    background-color: #e8f4f8;
    width: 30%;
    text-align: center;
    color: #333;
}

.photo-label {
    text-align: right;
    vertical-align: top;
    padding-top: 10px;
    padding-right: 10px;
}

.info-value {
    background-color: white;
}

.photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.photo {
    width: 120px;
    height: 160px;
    background-color: #0078d4;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    height: 50px;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-indicator {
    width: 50%;
    height: 5px;
    background-color: #666;
    border-radius: 3px;
}