body, html {  
    height: 100%;  
    margin: 0;  
    font-family: Arial, sans-serif;  
    background-color: #f0f0f0;  
}    
.header {  
    background-color: rgba(0, 0, 0, 0);  
    width: 100%;  
    padding: 10px 20px;  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
    color: white;  
    position: fixed;  
    top: 0;  
    left: 0;  
    box-sizing: border-box;  
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);  
    z-index: 1000;  
	
}  
  
.header-title {  
    font-size: 28px;  
    font-weight: bold; 	
} 
.header-right-title {  
    
	font-size: 13px; /* 根据需要调整字体大小 */  
    font-weight: normal; /* 根据需要调整字体粗细 */  
    margin-left: auto; /* 推送到右侧 */  
    text-decoration: none; /* 移除下划线 */  
    color: white; /* 设置文字颜色 */  
    padding: 5px 10px; /* 添加内边距 */  
   
} 
.header-button {
    margin-left: 15px;
    padding: 5px 5px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    background-color: rgba(135, 206,250,0.2);
    border: 1px solid #2c54a8;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.header-button:hover {
    background-color: #00BFFF;
    transform: scale(1.05);
}



.logo {      
    margin-right: 1000px; /* logo与标题之间的间距 */
 	/* 确保logo居中，或者根据你的布局需求进行调整 */  
    display: flex;  
    align-items: center; /* 垂直居中 */  
    /* 移除不必要的margin-right */  
    /* 如果你需要logo有一个具体的宽度，可以设置一个如下 */  
    width: 200px; /*(或根据logo的实际尺寸设置) */  
    /* 或者让logo占据更多空间，但不固定宽度 */  
    /*flex-grow: 1;  如果需要logo根据可用空间动态调整大小 */  
    /*flex-shrink: 0;  防止logo在容器缩小时变小 */  
} 
.logo img {  
    /* 设置最大宽度，同时保持图片宽高比 */  
    max-width: 100%; /* 使其宽度不超过logo容器的宽度 */  
    height: auto; /* 保持图片原始宽高比 */  
    /* 如果你想要logo有一定的内边距或外边距，可以在这里设置 */  
    /* padding: 10px; (根据需要添加) */  
    /* 或者给img标签直接设置margin（取决于你的布局需求） */  
}  
 
