* {
	margin: 0px;
	padding: 0px;
}

img {
	vertical-align: middle;
	border: 0;
}

.header {
	width: 100%;
	height: 110px;
	position: absolute;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.4)
}

.all {
	width: 1200px;
	margin: 0 auto;
}

.logo {
	width: 30%;
	float: left;
}

.logo img {
	margin: 26px 0;
}

nav {
	width: 70%;
	height: 110px;
	float: right;
}

nav ul li {
	list-style: none;
	width: calc(100%/8);
	height: 110px;
	float: left;
	/*border-right: 1px solid #000;*/
	line-height: 110px;
	text-align: center;
}

nav ul li a {
	/*font-family: "微软雅黑";*/
	font-size: 18px;
	color: #333;
	text-decoration: none;
	    display: inline-block;
}

nav ul li:hover {
	/*background: rgba(10, 5, 5, 0.7);*/
}

nav ul .first:hover {
	border-bottom: 3px solid #d6000a;
}

nav .hid li {
	width: 100%;
	height: 50px;
	line-height: 50px;
	border: none;
	background: #fff;
}

nav .hid li a {
	font-size: 16px;
	color: #808080;
}

nav .hid li:hover {
	background: #d6000a;
}

nav .hid li:hover a {
	color: #fff;
}

nav .hid1 {
	width: 100%;
	height: 0px;
	overflow: hidden;
	transition: .5s;
}


/*把高度设置为0，hover后改变高度，并且设置出来后的速度 */

nav ul li:hover .hid1 {
	height: auto;
	overflow: hidden;
}

nav .hid2 {
	display: none;
}

nav ul li:hover .hid2 {
	display: block;
}

nav ul li:hover .hid2 li:first-child {
	-webkit-animation: aa 0.3s;
	-moz-animation: aa 0.3s;
}

nav ul li:hover .hid2 li:nth-child(2) {
	-webkit-animation: aa 0.4s;
	-moz-animation: aa 0.4s;
}

nav ul li:hover .hid2 li:nth-child(3) {
	-webkit-animation: aa 0.5s;
	-moz-animation: aa 0.5s;
}

nav ul li:hover .hid2 li:nth-child(4) {
	-webkit-animation: aa 0.6s;
	-moz-animation: aa 0.6s;
}


/*调用动画函数，并且1S执行 */

@-webkit-keyframes aa {
	/*写一个动画函数*/
	from {
		-webkit-transform: rotateY(0deg);
	}
	to {
		-webkit-transform: rotateY(90deg);
	}
}

@-moz-keyframes aa {
	/*写一个动画函数*/
	from {
		-moz-transform: rotateY(0deg);
	}
	to {
		-moz-transform: rotateY(90deg);
	}
}


/*banner*/

.pb-carouselWarp {
	position: relative;
	width: 100%;
	height: 920px;
	overflow: hidden;
	text-align: center;
	top: -3px;
}

.pb-carouselWarp .pb-carousel {
	position: relative;
	height: 100%;
	text-align: center;
}

.pb-carouselWarp .pb-carousel li {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0
}

.pb-carouselWarp .pb-carousel .pb-1 {
	background: url(../img/banner1.jpg) no-repeat;
}

.pb-carouselWarp .pb-carousel .pb-2 {
	background: url(../img/banner2.jpg) no-repeat;
}

.pb-carouselWarp .pb-carousel .pb-this {
	display: block;
	left: 0
}

.pb-carouselWarp .pb-carousel-ind {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%)
}

.pb-carouselWarp .pb-carousel-ind li {
	float: left;
	width: 30px;
	height: 5px;
	/*border-radius: 50%;*/
	background-color: #fff;
	margin: 0 5px;
	/*cursor: pointer*/
}

.pb-carouselWarp .pb-carousel-ind .pb-this {
	background-color: #000
}

.pb-carouselWarp .pb-arrow {
	position: absolute;
	top: 50%;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #000;
	cursor: pointer;
	border: none
}

.pb-carouselWarp .pb-arrow-prev {
	left: 20px;
	background: #000 url(../img/arrow-left.png) no-repeat center;
	border: none;
}

