body {
	background : #fff;
	margin: 0;
	padding: 0;
	min-height: 100%; /* 修改：从height: 100vh; 改为 min-height: 100vh */
	display: flex;
	flex-direction: column;
	font-size: 14px; /* header 字体大小 */
	font-family: "Microsoft YaHei", sans-serif; /* 将字体更改为微软雅黑 */
}
      
.body_content{
	border: 1px solid #FFF;
	background-color: #F9FCFF; /* 设置背景色 */
	background-image: url('../../images/blue/body_bg.jpeg'); /* 背景图 */
	background-repeat: no-repeat;
	background-position: top center; /* 将背景图靠上 */
	width:100%;
	max-width: 1920px;
    height: auto; /* 修改：允许内容扩展 */
	position: relative;
	top: 0; /* 顶部位置 */
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	justify-content: flex-start; /* 在顶部 */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
      
.top {
	padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    align-self: flex-start; /* 将 .top 内容放置在 header 的顶部 */
	background-color: rgba(255, 255, 255, 0.5); /* 设置透明白色背景 */
}

.left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 280px; /* 为了提供一些空间，让文字与图标有所距离 */
}
.left span {
    color: #666666;
}

.right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto; /* 将整个 .right 区域靠右 */
}

.right .ic_phone{
    background-image: url('../../images/blue/ic_phone.png'); /* 确保路径正确 */
    background-repeat: no-repeat; /* 不重复显示背景图片 */
    background-size: 12px 12px; /* 调整图标大小 */
    width:12px;
    height:12px;
}

.right .phone {
    color: #3263FE;
    margin-right: 280px; /* 为了提供一些空间，让文字与图标有所距离 */
	text-align: right; /* 将内容靠右对齐 */
}

.links {
    display: flex;
    align-items: center;
}
.links a {
    color: #125DB2;
    /*margin-right: 10px;*/
    text-decoration: none; /* 去除链接的下划线 */
}

.link-login,
.link-register {
    color: blue; /* 设置链接的颜色 */
    text-decoration: none; /* 去除下划线 */
}

.link-login:hover,
.link-register:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
}


.skin-switcher {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

#skinSwitcherButton {
    background-color: transparent; /* 透明背景 */
    color: #2A8EFF; /* 蓝色文字 */
    border: none; /* 去掉边框 */
    cursor: pointer; /* 鼠标悬停时变为小手 */
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中 */
    font-size: 14px;
    
   
}

#skinSwitcherButton .skin_changeimg {
    width: 16px;
    height: 16px;
    margin-right: 5px; /* 图标和文字之间的间距 */
    background-image: url('../../images/blue/ic_switchskin.png'); /* 设置背景图 */
    background-repeat: no-repeat;
    background-size: 14px 14px; /* 调整图标大小 */
}

.skin-options {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    gap: 10px; /* 图片之间的间距 */
}

.skin-option {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease; /* 添加动画效果 */
}

.skin-option:hover {
    transform: scale(1.1); /* 鼠标悬停时放大 */
}

.skin-switcher:hover .skin-options {
    display: flex; /* 鼠标悬停时显示皮肤选项 */
}
	
		
.main {
    flex: 1;
    
}

/* 
	 标题
*/
.app_title {
    color: #2A8EFF; 
	margin-top: 55px; 
	text-align: center; 
	font-size: 48px;
	font-family: 'Source Han Sans', sans-serif; /* 设置思源黑体字体 */
	letter-spacing: 5px; /* 设置文字之间的间距 */
}

/* 
	查询框
*/
      
.search_box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.search_box_div{
    border: 1px solid #A3CEF6;
    border-radius: 5px 0 0 5px;
    background-color : #ffffff;
    height: calc(100% - 2px); /* 调整输入框高度，减去边框宽度 */
	width: 600px; /* 调整输入框宽度 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_box_div a {
    width:72px;
    margin-left: 16px;
    color : blue;
	text-decoration: none; /* 去除链接的下划线 */
}


.search_box_input{
    border: none;
    height: 95%; /* 调整输入框高度，减去边框宽度 */
	width: 98%; /* 调整输入框宽度 */
}

.search_box_input:focus {
    /* 使用与默认状态相同的样式 */
	outline: none; /* 移除默认的聚焦时边框 */
}

