/*头部*/
.header {
	height: 80px;
	background:  #fff;
	min-width: 1200px;
	position: fixed;
	width: 100%;
	top: 0;
	transition: all .3s;
    z-index: 10;
}
.header.scroll_class {
	background: rgba(0,0,0,.8);
}
.header_box {
	width: 1200px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto;
	display: flex;
}
.header_left {
	width: 120px;
	height: 58px;
	margin: 11px 0;
}
.header_icon {
	display: inline-block;
	width: 100%;
	height: 100%;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
.header_icon_white {
	display: none;
	background-image: url('../img/logo.png');
}
.header_icon_blank {
	background-image: url('../img/logoblank.png');
}
.header_right {
	flex: 1;
}
.header_list {
	display: flex;
	justify-content: flex-end;
}
.header_list_item {
	margin: 0 24px;
	color: #333;
}
.header.scroll_class .header_list_item {
	color: #fff;
}
.header .header_list_item.active {
	color: #3366ff;
	font-weight: 400;
}
.header_list_item:hover {
	color: #3366ff;
}

/*内容部分*/
.main {
	min-width: 1200px;
	padding-top: 80px;
}
.noData {
	font-size: 14px;
    color: #666;
    min-height: 120px;
    text-align: center;
    width: 100%;
    line-height: 120px;
}

/*底部*/
.footer {
	background: #263035;
	min-width: 1200px;
	padding: 24px 12px 12px;
}
.footer_list {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #3f4649;
}
.footer_list_item {
	margin: 0 66px 12px 0;
}
.footer_list_item_title {
	font-size: 14px;
	color: #c2c4c5;
	margin-bottom: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #3f4649;
}
.footer_list_item_desc {
	font-size: 12px;
	color: #c2c4c5;
	margin: 12px 0;
}
.footer_list_item_desc a:hover {
	opacity: .8;
}
.footer_copy_right {
	font-size: 12px;
	color: #c2c4c5;
    text-align: center;
    padding: 24px 0 5px 0;
}
.footer_copy_right1 {
	width: 100%;
	display: inline-block;
	font-size: 12px;
	color: #c2c4c5;
    text-align: center;
    padding: 0px 0 24px 0;
}

.scroll_class_fixed {
	display: none;
    position: fixed;
    z-index: 100;
    bottom: 46px;
    right: 46px;
    color: #fff;
    background: rgb(66, 143, 254);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
}
.scroll_class_fixed:hover {
	opacity: .8
}