*{
	  margin: 0;
	  padding: 0;
}
header{
	display: flex;
	position: fixed;
	top: 0;
	width: 100%;
	height: 64px;
	background-color: rgba(255, 255, 255, 0.9);/* 90%透明度的白色 */
	margin: auto;
	align-items: center;
	 z-index: 2;
}
.home{
	display: flex;
	/*background-color: antiquewhite;*/
	height: 32px;
	width: 130px;
	align-items: center;
	margin-left: 50px;
}
.leftbox{
	margin-left: 20px;
	display: flex;
	/*background-color: antiquewhite;*/
	height: 32px;
	width: 800px;
	align-items: center;
}
.rightbox{
	margin-left: 20px;
	display: flex;
	/*background-color: antiquewhite;*/
	height: 32px;
	/* width: 800px; */ /* Removed fixed width */
	flex-grow: 1; /* Allow it to take available space */
	align-items: center;
	justify-content: flex-end; /* Push items to the right */
	direction: ltr; /* Corrected to ltr for consistent flexbox layout */
	margin-right: 15px; /* Consistent with header's right margin */
}
.box01{
	display: flex;
	align-items: center;
	height: 32px;
	margin-left: 20px; /* Only left margin for spacing between items */
}

/* New style for message icon */
.message-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; /* Same as other icons */
    height: 24px;
    margin-left: 10px;
    margin-right: 10px;
}

.message-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7em;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

/* Styles for circular icons */
.circular-icon {
    border-radius: 50%;
    object-fit: cover; /* Ensures image fills the circle */
}
