.layout-box {
	width: 100%;
	background-color: #edf2f7;
}
.bg-white{
	background-color: #fff;
}
.bg-gray{
	background-color: #222;
}
.layout-item-box{
	width: 100%;
}
.layout-item {
	width:1200px;
	margin: auto;
}
/* 头部布局 */
.layout-head {
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.head-left {
	display: flex;
	align-items: center;
}

.head-left div {
	margin-right: 35px;

}

.head-left-active {
	color: var(--configColor);
	/* font-weight: 600; */
	font-size: 18px;
	position: relative;
}

.head-left-active::after {
	position: absolute;
	left: 25%;
	content: '';
	width: 50%;
	height: 5px;
	display: block;
	margin: 0 auto;
	border-bottom: 3px solid var(--configColor);
}

.layout-head img {
	height: 35px;
}

.head-right {
	min-width: 140px;
	display: flex;
	justify-content: flex-end;
}
.head-right-btn-box{	
	display: flex;
	flex-direction: row;
}
.head-right-btn {
	margin-left: 20px;
	width: 66px;
	height: 31px;
	border-radius: 15px;
	border: 1px solid var(--configColor);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: var(--configColor);
	cursor: pointer;
	transition: all 0.5s;
}
.head-right-btn:hover {
	color: #fff;
	background-color: var(--configColor);
}

.head-right-info-box{
	/* background-color: red; */
}
.head-right-info{
	display: flex;
	align-items: center;
	font-weight: 700;
}
.head-right-info-list{
	display: flex;
	flex-direction:column;
	align-items: center;
}
.head-right-info-list-item{
	width: 100%;
	padding: 8px 0;
	text-align: center;
}

/* 尾部 */
.layout-footer{
	padding: 50px 0;
	display: flex;
	flex-direction:column;
	color: #a6abbe;
}
.layout-footer-top{
	width: 100%;
	/* margin-top: 50px; */
	margin-bottom: 20px;
	min-height: 180px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.layout-footer-top-list-box{
	display: flex;
	flex-direction: row;
}
.layout-footer-top-list-item{
	margin-right: 180px;
	line-height:40px;
}
.layout-footer-top-list-item-title{
	color: #fff;
	font-weight: 600;
}
.layout-footer-top-img-box{
	display: flex;
	flex-direction: row;
	align-items: flex-end;
}
.layout-footer-top-img-box-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 50px;
	color: rgb(7, 179, 255);
	font-size: 12px;
}
.layout-footer-top-img-box img {
	width: 100px;
	height: 100px;
	border-radius:0;
	margin-bottom: 10px;
}

.layout-footer-bottom{
	display: flex;
	flex-direction: column;
	line-height: 35px;
	font-size: 14px;
}
