            .navbar {
		               background-color: transparent;
		               padding: 0;
		               position: fixed;
		               top: 0;
		               width: 100%;
		               z-index: 100;
		               display: flex;
		               justify-content: space-between;
		               align-items: center;
		    		
		           }
		    
		           .navbar-logo img {
		               height: 40px;
		               margin-left: 10px; /* 调整Logo的位置 */
					   position: absolute;
					   float: left;
					   top: 10px;
		           }
		    
		           .navbar-menu {
		               list-style: none;
		               margin: 0;
		               padding: 0;
		               display: flex;
		               align-items: center;
		    			width: 100%;
		    			height: 60px;
		    			justify-content: center;
		    			
		           }
		    
		           .navbar-menu li {
		               position: relative;
		    			color: #fff;
		    			height: 60px;
		    			line-height: 60px;
		           }
		    
		           .navbar-menu a {
		               color: inherit;
		               text-decoration: none;
		               font-size: 16px;
		               transition: color 1s ease;
		               padding: 0 15px;
					   color: #fff;
		           }
		    
		           .navbar-menu a:hover {
		               color: #33a296;
		           }
				