﻿/********** container **********/
.container {
	width: 84%;
	margin: 0 auto;
	position: relative;
}

@media screen and (max-width:1440px) {
	.container {
		width: 86%;
	}
}

@media screen and (max-width:1280px) {
	.container {
		width: 88%;
	}
}

@media screen and (max-width:1024px) {
	.container {
		width: 90%;
	}
}

/*------------------------------  公用  ------------------------------*/
/********** logo加载 **********/
body #loader-wrapper {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
}

#loader-wrapper .load-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loader-wrapper .load-content img {
	max-width: 100%;
	margin-bottom: 20px;
}

#loader-wrapper .load-content span {
	display: block;
	text-align: center;
	width: 100%;
}


/********** 头部 **********/
.header {
	width: 100%;
	height: 100px;
	background-color: #FFF;
	border-bottom: 1px solid#E5E5E5;
 /*box-shadow:2px 2px 5px #CCC;*/
	position: fixed;
	z-index: 1000;
	top: 0;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#C8FFFFFF,endColorstr=#C8FFFFFF);
}

.yya {
	position: fixed;
	left: 0;
	top: 0;
	transition: all .2s linear .2s;
}

@media (max-width:10000px) and (min-width:1000px) {
	.gizle {
		top: -101px;
	}
}

.sabit {
	top: 0;
/*z-index:9999;*/
}

@media screen and (max-width:1024px) {
	.header {
		height: 60px;
		position: relative;
	}
}

/** logo **/
.logo {
	display: block;
	float: left;
	height: 100px;
}

.logo img {
	height: 44px;
	margin-top: 28px;
}

@media screen and (max-width:1280px) {
	.logo img {
		height: 40px;
		margin-top: 30px;
	}
}

@media screen and (max-width:1024px) {
	.logo {
		width: 60%;
		height: 60px;
		margin-left: 20%;
		text-align: center;
	}

	.logo img {
		height: 40px;
		margin: 10px auto 0;
	}
}
/** language **/
.language {
	float: right;
	width: 98px;
	height: 34px;
	margin-top: 32px;
	font-size: 0.875em;
	line-height: 34px;
	color: #282828;
	border: 1px solid #999;
	border-radius: 20px;
	text-align: center;
}

.language:hover {
	background-color: #DA251C;
	transition: all 0.5s;
	color: #FFF;
	border-color: #DA251C;
}

@media screen and (max-width:1024px) {
	.language {
		display: none;
	}
}

/** 搜索 **/
.search-btn {
	float: right;
	width: 36px;
	height: 36px;
	background-color: #DDD;
	border-radius: 50%;
	margin-top: 32px;
	margin-right: 10px;
	text-align: center;
}

.search-btn img {
	display: block;
	width: 20px;
	margin: 8px auto;
	z-index: 1000;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.search-btn img.searchimg2 {
	display: none;
}

.search-btn:hover {
	background-color: #DA251C;
	transition: all 0.5s;
}

.search-btn:hover img.searchimg1 {
	display: none;
}

.search-btn:hover img.searchimg2 {
	display: block;
}
/*.search-btn.hid{ -webkit-transform: translateY(10px); -ms-transform: translateY(10px); transform: translateY(10px); opacity: 0; }*/
/*.search-btn:hover { -webkit-transform: translateY(2px); -ms-transform: translateY(2px); transform: translateY(2px); }*/
/*.search-btn svg { position: relative; display: block; width: 100%; height: 20px; fill: #f3f3f3; }*/
@media screen and (max-width:1024px) {
	.search-btn {
		margin-top: 12px;
		background: none;
	}

	.search-btn img {
		margin-top: 10px;
	}
}

.fa-search {
	font-size: 1.25em;
	color: #282828;
	line-height: 30px;
}

@media screen and (max-width:1024px) {
	.fa-search {
		font-size: 1.6em;
	}
}

@media screen and (max-width:768px) {
	.fa-search {
		font-size: 1.2em;
		line-height: 60px;
		font-weight: 400;
	}
}

input[type="text"] {
	width: 100%;
	padding: 7px 0;
	border: 0;
	border-radius: 0;
	border-bottom: 2px solid #6e7084;
	background: transparent;
	color: #a3a3a3;
	font-size: 18px;
	margin-bottom: 30px;
	height: 35px;
}

input[type="text"]:focus {
	outline: none;
	border-color: #000;
}

input[type="text"].filled {
	color: #000;
}

input[type="text"].attention {
	border-color: #15aba6;
}

.search-form, .search-form form, .search-form input, .search-box, .submit-search, .search-form .arrow, .search-res-item, .res-more, .sisea-page {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.search-form {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0;
	background: rgba(21,26,37,.95);
	overflow: hidden;
	z-index: 10000;
}

.search-form.active {
	width: auto;
	display: block;
	overflow: hidden;
	-webkit-animation: scale 1s ease 1;
	animation: scale 1s ease 1;
}

@keyframes scale {
	0% {
		shape-inside: circle(100%, 10%, 210px);
		-webkit-clip-path: circle(210px at 100% 10%);
		clip-path: circle(210px at 100% 10%);
	}

	100% {
		shape-inside: circle(50%, 50%, 1200px);
		-webkit-clip-path: circle(2000px at 50% 50%);
		clip-path: circle(2000px at 50% 50%);
	}
}

.search-form form {
	position: absolute;
	display: block;
	top: 45%;
	left: 0;
	right: 0;
	text-align: center;
}

.search-form input[type="text"] {
	position: relative;
	display: inline-block;
	margin: 0;
	max-width: 90%;
	width: 0;
	font-size: 32px;
	height: 36px;
	line-height: 36px;
	padding: 0;
	border: 0;
	-moz-transition: all 0.4s ease .4s;
	-ms-transition: all 0.4s ease .4s;
	-o-transition: all 0.4s ease .4s;
	-webkit-transition: all 0.4s ease .4s;
	transition: all 0.4s ease .4s;
}

.search-form.active input[type="text"] {
	width: 500px;
}

.search-form input[type="text"]:focus {
	color: #fff;
}

.search-box {
	position: relative;
	display: inline-block;
	width: auto;
	margin: 0;
	padding: 0;
	border-bottom: 2px solid #aaa;
}

.search-box:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: #fff;
	-webkit-backface-visibility: hidden;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}

.search-box.focus:after {
	width: 100%;
}

.search-form input[type="submit"] {
	display: none;
}

.submit-search {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	width: 0;
	height: 50px;
	cursor: pointer;
	-moz-transition: all 0.6s ease .4s;
	-ms-transition: all 0.6s ease .4s;
	-o-transition: all 0.6s ease .4s;
	-webkit-transition: all 0.6s ease .4s;
	transition: all 0.6s ease .4s;
}

.search-form.active .submit-search {
	width: 50px;
}

.search-form .arrow {
	position: relative;
	display: block;
	height: 2px;
	width: 40px;
	background: #fff;
	margin-top: 20px;
	opacity: .6;
	-webkit-backface-visibility: hidden;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.search-form .arrow:after {
	position: absolute;
	display: block;
	right: 0;
	top: -4px;
	content: "";
	height: 10px;
	width: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-backface-visibility: hidden;
}

.submit-search:hover .arrow {
	opacity: 1;
}

.search-res-item {
	position: relative;
	padding: 0 0 60px 48px;
}

.search-res-item h3 {
	padding: 0;
	margin: 0;
}

.search-res-item .res-num {
	position: absolute;
	top: 0;
	left: 0;
	color: #b6b6b6;
}

.res-more, .res-more:hover {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	color: #15aba6;
	border-bottom: 2px dotted #15aba6;
}

.res-more:hover {
	text-decoration: none;
	border-bottom: 2px solid #15aba6;
}

.sisea-page a, .sisea-current-page, .sisea-page a:hover {
	position: relative;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 10px 0 0;
	border: 0;
}

@media screen and (max-width:640px) {
	.search-box {
		margin: 0 20px;
	}

	.search-form input[type="text"] {
		font-size: 36px;
	}

	.search-form.active input[type="text"] {
		width: 90%;
		padding-right: 20px;
	}

	.submit-search {
		height: 44px;
		margin-left: -20px;
	}
}

@media screen and (max-width:480px) {
	.search-form input[type="text"] {
		font-size: 24px;
	}

	.search-form .arrow {
		width: 30px;
	}

	.submit-search {
		height: 44px;
		margin-left: -30px;
	}
}
/** 搜索 END **/

/********** 导航 **********/
/*.sitenav{ float:left; height:100px;}
.sitenav li{ float:left; display:block; margin:0 15px; position: relative;}
.sitenav li a{ display:block; height:88px; font-size:14px; line-height:88px; color:#242424; padding:0 15px;}
.sitenav li a:after{ position: relative; content: ""; display: block; margin: 0 auto; height: 2px; width: 0; background:#F49800; transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out;}
.sitenav li:hover a{ color:#F49800;}
.sitenav li:hover a:after{ width:100%;}
@media screen and (max-width:1440px) {
	.sitenav li{ margin:0 10px;}
	.sitenav li a{ padding:0 15px;}
}
@media screen and (max-width:1280px) {
	.sitenav li{ margin:0 8px;}
	.sitenav li a{ padding:0 12px;}
}

@media(min-width:1921px) {
	.sitenav li a{ font-size:16px;}
}
@media screen and (max-width:1024px) {
	.sitenav{ display:none;}
	}*/

	/***** PC导航 *****/
.sitenav {
	float: left;
	width: 66%;
	height: 100px;
	margin-left: 8%;
}

.sitenav>ul {
	padding: 0;
	margin: 0;
}

.sitenav>ul>li {
	float: left;
	line-height: 100px;
	margin: 0 1px;
	position: relative;
}

.sitenav>ul>li>a {
	display: block;
	height: 100px;
	padding: 0 30px;
	font-size: 1em;
	color: #242424;
	line-height: 100px;
	text-decoration: none !important;
}

.sitenav>ul>li>a:hover {
	background: #DA251C;
	color: #FFF;
}

.sitenav>ul>li>a:after {
	position: relative;
	bottom: 22px;
	margin: 0 auto;
	content: "";
	display: block;
	height: 2px;
	width: 0;
	background: #FFF;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.sitenav>ul>li>a:hover:after {
	width: 32px;
}

.setnav {
	position: absolute;
	top: 101px;
	left: 0px;
	background: #FFF;
	padding: 10px 0;
	min-height: 160px;
	height: auto;
	display: none;
}

.setnav>ul>li {
	width: 100%;
	max-height: 38px;
	margin: 0;
	line-height: 38px;
}

.setnav>ul>li>a {
	width: 140px;
	padding: 0px 20px;
	display: block;
	font-size: 0.875em;
	color: #525252;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.setnav>ul>li:hover {
	background: #DA251C;
}

.setnav>ul>li>a:hover {
	color: #fff;
}

.sc>li>a {
	font-size: 14px !important;
	padding: 0px 20px !important;
}

.setnav2 {
	background: #F0F0F0;
	position: absolute;
	top: 0;
	left: 100%;
	padding: 0;
	display: none;
}

.setnav2>ul {
	width: 140px;
	float: left;
}

.setnav2>img {
	width: 300px;
	padding: 10px;
	float: left;
}

.setnav2_zi {
	width: calc(100% - 180px);
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 20px;
}

.setnav2_zi>h5 {
	font-size: 20px;
	color: #FFF;
	margin: 5px 0;
}

.setnav2_zi>p {
	font-size: 12px;
	color: #666;
	margin-bottom: 0;
}

.setnav2>ul>li {
	width: 100%;
	max-height: 24px;
	margin: 0;
	line-height: 24px;
}

.setnav2>ul>li>h5 {
	color: #525252;
	padding: 4px 20px;
	width: 140px;
	display: block;
	font-size: 14px;
	margin: 20px 0 30px;
}

.setnav2>ul>li>a {
	padding: 0 20px;
	display: block;
	font-size: 14px;
	color: #666;
}

.setnav2>ul>li:hover >a {
	color: #DA251C;
}

@media screen and (max-width:1680px) {
	.sitenav {
		width: 68%;
		margin-left: 4%;
	}

	.sitenav>ul>li>a {
		padding: 0 25px;
	}
}

@media screen and (max-width:1440px) {
	.sitenav {
		width: 66%;
		margin-left: 4%;
	}

	.sitenav>ul>li>a {
		padding: 0 18px;
	}
}

@media screen and (max-width:1280px) {
	.sitenav {
		width: 64%;
		margin-left: 2%;
	}

	.sitenav ul li.first {
		display: none;
	}

	.sitenav>ul>li>a {
		padding: 0 15px;
	}
}

@media screen and (max-width:1024px) {
	.sitenav {
		display: none;
	}
}

#pg0 #n0>a,
	#pg10 #n1>a, #pg11 #n1>a, #pg12 #n1>a, #pg13 #n1>a, #pg14 #n1>a, #pg15 #n1>a, #pg16 #n1>a, #pg17 #n1>a, #pg18 #n1>a, #pg19 #n1>a,
	#pg40 #n4>a, #pg41 #n4>a,
	#pg50 #n5>a, #pg51 #n5>a, #pg52 #n5>a, #pg53 #n5>a, #pg54 #n5>a, #pg55 #n5>a {
	background: #DA251C;
	color: #FFF;
}

#pg0 #n0>a:after,
	#pg10 #n1>a:after, #pg11 #n1>a:after, #pg12 #n1>a:after, #pg13 #n1>a:after, #pg14 #n1>a:after, #pg15 #n1>a:after, #pg16 #n1>a:after, #pg17 #n1>a:after, #pg18 #n1>a:after, #pg19 #n1>a:after,
	#pg40 #n4>a:after, #pg41 #n4>a:after,
	#pg50 #n5>a:after, #pg51 #n5>a:after, #pg52 #n5>a:after, #pg53 #n5>a:after, #pg54 #n5>a:after, #pg55 #n5>a:after {
	width: 32px;
}


	/***** PC导航2 *****/
