﻿/* 头部CSS */
/* 头部容器 */
.header-container {
	height: 80px;
	line-height: 80px;
	/* background-color: red; */
	display: flex;
	font-size: 18px;
	align-items: center;
	white-space: nowrap;
	text-align: center;
	/* border-bottom: 1px red solid; */
}

/* 网站LOGO */
.logo-header {
	width: 350px;
	height: 52px;
	/* margin-left: 20px; */
	margin-left: 0.2rem;
}

/* 导航栏 */
.nav-container {
	display: flex;
	align-items: center;
	/* margin-left: 30px; */
	margin-left: 2%;
}

/* 导航栏项 */
.nav-item {
	/* padding-left: 21.5px;
	padding-right: 21.5px; */
	padding-left: 0.875rem;
	padding-right: 0.875rem;
	margin-left:15px;
	cursor: pointer;
	transition: all 0.2s ease 0s;
}

/* 选中效果 */
.nav-item:hover {
	background-color: #1776d0;
	color: #fff;
}

.nav-checked {
	background-color: #1776d0;
	color: #fff;
}

/* 电话信息 */
.tel-info {
	color: #ce2222;
	font-size: 20px;
}

/* 电话图标 */
.tel-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url(../images/telephone.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	vertical-align: sub;
}

/* 电话号码 */
.relation-info {
	/* margin-left: 35px; */
	margin-left: 5rem;
}