.separator {
    width: 2px;
    height: 20px; /* 将高度设置为 38px */
	background-color: #C4C4C4; /* 灰色 */
	margin: 0 10px; /* 根据需要调整边距 */
	display: inline-block; /* 确保竖线表现为内联元素 */
	vertical-align: middle; /* 垂直居中竖线 */
}

.search_box button {
    background-color: #2A8EFF;
    color: white;
    border: none;
    height: 100%;
    width: 100px;
    border-radius: 0 5px 5px 0;
    padding: 0 10px;
    position: relative;
    display: flex; /* 设置按钮为 flex */
	align-items: center; /* 垂直居中按钮内容 */
	justify-content: center; /* 水平居中按钮内容 */
	cursor: pointer; /* 鼠标悬停变小手 */
	
	background-image: url('../../images/blue/ic_search.png'); /* 设置背景图 */
    background-repeat: no-repeat;
    background-position: right 15px center; /* 图标在右侧居中显示 */
    background-size: 14px 14px; /* 调整图标大小 */
}



/* 鼠标悬停效果 */
.search_box button:hover {
    background-color: #125DB2;
}
      
      
      
.new_row {
    display: flex; /* 设置为弹性盒子，使得内部元素能够灵活排列 */
	margin-top: 10px; /* 顶部外边距为 10px，与上方元素有一定间距 */
    font-color: #444444;
}

.new_row_img {
	background-image: url('../../images/blue/ic_fire.png');/* 确保路径正确 */
    background-repeat: no-repeat; /* 不重复显示背景图片 */
    background-size: 14px 14px; /* 调整图标大小 */
    width: 16px; /* 设置图片的宽度 */
    height: 16px; /* 设置图片的高度 */
    margin-right: 8px; /* 右外边距为 10px，与后方的菜单项有一定间距 */
    margin-left: 638px;
    border: none; /* 去除链接中图片的边框 */
    
}

.new_row a {
	color: #444444;
    text-decoration: none; /* 去除链接的下划线 */
	margin-right: 10px; 
	font-size: 14px; /* header 字体大小 */
}


/*导航栏  */
.navigation {
    display: flex;
    justify-content: center;
    margin-top: 98px;
    font-size:24px;
}

.navigation a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    padding: 5px 5px;
    position: relative; 
    
}

.navigation a::after {
    content: '';
    position: absolute;
    top: calc(100% - 6px); /* 调整到底部，同时避免与下方横线重叠 */
	left: 50%;
	width: 0;
	height: 0;
	border-left: 10px solid transparent; /* 调整大小 */
	border-right: 10px solid transparent; /* 调整大小 */
	border-bottom: 10px solid #ffffff; /* 改为底部边框，调整颜色 */
	transform: translateX(-50%);
	opacity: 0; /* 默认隐藏 */
	transition: opacity 0.3s; /* 添加过渡效果 */
}

.navigation a.active::after,
.navigation a:hover::after {
    opacity: 1; /* 鼠标悬停时显示 */
}

.navigation a.active {
    font-weight: bold;
}

.white_line {
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin-top: 5px; /* 使线条与三角形对齐 */
	z-index: 1; /* 确保白线位于三角形的下方 */
}

.submenu-container {
    width: 980px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin: 15px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 每行四个菜单项 */
   	gap: 30px; /* 菜单项之间的间距 */
	margin-top: 35px;
	margin-bottom: 35px;
      
	min-height: 60px;
}

.submenu-item {
	display: flex;
	align-items: center;
	text-align: left;
	cursor: pointer;
	height:38px;
	border-radius: 5px;
	/* 效果样式4 */
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	background: rgb(255, 255, 255);
	padding: 15px; /* 内边距，使内容与边框有间距 */
}

.submenu-item img {
    width: 30px;
    height: 30px;
}

.submenu-item span {
	margin-left: 12px;
    margin-top: 0px;
}

.submenu-item:hover {
    transform: translateY(-5px); /* 鼠标悬停时上移 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
}

.dynamic-height-container{
	 height: 399px;
}

.switch-user-link {
    color: #125DB2;
}
    
.footer {
    background-color: #F1F5FE;
    color: #333333;
    height: 50px;
    text-align: center;
    width: 100%;
}