/* 头部 */
.fz_header_container{
	
}
.fz_header_container ._header_container{
	padding: 0 0 0 30px;
	height: 90px;
	display: flex;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 444;
}
.fz_header_container ._logo_container{
	display: flex;
	align-items: center;
	height: 90px;
	cursor: pointer;
}
.fz_header_container ._logo_container ._logo{
	width: 130px;
	height: 70px;
	display: block;
}
.fz_header_container ._logo_container ._address{
	border-radius: 23px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 7px;
	height: 23px;
	font-size: 12px;
	margin-top: 37px;
}
.fz_header_container ._right_container{
	flex: 1;
	height: 90px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: #fff;
	font-size: 16px;
}
.fz_header_container ._right_container ._login_box{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 190px;
	height: 90px;
	transition: 0.3s;
	margin-left: 20px;
}
.fz_header_container ._right_container ._login_box ._text{
	margin-left: 8px;
	color: #fff;
}
.fz_header_container ._right_container ._login_box:hover{
	background-color: #004386;
}

/* 导航条 */
.fz_menu_list{
	display: flex;
	height: 90px;
}
.fz_menu_list ._menu{
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 3px solid transparent;
	cursor: pointer;
	transition: 0.2s;
	height: 100%;
	margin-right: 10px;
	position: relative;
	box-sizing: border-box;
}
.fz_menu_list ._menu ._first{
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 0 20px;
}
.fz_menu_list ._menu ._first._has_child:after{
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 5px;
	top: 50%;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}
.fz_menu_list ._menu ._sub_menu{
	position: absolute;
	left: -4px;
	width: 190px;
	top: 87px;
	background-color: #fff;
	z-index: 2;
	color: #000;
	display: none;
	box-shadow: 0 6px 10px 6px rgba(100,100,100,0.1);
}
.fz_menu_list ._menu:hover ._sub_menu{
	display: block;
}
.fz_menu_list ._menu ._box{
	height: 54px;
	line-height: 54px;
	text-indent: 25px;
	border-bottom: 1px solid #e8e8e8;
	position: relative;
	transition: 0.3s;
}

.fz_menu_list ._menu ._box:last-child{
	border-bottom: none;
}
.fz_menu_list ._menu ._box._has_child:after{
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 20px;
	top: 24px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 4px solid #000000;
}
.fz_menu_list ._menu ._child{
	display: block;
}
.fz_menu_list ._menu ._child:hover{
	background-color: #ecf6ff;
	color: #004386;
}
.fz_menu_list ._menu ._box:hover ._three_menu{
	display: block;
}
.fz_menu_list ._menu ._three_menu{
	position: absolute;
	right: -190px;
	width: 190px;	top: 0;	background-color: #fff;	z-index: 2;	color: #000;
	border-left: 1px solid #e8e8e8;	display: none;
}

/* 首页的顶部 */
.fz_header_container._index_header ._header_height{
	height: 0;
}
.fz_header_container._index_header ._w{
	display: block;
}
.fz_header_container._index_header ._b{
	display: none;
}
.fz_header_container._index_header ._logo_container ._address{
	border: 1px solid #fff;
	color: #fff;
}
.fz_header_container._index_header .fz_menu_list ._menu:hover{
	border-top-color: #fff 
}
.fz_header_container._index_header .fz_menu_list ._menu ._first{
	color: #fff;
}
.fz_header_container._index_header .fz_menu_list ._menu ._first._has_child:after{
	border-top: 4px solid #ffffff88;
}

/* 内页的顶部 */
.fz_header_container._inner_header ._header_height{
	height: 90px;
	background-color: #fff;
}
.fz_header_container._inner_header ._header_container{
	background-color: #fff !important;
	box-shadow: 0 6px 10px 6px rgba(100,100,100,0.1);
}
.fz_header_container._inner_header ._w{
	display: none;
}
.fz_header_container._inner_header ._b{
	display: block;
}
.fz_header_container._inner_header ._logo_container ._address{
	border: 1px solid #0b0b0b;
	color: #0b0b0b;
}
.fz_header_container._inner_header .fz_menu_list ._menu:hover{
	border-top-color: #004386 
}
.fz_header_container._inner_header .fz_menu_list ._menu ._first{
	color: #232323;
}
.fz_header_container._inner_header .fz_menu_list ._menu:hover ._first{
	color: #004386;
}
.fz_header_container._inner_header ._right_container ._login_box{
	background-color: #004386;
}
.fz_header_container._inner_header .fz_menu_list ._menu ._first._has_child:after{
	border-top: 4px solid #6d6d6d;
}

