@charset "utf-8";
/* CSS Document */

  /* 设置顶头浮动首页行的样式 */  
		  body, html {  
			cursor: default; /* 鼠标悬停时保持默认样式 */
            margin: 0;  
			-webkit-user-select:none;
       		user-select:none;
			    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}
		
        .header-row {  
            /* 使用flex布局，使三个部分在水平方向上均匀分布，并留有等宽的间距 */
			top:0px;
            display: flex;  
			position: fixed;
			width: 100%;
             /* 将三个部分在水平方向上均匀分布 */  
			 justify-content: space-between;
            align-items: center; /* 将三个部分垂直居中 */    
			background-color:#ffffff; /* 背景颜色 */ 
			height: 50px;
			z-index: 9999;  
			
        }  
 
        /* 去掉最后一个部分的右侧外边距 */ 
		.font-top{
			text-shadow: 2px 2px 4px rgba(10, 3, 9, 0.2); /* 阴影效果 */  
			font-size: 20px;
			font-family: "Helvetica Neue", sans-serif; 
			font-weight: bold;  
			color: #000000;
			text-decoration: none;
			z-index: 9999;
			flex: 1;
			text-align: center;  
			height: 50px; 
			line-height: 50px; /* 设置与div高度相同的行高 */
			 box-shadow: 0 2px 0px rgba(0, 0, 0, 0.1); 
			
			
			  

		}
		.font-top:hover{
			 background-color:#D5D5D5; /* 鼠标放上时的颜色 */
		}
		.child-div {  
  display: none; /* 默认情况下隐藏子div */  
background-color:#FFFFFF;
}  
  
.parent-div:hover .child-div {  
  display: block; /* 当鼠标悬停在父div上时显示子div */  
  border-radius: 8px;
}