.pb-carouselWarp .pb-arrow-next {
	right: 20px;
	background: #000 url(../img/arrow-right.png) no-repeat center;
	outline: none;
}


/*关于恒美*/

.about_all {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #f0f0f0;
	margin-top: -5px;
}

.about_center,
.about_text {
	width: 1200px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}

.about_title {
	text-align: center;
	padding: 40px 0;
}

.about_title p:first-child {
	font-size: 32px;
	font-weight: bold;
}

.about_title p:first-child span:first-child {
	color: #052175;
}

.about_title p:first-child span:last-child {
	color: #d6000a;
}

.about_title p:last-child {
	color: #555;
}

.about_left {
	width: 50%;
	height: 430px;
	float: left;
	background: #fff;
	margin: 40px 0;
}

.left_l {
	width: 0.8%;
	height: 330px;
	background: #052175;
	margin: 50px 0;
	float: left;
}

.about_left ul {
	float: left;
	width: 80.5%;
	/*margin-left: 10%;*/
	margin: 29px 0 0 10%;
}

.about_left ul li {
	display: inline-block;
	list-style-type: none;
	margin-bottom: 20px;
}
.about_left ul li a{
	display: inline-block;
}
.about_left ul li:first-child .left_img {
	float: left;
	width: 100px;
	height: 100px;
	background: url(../img/hm_jjbt1.jpg) no-repeat;
}

.about_left ul li:first-child:hover .left_img {
	background: url(../img/hm_jjbt1a.jpg) no-repeat;
}

.about_left ul li:nth-child(2) .left_img {
	float: left;
	width: 100px;
	height: 100px;
	background: url(../img/hm_jjbt2.jpg) no-repeat;
}

.about_left ul li:nth-child(2):hover .left_img {
	background: url(../img/hm_jjbt2a.jpg) no-repeat;
}

.about_left ul li:last-child .left_img {
	float: left;
	width: 100px;
	height: 100px;
	background: url(../img/hm_jjbt3.jpg) no-repeat;
}

.about_left ul li:last-child:hover .left_img {
	background: url(../img/hm_jjbt3a.jpg) no-repeat;
}

.left_text {
	width: 76%;
	float: right;
	margin: 6px 0;
}

.left_text p:first-child {
	font-size: 18px;
	color: #052175;
	line-height: 30px;
}

.left_text p:last-child {
	color: #333;
	font-size: 14px;
	line-height: 23px;
}

.about_right {
	width: 50%;
	float: right;
}

.right_l {
	width: 75%;
	float: left;
	height: 510px;
	background: #D8D8D8;
}

.right_text {
	text-align: center;
}

.right_text p:first-child {
	font-size: 24px;
	color: #555;
}

.right_text p:last-child {
	font-size: 14px;
	color: #555;
}

.right_r {
	width: 25%;
	float: right;
	height: 430px;
	background: #052175 url(../img/hm_jjbg2.jpg) no-repeat right;
	margin: 40px 0;
}

.right_a {
	width: 55px;
	height: 55px;
	background: url(../img/hm_jjbtn.jpg) no-repeat;
	margin: 30px;
}

.right_a:hover {
	background: url(../img/hm_jjbtna.jpg) no-repeat;
}

.right_a a{
	display: inline-block;
	    width: 100%;
    height: 100%;
}
/*新闻动态*/

.new {
	width: 100%;
	height: 100px;
	background: #f0f0f0;
	/*border: 1px solid #CC5522;*/
	border-top: 1px solid rgba(216, 216, 216, 1);
}

.new_center {
	width: 1200px;
	height: 100%;
	margin: 0 auto;
}

.new_left {
	width: 30%;
	float: left;
}

.new_left span {
	line-height: 90px;
}

.new_left span:first-child {
	font-size: 32px;
	color: #052175;
	font-weight: bold;
}

.new_left span:nth-child(2) {
	font-size: 32px;
	color: #d6000a;
	font-weight: bold;
}

.new_left span:nth-child(3) {
	/*font-size: 32px;*/
	color: #555;
	margin-left: 5px;
}

