
.top {
	height: 40px;
	line-height: 40px;
	background: #f4f3f3;
	font-size: 14px;
}
.top a {
	padding: 5px;
}

/* Logo 和 公司信息 (旧版，已在HTML中注释) */
#logo {
	height: 140px;
	width: 100%;
}
#logo .logo {
}
#logo .logo img {
	margin-top: 20px;
}
#logo .company {
	padding-left: 15px;
	border-left: 1px solid #c4c4c4;
	height: 80px;
	margin-top: 30px;
	padding-top: 5px;
}
#logo .company h2 {
	font-size: 32px;
	color: #333333;
	font-weight: bold;
}
#logo .company h3 {
	font-size: 18px;
	margin-top: 5px;
}
#logo .company h3 span {
	color: #333333;
}
#logo .tel {
	background: url(../images/tel.jpg) no-repeat left 50px;
	height: 100px;
	width: 240px;
	padding-top: 40px;
}
#logo .tel span {
	font-size: 16px;
	padding-left: 50px;
}
#logo .tel span i {
	font-family: impact;
	font-size: 30px;
	font-style: normal;
	display: block;
	padding-left: 50px;
}
#logo .tel p {
	font-size: 16px;
	padding-left: 5px;
	margin-top: -15px;
}

/* 右侧联系电话  */
.contact-box {
  float: right;
  padding: 15px 20px;
}
.consult-tel {
  color: #666;
  font-size: 16px;
}
.tel-num {
  color: #C00; /* 红色突出显示 */
  font-weight: bold;
  font-style: normal;
  margin-left: 5px;
}

/* 咨询电话版块 - 单行显示控制 */
.header-contact-wrapper {
    /* 保持与导航栏在同一行（根据原有布局调整，若已有浮动可保留） */
    display: inline-block;
    vertical-align: middle;
}

.header-contact-wrapper .contact-box {
    /* 清除可能导致换行的内边距 */
    padding: 15px 10px; /* 右侧内边距适当减少，避免挤压 */
    margin: 0; /* 清除默认外边距 */
}

.header-contact-wrapper .consult-tel {
    /* 核心：强制内容单行显示 */
    white-space: nowrap; 
    /* 可选：调整文字大小和间距（根据实际样式适配） */
    font-size: 16px;
    line-height: 1;
}

/* 电话数字样式（若需要保持原有高亮可保留） */
.header-contact-wrapper .tel-num {
    color: #c00; /* 假设原有红色高亮，可根据实际调整 */
    font-weight: bold;
    margin-left: 5px;
}

/* 避免与导航菜单冲突 */
.nav .container {
    /* 确保容器有足够宽度容纳所有元素 */
    box-sizing: border-box;
}

/* 防止窄屏时挤压（可选的响应式处理） */
@media (max-width: 992px) {
    .header-contact-wrapper .consult-tel {
        font-size: 12px; /* 小屏幕适当缩小字体 */
    }
}

/* 主导航栏 */
.nav {
	background: #ffffff;
	height: 72px;
    width:100%;
	z-index: 999;
    position: fixed;
    top: 0px;
}
.nav ul li {
	float: left;
	display: inline;
	text-align: center;
	font-size: 16px;
	position: relative;
}
.nav ul li:last-child {
	margin-right: 0;
}
.nav ul li a {
	color: #28334b;
	display: block;
	height: 72px;
	line-height: 59px;
	padding: 6px 38px;
	position: relative;
	z-index: 2;
}
.nav ul li a:hover, .nav ul li.on {
	background: #ffffff;
}
.nav ul li dl {
    margin: 0px;
    padding: 0;
    position: absolute;
    z-index: 999;
    display: none;
    width: 200px; /* 增加宽度 */
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* 悬停时显示下拉菜单 */
.nav ul li:hover dl {
    display: block;
}
.nav ul li dl dt a {
    display: block;
    width: 100%; /* 填满父容器 */
    padding: 10px 20px; /* 适当内边距 */
    text-align: left; /* 根据需要调整 */
    background: #ffffff;
    color: #333333;
    font-size: 16px; /* 调整字体大小 */
    white-space: normal; /* 允许换行 */
    overflow: visible; /* 确保文本不被隐藏 */
    text-overflow: unset; /* 移除省略号 */
    line-height: 2; /* 合理行高 */
}
.nav ul li dl dt a:hover {
    background: #f4f3f3;
    color: red; /* 更改字体颜色为红色 */
}

/* 容器和浮动等通用样式 */
.container {
	width: 1300px;
	margin: 0 auto;
}
.fl {
	float: left;
	display: inline;
}
.fr {
	float: right;
	display: inline;
}