/* 公共底部 */
.fz_common_footer{
	height: 90px;
	background: #3b3b3b;
}
.fz_common_footer ._main{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
}
.fz_common_footer ._address{
	color: #858585;
	font-size: 16px;
}
.fz_common_footer ._other{
	color: #858585;
	font-size: 16px;
	display: flex;
	align-items: center;
}
.fz_common_footer ._icon{
	margin-left: 10px;
	cursor: pointer;
	display: flex;
}
.fz_common_footer ._img_box{
	margin-left: 8px;
	position: relative;
}
.fz_common_footer ._code_content{
	position: absolute;
	left: -55px;
	top: -140px;
	z-index: 3;
	width: 130px;
	height: 130px;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 0 10px 4px rgba(100,100,100,0.1);
}
.fz_common_footer ._code_content:after{
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	bottom: -7px;
	left: 50%;
	margin-left: -4px;
	border-top: 8px solid #fff;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
}
.fz_common_footer ._img_box:hover ._code_content{
	display: flex;
}


/* 首页banner */
.fz_index_banner_container{
	height: 750px;
	width: 100%;
	overflow: hidden;
}
.fz_pagination .swiper-pagination-bullet{
	background: #fff;
}


/* 首页内容区 */
.fz_index_main{
	background: #fff;
	padding: 45px 0 50px 0;
}
.fz_index_main ._outer_content{
	width: 1200px;
	margin: 0 auto;
	display: flex;
}

.fz_index_title{
	display: flex;
	align-items: center;
}
.fz_index_title ._icon{
	width: 25px;
	height: 25px;
	background-color: #004386;
	border-radius: 4px;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	line-height: 1;
	margin-right: 6px;
}
.fz_index_title ._icon:after{
	content: "";
	width: 0;
	height: 0;
	left: 8px;
	bottom: -5px;
	border-left: 0 solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #004386;
	position: absolute;
}
.fz_index_title ._cn{
	font-weight: bold;
	font-size: 22px;
	color: #303745;
	margin-right: 4px;
	line-height: 1;
}
.fz_index_title ._en{
	color: #676767;
	font-size: 14px;
	font-family: arial;
	align-self: flex-end;
	margin-bottom: 2px;
}