.new_right {
	width: 70%;
	float: right;
}

.noticTipTxt {
	color: #ff7300;
	height: 22px;
	line-height: 22px;
	overflow: hidden;
	/*margin: 0 0 0 40px;*/
	margin: 39px 0;
}

.noticTipTxt li {
	height: 22px;
	line-height: 22px;
}

.noticTipTxt a {
	color: #444;
	font-size: 16px;
	text-decoration: none;
	/*float: left;*/
}

.noticTipTxt a span:first-child {
	text-align: left;
	display: inline-block;
	width: 80%;
}

.noticTipTxt a:hover {
	color: #ff7300;
	text-decoration: underline;
}


/*产品中心*/

.products {
	width: 100%;
	height: 740px;
	overflow: hidden;
	background: url(../img/hm_cpbg.jpg) no-repeat;
}

.products_center {
	width: 1200px;
	height: auto;
	overflow: hidden;
	color: #fff;
	margin: 0 auto;
}

.products_title {
	text-align: center;
	padding: 40px 0;
}

.products_title p:first-child {
	font-size: 32px;
	font-weight: bold;
}

.products_cp {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.products_cps {
	width: 50%;
	height: 220px;
	float: left;
	/*background: #fff;*/
}

.products_cps:first-child,
.products_cps:nth-child(4) {
	background: #fff;
}

.products_cps:nth-child(2),
.products_cps:nth-child(3) {
	background: #F1F1F1;
}

.cps_center {
	width: 80%;
	height: 100%;
	margin: 0 auto;
}

.cps_center div {
	width: 50%;
	height: 100%;
	float: left;
}

.cps_left p:first-child {
	font-size: 20px;
	color: #333;
	font-weight: bold;
	line-height: 50px;
	margin-top: 20px;
}

.cps_left p:nth-child(2) {
	font-size: 14px;
	color: #333;
}

.cps_left a {
	display: inline-block;
	text-align: center;
	color: #707070;
	padding: 8px 50px;
	border: 1px solid rgba(120, 120, 120, 1);
	border-radius: 50px;
	margin-top: 20px;
}

.cps_right {
	text-align: right;
}

.cps_left a:hover {
	background: rgba(214, 0, 10, 1);
	border: 1px solid rgba(214, 0, 10, 1);
	color: #fff;
}

.products_tubiao {
	width: 70%;
	margin: 50px auto;
	height: auto;
	overflow: hidden;
}

.products_tubiao ul li {
	display: inline-block;
	width: calc(100%/3);
	float: left;
	text-align: center;
}

.products_tubiao ul li a {
	display: inline-block;
}

.tubiao_left {
	float: left;
}

.tubiao_text {
	float: left;
	/*vertical-align: middle;*/
	margin-left: 10px;
}

.tubiao_text p:first-child {
	font-size: 14px;
	color: #fff;
}

.tubiao_text p:last-child {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
}


/*合作案例*/

.case {
	width: 100%;
	height: auto;
	overflow: hidden;
	/*background: #f0f0f0;*/
}

.case_center,
.case_text {
	width: 1200px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}

.case_title {
	text-align: center;
	padding: 40px 0;
}

.case_title p:first-child {
	font-size: 32px;
	font-weight: bold;
}

.case_title p:first-child span:first-child {
	color: #052175;
}

.case_title p:first-child span:last-child {
	color: #d6000a;
}

.case_title p:last-child {
	color: #555;
}

.Box {
	position: relative;
	margin-bottom: 50px;
}

.Box .content {
	width: 1200px;
	margin: 0 auto;
}

.Box h2 {
	text-align: center;
	margin-bottom: 35px;
	padding-top: 250px;
}

.Box .Box_con {
	position: relative;
}

.Box .Box_con .btnl {
	position: absolute;
}

.Box .Box_con .btn {
	display: block;
	width: 41px;
	height: 41px;
	position: absolute;
	top: 125px;
	cursor: pointer;
}

.Box .Box_con .btnl {
	background: url(../img/jtl02.png) no-repeat center;
	left: -72px;
}

.Box .Box_con .btnr {
	background: url(../img/jtr02.png) no-repeat center;
	right: -72px;
}

.Box .Box_con .btnl:hover {
	background: url(../img/jtl03.png) no-repeat center;
}

.Box .Box_con .btnr:hover {
	background: url(../img/jtr03.png) no-repeat center;
}

.Box .Box_con .conbox {
	position: relative;
	overflow: hidden;
}

.Box .Box_con .conbox ul {
	position: relative;
	list-style: none;
}

.Box .Box_con .conbox ul li {
	float: left;
	width: 380px;
	height: 300px;
	margin-left: 20px;
	overflow: hidden;
}

.Box .Box_con .conbox ul li:first-child {
	margin-left: 0;
}

.Box .Box_con .conbox ul li img {
	display: block;
	width: 380px;
	height: 300px;
	transition: all 0.5s;
}

.Box .Box_con .conbox ul li:hover img {
	transform: scale(1.1);
}

.Box .BoxSwitch {
	margin-top: 30px;
	text-align: center;
}

.Box .BoxSwitch span {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	width: 30px;
	height: 3px;
	background: #ccc;
	margin: 0 5px;
	cursor: pointer;
}

.Box .BoxSwitch span.cur {
	background: #052175;
}


/*footer*/

.footer {
	width: 100%;
	height: auto;
	overflow: hidden;
	background-color: rgba(34, 34, 34, 1);
}

.footer_center {
	width: 1200px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}

.footer_title {
	border-bottom: 1px solid #000000;
}

.footer_title p {
	margin: 20px 0;
}

.footer_title span {
	font-size: 16px;
	color: #FFFFFF;
}

.footer_title a {
	display: inline-block;
	margin-left: 20px;
	color: #999999;
	font-size: 14px;
}

.footer_title a:hover {
	color: red;
}

.footer_text {
	margin: 50px 0;
	height: auto;
	overflow: hidden;
}

.footer_left {
	width: 40%;
	float: left;
	border-right: 1px solid #000000;
}

.footer_img {
	float: left;
}

.footer_phone {
	float: left;
	margin-left: 20px;
	font-size: 16px;
	color: #FFFFFF;
}

.footer_phone p:last-child {
	font-size: 24px;
}

.footer_w {
	font-size: 14px;
	color: #999999;
	margin: 20px 0;
}

.footer_w p {
	line-height: 23px;
}

.footer_right {
	width: 55%;
	float: right;
}

.footer_nav {
	width: 50%;
	float: left;
	height: auto;
	overflow: hidden;
}

.footer_nav p {
	color: #FFFFFF;
	font-size: 16px;
	margin-bottom: 20px;
}

.footer_nav ul {
	float: left;
	width: calc(100%/4);
}

.footer_nav ul li {
	margin-bottom: 10px;
}

.footer_nav ul li a {
	color: #999999;
}

.footer_nav ul li a:hover {
	color: red;
}

.footer_ewm {
	width: 50%;
	float: left;
}

.footer_ewm ul {
	float: left;
	width: calc(100%/2);
	text-align: center;
	color: #999999;
}
.footer-bottom{
	text-align: center;
	padding: 10px 0;
	background-color:#1B1B1B;
	color: #999;
}
.footer-bottom a{
	color: #999;
	margin-left: 10px;
}


/*关于恒美*/

.banner {
	position: relative;
	z-index: -999;
}
.banner img{
    max-width: 100%;
}

.about_hm {
	width: 100%;
	height: auto;
	/*overflow: hidden;*/
	background-color: rgba(242, 242, 242, 1);
}

.hm_center {
	width: 1200px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
	background: #FFFFFF;
	position: relative;
	z-index: 9999;
	top: -60px;
}

.hm_wz {
	width: 95%;
	margin: 30px auto;
}

.hm_wz a {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
	font-size: 14px;
	color: #707070;
}

.tubiao {
	text-align: center;
}

.tubiao a {
	color: #333;
	background-color: #F1F1F1;
	padding: 20px 50px;
	display: inline-block;
	font-size: 16px;
	margin-left: 5px;
}

.tubiao a:hover {
	background: #052175;
	color: #FFFFFF;
}

.hm_text {
	width: 95%;
	margin: 0 auto;
	height: auto;
	overflow: hidden;
	padding-bottom: 60px;
}

.hm_text .hm_title {
	text-align: center;
	font-size: 30px;
	color: #1E1E1E;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.hm_text p {
	color: #333333;
	line-height: 30px;
	font-size: 16px;
}
.page{
	text-align: center;
}
.page a,.page b{
	display: inline-block;
	padding: 8px 30px;
	border: 1px solid  #f0f0f0;
    margin-left: 5px;
    color: #333;
    transition: all 0.5s;
}
.page b{
	background: #052175;
	color: #FFFFFF;
}
.page a:hover{
	background: #052175;
	color: #FFFFFF;
}
/*企业文化*/

.qywh {
	width: 100%;
}

.qywh li {
	display: inline-block;
	list-style-type: none;
	width: calc(100%/2);
	float: left;
	margin-bottom: 30px;
}

.qywh_img {
	width: 57%;
	float: left;
}

.qywh_img img {
	width: 100%;
}

.qywh_text {
	width: 40%;
	float: right;
}

.qywh_text p:first-child {
	font-size: 30px;
	color: #052175;
	margin-top: 40px;
	margin-bottom: 10px;
}

.qywh_text span {
	color: #333333;
	line-height: 30px;
	font-size: 16px;
}

.qywh_text span:last-child {
	border-bottom: 1px solid #EEEEEE;
	padding-bottom: 15px;
}


/*产品详情*/

.product_all {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.product_center {
	width: 100%;
	height: auto;
	margin: 30px auto;
	overflow: hidden;
}

.product_left {
	width: 50%;
	height: auto;
	float: left;
	border: 1px solid rgba(228, 228, 228, 1);
}

.ban {
	width: 572px;
	height: 440px;
	position: relative;
	/*overflow: hidden;*/
	/*margin: 40px auto 0 auto;*/
}

.ban2 {
	width: 572px;
	height: 430px;
	position: relative;
	overflow: hidden;
}

.ban2 ul {
	position: absolute;
	left: 0;
	top: 0;
}

.ban2 ul li {
	width: 572px;
	height: 430px;
}

.prev {
	float: left;
	cursor: pointer;
}

.num {
	height: 82px;
	overflow: hidden;
	width: 510px;
	position: relative;
	float: left;
}

.min_pic {
	padding-top: 10px;
	width: 572px;
}

.num ul {
	position: absolute;
	left: 0;
	top: 0;
}

.num ul li {
	width: 80px;
	height: 80px;
	margin-right: 5px;
	padding: 1px;
}

.num ul li.on {
	border: 1px solid rgba(154, 155, 155, 1);
	padding: 0;
}

.prev_btn1 {
	width: 16px;
	text-align: center;
	height: 18px;
	margin-top: 30px;
	margin-right: 15px;
	cursor: pointer;
	float: left;
}

.next_btn1 {
	width: 16px;
	text-align: center;
	height: 18px;
	margin-top: 30px;
	cursor: pointer;
	float: right;
}

.prev1 {
	position: absolute;
	top: 220px;
	left: 20px;
	width: 28px;
	height: 51px;
	z-index: 9;
	cursor: pointer;
}

.next1 {
	position: absolute;
	top: 220px;
	right: 20px;
	width: 28px;
	height: 51px;
	z-index: 9;
	cursor: pointer;
}

.mhc {
	background: #000;
	width: 100%;
	opacity: 0.5;
	-moz-opacity: 0.5;
	filter: alpha(Opacity=50);
	position: absolute;
	left: 0;
	top: 0;
	display: none;
}

.pop_up {
	width: 572px;
	height: 430px;
	padding: 10px;
	background: #fff;
	position: fixed;
	-position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -255px;
	margin-top: -255px;
	display: none;
	z-index: 99;
}

.pop_up_xx {
	width: 40px;
	height: 40px;
	position: absolute;
	top: -40px;
	right: 0;
	cursor: pointer;
}

.pop_up2 {
	width: 572px;
	height: 430px;
	position: relative;
	overflow: hidden;
}

.pop_up2 {
	width: 572px;
	height: 430px;
	position: relative;
	overflow: hidden;
	float: left;
}

.pop_up2 ul {
	position: absolute;
	left: 0;
	top: 0;
}

.pop_up2 ul li {
	width: 572px;
	height: 430px;
	float: left;
}

.product_right {
	width: 45%;
	float: right;
}

.product_right h1 {
	color: #333333;
	font-size: 24px;
}

.product_right span {
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid rgba(240, 240, 240, 1);
}

.product_right p {
	color: #707070;
	font-size: 16px;
}

.product_right a {
	display: inline-block;
	text-align: center;
	padding: 20px 60px;
	background: #D6000A;
	color: #FFFFFF;
	font-size: 18px;
	margin: 15px 0;
}

.product_right strong {
	display: inline-block;
	font-size: 30px;
	color: #D6000A;
	padding: 10px 0;
}

.product_right strong:last-child {
	float: right;
}

.product_text {
	width: 100%;
}

.product_text img {
	max-width: 100%;
}


/*新闻详情*/

.news {
	width: 100%;
	height: 160px;
	overflow: hidden;
	background: #F7F7F7;
	border: 1px solid transparent;
	margin-top: 20px;
}

.news:hover .news_left {
	background: #CCCCCC;
	transition: all 0.5s;
}

.news:hover {
	border: 1px solid #efefef;
	box-shadow: 0 6px 10px 5px rgba(0, 0, 0, .08);
}

.news:hover .news_text {
	width: 58%;
	margin-left: 2%;
}

.news:hover .news_ck {
	width: 18%;
	margin-left: 2%;
}

.news:hover .news_ck a {
	color: #FFFFFF;
	background: #CCCCCC;
}

.news_left {
	width: 20%;
	float: left;
}

.news_left .news_img {
	display: inline-block;
	width: 86%;
	height: 130px;
	margin: 6% 15px;
}

.news_img img {
	width: 100%;
	height: 100%;
}

.news_text {
	width: 60%;
	height: 100%;
	float: left;
	transition: all 0.5s;
}

.news_text .text_t {
	display: inline-block;
	height: 130px;
	width: 90%;
	margin: 15px 5%;
}

.news_text .text_t p:first-child {
	color: #717171;
	margin: 10px 0 15px 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.news_text .text_t p:last-child {
	font-size: 12px;
	color: #A2A2A2;
	line-height: 25px !important;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_ck {
	width: 20%;
	margin: 15px 0;
	float: left;
	transition: all 0.5s;
}

.news_ck p {
	color: #999999;
	font-size: 19px;
	margin-top: 10px;
}

.news_ck a {
	display: inline-block;
	color: #ccc;
	border: 1px solid #ccc;
	padding: 6px 10px;
	border-radius: 20px;
	margin-top: 20px;
}


/*新闻详情*/

.news_tb {
	border-bottom: 1px solid #F0F0F0;
	padding-bottom: 15px;
}

.news_tb span {
	padding: 0 15px 0 0;
	font-size: 14px;
	color: #C8C8C8;
}

.news_tb img {
	padding: 0 5px 0 0;
}

.news_xq {
	padding: 15px 0 30px 0;
	/*border-bottom: 1px solid #F0F0F0;*/
}

.news_xq p {
	color: #333333;
	font-size: 14px;
}

.news_xq img {
	max-width: 100%;
}

.news_fy p {
	font-size: 14px;
	color: #969696;
}

.news_fy p:first-child {
	border-bottom: 1px solid #F0F0F0;
}

.news_fy p:last-child {
	padding: 20px 0;
}

.news_fy p:last-child span {
	display: inline-block;
	width: 50%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.news_fy p:last-child a {
	color: #656565;
}

.news_fy p:last-child a:hover {
	color: #60a9d7;
}


/*产品责任*/

.product_zr {
	text-align: center;
}

.product_zr p {
	text-indent: 2rem;
	text-align: left;
}

.product_zr span {
	font-size: 20px;
	color: #052175;
	font-weight: bold;
}

.product_zr img {
	position: relative;
	left: -2rem!important;
}


/*社会责任*/

.sh_left {
	width: 48%;
	float: left;
}

.sh_left p {
	text-indent: 2rem;
}

.sh_left span {
	font-size: 20px;
	color: #052175;
	font-weight: bold;
}

.sh_right {
	width: 50%;
	float: right;
}

.sh_right img {
	width: 100%;
}


/*在线留言*/

form {
	width: 80%;
	margin: 0 auto;
}

form p {
	margin-bottom: 20px;
	overflow: hidden;
	height: auto;
}

form span {
	display: inline-block;
	width: 10%;
	color: #666666;
	float: left;
}

form textarea {
	width: 89%;
	height: 150px;
	float: left;
	box-sizing: border-box;
	padding-left: 5px;
}

form input {
	width: 300px;
	height: 40px;
	border: 1px solid rgba(228, 228, 228, 1);
	box-sizing: border-box;
	padding-left: 5px;
}

form .submit {
	width: 120px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #052175;
	color: #FFFFFF;
	font-size: 16px;
}


/*产品中心*/

.hm_product {
	width: 343px;
	height: 320px;
	display: inline-block;
	float: left;
	margin: 20px 18.5px;
	box-sizing: border-box;
	border: 1px solid #eee;
	text-align: center;
}

.hm_product p {
	line-height: 60px;
	color: #5D5D5D;
	font-size: 18px;
}

.demo {
	width: 100%;
	height: 260px;
	/*margin: 200px auto;*/
	overflow: hidden;
	position: relative;
}

.demo img {
	width: 100%;
	height: 100%;
	transition: all linear 0.3s;
}

.hm_product:hover img {
	transform: scale(1.05);
}

.hm_product .border {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: rgba(5, 33, 117, .2);
	z-index: 20;
	opacity: 0;
	transform: skewX(45deg);
	visibility: hidden;
	transition: 360ms;
}

.hm_product .border:before {
	content: "";
	width: 100%;
	height: 0%;
	border-left: 3px solid #052175;
	border-right: 3px solid #052175;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 0;
	transition: 320ms;
}

.hm_product .border:after {
	content: "";
	width: 0%;
	height: 100%;
	border-top: 3px solid #052175;
	border-bottom: 3px solid #052175;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 0;
	transition: 320ms;
}

.hm_product .border b {
	display: block;
	width: 46px;
	height: 46px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -23px;
	margin-top: -23px;
	z-index: 30;
}

.hm_product .border b:before {
	content: "";
	width: 100%;
	height: 3px;
	background: #052175;
	position: absolute;
	left: 0;
	top: 23px;
	transform: translateX(-200px);
}

.hm_product .border b:after {
	content: "";
	width: 3px;
	height: 100%;
	background: #052175;
	position: absolute;
	left: 23px;
	top: 0;
	transform: translateY(-200px);
}

.hm_product:hover .border {
	opacity: 1;
	transform: skewX(0);
	visibility: visible;
}

.hm_product:hover .border:before {
	height: 100%;
	transition: 330ms 200ms;
}

.hm_product:hover .border:after {
	width: 100%;
	transition: 330ms 200ms;
}

.hm_product:hover .border b:before {
	transition: 355ms 180ms;
	transform: translateX(0);
}

.hm_product:hover .border b:after {
	transition: 355ms 240ms;
	transform: translateY(0);
}

.hm_product:hover p {
	color: #052175;
}


/*资质荣誉*/

.box {
	width: 360px;
	height: 340px;
	text-align: center;
	border: 1px solid #f0f0f0;
	overflow: hidden;
	float: left;
	margin: 20px 9px;
}

.box a {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 320px;
	height: 340px;
	flex-direction: column;
	/*margin: 10px 10px;*/
	margin-left: 20px;
	margin-bottom: 10px;
	color: #999;
	text-decoration: none;
}

.box a p {
	width: 100%;
	display: block;
	text-align: center;
	height: 50px;
	line-height: 50px;
}

.box img {
	width: 100%;
}

.box .line {
	background-color: #052175;
	position: relative;
	bottom: -10px;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}
.hbsx img{
	width: 50%;
}