.navbox {
	height: 40px;
	position: relative;
	z-index: 9;
	margin: auto;
	background: #554b4a;
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	opacity: 0.90;
	font-family: '微软雅黑';
	width: 66%;
}

.nav {
	width: 100%;
	margin: 0 auto;
	height: 40px;
	list-style: none;
}

.nav li {
	float: left;
	height: 40px;
	position: relative;
	list-style: none;
}

.nav li.last {
	background: none;
}

.nav li a {
	text-decoration: none;
}

.nav li a span {
	float: left;
	display: block;
	line-height: 40px;
	font-size: 14px;
	color: #ffffff;
	cursor: pointer;
	width: 143px;
	text-align: center;
}

.mj_hover_menu {
	text-decoration: none;
	width: 143px;
	background: url(../images/menu_hover.jpg);
	height: 40px;
}

.nav li.selected .submenu {
	display: block;
}

.nav li .submenu {
	display: none;
	position: absolute;
	top: 40px;
	left: -9px;
}

.nav li .submenu li {
	float: none;
	padding: 0;
	background: none;
	height: auto;
	border-bottom: dotted 0px #BEBEBE;
}

.mj_menu_ab_bg {
	width: 825px;
	height: 235px;
	background: rgba(255,255,255,1);
}

.mj_menu_ab_main {
	width: 765px;
	margin: auto;
	padding-top: 12px;
}

.mj_menu_ab_li {
	float: left;
}

.mj_menu_li_txt {
	line-height: 22px;
	font-size: 12px;
	color: #696969;
}

.mj_menu_li_txt font {
	font-size: 14px;
	color: #bb1721;
}

.mj_menu_li_txt a {
	color: #696969;
	text-decoration: none;
}

.mj_menu_li_txt a:hover {
	color: #696969;
	text-decoration: underline;
}

.mj_menu_norm_bg {
	width: 480px;
	height: 185px;
	background: rgba(255,255,255,1);
}

.mj_menu_norm_main {
	width: 440px;
	margin: auto;
	padding-top: 12px;
}

.mj_menu_norm_li {
	padding: 0px 30px;
	margin-right: 30px;
	height: 150px;
	float: left;
}

.mj_menu_norm_img {
	float: left;
	text-align: left;
	color: #bb1721;
	line-height: 30px;
	font-size: 14px;
}

.mj_menu_norm_li2 {
	padding: 0px 30px;
	height: 150px;
	float: right;
	border-left: solid 1px #cccccc;
}

.mj_menu_norm_img2 {
	float: left;
	margin-left: 30px;
	text-align: left;
	color: #bb1721;
	line-height: 30px;
	font-size: 14px;
}

.mj_menu_norm_li3 {
	padding: 0px 25px;
	height: 150px;
	float: right;
	border-left: solid 1px #cccccc;
}

.mj_menu_norm_img3 {
	float: left;
	margin-left: 10px;
	text-align: left;
	color: #bb1721;
	line-height: 30px;
	font-size: 14px;
}

.mj_menu_news_bg {
	width: 480px;
	height: 185px;
	background: rgba(255,255,255,1);
}

.mj_menu_news_main {
	width: 440px;
	margin: auto;
	padding-top: 12px;
}

.mj_menu_news_li {
	float: left;
}

.mj_menu_mbr_bg {
	width: 480px;
	height: 185px;
	background: rgba(255,255,255,1);
}

.mj_menu_mbr_main {
	width: 440px;
	margin: auto;
	padding-top: 12px;
}

.mj_menu_mbr_li {
	float: left;
}

	/*导航-by 吴军华*/
.container nav {
	float: right;
	width: 60%;
}

.container nav > ul > li {
	float: left;
	width: 10%;
	font-size: 1em;
	color: #333;
	margin: 0 2%;
	line-height: 102px;
	text-align: center;
}

.container nav > ul > li > a {
	display: block;
	width: 100%;
	font-size: 1em;
	color: #333;
	position: relative;
}

.container nav > ul > li > a:before {
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	position: absolute;
	border-bottom: 2px solid #d61919;
	box-sizing: border-box;
	transform: scale(0,1);
	-o-transform: scale(0,1);
	-moz-transform: scale(0,1);
	-webkit-transform: scale(0,1);
	transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-webkit-transition: all .3s ease 0s;
}

.container nav > ul > li:hover > a {
	color: #d61919;
}

.container nav > ul > li:hover > a:before {
	transform: scale(1);
	-o-transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
}

.container nav  ul  li a.cur {
	color: #d61919;
}


#pg10 #h1, #pg11 #h1, #pg12 #h1, #pg13 #h1, #pg14-0 #h1, 
#pg15-0 #h1, #pg15-1 #h1, #pg15-2 #h1, #pg15-3 #h1, #pg15-4 #h1, #pg15-5 #h1, #pg15-6 #h1,
 #pg16 #h1, #pg17 #h1,
#pg20 #h2, #pg21 #h2,#pg22 #h2,#pg23 #h2,#pg24 #h2,
#pg31 #h3,#pg40 #h4,
#pg50 #h5, #pg51 #h5,#pg52 #h5,#pg53 #h5,#pg54 #h5,
#pg60 #h6,#pg61 #h6,
#pg7 #h7, #pg71 #h7,
#pg8 #h8 {
	color: #d61919;
}
.dropdown {
	display: none;
	width: 50%;
	position: absolute;
	top: 101px;
	left: auto;
	margin-left: -15%;
	z-index: 9;
	box-sizing: border-box;
	border-top: solid 1px #CCCCCC;
	padding: 2%;
	background: url("../images/logo_bg.png") right bottom no-repeat #fff;

}

.dropdown figure {
	width: 50%;
	float: left;
	margin: 0;
}

.dropdown figure img {
	width: 100%;
}

.dropdown .secondmenu {
	width: 45%;
	float: left;
	margin-right: 5%;
}

.dropdown .qy {
	width: 80%;
}

.dropdown .secondmenu li {
	width: 100%;
	margin: 0;
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

.dropdown .qy li {
	line-height: 2;
}

.dropdown .secondmenu li a {
	font-size: 0.9em;
}

.dropdown .secondmenu li a i {
	margin-right: 7px;
}

.dropdown .secondmenu li a:hover i {
	color: #d61919;
}

.dropdown .last {
	float: right;
	width: 46%;
	height: 100%;
	overflow: hidden;

}

.third {
	background-color: #FFF;
	box-sizing: border-box;
	border-top: solid 1px #CCCCCC;
	padding: 2% 4%;
	background: url("../images/dh_bg.jpg") left top repeat-y #de4542;
	width: 40%;
	float: right;
	height: 100%;
}

.third dl {
	width: 50%;
	float: left
}

.third h2 {
	line-height: 2em;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: left;
	width: 100%;
	padding-left: 3%
}

.third dt {
	line-height: 2em;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: left;
	width: 100%;
	padding-left: 6%
}

.third dd {
	line-height: 2em;
	text-align: left;
	padding: 0 0 0 7%;
}

.third dd a {
	color: #fff;
	font-size: 0.9em;
	background: url("../images/fangkuai.jpg") left center no-repeat;
	padding-left: 10%;
	display: block;
	width: 90%
}

.third dd:hover {
	background-color: #fff;
}

.third dd a:hover {
	background: url("../images/r_fangkuai.jpg") left center no-repeat;
	color: #de4543;
}
	/*导航简介部分*/
.big {
	width: 70%;
	padding: 0%
}

.big figure {
	width: 35%;
	padding: 2.5%
}

.big .last {
	width: 58%;
	background: url("../images/logo_bg.png") 35% bottom no-repeat #fff;

}

.big .secondmenu {
	width: 25%;
	margin-right: 2%;
	margin-top: 2%
}

.big .third dl {
	float: left;
	width: 100%
}
	/*导航新闻部分*/
.big2 {
	width: 70%;
	padding: 0%
}

.big2 figure {
	width: 35%;
	padding: 2.5%
}

.big2 .last {
	width: 58%;
	background: url("../images/logo_bg.png") 25% bottom no-repeat #fff;

}

.big2 .secondmenu {
	width: 25%;
	margin-right: 2%;
	margin-top: 2%
}

.big2 .third {
	width: 50%;
}

@media screen and (max-width:1439px) {
	.container nav ul li {
		width: 12%;
		margin: 0 1% ;
	}
}

@media screen and (max-width:1359px) {
	
	.dropdown .secondmenu {
		width: 50%;
	}

	.dropdown .secondmenu li {
		line-height: 2;
	}

	.dropdown .secondmenu li a {
		font-size: 0.8em;
	}

	.dropdown .qy {
		width: 80%;
	}
		/*导航简介部分*/
	.big {
		width: 70%;
		padding: 0%
	}

	.big figure {
		width: 35%;
		padding: 2.5%
	}

	.big .last {
		width: 58%;
	}

	.big .secondmenu {
		width: 25%;
		margin-right: 2%;
		margin-top: 2%
	}

		/*导航新闻部分*/
	.big2 {
		width: 70%;
		padding: 0%
	}

	.big2 figure {
		width: 35%;
		padding: 2.5%
	}

	.big2 .last {
		width: 58%;
	}

	.big2 .secondmenu {
		width: 25%;
		margin-right: 2%;
		margin-top: 2%
	}

	.big2 .third {
		width: 60%;
	}
}

@media screen and (max-width:1279px) {
	.container nav ul li {
		width: 13%;
		margin: 0 0.5%;
	}

	.container nav ul li a {
		font-size: 0.9em;
	}

	.dropdown .secondmenu {
		width: 49%;
		margin-right: 0.5%;
	}

	.dropdown .qy {
		width: 80%;
	}
		/*导航简介部分*/
	.big {
		width: 70%;
		padding: 0%
	}

	.big figure {
		width: 35%;
		padding: 2.5%
	}

	.big .last {
		width: 58%;
	}

	.big .secondmenu {
		width: 30%;
		margin-right: 1%;
		margin-top: 2%
	}
	.big .third{ width: 34% }
	.big .third dd {
		padding-left: 7%
	}
		/*导航新闻部分*/
	.big2 {
		width: 70%;
		padding: 0%
	}

	.big2 figure {
		width: 35%;
		padding: 2.5%
	}

	.big2 .last {
		width: 58%;
		background: url("../images/logo_bg.png") left bottom no-repeat #fff;
	}

	.big2 .secondmenu {
		width: 25%;
		margin-right: 2%;
		margin-top: 2%
	}

	.big2 .third {
		width: 65%;
	}

	.big2 .third dd {
		padding-left: 7%
	}
}

@media screen and (max-width:1024px) {
	.container nav {
		display: none
	}
}


	/********** 手机导航 **********/
#my-menu {
 /*display:none;*/
}

#hamburger {
	display: none;
}

#hamburger {
	box-sizing: border-box;
	width: 24px;
	height: 24px;
	position: fixed;
/*position:absolute;*/
	top: 32px;
	left: 5%;
	z-index: 10000;
}

#hamburger:before, #hamburger:after, #hamburger span {
	background: #DA251C;
	content: '';
	display: block;
	width: 24px;
	height: 2px;
}

#hamburger span {
	margin: 5px 0 0 0;
}

#hamburger:after {
	margin: 5px 0 0 0;
}

#hamburger.hb-absolute {
	position: absolute;
}

#hamburger.hb-fixed {
	position: absolute;
}
/* Hamburger animation */
#hamburger:before, #hamburger:after, #hamburger span {
	-webkit-transition: none 0.3s ease 0.3s;
	transition: none 0.3s ease 0.3s;
	-webkit-transition-property: transform, top, bottom, left, opacity, margin;
	transition-property: transform, top, bottom, left, opacity, margin;
}

html.mm-opening #hamburger:before, html.mm-opening #hamburger:after {
	top: 20px;
}

html.mm-opening #hamburger span {
	left: -50px;
	opacity: 0;
}

html.mm-opening #hamburger:before {
	transform: rotate( 45deg );
	margin: 8.5px 0 0 0;
}

html.mm-opening #hamburger:after {
	transform: rotate( -45deg );
	margin: -8.5px 0 0 0;
}

@media screen and (max-width:1024px) {
	#my-menu {
 /*display:block;*/
	}

	#hamburger {
		display: block;
		top: 22px;
	}
}

/********** pgmt **********/
.pgmt {
	width: 100%;
	height: 100px;
}

@media screen and (max-width:1024px) {
	.pgmt {
		display: none;
	}
}

/********** 底部 **********/
.footer {
	width: 100%;
}

.ft-row1 {
	width: 100%;
	min-height: 212px;
	padding: 60px 0;
	background: #404040;
	position: relative;
}

.ftnav {
	float: left;
	width: 88%;
	position: relative;
}

.ftnav dl {
	float: left;
	width: 12%;
	margin-right: 2%;
}

.ftnav dl.first {
	width: 20%;
	margin-right: 2%;
}

.ftnav dl.first div {
	float: left;
	width: 50%;
}