/* 企业简介 */
.fz_index_profile{
	width: 380px;
	margin-right: 30px;
}
.fz_index_profile ._inner_content{
	padding-top: 25px;
}
.fz_index_profile ._inner_content ._cn{
	font-size: 21px;
	color: #303745;
	margin-bottom: 4px;
}
.fz_index_profile ._inner_content ._en{
	font-size: 23px;
	color: #d3d3d3;
	margin-bottom: 10px;
}
.fz_index_profile ._inner_content ._content{
	font-size: 16px;
	color: #828282;
	line-height: 32px;
	margin-bottom: 15px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.fz_index_profile ._inner_content ._more{
	width: 115px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #004386;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	transition: 0.3s;
}
.fz_index_profile ._inner_content ._more:after{
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid #fff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	margin-left: 10px;
}
.fz_index_profile ._inner_content ._more:hover{
	background-color: #001c38;
}

/* 首页集团动态 */
.fz_index_group{
	width: 380px;
	margin-right: 30px;
}
.fz_index_group ._inner_content{
	padding-top: 9px;
}
.fz_index_dynamic_item{
	padding: 15px 0;
	border-bottom: 1px dashed #ccc;
	cursor: pointer;
	display: block;
}
.fz_index_dynamic_item ._title{
	font-size: 16px;
	margin-bottom: 6px;
	transition: 0.3s;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.fz_index_dynamic_item ._des{
	font-size: 16px;
	color: #828282;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 29px;
	margin-bottom: 6px;
	transition: 0.3s;
}
.fz_index_dynamic_item ._time{
	color: #bdbdbd;
	font-size: 14px;
}
.fz_index_dynamic_item:hover ._title, .fz_index_dynamic_item:hover ._des{
	color: #004386;
}

/* 首页优惠活动 */
.fz_index_activity{
	width: 380px;
}
.fz_index_activity ._inner_content{
	padding-top: 20px;
}
.fz_index_activity ._activity_img{
	width: 380px;
	height: 280px;
	display: block;
}
.fz_index_activity ._activity_img img{
	width: 380px;
	height: 280px;
	display: block;
	object-fit: cover;
}

/* 首页快捷入口 */
.fz_index_quick{
	height: 210px;
	background: linear-gradient(to bottom, #d36f68, #e79d8a);
	position: relative;
	transition: 0.3s;
}
.fz_index_quick:hover{
	background: linear-gradient(to bottom, #ef584c, #ff8d71);
}
.fz_index_quick:before{
	content: "";
	width: 50vw;
	height: 210px;
	background: linear-gradient(to bottom, #d7d9dc, #dadcdf);
	position: absolute;
	left: 0;
	top: 0;
}
.fz_index_quick:hover:before{
	background: linear-gradient(to bottom, #999ca1, #a0a3a8);
}
.fz_index_quick ._main{
	width: 1480px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	display: flex;
}
.fz_index_quick ._cell_in{
	position: relative;
	cursor: pointer;
	display: block;
}
.fz_index_quick ._cell_in ._d_img{
	display: block;
}
.fz_index_quick ._cell_in ._h_img{
	display: none;
}
.fz_index_quick:hover ._d_img{
	display: none;
}
.fz_index_quick:hover ._h_img{
	display: block;
}
.fz_index_quick ._cell_in ._inner_text{
	position: absolute;
	left: 30px;
	top: 50px;
}
.fz_index_quick ._cell_in:first-child ._inner_text{
	left: 140px
}
.fz_index_quick ._inner_text ._en{
	text-transform: uppercase;
	color: #fff;
	font-size: 18px;
	font-family: arial;
	opacity: 0.5;
	margin-bottom: 5px;
}
.fz_index_quick ._inner_text ._cn{
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
}
.fz_index_quick:hover ._en{
	opacity: 1;
}
.fz_index_quick:hover ._cn{
	color: #493d3c;
}


/* 房源中心 */
.fz_fy_banner{
	height: 640px;
}
.fz_fy_banner ._b_img{
	display: block;
	height: 640px;
	width: 100%;
}
.fz_fy_b_write{
	position: absolute;
	left: 50%;
	margin-left: -400px;
	width: 800px;
	top: 390px;
}
.fz_fy_b_write ._tab{
	display: flex;
}
.fz_fy_b_write ._tab ._ce{
	height: 60px;
	margin-right: 30px;
	position: relative;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	line-height: 60px;
	cursor: pointer;
}
.fz_fy_b_write ._tab ._ce.on:after{
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -4px;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
}
.fz_fy_b_write ._in_box{
	height: 55px;
	background: #fff;
	display: flex;
}
.fz_fy_b_write ._in_box ._inp{
	flex: 1;
	border: none;
	height: 55px;
	text-indent: 25px;
	font-size: 16px;
}
.fz_fy_b_write ._in_box ._map_c{
	display: flex;
	align-items: center;
	height: 55px;
	width: 90px;
	justify-content: center;
	color: #6b6b6b;
	font-size: 16px;
	font-weight: bold;
}
.fz_fy_b_write ._in_box ._btn{
	width: 130px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #467df7;
	cursor: pointer;
	transition: 0.3s;
	font-size: 16px;
}
.fz_fy_b_write ._in_box ._btn:hover{
	background-color: #2d52a2;
}


/* 热销房源 */
.fz_fy_rx_container{
	padding: 40px 0 25px 0; 
}
.fz_fy_rx_container._bg1{
	background-color: #fff;
}
.fz_fy_rx_container._bg2{
	background-color: #f2f4f8;
}
.fz_fy_title{
	color: #333;
	width: 1200px;
	margin: 0 auto 30px auto;
}
.fz_fy_title ._b_t{
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 12px;
}
.fz_fy_title ._other{
	display: flex;
	justify-content: space-between;
}
.fz_fy_title ._more:hover{
	color: #004386;
	text-decoration: underline;
}
.fz_fy_rx_container ._main{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.fz_fy_rx_item{
	width: 279px;
	height: 370px;
	border: 1px solid #e8e8e8;
	margin-right: 25px;
	margin-bottom: 25px;
}
.fz_fy_rx_item:nth-child(4n){
	margin-right: 0;
}
.fz_fy_rx_item:hover{
	box-shadow: 0 0 10px 10px rgba(100,100,100,0.06);
}
.fz_fy_rx_item ._img{
	width: 100%;
	height: 215px;
	overflow: hidden;
}
.fz_fy_rx_item ._img img{
	width: 100%;
	height: 215px;
	display: block;
	object-fit: cover;
	transition: 0.3s;
}
.fz_fy_rx_item:hover img{
	transform: scale(1.1);
}
.fz_fy_rx_item ._params{
	padding: 20px 20px 0 20px;
}
.fz_fy_rx_item ._params ._title{
	font-size: 22px;
	font-weight: bold;
	color: #333;
	margin-bottom: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.fz_fy_rx_item ._params ._label{
	display: flex;
	align-items: center;
	margin-bottom: 14px;
}
.fz_fy_rx_item ._params ._t{
	line-height: 1; 
	padding: 4px 8px; 
	margin-top: 10px; 
	background:#c0c0c0; 
	font-size: 12px; 
	color:#fff; 
	margin-right: 10px; 
	border-radius: 2px;
}
.fz_fy_rx_item ._params ._price{
	display: flex;
	align-items: flex-end;
}
.fz_fy_rx_item ._params ._n{
	font-family:'DINMA';
	font-weight: bold;
	font-size: 26px;
	color: #3072f6;
	line-height: 1;
	margin-right: 4px;
}
.fz_fy_rx_item ._params ._u{
	font-size: 14px;
	color: #333;
}

/* 二手好房 */
.fz_fy_es_item{
	width: 279px;
	height: 390px;
	border: 1px solid #e8e8e8;
	margin-right: 25px;
	background-color: #fff;
	margin-bottom: 25px;
}
.fz_fy_es_item:nth-child(4n){
	margin-right: 0;
}
.fz_fy_es_item:hover{
	box-shadow: 0 0 10px 10px rgba(100,100,100,0.06);
}
.fz_fy_es_item ._img{
	width: 100%;
	height: 215px;
	overflow: hidden;
}
.fz_fy_es_item ._img img{
	width: 100%;
	height: 215px;
	display: block;
	object-fit: cover;
	transition: 0.3s;
}
.fz_fy_es_item:hover img{
	transform: scale(1.1);
}
.fz_fy_es_item ._params{
	padding: 20px 20px 0 20px;
}
.fz_fy_es_item ._params ._title{
	font-size: 22px;
	font-weight: bold;
	color: #333;
	margin-bottom: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.fz_fy_es_item ._params ._address,.fz_fy_es_item ._params ._size{
	font-size: 14px;
	color: #2b1b1b;
	margin-bottom: 12px;
}
.fz_fy_es_item ._params ._price{
	display: flex;
	align-items: flex-end;
}
.fz_fy_es_item ._params ._n{
	font-family:'DINMA';
	font-weight: bold;
	font-size: 26px;
	color: #3072f6;
	line-height: 1;
	margin-right: 4px;
}
.fz_fy_es_item ._params ._u{
	font-size: 14px;
	color: #333;
}


/* 更多房源 */
.fz_fy_inner_banner, .fz_fy_inner_banner img{
	display: block;
	width: 100%;
	height: 280px;
	object-fit: cover;
}

/* 面包屑 */
.fz_crumbs_container{
	height: 90px;
	background-color: #fff;
	border-bottom: 1px solid #e8e8e8;
}
.fz_crumbs_container ._main{
	width: 1200px;
	margin: 0 auto;
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fz_crumbs_container ._nav{
	display: flex;
	align-items: center;
}
.fz_crumbs_container ._nav img{
	margin-right: 6px;
	width: 20px;
}
.fz_crumbs_container ._nav ._a{
	padding: 14px 14px 14px 4px;
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #232323;
}
.fz_crumbs_container ._nav ._a:hover{
	color: #004386;
	text-decoration: underline;
}
.fz_crumbs_container ._nav ._a:before{
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid #666;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	margin-right: 10px;
	margin-top: 4px;
}
.fz_crumbs_container ._tab{
	display: flex;
	align-items: center;
	height: 90px;
}
.fz_crumbs_container ._tab ._ce{
	line-height: 90px;
	border-bottom: 2px solid transparent;
	margin-left: 38px;
	font-size: 16px;
	color: #232323;
	cursor: pointer;
}
.fz_crumbs_container ._tab ._ce.on{
	color: #004386;
	border-bottom-color: #004386;
}


/* 主推楼盘 */
.fz_lp_container{
	background-color: #fff;
	padding: 50px 0;
}
.fz_lp_container ._main{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.fz_lp_container ._side_container{
	width: 255px;
	border: 1px solid #e8e8e8;
}
.fz_lp_container ._side_container ._b_t{
	height: 88px;
	background-color: #004386;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	text-indent: 30px;
	line-height: 88px;
}
.fz_lp_container ._side_container ._link{
	display: block;
	padding: 0 40px 0 30px;
	line-height: 58px;
	border-top: 1px solid #e8e8e8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 18px;
	position: relative;
}
.fz_lp_container ._side_container ._link:hover,
.fz_lp_container ._side_container ._link.on{
	color: #004386;
	background-color: #ecf3f9;
}
.fz_lp_container ._side_container ._link:after{
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 20px;
	top: 24px;
	border-left: 5px solid #333;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.fz_lp_container ._right_content{
	width: 910px;
}
.fz_fy_article_header{
	padding-bottom: 25px;
	border-bottom: 1px dashed #e8e8e8;
	margin-bottom: 20px;
}
.fz_fy_article_header ._title{
	font-size: 30px;
	padding: 0 50px;
	text-align: center;
	margin-bottom: 15px;
}
.fz_fy_article_header ._time{
	font-size: 16px;
	text-align: center;
	color: #939393;
}


/* 主推楼盘 */
.fz_ztlp_list_item{
	border-bottom: 1px dashed #e8e8e8;
	display: flex;
	align-items: center;
	padding: 30px 0;
	cursor: pointer;
	font-size: 16px;
}
.fz_ztlp_list_item ._title{
	flex: 1;
	margin-right: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: 0.3s;
	color: #333;
}
.fz_ztlp_list_item:hover ._title{
	color: #004386;
}
.fz_ztlp_list_item ._time{
	color: #a5a5a5;
}

/* 核心业务 */
.fz_hxyw_container{
	padding: 45px 0;
}
.fz_hxyw_container ._main{
	width: 1200px;
	margin: 0 auto;
}
.fz_hxyw_container ._c_title{
	font-size: 38px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #004386;
}
.fz_hxyw_container ._e_title{
	font-size: 34px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #e4e4e4;
	text-transform: uppercase;
}

/* 购房答疑 */
.fz_gf_container{
	padding: 50px 0 20px 0;
	background-color: #fff;
}
.fz_gf_container ._main{
	width: 1200px;
	margin: 0 auto;
}
.fz_gf_list_item{
	height: 280px;
	background-color: #f8f8f8;
	display: flex;
	margin-bottom: 30px;
	transition: 0.3s;
}
.fz_gf_list_item:hover{
	background-color: #eaf4ff;
}
.fz_gf_list_item ._img{
	width: 375px;
	height: 280px;
	overflow: hidden;
}
.fz_gf_list_item ._img img{
	width: 375px;
	height: 280px;
	display: block;
	transition: 0.3s;
	object-fit: cover;
}
.fz_gf_list_item:hover img{
	transform: scale(1.1);
}
.fz_gf_list_item ._params{
	padding: 50px 45px 0 50px;
	flex: 1;
}
.fz_gf_list_item ._params ._title{
	margin-bottom: 20px;
	font-size: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fz_gf_list_item ._params ._des{
	line-height: 26px;
	font-size: 14px;
	color: #717171;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 15px;
}
.fz_gf_list_item ._params ._more{
	color: #717171;
	font-size: 14px;
	display: flex;
	align-items: center;
	transition: 0.3s;
}
.fz_gf_list_item ._params ._more:after{
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid #717171;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	margin-left: 6px;
	transition: 0.3s;
}
.fz_gf_list_item:hover ._more{
	color: #004386;
}
.fz_gf_list_item:hover ._more:after{
	border-left-color: #004386;
}

/* 业务合作 */
.fz_hz_container{
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
}
.fz_hz_container ._cell{
	width: 510px;
	padding: 30px 35px 0 35px;
	height: 150px;
	border: 1px solid #e8e8e8;
	margin-right: 36px;
	margin-bottom: 20px;
	background: #fbfbfb;
}
.fz_hz_container ._cell._code{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	height: 180px;
	width: 580px;
}
.fz_hz_container ._cell:nth-child(2n){
	margin-right: 0;
}
.fz_hz_container ._com_name{
	font-size: 18px;
	font-weight: bold;
	color: #004386;
	margin-bottom: 20px;
}
.fz_hz_container ._com_address, .fz_hz_container ._com_tel{
	font-size: 16px;
	margin-bottom: 15px;
}
.fz_hz_container ._co_tem{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 0 30px;
	font-size: 18px;
}
.fz_hz_container ._co_tem img{
	width: 110px;
	height: 110px;
	margin-bottom: 4px;
}

/* 招聘 */
.fz_zp_container{
	background-color: #fff;
	padding: 50px 0;
}
.fz_zp_container ._main{
	width: 1200px;
	margin: 0 auto;
	display: flex;
}
.fz_zp_container ._cell{
	display: flex;
	height: 305px;
	width: 585px;
	background-color: #eaf4ff;
	cursor: pointer;
}
.fz_zp_container ._cell:first-child{
	margin-right: 30px;
}
.fz_zp_container ._cell ._img{
	width: 295px;
	height: 305px;
	overflow: hidden;
}
.fz_zp_container ._cell ._img img{
	width: 295px;
	height: 305px;
	display: block;
	object-fit: cover;
	transition: 0.3s;
}
.fz_zp_container ._cell:hover img{
	transform: scale(1.1);
}
.fz_zp_container ._cell ._params{
	padding: 45px 30px 0 30px;
	flex: 1;
}
.fz_zp_container ._cell ._title{
	font-size: 24px;
	color: #000;
	margin-bottom: 15px;
	transition: 0.3s;
}
.fz_zp_container ._cell ._title:after{
	content: "";
	width: 35px;
	height: 1px;
	background-color: #ccc;
	display: block;
	margin-top: 10px;
}
.fz_zp_container ._cell:hover ._title{
	color: #004386;
}
.fz_zp_container ._cell ._des{
	line-height: 26px;
	font-size: 14px;
	color: #717171;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

/* 社会招聘 */
.fz_sz_container{
	background-color: #fff;
	padding: 50px 0;
}
.fz_sz_container ._main{
	width: 1200px;
	margin: 0 auto;
}
.fz_sz_container ._bi_title{
	font-size: 30px;
	margin-bottom: 20px;
}
.fz_sz_list_item{
	margin-bottom: 10px;
	border: 1px solid #e8e8e8;
	background-color: #f7f7f7;
}
.fz_sz_list_item ._post{
	height: 55px;
	display: flex;
	align-items: center;
	font-size: 18px;
	cursor: pointer;
	padding: 0 30px;
}
.fz_sz_list_item.on ._post, .fz_sz_list_item ._post:hover{
	background-color: #004386;
	color: #fff;
}
.fz_sz_list_item ._post ._name{
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-right: 30px;
}
.fz_sz_list_item ._post ._icon{
	width: 20px;
	height: 20px;
	border: 1px solid #333;
	border-radius: 20px;
	margin-left: 4px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}
.fz_sz_list_item ._post ._icon:after{
	content: "+";
	line-height: 1;
	font-size: 20px;
	transform: translate(0px, -1px);
}
.fz_sz_list_item.on ._post ._icon:after, .fz_sz_list_item ._post:hover ._icon:after{
	content: "-";
	color: #000;
	font-size: 24px;
}
.fz_sz_list_item ._detailed{
	padding: 30px;
	display: none;
}
.fz_sz_list_item ._detailed ._zz{
	margin-bottom: 20px;
}
.fz_sz_list_item ._detailed ._t{
	font-size: 18px;
	margin-bottom: 10px;
}
.fz_sz_list_item ._detailed ._c{
	font-size: 16px;
	color: #5f5f5f;
	line-height: 30px;
}
.fz_sz_list_item ._detailed ._btn{
	width: 150px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #004386;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s;
}
.fz_sz_list_item ._detailed ._btn:hover{
	background-color: #00254a;
}

/* 岗位申请 */
.fz_gw_form{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 998;
}
.fz_gw_form ._mask{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,0.7);
}
.fz_gw_form ._main{
	width: 620px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	border-radius: 4px;
	padding: 40px;
}
.fz_gw_form ._gw_item{
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
}
.fz_gw_form ._gw_item ._pre{
	width: 100px;
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: bold;
}
.fz_gw_form ._gw_item ._beh{
	font-size: 16px;
	color: #666;
}
.fz_gw_form ._gw_item ._input{
	height: 40px;
	padding: 0 20px;
	border: 1px solid #e8e8e8;
	display: block;
}
.fz_gw_form ._gw_item ._textarea{
	height: 60px;
	padding: 6px 20px;
	border: 1px solid #e8e8e8;
	resize: none;
}
.fz_gw_form ._gw_item ._btn{
	height: 50px;
	background-color: #004386;
	color: #fff;
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	border-radius: 4px;
	transition: 0.3s;
}
.fz_gw_form ._gw_item ._btn:hover{
	background-color: #002953;
}

/* 积分商城 */
.fz_mall_container{
	background-color: #fff;
	padding: 50px 0;
}
.fz_mall_container ._main{
	width: 1200px;
	margin: 0 auto;
}
.fz_mall_type{
	height: 50px;
	background-color: #f5f5f6;
	display: flex;
}
.fz_mall_type ._cell{
	padding: 0 10px;
	border-bottom: 3px solid transparent;
	height: 50px; 
	line-height: 50px; 
	font-size: 16px; 
	cursor: pointer; 
	margin-right: 20px; 
	transition: 0.3s;
}
.fz_mall_type ._cell.on, .fz_mall_type ._cell:hover{
	border-bottom-color: #004386;
	color: #004386;
	font-weight: bold;
}
.fz_mall_classify{
	padding-top: 20px;
	margin-bottom: 30px;
}
.fz_mall_classify ._pre,.fz_mall_classify ._item{ 
	display: inline-block; 
	margin-bottom: 10px; 
	margin-right: 10px; 
}
.fz_mall_classify ._item{ 
	cursor:pointer; 
}
.fz_mall_classify ._item.on{ 
	color:#024580; 
}

.fz_mall_list_container{
	display: flex;
	flex-wrap: wrap;
	padding-top: 10px;
}
.fz_mall_list_container ._item{ 
	display: block; 
	width: 283px; 
	height: 400px; 
	margin-right: 20px; 
	margin-bottom: 20px;
	border: 1px solid #e8e8e8;
}
.fz_mall_list_container ._item:nth-of-type(4n){ 
	margin-right: 0; 
}
.fz_mall_list_container ._img{ 
	width: 100%; 
	height: 285;
	overflow: hidden;
}
.fz_mall_list_container ._img img{
	display: block;
	width: 100%;
	height: 285px;
	object-fit: cover;
	transition: 0.3s;
}
.fz_mall_list_container ._item:hover{
	box-shadow: 0 0 10px 6px rgba(100,100,100,0.1);
}
.fz_mall_list_container ._item:hover ._img img{
	transform: scale(1.1);
}
.fz_mall_list_container ._params{ 
	padding: 20px 20px 0 20px; 
}
.fz_mall_list_container ._title{ 
	font-size: 24px; 
	margin-bottom: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fz_mall_list_container ._p{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fz_mall_list_container ._price{ 
	color:#ec8b11; 
	font-size: 20px; 
	max-width: 60%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	margin-right: 20px;
}
.fz_mall_list_container ._icon{ 
	width: 20px;
	height: 15px;
}

/* 企业动态 */
.fz_dt_container{
	background-color: #fff;
	padding: 50px 0;
}
.fz_dt_container ._main{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.fz_dt_container ._cell{
	width: 374px;
	border: 1px solid #e8e8e8;
	cursor: pointer;
	margin-right: 35px;
	margin-bottom: 35px;
}
.fz_dt_container ._cell:nth-child(3n){
	margin-right: 0;
}
.fz_dt_container ._cell:hover{
	box-shadow: 0 0 10px 6px rgba(100,100,100,0.1);
}
.fz_dt_container ._cell ._img{
	width: 100%;
	height: 280px;
	overflow: hidden;
}
.fz_dt_container ._cell ._img img{
	width: 100%;
	height: 280px;
	display: block;
	object-fit: cover;
	transition: 0.3s;
}
.fz_dt_container ._cell:hover img{
	transform: scale(1.1);
}
.fz_dt_container ._cell ._params{
	border-bottom: 1px solid #e8e8e8;
	height: 105px;
	padding: 20px 20px 0 20px;
}
.fz_dt_container ._cell ._title{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 18px;
	margin-bottom: 10px;
	transition: 0.3s;
}
.fz_dt_container ._cell:hover ._title{
	color: #004386;
}
.fz_dt_container ._cell ._des{
	line-height: 24px;
	color: #6e6e6e;
	font-size: 14px;
	height: 48px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.fz_dt_container ._cell ._other{
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #868686;
	font-size: 14px;
	padding: 0 20px;
}

/* 企业视频 */
.fz_sp_container{
	background-color: #fff;
	padding: 50px 0;
}
.fz_sp_container ._main{
	width: 1200px;
	margin: 0 auto;
}
.fz_sp_container ._bi_title{
	font-size: 26px;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #004386;
}
.fz_sp_container ._bi_title:after{
	content:"";
	display: block;
	height: 3px;
	width: 195px;
	background-color: #004386;
	margin-top: 10px;
}
.fz_sp_container ._en_title{
	font-size: 24px;
	margin-bottom: 10px;
	text-align: center;
	text-transform: uppercase;
	color: #828282;
	letter-spacing: 6px;
	margin-bottom: 20px;
}
.fz_sp_container ._bi_video{
	width: 100%;
	display: block;
	height: 570px;
	background-color: #000;
	margin-bottom: 20px;
}
.fz_video_list{
	display: flex;
	flex-wrap: wrap;
}
.fz_video_list ._cell{
	width: 374px;
	height: 355px;
	border: 1px solid #e8e8e8;
	cursor: pointer;
	margin-right: 36px;
	margin-bottom: 35px;
}
.fz_video_list ._cell:nth-child(3n){
	margin-right: 0;
}
.fz_video_list ._cell ._post{
	width: 100%;
	height: 280px;
	overflow: hidden;
	position: relative;
	background-color: #000;
}
.fz_video_list ._cell ._post img{
	width: 100%;
	height: 280px;
	display: block;
	object-fit: contain;
}
.fz_video_list ._cell ._post video{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 280px;
	background-color: #000;
}
.fz_video_list ._cell ._title{
	line-height: 32px;
	font-size: 18px;
	padding: 20px 30px 0 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 新闻详情 */
.fz_xw_detail{
	background-color: #fff;
	padding: 40px 0 0 0;
}
.fz_xw_detail ._main{
	width: 1200px;
	margin: 0 auto;
}
.fz_xw_detail ._title_box{
	padding: 0 280px 40px 280px;
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 20px;
}
.fz_xw_detail ._title_box ._text{
	text-align: center;
	font-size: 28px;
	line-height: 46px;
	margin-bottom: 15px;
}
.fz_xw_detail ._title_box ._time{
	color: #939393;
	font-size: 16px;
	text-align: center;
}
.fz_xw_detail ._context{
	margin-top: 30px;
	padding: 30px 0;
	border-top: 1px solid #e8e8e8;
	display: flex;
	font-size: 18px;
}
.fz_xw_detail ._context ._left{
	flex: 1;
	margin-right: 50px;
}
.fz_xw_detail ._context ._up{
	line-height: 38px;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	max-width: 1000px;
}
.fz_xw_detail ._context ._up:hover, .fz_xw_detail ._context ._back:hover{
	color: #004386;
	text-decoration: underline;
}
.fz_xw_detail ._context ._back{
	cursor: pointer;
}

/* 企业高管 */
.fz_gg_container{
	background-color: #fff;
	padding: 10px 0 20px 0;
}
.fz_gg_container ._main{
	width: 1200px;
	margin: 0 auto;
	
}
.fz_gg_list_item{
	display: flex;
	padding: 35px 0;
	border-bottom: 1px dashed #e8e8e8;
}
.fz_gg_list_item:last-child{
	border-bottom: none;
}
.fz_gg_list_item ._header{
	width: 220px;
	height: 295px;
	object-fit: cover;
	margin-right: 35px;
}
.fz_gg_list_item ._params{
	flex: 1;
}
.fz_gg_list_item ._params ._name{
	font-size: 28px;
	color: #004386;
	margin-bottom: 10px;
}
.fz_gg_list_item ._params ._post{
	font-size: 18px;
	color: #616161;
	margin-bottom: 20px;
}
.fz_gg_list_item ._params ._des{
	line-height: 36px;
	color: #333;
	font-size: 16px;
}

/* 企业公告 */
.fz_gog_ontainer{
	padding: 0 0 40px 0;
	background-color: #fff;
}
.fz_gog_ontainer ._main{
	width: 1200px;
	margin: 0 auto;
}

/* 企业商学院 */
.fz_sxy_container{
	border-bottom: 1px dashed #e8e8e8;
	padding-top: 30px;
}
.fz_sxy_container:last-child{
	border-bottom: none;
}
.fz_sxy_container ._title{
	font-size: 38px;
	color: #004386;
	font-weight: bold;
}
.fz_sxy_container ._des{
	color: #333;
	line-height: 36px;
	font-size: 16px;
	margin-top: 15px;
	padding-bottom: 30px;
}