.ftnav dl.last {
	width: 30%;
	padding-left: 5%;
	height: 212px;
	margin-right: 0;
	border-left: 1px solid rgba(255,255,255,.2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ftnav dl dt {
	font-size: 1em;
	color: #FFF;
	line-height: 1.5em;
	margin-bottom: 1em;
	text-transform: capitalize;
}

.ftnav dl dd, .ftnav dl dd a {
	font-size: 0.875em;
	color: rgba(255,255,255,0.7);
	line-height: 1.8em;
 /*display:block;*/
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ftnav dl dd a:hover {
	color: #DA251C;
}
/*.ftnav dl.last dd a{ display:inline-block;}*/
.qrcode {
	float: right;
	width: auto;
}

.qrcode span {
	text-align: center;
}

.qrcode span img {
	width: 120px;
	margin-bottom: 10px;
}

.qrcode p {
	font-size: 0.875em;
	line-height: 1.5;
	color: rgba(255,255,255,.7);
	text-align: center;
}

.copyright {
	width: 100%;
	height: 60px;
	background: #333;
	text-align: center;
}

.copyright span {
	font-size: 0.875em;
	line-height: 60px;
	color: rgba(255,255,255,.4);
	margin: 0 1em;
}

.copyright span a {
	color: rgba(255,255,255,.4);
}

.copyright span a:hover {
	color: rgba(255,255,255,1);
	text-decoration: underline;
}

@media screen and (max-width:1440px) {
	.ftnav dl {
		width: 11%;
	}

	.ftnav dl.first {
		width: 19%;
	}

	.ftnav dl.last {
		width: 35%;
		padding-left: 5%;
	}
}

@media screen and (max-width:1280px) {
	.ft-row1 {
		padding: 50px 0;
	}

	.ftnav {
		width: 100%;
	}

	.ftnav dl {
		width: 10.5%;
		margin-right: 1%;
	}

	.ftnav dl.first {
		width: 20%;
		margin-right: 1%;
	}

	.ftnav dl.last {
		width: 33%;
	}

	.qrcode {
		display: none;
	}
}

@media screen and (max-width:1024px) {
	.footer {
		margin-bottom: 49px;
	}

	.ft-row1 {
		display: none;
	}
}

@media screen and (max-width:768px) {
	.copyright {
		width: 100%;
		height: auto;
		padding: 14px 0;
	}

	.copyright span {
		display: block;
		line-height: 1.8;
	}
}

@media screen and (max-width:480px) {
	.copyright {
		padding: 14px 0;
	}

	.copyright span {
		line-height: 1.5;
	}
}

/*------ 手机底部 ---------*/
.botnav {
	width: 100%;
	height: 48px;
	background: -moz-linear-gradient(top, #282828, #282828);
	background: -webkit-linear-gradient(top, #282828, #282828);
	background: -ms-linear-gradient(top, #282828, #282828);
	border-top: 1px solid rgba(255,255,255,0.5);
	position: fixed;
	bottom: 0;
	z-index: 99;
	display: none;
}

.botnav li {
	float: left;
	width: 25%;
	height: 48px;
	border-right: 1px solid rgba(255,255,255,0.3);
	-webkit-box-flex: 1;
	box-flex: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.botnav li.last {
	border-right: medium none;
}

.botnav li a {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 0.75em;
	color: #FFF;
	line-height: 18px;
}

.botnav li .home {
	height: 20px;
	padding-top: 28px;
	background: url(../images/ftsign_home.png) no-repeat center 8px;
	background-size: 24px;
}

.botnav li .share {
	height: 20px;
	padding-top: 28px;
	background: url(../images/ftsign_share.png) no-repeat center 8px;
	background-size: 24px;
}

.shareBox {
	position: absolute;
	left: 0;
	bottom: 48px;
	width: 100%;
	z-index: 3000;
	overflow: hidden;
	display: none;
	background: #FFF;
	padding: 12px 0px;
	box-shadow: 0px 2px 7px rgba(0,0,0,0.75);
}

.shareBox img {
	float: left;
	margin-left: 12px;
	width: 40px;
}

.botnav li .email {
	height: 20px;
	padding-top: 28px;
	background: url(../images/ftsign_email.png) no-repeat center 8px;
	background-size: 24px;
}

.botnav li .phone {
	height: 20px;
	padding-top: 28px;
	background: url(../images/ftsign_phone.png) no-repeat center 8px;
	background-size: 24px;
}

.botnav li .tel {
	height: 20px;
	padding-top: 28px;
	background: url(../images/ftsign_tel.png) no-repeat center 8px;
	background-size: 24px;
}

.botnav li .map {
	height: 20px;
	padding-top: 28px;
	background: url(../images/ftsign_map.png) no-repeat center 8px;
	background-size: 24px;
}

.botnav li .english {
	height: 20px;
	padding-top: 28px;
	background: url(../images/ftsign_en.png) no-repeat center 8px;
	background-size: 24px;
}

@media screen and (max-width:1024px) {
	.botnav {
		display: block;
	}
}

/*------ 返回顶部 ---------*/
#topcontrol {
	z-index: 1;
}

@media screen and (max-width:1024px) {
	#topcontrol {
		right: 0 !important;
	}

	#topcontrol img {
		width: 40px !important;
		height: 40px !important;
	}
}

/*------------------------------  首页  ------------------------------*/
/********** 首页banner **********/
.banner {
	width: 100%;
	height: auto;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	position: relative;
	z-index: 1;
}

.banner img {
	width: 100%;
}

.banner-phone {
	display: none;
}
/*.banner-phone{ position:relative; width:100%; height:auto; overflow:hidden; text-align:center; vertical-align:middle; display:none;}
.banner-phone img{ width:100%;}*/
@media screen and (max-width:1024px) {
	.banner-pc {
		display: none;
	}

	.banner-phone {
		display: block;
	}
}

.banner .swiper-wrapper {
	height: auto !important;
}

.banner-container {
	margin-left: auto;
	margin-right: auto;
}

.banner-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: auto !important;
}

.banner .swiper-button-prev, .banner .swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto
}

.banner .swiper-button-prev.swiper-button-black, .banner .swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.banner .swiper-button-prev.swiper-button-white, .banner .swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.banner .swiper-button-next, .banner .swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto
}

.banner .swiper-pagination-bullet {
	width: 16px !important;
	height: 16px !important;
}

.banner .swiper-pagination-bullet-active {
	opacity: 1;
	background: #DA251C !important;
}

.swiper-container-horizontal>.swiper-pagination.banner-swiper-pagination {
	bottom: 40px !important;
}

/********** 首页分层公用 **********/
.floor-title {
	width: 100%;
	padding-bottom: 30px;
	position: relative;
}

.floor-title:after {
	position: absolute;
	content: "";
	display: block;
	margin: 20px 0 0;
	height: 3px;
	width: 28px;
	background: #999;
}

.floor-title h3 {
	font-size: 2.25em;
	line-height: 1;
	color: #333;
	margin-bottom: 14px;
}

.floor-title p {
	font-size: 1.125em;
	line-height: 1.5;
	color: #666;
	text-transform: uppercase;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	margin-bottom: 24px;
}

.indab .floor-title {
	text-align: right;
}

.indab .floor-title:after {
	right: 0;
}

.indmbr .floor-title {
	text-align: right;
}

.indmbr .floor-title:after {
	right: 0;
}

@media screen and (max-width:1024px) {
	.floor-title {
		text-align: center;
		padding-bottom: 4%;
	}

	.floor-title:after {
		position: relative;
		margin: 8px auto 0;
	}

	.indab .floor-title {
		text-align: center;
	}

	.indab .floor-title:after {
		right: auto;
		margin: 0 auto;
	}

	.indmbr .floor-title {
		text-align: center;
	}

	.indmbr .floor-title:after {
		right: auto;
		margin: 0 auto;
	}

	.floor-title h3 {
		font-size: 1.875em;
		margin-bottom: 8px;
	}

	.floor-title p {
		font-size: 1em;
		margin-bottom: 14px;
	}
}

@media screen and (max-width:768px) {
	.floor-title {
		padding-bottom: 5%;
	}
}

/********** floor1 **********/
.indab {
	width: 100%;
	padding: 80px 0 100px;
	background-color: #FFF;
}

.indab-l {
	float: left;
	width: 42%;
	margin-left: 8%;
}

.indab-l img {
	width: 100%;
}

.indab-r {
	float: right;
	width: 34%;
	margin-right: 8%;
}

.indab-txt {
	padding-top: 48px;
}

.ab-tip {
	width: 100%;
	margin-bottom: 12%;
}

.ab-tip h6 {
	font-size: 1.5em;
	line-height: 30px;
	font-weight: normal;
	color: #333;
	margin-bottom: 16px;
}

.ab-tip h6 label {
	font-weight: bold;
	margin: 0 8px;
}

.ab-tip p {
	font-size: 0.875em;
	color: #666;
}

.indab-links {
	width: 100%;
}

.indab-links li {
	float: left;
	width: 33.3333%;
	text-align: center;
	margin-bottom: 12%;
}

.indab-links li span {
	display: block;
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

.indab-links li span img {
	width: 80px;
	display: block;
	margin: 0 auto;
}

.indab-links li span img.absign_h {
	display: none;
}

.indab-links li p {
	font-size: 1.125em;
	color: #333;
}

.indab-links li:hover span img.absign {
	display: none;
}

.indab-links li:hover span img.absign_h {
	display: block;
}

.indab-links li:hover p {
	color: #DA251C;
}

@media screen and (max-width:1740px) {
	.indab {
		padding-bottom: 80px;
	}
}

@media screen and (max-width:1680px) {
	.indab-txt {
		padding-top: 40px;
	}

	.ab-tip {
		margin-bottom: 8%;
	}

	.indab-links li {
		margin-bottom: 8%;
	}

	.indab-links li span {
		margin-bottom: 10px;
	}

	.indab-links li span img {
		width: 72px
	}
}

@media screen and (max-width:1440px) {
	.indab-txt {
		padding-top: 30px;
	}

	.ab-tip {
		margin-bottom: 6%;
	}

	.indab-links li {
		margin-bottom: 6%;
	}

	.indab-links li span img {
		width: 60px;
	}
}

@media screen and (max-width:1280px) {
	.indab-r {
		width: 36%;
	}

	.indab-links li {
		width: 16.6666%;
	}

	.indab-links li span img {
		width: 40px;
	}

	.indab-links li p {
		font-size: 0.875em;
	}
}

@media screen and (max-width:1024px) {
	.indab {
		padding: 5% 0 4%;
	}

	.indab-l {
		display: none;
	}

	.indab-r {
		float: left;
		width: 100%;
	}

	.indab-txt {
		padding-top: 0;
		width: 90%;
		margin: 0 auto;
	}

	.ab-tip {
		margin-bottom: 5%;
	}

	.ab-tip h6 {
		font-size: 1.125em;
		color: #DA251C;
		text-align: center;
		margin-bottom: 6px;
	}

	.indab-links li {
		margin-bottom: 5%;
	}

	.indab-links li span {
		margin-bottom: 20px;
	}

	.indab-links li span img {
		width: 80px;
	}

	.indab-links li p {
		font-size: 1em;
	}
}

@media screen and (max-width:768px) {
	.indab {
		padding-top: 6%;
	}

	.indab-links li {
		width: 33.3333%;
	}

	.indab-links li span {
		margin-bottom: 10px;
	}

	.indab-links li span img {
		width: 60px;
	}
}

@media screen and (max-width:480px) {
	.indab {
		padding-top: 8%;
	}

	.indab-txt {
		padding-top: 2%;
	}

	.indab-links li span {
		margin-bottom: 6px;
	}

	.indab-links li span img {
		width: 50px;
	}
}

/********** floor2 **********/
.indact {
	width: 100%;
	background-color: #FFF;
}

.indact-img {
	float: right;
	width: 66.6666%;
}

.indact-img img {
	width: 100%;
}

.indact .floor-title {
	width: 20%;
	margin-left: 8%;
}

.act-tip {
	width: 20%;
	margin-bottom: 2%;
	margin-left: 8%;
	padding-top: 3%;
}

.act-tip h3 {
	font-size: 1.5em;
	line-height: 30px;
	color: #DA251C;
	font-weight: normal;
	margin-bottom: 16px;
}

.act-tip p {
	font-size: 0.875em;
	color: #666;
}

.actone {
	float: left;
	width: 20%;
	margin-bottom: 0%;
	margin-left: 8%;
}

.actone1 {
	padding-top: 3%;
}

.actone3, .actone4 {
	margin-left: 5.4%;
}

.actone2, .actone3, .actone4 {
	padding-top: 4%;
	padding-bottom: 4%;
}

.actone h6 {
	font-size: 1em;
	line-height: 2;
	color: #333;
	font-weight: bold;
	margin-bottom: 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.actone p {
	font-size: 0.875em;
	color: #666;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.actone:hover h6 a{ color:#DA251C;}
.actone:hover p a{ color:#666; text-decoration:underline;}


.act-tip p.p2 {
	display: none;
}

.actbtn {
	float: left;
	width: 16%;
	height: 74px;
	padding: 4% 0;
	text-align: center;
	position: relative;
}

.actbtn a {
	display: block;
	width: 100%;
	height: 100%:
}

.actbtn i {
	color: #666;
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 24px;
	height: 10px;
	-webkit-animation: arrowRight 1s ease-in infinite;
	animation: arrowRight 1s ease-in infinite;
}

.actbtn a:hover i {
	color: #DA251C;
}

.actbtn2 {
	width: 60%;
	height: 40px;
	background: rgba(255,255,255,1);
	font-size: 0.875em;
	line-height: 40px;
	text-align: center;
	position: relative;
	z-index: 2;
	margin: 0 auto;
	display: none;
}

.actbtn2 i {
	color: #666;
	display: inline-block;
	margin-left: 8px;
}

@-webkit-keyframes arrowRight {
	0% {
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	50% {
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
}

@keyframes arrowRight {
	0% {
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	50% {
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
}

@media screen and (max-width:1920px) {
	.act-tip {
		padding-top: 2%;
		margin-bottom: 0;
	}

	.actone1 {
		padding-top: 2.4%;
	}
}

@media screen and (max-width:1740px) {
	.indab {
		padding-bottom: 80px;
	}

	.act-tip {
		padding-top: 1%;
	}

	.act-tip h3 {
		font-size: 1.25em;
		margin-bottom: 10px;
	}
}

@media screen and (max-width:1600px) {
	.act-tip p {
		display: none;
	}
}

@media screen and (max-width:1024px) {
	.indact {
		padding: 0% 0 6%;
		background-color: #F5F5F5;
		background: url(../images/imgindex/actimg01.jpg) center center no-repeat;
		background-size: cover;
		position: relative;
	}

	.indact-img {
		display: none;
	}

	.indact-bgmask {
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.7);
		position: absolute;
		z-index: 1;
	}

	.indact .floor-title {
		width: 100%;
		margin-left: 0;
		padding-top: 5%;
		position: relative;
		z-index: 2;
	}

	.indact .floor-title h3 {
		color: #FFF;
	}

	.indact .floor-title p {
		color: #FFF;
	}

	.act-tip {
		width: 90%;
		margin: 0 auto 4%;
		padding-top: 0%;
		position: relative;
		z-index: 2;
		display: block;
	}

	.act-tip h3 {
		font-size: 1.125em;
		color: #DA251C;
		margin-bottom: 16px;
		text-align: center;
	}

	.act-tip p {
		color: rgba(255,255,255,.8);
	}

	.act-tip p.p1 {
		display: none;
	}

	.act-tip p.p2 {
		display: block;
		text-align: center;
	}

	.actone {
		display: none;
	}

	.actbtn {
		display: none;
	}

	.actbtn2 {
		display: block;
	}
}

@media screen and (max-width:768px) {
	.indact {
		padding-bottom: 8%;
	}

	.indact .floor-title {
		padding-top: 6%;
	}

	.act-tip {
		margin-bottom: 6%;
	}
}

@media screen and (max-width:480px) {
	.indact {
		padding-bottom: 10%;
	}

	.indact .floor-title {
		padding-top: 8%;
	}
}

/********** floor3 **********/
.indmbr {
	width: 100%;
	padding: 100px 0;
	background-color: #F5F5F5;
}

.indmbr-l {
	float: left;
	width: 66.6666%;
	height: 0;
	padding-bottom: 34.66%;
}

.indmbr-img {
	width: 100%;
}

.indmbr-img img {
	width: 100%;
}

.indmbr-r {
	float: right;
	width: 20%;
	height: 0;
	padding-bottom: 30%;
	margin-right: 8%;
}

.indmbr-txt {
	padding-top: 8%;
}

.indmbr-txt h3 {
	font-size: 1.5em;
	line-height: 30px;
	color: #DA251C;
	font-weight: normal;
	text-align: right;
	margin-bottom: 6%;
}

.indmbr-txt p {
	font-size: 0.875em;
	color: #666;
	line-height: 30px;
	height: 210px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}

.indmbr-txt:hover h3 a {
	color:#DA251C;
}

.indmbr-txt:hover p a {
	color: #666;
	text-decoration:underline;
}

@media screen and (max-width:1680px) {
	.indmbr-txt h3 {
		font-size: 1.25em;
	}

	.indmbr-txt p {
		line-height: 30px;
		height: 180px;
		-webkit-line-clamp: 6;
	}
}

@media screen and (max-width:1600px) {
	.indmbr-txt p {
		height: 150px;
		-webkit-line-clamp: 5;
	}
}

@media screen and (max-width:1440px) {
	.indmbr {
		padding: 80px 0;
	}

	.indmbr-txt h3 {
		font-size: 1.25em;
	}

	.indmbr-txt p {
		line-height: 24px;
		height: 96px;
		-webkit-line-clamp: 4;
	}
}

@media screen and (max-width:1280px) {
	.indmbr {
		padding: 60px 0;
	}

	.indmbr-txt p {
		line-height: 24px;
		height: 48px;
		-webkit-line-clamp: 2;
		display: none;
	}
}

@media screen and (max-width:1024px) {
	.indmbr {
		display: none;
	}
}

@media screen and (max-width:1024px) {
	.indmbr {
		display: none;
	}
}

/* -- 切换JS --*/
#indmbr {
	width: 100%;
 /*height:660px;*/
	position: relative;
}

.flexslider {
	margin: 0px auto;
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 35%;
	overflow: hidden;
	zoom: 1;
}

.flexslider .slides li {
	width: 100%;
	height: 100%;
}

.flex-direction-nav a {
	width: 36px;
	height: 36px;
	border: 1px solid #999;
	line-height: 99em;
	overflow: hidden;
	display: block;
	background: url(../images/sign/ad_ctr.png) no-repeat;
	position: absolute;
	bottom: 0;
	z-index: 10;
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: all .3s ease;
}

.flex-direction-nav .flex-next {
	background-position: 0 -36px;
	right: 8%;
}

.flex-direction-nav .flex-prev {
	right: 8%;
	margin-right: 54px;
}

.flexslider .flex-next:hover {
	background-position: -36px -36px;
	border-color: #DA251C;
}

.flexslider .flex-prev:hover {
	background-position: -36px 0;
	border-color: #DA251C;
}
/*.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover{ opacity:1; filter:alpha(opacity=100);}*/
.flex-control-nav {
	width: 100%;
	position: absolute;
	bottom: 30px;
	text-align: center;
}

.flex-control-nav li {
	margin: 0 4px;
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.flex-control-paging li a {
	display: block;
	width: 26px;
	height: 26px;
	background: url(../images/sign/dot.png) no-repeat 0 -26px;
	overflow: hidden;
	text-indent: -99em;
	cursor: pointer;
}

.flex-control-paging li a.flex-active, .flex-control-paging li.active a {
	background-position: 0 0;
}

.flexslider .slides a img {
	width: 100%;
	display: block;
}


/********** floor3 phone **********/
.indmbrmp {
	width: 100%;
	padding: 5% 0 2%;
	background-color: #FFF;
	display: none;
}

.indmbrmp-img {
	width: 100%;
}

.indmbrmp-img img {
	width: 100%;
}

.indmbrmp-txt {
	padding: 3% 5% 50px;
}

.indmbrmp-txt h3 {
	font-size: 1.25em;
	color: #333;
	font-weight: normal;
	margin-bottom: 14px;
}

.indmbrmp-txt p {
	font-size: 0.875em;
	color: #666;
	line-height: 24px;
	height: 120px;
	text-indent: 2em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.indmbrmp .swiper-wrapper {
	height: auto !important;
}

.indmbrmp-container {
	margin-left: auto;
	margin-right: auto;
}

.indmbrmp-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	height: auto !important;
}

@media screen and (max-width:1024px) {
	.indmbrmp {
		display: block;
	}
}

@media screen and (max-width:768px) {
	.indmbrmp {
		padding-top: 6%;
		padding-bottom: 2%;
	}

	.indmbrmp-txt p {
		height: 144px;
		-webkit-line-clamp: 6;
	}
}

@media screen and (max-width:480px) {
	.indmbrmp {
		padding-top: 8%;
	}

	.indmbrmp-txt {
		padding-top: 5%;
	}
}

/********** floor4 **********/
.indhr {
	width: 100%;
	padding: 80px 0;
	background-color: #FFF;
	position: relative;
}

.indhrbg-left {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #EEE;
}

.indhr .left {
	float: left;
	width: 30%;
	position: relative;
}

.indhr-tip {
	padding-top: 16%;
	margin-bottom: 18%;
}

.indhr-tip p {
	font-size: 0.875em;
	color: #333;
	line-height: 2.5;
}

.indhr-tip p.p2 {
	display: none;
}

.indhr-tbn {
	float: left;
	width: 100%;
	height: 74px;
}

.indhr-tbn a {
	display: block;
	width: 100%;
	height: 100%:
}

.indhr-tbn i {
	color: #666;
	display: inline-block;
	width: 24px;
	height: 10px;
	-webkit-animation: arrowRight2 1s ease-in infinite;
	animation: arrowRight2 1s ease-in infinite;
}

.indhr-tbn a:hover i {
	color: #DA251C;
}

@-webkit-keyframes arrowRight2 {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	50% {
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes arrowRight2 {
	0% {
		-webkit-transform: translateX(00px);
		transform: translateX(0px);
	}

	50% {
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
}

.indhr .center {
	position: relative;
	margin: 0 auto;
	width: 40%;
	text-align: center;
	position: relative;
}

.indhr .center .imgbox {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -39%;
	margin-left: -39%;
	width: 78%;
	height: 0;
	padding-bottom: 78%;
	border-radius: 50%;
	overflow: hidden;
}

.indhr .center .imgbox table {
	height: 100%;
}

.indhr .center .imgbox td {
	vertical-align: middle;
	text-align: center;
}

.indhr .center .imgbox td img {
	display: inline;
}

.indhr .center img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.indhr .center .imgbox img {
	width: 100%;
}

.indhr .circle {
	-webkit-animation: myCircle 40s infinite;
	-moz-animation: myCircle 40s infinite;
	animation: myCircle 40s infinite;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

@-webkit-keyframes myCircle {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes myCircle {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.indhr .right {
	position: absolute;
	top: 60px;
	right: 0;
	width: 30%;
}

.indhr .right .line {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 52px;
	width: 1px;
	height: 100%;
	border-right: 1px dashed #A1A1A1;
}

.hrlinks {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.hrlinks li {
	width: 100%;
	height: 60px;
	clear: both;
	margin: 30px 0;
}

.hrlinks .number {
	float: right;
	padding-left: 28px;
	margin-top: 20px;
}

.hrlinks .number {
	font-size: 0.875em;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	color: #b1b1b1;
	background-image: url(../images/imgindex/hrdot.png);
	background-repeat: no-repeat;
}

.hrlinks .icons {
	float: right;
	position: relative;
	margin: 0 10px;
	width: 60px;
	height: 60px;
}

.hrlinks .icons img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.hrlinks .icons img.hrsign_h {
	display: none;
}

.hrlinks .icons .after {
	opacity: 0;
	filter: alpha(opacity=0);
}

.hrlinks .title {
	float: right;
	color: #333;
	text-align: right;
}

.hrlinks .title h6 {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2;
	margin-top: 10px;
}

.hrlinks .title p {
	font-size: 0.875em;
	line-height: 2;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
}

.hrlinks li:hover .number {
	color: #DA251C;
	background-image: url(../images/imgindex/hrdot_h.png);
	transition: all 0.5s;
}

.hrlinks li:hover .title h6 {
	color: #DA251C;
	transition: all 0.5s;
}

.hrlinks li:hover .icons .hrsign {
	display: none;
	transition: all 0.5s;
}

.hrlinks li:hover .icons .hrsign_h {
	display: block;
	transition: all 0.5s;
}
/*.hrlinks li:hover .icons .before{opacity: 0; filter: alpha(opacity=0);}
.hrlinks li:hover .icons .after{opacity: 1; filter: alpha(opacity=100);}*/
@media screen and (max-width:1760px) {
	.indhr .right {
		top: 45px;
	}
}

@media screen and (max-width:1600px) {
	.indhr .right {
		top: 30px;
	}
}

@media screen and (max-width:1440px) {
	.indhr-tip p.p1 {
		display: none;
	}

	.indhr-tip p.p2 {
		display: block;
	}

	.indhr .right {
		top: 10px;
	}

	.hrlinks li {
		margin: 25px 0;
	}
}

@media screen and (max-width:1280px) {
	.indhr {
		padding: 60px 0;
	}

	.indhr .left {
		width: 28%;
	}

	.indhr .right {
		width: 28%;
	}

	.indhr-tip {
		padding-top: 12%;
		margin-bottom: 14%;
	}

	.indhr-tip p {
		line-height: 2;
	}

	.indhr .right {
		top: 0px;
	}

	.hrlinks li {
		margin: 20px 0;
	}
}

@media screen and (max-width:1100px) {
	.hrlinks .title p {
		letter-spacing: -1px;
	}
}

@media screen and (max-width:1024px) {
	.indhr {
		display: none;
	}
}

/********** floor4 phone **********/
.indhrmp {
	width: 100%;
	padding: 5% 0 5%;
	background-color: #F5F5F5;
	display: none;
}

.hrmp-tip {
	width: 100%;
	margin-bottom: 20px;
}

.hrmp-tip p {
	font-size: 0.875em;
	color: #333;
	text-indent: 2em;
}

.indhrlistmp {
	width: 100%;
}

.indhrlistmp li {
	float: left;
	width: 20%;
	text-align: center;
	position: relative;
}

.indhrlistmp li img {
	width: 60px;
	margin-bottom: 10px;
}

.indhrlistmp li p {
	font-size: 0.875em;
	color: #DA251C;
}

@media screen and (max-width:1024px) {
	.indhrmp {
		display: block;
	}
}

@media screen and (max-width:768px) {
	.indhrlistmp li {
		width: 33.3333%;
		margin-bottom: 20px;
	}
}

@media screen and (max-width:480px) {
	.indhrmp {
		padding-top: 8%;
	}

	.indhrlistmp li {
		margin-bottom: 14px;
	}

	.indhrlistmp li img {
		width: 50px;
		margin-bottom: 4px;
	}
}

/*------------------------------  内页  ------------------------------*/
/********** 内页公用 **********/
.pgtitWrap {
	width: 100%;
	padding: 36px 0 20px;
}

.pgtit {
	width: 100%;
}

.pgtit h2 {
	font-size: 2.625em;
	line-height: 1;
	font-weight: normal;
	color: #DA251C;
	margin-bottom: 8px;
}

.pgtit p {
	font-size: 1.875em;
	line-height: 1;
	font-weight: bold;
	color: #E6E6E6;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	text-transform: uppercase;
}

.pgtit .smallsentence {
	font-size: 1.125em;
	line-height: 1.6;
	color: #888;
}

@media screen and (max-width:1440px) {
	.pgtit h2 {
		font-size: 2.25em;
	}

	.pgtit p {
		font-size: 1.5em;
	}
}

@media screen and (max-width:768px) {
	.pgtitWrap {
		padding: 30px 0 16px;
	}
}

@media screen and (max-width:480px) {
	.pgtit h2 {
		font-size: 1.875em;
	}

	.pgtit p {
		font-size: 1.25em;
	}
}
/*-- subnav --*/
.subnav {
	width: 100%;
	height: 75px;
	background-color: #FFF;
	border-bottom: 1px solid #E6E6E6;
}

.subnav ul {
	width: 100%;
}

.subnav ul li {
	float: left;
	margin-right: 20px;
}

.subnav li a {
	display: block;
	height: 74px;
	padding: 0 18px;
	font-size: 1em;
	line-height: 74px;
	color: #666;
}

.subnav li a:hover, .subnav li.current a {
	color: #DA251C;
}

.subnav li:after {
	content: "";
	display: block;
	margin: 0 auto;
	position: relative;
	height: 2px;
	width: 0;
	background: #DA251C;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.subnav li:hover:after, .subnav li.current:after {
	width: 100%;
}

@media screen and (max-width:1440px) {
	.subnav ul li {
		margin-right: 18px;
	}

	.subnav li a {
		padding: 0 15px;
	}
}

@media screen and (max-width:1280px) {
	.subnav ul li {
		margin-right: 14px;
	}

	.subnav li a {
		padding: 0 12px;
	}

	#pg10 .subnav ul li, #pg11 .subnav ul li, #pg12 .subnav ul li, #pg13 .subnav ul li, #pg14 .subnav ul li, #pg15 .subnav ul li, #pg16 .subnav ul li, #pg17 .subnav ul li, #pg18 .subnav ul li, #pg19 .subnav ul li {
		margin-right: 8px;
	}
}

@media screen and (max-width:1024px) {
	.subnav {
		display: none;
	}
}

/*-- subnav页面定位 --*/
#pg10 #s0 a, #pg11 #s1 a, #pg12 #s2 a, #pg13 #s3 a, 
#pg14-0 #s4 a, #pg15-0 #s5 a, #pg15-1 #s5 a, #pg15-2 #s5 a, #pg15-3 #s5 a, #pg15-4 #s5 a, #pg15-5 #s5 a, #pg15-6 #s5 a, 
#pg50 #s0 a, #pg51 #s1 a, #pg52 #s2 a, #pg53 #s3 a, #pg54 #s4 a {
	color: #DA251C;
}

#pg10 #s0:after, #pg11 #s1:after, #pg12 #s2:after, #pg13 #s3:after, #pg14 #s4:after, #pg15 #s5:after, #pg16 #s6:after, #pg17 #s7:after, #pg18 #s8:after, #pg19 #s9:after,
#pg50 #s0:after, #pg51 #s1:after, #pg52 #s2:after, #pg53 #s3:after, #pg54 #s4:after {
	width: 100%;
}

/*-- subnav2 三分级--*/
.subnav2 {
	width: 100%;
	height: auto;
	padding-top: 40px;
}

.subnav2 ul {
	width: 100%;
}

.subnav2 ul li {
	display: inline-block;
	width: 136px;
	height: 48px;
	margin: 0 10px 20px;
	transition: all 0.5s;
}

.subnav2 li a {
	display: block;
	width: 100%;
	height: 44px;
	background-color: #DDD;
	border-radius: 30px;
	font-size: 0.875em;
	line-height: 44px;
	color: #666;
	text-align: center;
}

.subnav2 li:hover a, .subnav2 li.current a {
	background-color: #666;
	color: #FFF;
}

@media screen and (max-width:1024px) {
	.subnav2 {
		display: none;
	}
}

#pg14-0 #s2-0 a,
#pg15-0 #s2-0 a, #pg15-1 #s2-1 a, #pg15-2 #s2-2 a, #pg15-3 #s2-3 a, #pg15-4 #s4-0 a, #pg15-5 #s2-5 a, #pg15-6 #s2-6 a {
	background-color: #666;
	color: #FFF;
}



/*-- 手机 pgnamemp subnavmp --*/
.pgnamemp-wrap {
	width: 100%;
	height: 48px;
	background-color: #DA251C;
	position: relative;
	display: none;
}

.pgnamemp {
	width: 100%;
	height: 48px;
	background: -webkit-linear-gradient(left, #DA251C, #DA251C);
	background: -moz-linear-gradient(left, #DA251C, #DA251C);
	background: -0-linear-gradient(left, #DA251C, #DA251C);
	background: linear-gradient(left, #DA251C, #DA251C);
	position: relative;
	clear: both;
	z-index: 1;
}

.pgnamemp span {
	display: block;
	width: 90%;
	margin: 0 auto;
	font-size: 1.125em;
	line-height: 48px;
	font-weight: bold;
	color: #FFF;
}

.subnavmp-sign {
	position: absolute;
	top: 15px;
	right: 5%;
	z-index: 2;
}

.subnavmp-sign span {
	font-size: 24px;
	color: #FFF;
}

.subnavmp-btn {
	width: 20%;
	height: 48px;
	position: absolute;
	right: 0;
	top: 0;
	display: none;
}

.subnavmp-list {
	width: 100%;
	text-align: left;
	position: absolute;
	right: 0;
	top: 48px;
	border-top: 1px solid #DDD;
	z-index: 9999;
	display: none;
}

.subnavmp-list li a.tit, .subnavmp-list li h3 {
	display: inline-block;
	width: 100%;
	font-weight: normal;
	font-size: 1.125em;
	line-height: 48px;
	color: #333;
	text-align: center;
	border-bottom: 1px solid #DDD;
	background-color: #EEE;
	cursor: pointer;
}

.subnavmp-list li a.tit:hover, .subnavmp-list li h3:hover {
	background-color: #605D5C;
	color: #FFF;
}

.subnavmp2 {
	display: none;
}

.subnavmp2 a {
	display: block;
	width: 100%;
	line-height: 48px;
	color: #666;
	background: #FFF;
	border-bottom: 1px solid #EEE;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
}

@media screen and (max-width:1024px) {
	.pgnamemp-wrap {
		display: block;
	}
}

/********** 内页其他公用 **********/
.do-more {
	display: none;
	width: 100%;
	text-align: center;
	margin: 24px auto;
}

.do-more a {
	display: block;
	width: 40%;
	height: 44px;
	margin: 0 auto;
	background-color: #DA251C;
	border-radius: 10px;
	font-size: 1.25em;
	line-height: 44px;
	color: #FFF;
}

.do-more:hover a {
	text-decoration: underline;
}

.to-close {
	width: 100%;
	height: 36px;
	margin: 0px 20px 30px 0;
	line-height: 36px;
	color: #DA251C;
	text-align: right;
}

.to-close a {
	padding: 0 4px;
	color: #DA251C;
}

.to-close:hover a {
	color: #DA251C;
	text-decoration: underline;
}

.go-back {
	width: 100%;
	height: 36px;
	margin: 0px 20px 30px 0;
	line-height: 36px;
	color: #666;
	text-align: right;
}

.go-back a {
	padding: 0 4px;
	color: #DA251C;
}

.go-back:hover a {
	color: #DA251C;
	text-decoration: underline;
}

.go-jump {
	position: relative;
	padding-top: 0px;
}

.go-jump div {
	line-height: 42px;
	margin-top: 10px;
	padding-left: 20px;
	background: #F5F5F5;
	font-size: 14px;
	color: #333;
}


/*-- 内页banner --*/
/*.banner-inside{ width:100%; height:300px; background-color:#000; overflow:hidden; text-align:center;}
.banner-ab{ background:url(../images/banner/banner_ab.jpg) top center no-repeat;}
.banner-inside-phone{ position:relative; width:100%; overflow:hidden; text-align:center; vertical-align:middle; display:none;}
.banner-inside-phone img{ width:100%;}
@media screen and (max-width:980px) {
	.banner-inside{ display:none;}
	.banner-inside-phone{ display:block;}
	}*/
	/*-- 内页banner2 --*/
.inner-banner {
	position: relative;
	text-align: center;
	color: #FFF;
	overflow: hidden;
}

.inner-banner .bannerpic {
	display: block;
}

.inner-banner .bannerpic-s {
	display: none;
}

.inner-banner img {
	width: 100%;
	display: block;
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
	transition: all 5s ease-out;
	-webkit-transition: all 5s ease-out;
	-o-transition: all 5s ease-out;
	-moz-transition: all 5s ease-out;
	-ms-transition: all 5s ease-out;
}

.inner-banner img.animated {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.inner-banner .txt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: left;
}

.inner-banner .tb {
	display: table;
	height: 100%;
	width: 100%;
}

.inner-banner .tb-c {
	display: table-cell;
	vertical-align: middle;
}

.inner-banner h3 {
	font-size: 3.375em;
	line-height: 1.5;
	font-weight: bold;
	padding: 0 100px;
}

.inner-banner h3:after {
	position: relative;
	content: "";
	display: block;
	margin: 20px 0;
	height: 5px;
	width: 80px;
	background: #FFFFFF;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.inner-banner p {
	font-size: 2.25em;
	line-height: 1.5;
	font-weight: bold;
	padding: 0 100px;
}

@media screen and (max-width:1440px) {
	.inner-banner h3 {
		font-size: 3em;
	}

	.inner-banner h3:after {
		margin: 18px 0;
	}

	.inner-banner p {
		font-size: 2em;
	}
}

@media screen and (max-width:1280px) {
	.inner-banner h3 {
		font-size: 2.5em;
		line-height: 1.4;
	}

	.inner-banner h3:after {
		margin: 18px 0;
	}

	.inner-banner p {
		font-size: 1.8em;
		line-height: 1.4;
	}
}

@media screen and (max-width:1024px) {
	.inner-banner .bannerpic {
		display: none;
	}

	.inner-banner .bannerpic-s {
		display: block;
	}

	.inner-banner .txt {
		text-align: center;
	}

	.inner-banner h3 {
		font-size: 3em;
		padding: 0 20px;
	}

	.inner-banner h3:after {
		margin: 16px auto;
		height: 4px;
	}

	.inner-banner p {
		font-size: 2em;
		padding: 0 20px;
	}
}

@media screen and (max-width:768px) {
	.inner-banner h3 {
		font-size: 2.5em;
	}

	.inner-banner h3:after {
		height: 3px;
	}

	.inner-banner p {
		font-size: 1.5em;
	}
}

@media screen and (max-width:640px) {
	.inner-banner h3 {
		line-height: 1.2;
		font-size: 2em;
	}

	.inner-banner h3:after {
		margin: 14px auto;
		height: 3px;
	}

	.inner-banner p {
		line-height: 1.2;
		font-size: 1em;
	}
}

@media screen and (max-width:480px) {
	.inner-banner h3 {
		font-size: 1.875em;
	}

	.inner-banner h3:after {
		margin: 10px auto;
		height: 2px;
	}

	.inner-banner p {
		font-size: 1em;
	}
}

@media screen and (max-width:320px) {
	.inner-banner h3 {
		font-size: 1.5em;
	}

	.inner-banner h3:after {
		margin: 6px auto;
	}
}
	/*-- //内页banner2 --*/

	/********** main **********/
.main {
	width: 100%;
	background: #F5F5F5;
	min-height: 400px;
}

.main2 {
	width: 100%;
	background: #FFF;
	min-height: 400px;
}

.content {
	padding-bottom: 40px;
}

	/********** 集团简介 **********/
	/*-- 关于路商 --*/
.profile {
	width: 100%;
}

.profile .txt-l {
	float: left;
	width: 46%;
}

.profile .txt-r {
	float: right;
	width: 46%;
}

.profile .txt-l p, .profile .txt-r p {
	font-size: 0.875em;
	color: #666;
	line-height: 2;
	margin-bottom: 1em;
}

@media screen and (max-width:1024px) {
	.profile .txt-l {
		width: 100%;
	}

	.profile .txt-r {
		float: left;
		width: 100%;
	}
}

.profile-txt {
	width: 100%;
	margin-bottom: 20px;
}

.profile-txt p {
	font-size: 0.875em;
	color: #666;
	line-height: 2;
	margin-bottom: 1em;
	text-indent: 2em;
}

.abqrcode {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}

.abqrcode img {
	border: 1px solid #000;
	margin: 0 auto 10px;
	width: 200px;
}

.abqrcode p {
	font-size: 1em;
	color: #666;
	line-height: 2;
}

.ablinks {
	width: 100%;
	padding-top: 20px;
}

.ablinks ul {
	width: 100%;
}

.ablinks li {
	float: left;
	width: 25%;
	height: 0;
	padding-bottom: 18%;
	position: relative;
	overflow: hidden;
}

.ablinks li img {
	width: 100%;
}

.ablinks li .txt {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
}

.ablinks li:hover .txt {
	background: rgba(218,37,28,.8);
}

.ablinks li .txt span {
	display: block;
	width: 40%;
	height: 40px;
	border-top: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -20%;
	font-size: 0.875em;
	line-height: 40px;
	color: #FFF;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0);
}

.ablinks li:hover .txt span {
	opacity: 1;
	filter: alpha(opacity=100);
}

@media screen and (max-width:1440px) {
	.ablinks li .txt span {
		width: 50%;
		margin-left: -25%;
	}
}

@media screen and (max-width:1024px) {
	.ablinks li {
		width: 50%;
		padding-bottom: 36%;
	}
}
	/*-- 管理团队 --*/
.team {
	width: 100%;
	text-align: center;
}

.team img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.team .teamimg2 img {
	margin-bottom: 20px;
}

.team .teamimg2 {
	display: none;
}

@media screen and (max-width:1024px) {
	.team .teamimg1 {
		display: none;
	}

	.team .teamimg2 {
		display: block;
	}
}
	/*-- 路商志 --*/
.culture {
	width: 100%;
	padding-bottom: 20px;
}

.culimg01 {
	width: 100%;
	margin-bottom: 30px;
}

.culimg01 img {
	max-width: 100%;
}

.culture dl {
	width: 100%;
}

.culture dt {
	font-size: 1.5em;
	color: #DA251C;
	margin-bottom: 10px;
}

.culture dd {
	float: left;
	margin-right: 20px;
	font-size: 0.875em;
	color: #666;
	line-height: 2;
}
	/*-- 路商之歌 --*/
.song {
	width: 100%;
	padding-bottom: 20px;
	text-align: center;
}

.songimg01 {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.songimg01 img {
	max-width: 100%;
}

.song h3 {
	font-size: 1.5em;
	color: #DA251C;
	margin-bottom: 10px;
}

.song p {
	font-size: 0.875em;
	color: #666;
	line-height: 2;
}
	/*-- 宣誓词 --*/
.oath {
	width: 100%;
}

.oathimg01 {
	float: left;
	width: 50%;
	text-align: center;
}

.oathimg01 img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.oathtxt {
	float: right;
	width: 50%;
	text-align: center;
}

.oathtxt-cont {
	width: 270px;
	margin: 0 auto;
}

.oathtxt h3 {
	font-size: 1.5em;
	color: #333;
	margin-bottom: 14px;
}

.oathtxt p {
	font-size: 0.875em;
	color: #666;
	line-height: 2;
	text-align: left;
}

.oathtxt p.last {
	text-align: right;
}

@media screen and (max-width:1024px) {
	.oathimg01 {
		width: 100%;
		margin-bottom: 24px;
	}

	.oathtxt {
		float: left;
		width: 100%;
	}
}
	/*-- 路商LOGO --*/
.lslogo {
	width: 100%;
	padding-bottom: 20px;
}

.lslogoimg01 {
	float: left;
	width: 50%;
	text-align: center;
}

.lslogoimg01 img {
	max-width: 100%;
	margin: 0 auto 30px;
}

.lslogoimg01 p {
	font-size: 0.875em;
	color: #333;
	line-height: 2;
	text-align: center;
}

.lslogotxt {
	float: right;
	width: 50%;
	padding-top: 30px;
}

.lslogotxt h3 {
	font-size: 1.5em;
	color: #333;
	margin-bottom: 14px;
}

.lslogotxt p {
	font-size: 0.875em;
	color: #666;
	line-height: 2;
}

.lslogo label {
	color: #DA251C;
}

@media screen and (max-width:1600px) {
	.lslogotxt {
		text-align: center;
	}
}

@media screen and (max-width:1024px) {
	.lslogoimg01 {
		width: 100%;
	}

	.lslogotxt {
		float: left;
		width: 100%;
	}
}
	/*-- 路商旗帜 --*/
.flag {
	width: 100%;
}

.flagimg01 {
	float: left;
	width: 40%;
}

.flagimg01 img {
	max-width: 100%;
}

.flagtxt {
	float: right;
	width: 60%;
}

.flagtxt1 {
	margin-bottom: 30px;
}

.flagtxt h3 {
	font-size: 1.5em;
	color: #DA251C;
	font-weight: normal;
	margin-bottom: 14px;
}

.flagtxt p {
	font-size: 0.875em;
	color: #666;
	line-height: 2;
}

@media screen and (max-width:1800px) {
	.flagimg01 {
		width: 44%;
	}

	.flagtxt {
		width: 56%;
	}
}

@media screen and (max-width:1440px) {
	.flagimg01 {
		width: 46%;
	}

	.flagtxt {
		width: 50%;
	}
}

@media screen and (max-width:1280px) {
	.flagimg01 {
		width: 44%;
	}

	.flagtxt {
		width: 50%;
	}
}

@media screen and (max-width:1024px) {
	.flagimg01 {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}

	.flagtxt {
		width: 100%;
	}
}
	/*-- 图腾 --*/
.totem {
	width: 100%;
}

.totem1, .totem2, .totem3 {
	float: left;
	width: 28%;
	text-align: center;
}

.totem2 {
	margin: 0 8%;
}

.totem img {
	max-width: 90%;
	margin-bottom: 20px;
}

.totem h6 {
	font-size: 1.25em;
	color: #333;
	font-weight: normal;
	margin-bottom: 14px;
}

.totem p {
	font-size: 0.875em;
	color: #666;
	line-height: 2;
	text-align: left;
	text-indent: 2em;
}

@media screen and (max-width:1280px) {
	.totem1, .totem2, .totem3 {
		width: 26%;
	}

	.totem2 {
		margin: 0 11%;
	}
}

@media screen and (max-width:1024px) {
	.totem1, .totem2, .totem3 {
		width: 100%;
		margin-bottom: 5%;
	}

	.totem2 {
		margin-left: auto;
		margin-right: auto;
	}
}
	/*-- 发展史 --*/
.history {
	width: 100%;
}

.history div {
	width: 100%;
}

.history span {
	display: block;
	font-size: 1.25em;
	line-height: 1.5;
	color: #DA251C;
	text-indent: 30px;
	margin-bottom: 6px;
}

.history p {
	padding: 15px 30px;
	background-color: #FFF;
	font-size: 0.875em;
	color: #666;
	line-height: 30px;
	margin-bottom: 20px;
}
	/*-- 路商风貌 --*/
.photos {
	width: 100%;
	padding-bottom: 60px;
}

.photos ul {
	width: 103%;
}

.photos li {
	float: left;
	width: 22%;
	height: auto;
	margin: 0px 3% 3% 0;
	transition: all 0.5s;
}

.photo-img {
	width: 100%;
	height: 0;
	padding-bottom: 66.66%;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
}

.photo-img img {
	width: 100%;
}

.photo-name {
	display: block;
	width: 90%;
	height: 60px;
	padding: 0 5%;
	font-size: 0.875em;
	line-height: 60px;
	color: #666;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	cursor: pointer;
}

.photos li:hover {
	-webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.photos li:hover .photo-name {
	color: #DA251C;
}

@media screen and (max-width:1280px) {
	.photos ul {
		width: 103.3333%;
	}

	.photos li {
		width: 30%;
		margin-right: 3.3333%;
		margin-bottom: 3%;
	}
}

@media screen and (max-width:1024px) {
	.photos {
		padding-top: 5%;
	}

	.photos ul {
		width: 104%;
	}

	.photos li {
		width: 46%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
}

	/********** 董事长寄语 **********/
.speech {
	font-size: 0.875em;
	line-height: 1.5;
}

.speech p {
	text-indent: 2em;
	margin-bottom: 6px;
}

.speech p.last {
	text-align: right;
}

	/********** 致信 **********/
.letter {
	width: 100%;
	padding: 60px 0;
	font-size: 0.875em;
	line-height: 1.5;
}

.letter h6 {
	font-weight: normal;
	margin-bottom: 12px;
}

.letter p {
	text-indent: 2em;
	margin-bottom: 6px;
}

.letter p.last {
	text-align: right;
}

	/********** 新闻中心 **********/
	/*-- 新闻列表 --*/
.newstop {
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
}

@media screen and (max-width:1440px) {
	.newstop {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media screen and (max-width:1024px) {
	
	.main2,.newstop {
		display: none;
	}
}

.newsimgs {
	float: left;
	width: 48%;
	height: auto;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	position: relative;
}

.newsimgs-img {
	width: 100%;
	height: 0;
	padding-bottom: 66.66%;
	overflow: hidden;
	position: relative;
}

.newsimgs-img span {
	width: 100%;
	height: 70px;
	background: rgba(318,37,28,.8);
	position: absolute;
	bottom: 0;
}

.newsimgs-img span h3 {
	width: 60% font-size:1em;
	color: #FFF;
	line-height: 70px;
	font-weight: normal;
	text-align: left;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0 20px;
}

.newsimgs-img img {
	width: 100%;
}

@media screen and (max-width:1440px) {
	.newsimgs-img span {
		height: 60px;
	}

	.newsimgs-img span h3 {
		line-height: 60px;
	}
}

.newsimgs .swiper-button-prev, .newsimgs .swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto
}

.newsimgs .swiper-button-prev.swiper-button-black, .newsimgs .swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.newsimgs .swiper-button-prev.swiper-button-white, .newsimgs .swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.newsimgs .swiper-button-next, .newsimgs .swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto
}

.newsimgs .swiper-pagination-bullet {
	width: 12px !important;
	height: 12px !important;
}

.newsimgs .swiper-pagination-bullet-active {
	opacity: 1;
	background: #FFFFFF !important;
}

.newsimgs-swiper-pagination {
	text-align: right !important;
}

.swiper-container-horizontal>.swiper-pagination.newsimgs-swiper-pagination {
	bottom: 25px;
}

.swiper-container-horizontal>.swiper-pagination.newsimgs-swiper-pagination .swiper-pagination-bullet {
	margin: 0 20px 0 -10px;
}

.newsimgs-container {
	margin-left: auto;
	margin-right: auto;
}

.newsimgs-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.newsnew {
	float: right;
	width: 48%;
}

.newsnew li {
	width: 100%;
	border-bottom: 1px solid #E5E5E5;
	padding-top: 6px;
	padding-bottom: 20px;
	margin-bottom: 14px;
}

.newsnew li h3 {
	display: block;
	width: 100%;
	height: 28px;
	font-size: 1em;
	font-weight: normal;
	color: #333;
	line-height: 28px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.newsnew li span {
	display: block;
	font-size: 0.875em;
	color: #A5A5A5;
	line-height: 24px;
	margin: 2px 0;
}

.newsnew li p {
	display: block;
	width: 100%;
	height: 48px;
	font-size: 0.875em;
	line-height: 24px;
	color: #666;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

@media screen and (max-width:1600px) {
	.newsnew li {
		padding-top: 6px;
		padding-bottom: 16px;
		margin-bottom: 10px;
	}
}

@media screen and (max-width:1440px) {
	.newsnew li {
		padding-top: 0px;
		padding-bottom: 8px;
		margin-bottom: 8px;
	}

	.newsnew li h3 {
		line-height: 20px;
	}

	.newsnew li span {
		margin: 0px 0;
	}
}

@media screen and (max-width:1280px) {
	.newsnew li {
		padding-top: 0px;
		padding-bottom: 10px;
		margin-bottom: 12px;
	}

	.newsnew li h3 {
		line-height: 24px;
	}

	.newsnew li p {
		height: 24px;
	}
}

.newslist {
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
}

.newslist ul {
	width: 102%;
}

.newslist li {
	float: left;
	width: 23%;
	margin-right: 2%;
	margin-bottom: 2%;
	padding: 34px 30px 36px;
	background: #FFF;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.news-img {
	width: 100%;
	height: 0;
	padding-bottom: 66.66%;
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
}

.news-img img {
	width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-ms-transition: all 1s linear;
	-o-transition: all 1s linear;
	transition: all 1s linear;
}

.newslist li:hover .news-img img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.news-txt h3 {
	display: block;
	width: 100%;
	height: 60px;
	font-size: 1.125em;
	font-weight: normal;
	color: #DA251C;
	line-height: 30px;
	margin-bottom: 8px;
	overflow: hidden;
	white-space: normal;
	text-overflow: ellipsis;
}

.news-txt span {
	display: block;
	font-size: 0.875em;
	color: #999;
	line-height: 24px;
	margin-bottom: 16px;
}

.news-txt p {
	width: 100%;
	height: 96px;
	font-size: 0.875em;
	line-height: 24px;
	color: #666;
	line-height: 24px;
	margin-bottom: 28px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.news-txt label {
	font-size: 0.875em;
	color: #333;
}

.newslist li:hover {
	background: #DA251C;
	transition: all 0.5s;
}

.newslist li:hover .news-txt h3 {
	color: #FFF;
}

.newslist li:hover .news-txt span {
	color: rgba(255,255,255,0.6);
}

.newslist li:hover .news-txt p {
	color: rgba(255,255,255,0.8);
}

.newslist li:hover .news-txt label {
	color: #FFF;
}

@media screen and (max-width:1440px) {
	.newslist ul {
		width: 103.3333%;
	}

	.newslist li {
		width: 30%;
		margin-right: 3.3333%;
		margin-bottom: 3%;
	}
}

@media screen and (max-width:1024px) {
	.newslist {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.newslist ul {
		width: 104%;
	}

	.newslist li {
		width: 46%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
}

@media screen and (max-width:640px) {
	.newslist {
		padding-top: 30px;
		padding-bottom: 40px;
	}

	.newslist ul {
		width: 100%;
	}

	.newslist li {
		width: 100%;
		margin-right: 0%;
	}
}

	/*-- 新闻正文 --*/
.newsdtl {
	width: 100%;
	padding: 60px 0;
}

.newsdetail {
	width: 94%;
	padding: 4% 3%;
}

.newsdetail-title {
	margin: 0px 0 20px;
	text-align: center;
	font-size: 1.25em;
	font-weight: bold;
	line-height: 2em;
	color: #333;
}

.newsdetail-time {
	width: 100%;
	background-color: #F5F5F5;
	padding: 14px 0;
	font-size: 0.875em;
	line-height: 1em;
	color: #666;
	text-align: center;
}

.newsdetail-time label {
	margin-right: 2em;
}

.newsdetail-cont {
	margin-top: 30px;
	font-size: 0.95em;
	line-height: 2;
}

.newsdetail-cont img {
	max-width: 100%;
}

@media screen and (max-width:1024px) {
	.newsdtl {
		padding: 50px 0;
	}
}

@media screen and (max-width:640px) {
	.newsdtl {
		padding: 40px 0;
	}

	.newsdetail-time label {
		display: none;
	}
}

	/********** 成员企业 **********/
	/*-- 企业列表页 --*/
.members {
	width: 100%;
}

.mbritem1 .mbritem-l {
	float: left;
}

.mbritem1 .mbritem-r {
	float: right;
}

.mbritem2 .mbritem-l {
	float: right;
}

.mbritem2 .mbritem-r {
	float: left;
}

.mbritem-l {
	width: 50%;
	height: 0;
	padding-bottom: 26%;
	position: relative;
}

.mbritem-txt {
	padding: 100px 25% 0 20%;
}

.mbritem-txt h3 {
	font-size: 2.625em;
	color: #DA251C;
	line-height: 1;
	font-weight: normal;
	margin-bottom: 16px;
}

.mbritem-txt p {
	font-size: 1.125em;
	color: #888;
	line-height: 1;
	font-weight: normal;
	margin-bottom: 24px;
}

.mbritem-txt span {
	font-size: 0.875em;
	color: #666;
	line-height: 1.8;
	height: 96px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	margin-bottom: 24px;
}

.mbritem-txt a label {
	font-size: 1em;
	color: #000;
	line-height: 30px;
}

.mbritem-txt a i {
	width: 26px;
	height: 26px;
	font-size: 0.875em;
	line-height: 26px;
	color: #CCC;
	margin-left: 1em;
	text-align: center;
	border: 2px solid #CCC;
	border-radius: 50%;
}

.mbritem-txt a:hover label {
	color: #DA251C;
	cursor: pointer;
}

.mbritem-txt a:hover i {
	color: #999;
	border-color: #999;
}

.mbritem-r {
	width: 50%;
	height: 0;
	padding-bottom: 26%;
	position: relative;
}

.mbritem-img {
	width: 100%;
	overflow: hidden;
}

.mbritem-img img {
	width: 100%;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-transition: all 0.6s linear;
	-moz-transition: all 0.6s linear;
	-ms-transition: all 0.6s linear;
	-o-transition: all 0.6s linear;
	transition: all 0.6s linear;
}

.mbritem:hover .mbritem-img img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.mbritem-img .mask {
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(218,37,28,.8);
	position: absolute;
	opacity: 0;
	filter: alpha(opacity=0);
	z-index: 1;
}

.mbritem-img .mask span {
	display: block;
	width: 200px;
	height: 44px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	left: 50%;
	margin-left: -100px;
}

.mbritem-img .mask label {
	display: inline-block;
	font-size: 1.5em;
	line-height: 44px;
	color: #FFF;
}

.mbritem-img .mask span i {
	display: inline-block;
	font-size: 1.25em;
	line-height: 40px;
	color: #FFF;
	margin-left: 1em;
	width: 40px;
	height: 40px;
	border: 2px solid #FFF;
	border-radius: 50%;
	transform: rotate(90deg);
}

.mbritem:hover .mbritem-img .mask {
	opacity: 1;
	filter: alpha(opacity=100);
	transition: all 0.5s;
}

@media screen and (max-width:1740px) {
	.mbritem-txt {
		padding: 80px 25% 0 20%;
	}
}

@media screen and (max-width:1600px) {
	.mbritem-txt {
		padding: 72px 16% 0 16%;
	}
}

@media screen and (max-width:1440px) {
	.mbritem-txt {
		padding: 54px 12% 0 12%;
	}

	.mbritem-txt h3 {
		font-size: 2em;
	}
}

@media screen and (max-width:1280px) {
	.mbritem-txt {
		padding: 30px 8% 0 8%;
	}

	.mbritem-txt h3 {
		margin-bottom: 16px;
	}

	.mbritem-txt p {
		margin-bottom: 16px;
	}

	.mbritem-txt span {
		height: 72px;
		-webkit-line-clamp: 3;
		margin-bottom: 20px;
	}
}

@media screen and (max-width:1024px) {
	.mbritem1 .mbritem-r {
		float: left;
	}

	.mbritem2 .mbritem-l {
		float: left;
	}

	.mbritem-r {
		width: 100%;
		padding-bottom: 52%;
	}

	.mbritem-l {
		width: 100%;
		height: auto;
		padding-bottom: 0;
	}

	.mbritem-txt {
		padding: 40px 10%;
	}

	.mbritem-txt span {
		height: auto;
		-webkit-line-clamp: 10;
		margin-bottom: 24px;
	}

	.mbritem-txt span {
		margin-bottom: 24px;
	}
}

@media screen and (max-width:768px) {
	.mbritem-txt h3 {
		font-size: 1.875em;
	}
}
	/*-- 企业介绍页 --*/
.mbrinfo {
	width: 100%;
	padding-bottom: 40px;
}

.mbrinfo-l {
	float: left;
	width: 50%;
	height: 0;
	padding-bottom: 26%;
	background-color: #FFF;
	position: relative;
}

.mbrinfo-txt {
	padding: 60px 100px 0 60px;
}

.mbrinfo-txt h3 {
	font-size: 1.5em;
	color: #DA251C;
	line-height: 1;
	font-weight: normal;
	margin-bottom: 24px;
}

.mbrinfo-txt h6 {
	font-size: 1.125em;
	color: #333;
	line-height: 1;
	font-weight: normal;
	margin-bottom: 8px;
}

.mbrinfo-txt p {
	font-size: 0.875em;
	color: #666;
	line-height: 1.8;
}

.mbrinfo-txt p.p1 {
	height: 96px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	margin-bottom: 24px;
}

.mbrinfo-txt p.p2 {
	height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.mbrinfo-l a {
	display: block;
	width: 136px;
	height: 40px;
	background: #DA251C;
	font-size: 1em;
	line-height: 40px;
	color: #FFF;
	text-align: center;
	position: absolute;
	bottom: 60px;
	left: 60px;
}

.mbrinfo-l a i {
	margin-left: 1em;
}

.mbrinfo-r {
	float: right;
	width: 50%;
	height: 0;
	padding-bottom: 26%;
	position: relative;
}

.mbrinfo-img {
	width: 100%;
	overflow: hidden;
}

.mbrinfo-img img {
	width: 100%;
}

.mbrinfo-img .mask {
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(218,37,28,.8);
	position: absolute;
	opacity: 0;
	filter: alpha(opacity=0);
}

.mbrinfo-img .mask span {
	display: block;
	width: 200px;
	height: 44px;
	text-align: center;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	left: 50%;
	margin-left: -100px;
}

.mbrinfo-img .mask label {
	display: inline-block;
	font-size: 1.5em;
	line-height: 44px;
	color: #FFF;
}

.mbrinfo-img .mask span i {
	display: inline-block;
	font-size: 1.25em;
	line-height: 40px;
	color: #FFF;
	margin-left: 1em;
	width: 40px;
	height: 40px;
	border: 2px solid #FFF;
	border-radius: 50%;
	transform: rotate(90deg);
}

.mbrinfo:hover .mbrinfo-img .mask {
	opacity: 1;
	filter: alpha(opacity=100);
	transition: all 0.5s;
}

.mbrinfo .btn {
	display: inline-block;
	width: 136px;
	height: 40px;
	vertical-align: middle;
	text-decoration: none;
	cursor: pointer;
	background: #DA251C;
	color: #FFF;
	font-size: 1em;
	line-height: 40px;
	overflow: hidden;
	z-index: 1;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.mbrinfo:hover .btn {
	text-decoration: none;
}

.mbrinfo .btn:before {
	position: absolute;
	display: block;
	content: "";
	left: -20px;
	right: -20px;
	bottom: 0;
	top: 0;
	background: rgba(60,60,60,1);
	z-index: -1;
	-moz-transform: translate3d(0, 100%, 0);
	-webkit-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	-ms-transform: translateY(100%);
	transform: translate3d(0, 100%, 0);
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.mbrinfo:hover .btn:before {
	-moz-transform: translate3d(0, 0, 0) skewX(-30deg);
	-webkit-transform: translate3d(0, 0, 0) skewX(-30deg);
	-o-transform: translate3d(0, 0, 0) skewX(-30deg);
	-ms-transform: translateY(0) skewX(-30deg);
	transform: translate3d(0, 0, 0) skewX(-30deg);
}

@media screen and (max-width:1880px) {
	.mbrinfo-txt {
		padding: 50px 100px 0 60px;
	}

	.mbrinfo-l a {
		bottom: 50px;
	}
}

@media screen and (max-width:1740px) {
	.mbrinfo-txt {
		padding: 40px 50px 0 50px;
	}

	.mbrinfo-l a {
		bottom: 40px;
		left: 50px;
	}
}

@media screen and (max-width:1600px) {
	.mbrinfo-txt {
		padding: 24px 36px 0 36px;
	}

	.mbrinfo-txt h3 {
		margin-bottom: 12px;
	}

	.mbrinfo-txt p.p1 {
		margin-bottom: 20px;
	}

	.mbrinfo-l a {
		bottom: 24px;
		left: 36px;
	}
}

@media screen and (max-width:1440px) {
	.mbrinfo-txt p.p1 {
		height: 72px;
		-webkit-line-clamp: 3;
		margin-bottom: 24px;
	}

	.mbrinfo-txt p.p2 {
		height: 24px;
		-webkit-line-clamp: 1;
	}
}

@media screen and (max-width:1280px) {
	.mbrinfo-txt h6 {
		display: none;
	}

	.mbrinfo-txt p.p2 {
		display: none;
	}
}

@media screen and (max-width:1024px) {
	.mbrinfo-r {
		float: left;
		width: 100%;
		padding-bottom: 52%;
	}

	.mbrinfo-l {
		width: 100%;
		height: auto;
		padding-bottom: 40px;
	}

	.mbrinfo-txt {
		padding: 30px 60px 20px;
	}

	.mbrinfo-txt h6 {
		display: block;
	}

	.mbrinfo-txt p.p1 {
		height: auto;
		-webkit-line-clamp: 10;
		margin-bottom: 24px;
	}

	.mbrinfo-txt p.p2 {
		height: auto;
		-webkit-line-clamp: 5;
		display: block;
	}

	.mbrinfo-l a {
		position: relative;
		bottom: 0;
		left: 60px;
	}
}

@media screen and (max-width:768px) {
	.mbrinfo-txt {
		padding: 30px 40px 20px;
	}

	.mbrinfo-l a {
		left: 40px;
	}
}
	
	/********** 集团慈善 **********/
	/*-- 慈善理念 --*/
.ideaWrap {
	width: 100%;
	height: 440px;
	padding: 60px 0 0px;
	background: url(../images/imginside/ideabg.jpg) right center no-repeat;
}

.idea {
	width: 100%;
	padding-top: 30px;
}

.idea h6 {
	font-size: 1.125em;
	color: #333;
	font-weight: normal;
	margin-bottom: 20px;
}

.idea p {
	font-size: 0.875em;
	color: #666;
	margin-bottom: 12px;
	width: 40%;
}

@media screen and (max-width:1440px) {
	.idea p {
		width: 45%;
	}
}

@media screen and (max-width:1280px) {
	.idea p {
		width: 50%;
	}
}

@media screen and (max-width:1024px) {
	.ideaWrap {
		height: auto;
		padding-bottom: 60px;
		background: none;
	}

	.idea p {
		width: 100%;
	}
}
	/*-- 公益活动 --*/
.actlistWrap {
	width: 100%;
	padding: 60px 0 60px;
}

.actlist {
	width: 100%;
	padding-top: 24px;
}

.actlist ul {
	width: 102%;
}

.actlist li {
	float: left;
	width: 23%;
	margin-right: 2%;
	margin-bottom: 2%;
}

.act-img {
	width: 100%;
	height: 0;
	padding-bottom: 66.66%;
	position: relative;
	overflow: hidden;
}

.act-img img {
	width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.6s linear;
	-moz-transition: all 0.6s linear;
	-ms-transition: all 0.6s linear;
	-o-transition: all 0.6s linear;
	transition: all 0.6s linear;
}

.actlist li:hover .act-img img {
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	transform: scale(1.08);
}

.act-txt {
	padding: 36px 30px 40px;
	background: #FFF;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.act-txt h3 {
	display: block;
	width: 100%;
	height: 28px;
	margin-bottom: 10px;
	font-size: 1.125em;
	font-weight: bold;
	color: #555;
	line-height: 28px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.act-txt span {
	display: block;
	font-size: 0.875em;
	color: #999;
	line-height: 24px;
	margin: 2px 0;
}

.act-txt p {
	display: block;
	width: 100%;
	height: 96px;
	font-size: 0.875em;
	line-height: 24px;
	color: #666;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.actlist li:hover .act-txt {
	background: #DA251C;
	transition: all 0.5s;
}

.actlist li:hover .act-txt h3 {
	color: #FFF;
}

.actlist li:hover .act-txt span {
	color: #BBB;
}

.actlist li:hover .act-txt p {
	color: rgba(255,255,255,.8);
}

@media screen and (max-width:1440px) {
	.actlist ul {
		width: 103.3333%;
	}

	.actlist li {
		float: left;
		width: 30%;
		margin-right: 3.3333%;
		margin-bottom: 3%;
	}
}

@media screen and (max-width:1024px) {
	.actlist {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.actlist ul {
		width: 104%;
	}

	.actlist li {
		width: 46%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
}

@media screen and (max-width:640px) {
	.actlist {
		padding-top: 30px;
		padding-bottom: 40px;
	}

	.actlist ul {
		width: 100%;
	}

	.actlist li {
		width: 100%;
		margin-right: 0%;
	}
}

	/********** 人力资源 **********/
	/*-- 人才战略 --*/
	/*-- 人才培养 --*/
	/*-- 上升通道 --*/
	/*-- 人才招聘 --*/
.postlist {
	width: 100%;
	padding: 20px 0 20px;
}

.postlist li {
	width: 90%;
	background: #FFF;
	padding: 40px 5%;
	margin-bottom: 30px;
}

.postlist li h3 {
	font-size: 1.25em;
	line-height: 1;
	color: #DA251C;
	margin-bottom: 24px;
	font-weight: normal;
}

.postlist li h6 {
	font-size: 1em;
	line-height: 1;
	margin-bottom: 12px;
	font-weight: normal;
}

.postlist li .claim {
	font-size: 0.875em;
	line-height: 24px;
	color: #666;
}

.hruploadWrap {
	width: 100%;
	padding: 30px 0;
	background: #FFF;
	margin-bottom: 30px;
}

.hrupload {
	width: 90%;
	margin: 0 auto;
	text-align: center;
}

.hrupload input {
	display: inline-block;
	background: #FFF;
	border: 1px solid #DDD;
	width: 30%;
	height: 48px;
	padding: 0 16px;
	margin-right: 14px;
	font-size: 0.875em;
	line-height: 48px;
	color: #333;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle
}

.hrupload-btn {
	display: inline-block;
	width: 20%;
	height: 48px;
	background: #666;
}

.hrupload-btn a {
	display: block;
	width: 100%;
	color: #FFF;
	height: 48px;
	background: #666;
	font-size: 1em;
	color: #FFF;
	line-height: 48px;
	text-align: center;
}

.hrupload-btn:hover {
	background: #333;
}

.post-btn {
	width: 100%;
	text-align: center;
	background: #666;
	margin-bottom: 30px;
	position: relative;
}

.post-btn a {
	display: block;
	width: 100%;
	color: #FFF;
}

.post-btn span {
	display: block;
	padding: 20px 0;
	font-size: 1em;
	color: #FFF;
	line-height: 30px;
}

.post-btn:hover {
	background: #333;
}

.post-ctc {
	padding: 20px 5%;
	text-align: center;
	background: #DA251C;
}

.post-ctc span {
	display: inline-block;
	margin: 0 12px;
	font-size: 1em;
	color: #FFF;
	line-height: 30px;
}

@media screen and (max-width:1024px) {
	.postlist {
		padding: 3% 0 5%;
	}

	.postlist li {
		padding-top: 30px;
		padding-bottom: 30px;
		margin-bottom: 5%;
	}

	.post-btn {
		margin-bottom: 5%;
	}

	.post-ctc span {
		display: block;
		margin: 0 0;
	}
}
	/*-- 毛遂自荐 --*/	
.selfrec {
	width: 100%;
}

.selfrec-tb {
	width: 100%;
	background: #FFF;
	margin-bottom: 30px;
}

.selfrec .row {
	width: 100%;
	border-bottom: 2px solid #EEE;
}

.selfrec .col {
	float: left;
	padding: 0px 14px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 0.875em;
	line-height: 48px;
	min-height: 48px;
}

.selfrec .col1 {
	width: 10%;
	background: #666;
	color: #FFF;
	text-align: center;
}

.selfrec .col2 {
	width: 90%;
	background: #FFF;
}

.selfrec .col3 {
	width: 23.3333%;
	background: #FFF;
}

.selfrec .col4 {
	width: 23.3333%;
	background: #FFF;
}

.selfrec .col5 {
	width: 100%;
	background: #FFF;
}

.selfrec input, .selfrec textarea {
	background: #FFF;
	border: medium none;
	width: 100%;
	margin: 0;
	font-size: 0.875em;
	color: #333;
}

.selfrec textarea {
	width: 100%;
	font-size: 0.875em;
	line-height: 30px;
	color: #333;
	min-height: 200px;
	padding: 14px 0;
}

.selfrec .row2 {
	border-bottom: medium none;
}

.selfrec .row2 li {
	float: left;
	width: 25%;
	border-bottom: 2px solid #EEE;
}

.selfrec .col6 {
	width: 40%;
	background: #666;
	color: #FFF;
	text-align: center;
}

.selfrec .col7 {
	width: 60%;
	background: #FFF;
}

.selfrec-btn {
	width: 100%;
	text-align: center;
	background: #AAA;
	position: relative;
}

.selfrec-btn a {
	display: block;
	width: 100%;
	color: #FFF;
}

.selfrec-btn span {
	display: block;
	padding: 10px 0;
	font-size: 1em;
	color: #FFF;
	line-height: 30px;
}

.selfrec-btn:hover {
	background: #DA251C;
}

@media screen and (max-width:1740px) {
	.selfrec .row2 li {
		width: 33.3333%;
	}

	.selfrec .col6 {
		width: 30%;
	}

	.selfrec .col7 {
		width: 60%;
	}
}

@media screen and (max-width:1280px) {
	.selfrec .col1 {
		width: 15%;
	}

	.selfrec .col2 {
		width: 85%;
	}

	.selfrec .row2 li {
		width: 50%;
	}

	.selfrec .col6 {
		width: 30%;
	}

	.selfrec .col7 {
		width: 70%;
	}
}

@media screen and (max-width:768px) {
	.selfrec .col1 {
		width: 20%;
	}

	.selfrec .col2 {
		width: 80%;
	}

	.selfrec .row2 li {
		width: 100%;
	}

	.selfrec .col6 {
		width: 20%;
	}

	.selfrec .col7 {
		width: 80%;
	}
}

	/********** 联系我们 **********/
.contactWrap {
	width: 100%;
	padding-top: 15px;
}

.contact {
	width: 100%;
	padding: 0 0 20px;
}

@media screen and (max-width:1024px) {
	.contact {
		width: 100%;
		padding-bottom: 0px;
	}
}
	/*-- 联系方式 --*/
.ctc-l {
	float: left;
	width: 48%;
	position: relative;
	padding-top: 8px;
}

.ctctip {
	font-size: 0.875em;
	color: #666;
	line-height: 1.5;
	font-weight: normal;
	margin-bottom: 72px;
}

.ctcinfo {
	float: left;
	width: 60%;
}

.ctcinfo h3 {
	font-size: 1.125em;
	line-height: 1;
	color: #DA251C;
	font-weight: normal;
	margin-bottom: 10px;
}

.ctcinfo p {
	font-size: 0.875em;
	line-height: 2.2;
	color: #666;
}

@media screen and (max-width:1024px) {
	.ctc-l {
		width: 100%;
		margin-bottom: 30px;
	}

	.ctctip {
		margin-bottom: 30px;
	}
}

.ctcqrcode {
	float: left;
	width: 182px;
	text-align: center;
}

.ctcqrcode img {
	border: 1px solid #CCC;
	width: 180px;
	margin-bottom: 14px;
}

.ctcqrcode p {
	font-size: 1em;
	color: #666;
	line-height: 1.5;
}

@media screen and (max-width:1280px) {
	.ctcqrcode {
		width: 162px;
	}

	.ctcqrcode img {
		width: 160px;
	}
}

	/*-- 地图 --*/
.ctc-r {
	float: right;
	width: 48%;
	position: relative;
	height: 380px;
	padding-top: 8px;
}

@media screen and (max-width:1024px) {
	.ctc-r {
		float: left;
		width: 100%;
		height: auto;
	}
}

.ctcmap {
	width: 100%;
	height: auto;
	margin-bottom: 54px;
	border: 1px solid #CCC;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.mappc {
	margin: 0 auto;
	width: 100%;
	height: 380px;
}

.mappc .icon {
	background: url(../images/sign/marker.png) no-repeat;
}

.mappc .icon-cir {
	height: 31px;
	width: 28px;
}

.mappc .icon-cir-red {
	background-position: -11px -5px;
}

.amap-container {
	height: 100%;
}

#dituContent {
	width: 100%;
	height: 380px;
}

.mapmob {
	width: 100%;
	height: auto;
	display: none;
	overflow: hidden;
}

.mapmob img {
	max-width: 100%;
}

@media screen and (max-width:1024px) {
	.ctcmap {
		margin-bottom: 0;
	}

	.mappc {
		display: none;
	}

	.mapmob {
		display: block;
	}
}

@media screen and (max-width:768px) {
	.mapmob img {
		-webkit-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}
}

@media screen and (max-width:480px) {
	.mapmob img {
		-webkit-transform: scale(2.2);
		-moz-transform: scale(2.2);
		-ms-transform: scale(2.2);
		-o-transform: scale(2.2);
		transform: scale(2.2);
	}
}

	/*-- 在线留言 --*/
.msgWrap {
	width: 100%;
	padding-bottom: 20px;
}

.msg {
	padding: 48px 6% 60px;
	background: #F5F5F5;
}

.msg h6 {
	font-size: 0.875em;
	color: #666;
	line-height: 1.5;
	font-weight: normal;
	margin-bottom: 28px;
}

.msgbox {
	width: 100%;
}

.msgitem {
	float: left;
	width: 30%;
	height: 48px;
	position: relative;
	margin-bottom: 3%;
}

.msgitem.msgitem2 {
	margin-left: 5%;
	margin-right: 5%;
}

.msgitem input:-moz-placeholder, .msgitem-last textarea:-moz-placeholder {
	color: #666;
	font-size: 1em;
	opacity: 1;
 /* Mozilla Firefox 4 to 18 */
}

.msgitem input::-moz-placeholder, .msgitem-last textarea::-moz-placeholder {
	color: #666;
	font-size: 1em;
	opacity: 1;
 /* Mozilla Firefox 19+ */
}

.msgitem input:-ms-input-placeholder, .msgitem-last textarea:-ms-input-placeholder {
	color: #666;
	font-size: 1em;
	opacity: 1;
 /* Internet Explorer 10+ */
}

.msgitem input::-webkit-input-placeholder, .msgitem-last textarea::-webkit-input-placeholder {
	color: #666;
	font-size: 1em;
	opacity: 1;
 /* WebKit browsers */
}

.msgitem input:hover:-moz-placeholder, .msgitem-last textarea:hover:-moz-placeholder {
	color: #FFF;
 /* Mozilla Firefox 4 to 18 */
}

.msgitem input:hover::-moz-placeholder, .msgitem-last textarea:hover::-moz-placeholder {
	color: #FFF;
 /* Mozilla Firefox 19+ */
}

.msgitem input:hover:-ms-input-placeholder, .msgitem-last textarea:hover:-ms-input-placeholder {
	color: #FFF;
 /* Internet Explorer 10+ */
}

.msgitem input:hover::-webkit-input-placeholder, .msgitem-last textarea:hover::-webkit-input-placeholder {
	color: #FFF;
 /* WebKit browsers */
}

.msgitem input {
	width: 90%;
	height: 48px;
	padding: 0px 5% 0 5%;
	background-color: #DDD;
	border: medium none;
	border-radius: 5px;
	font-size: 0.875em;
	color: #666;
	line-height: 48px;
	transition: all 0.5s;
}

.msgitem input:hover {
	background-color: #FFF;
}

.msgitem-last {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 3%;
}

.msgitem-last textarea {
	width: 97%;
	min-height: 182px;
	padding: 14px 1.5%;
	background-color: #DDD;
	border: medium none;
	border-radius: 5px;
	font-size: 0.875em;
	color: #666;
	line-height: 24px;
 /*resize:none; overflow-y:scroll;*/
	transition: all 0.5s;
}

.msgitem-last textarea:hover {
	background-color: #FFF;
}

.inputsub {
	width: 100%;
	text-align: center;
}

.inputsub input {
	display: block;
	width: 200px;
	height: 48px;
	margin: 0 auto;
	background: #DA251C;
	border: 1px solid #DA251C;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1.25em;
	line-height: 48px;
	color: #FFF;
	text-align: center;
	transition: all 0.5s;
}

.inputsub input:hover {
	background-color: #333;
	border-color: #333;
}

@media screen and (max-width:1024px) {
	.msgitem {
		width: 100%;
		margin-bottom: 20px;
	}

	.msgitem.msgitem2 {
		margin-left: 0;
		margin-right: 0;
	}

	.msgitem input {
		width: 94%;
		padding: 0 3%;
	}

	.msgitem-last {
		margin-bottom: 20px;
	}

	.msgitem-last textarea {
		width: 94%;
		padding: 14px 3%;
		min-height: 216px;
	}
}

@media screen and (max-width:640px) {
	.msg {
		margin-bottom: 40px;
	}

	.inputsub input {
		width: 100%;
	}
}

