@charset "utf-8";
/* CSS Document */
/****************************************全局样式****************************************/
* {
	margin: 0;
	padding: 0;
	font-family: "Microsoft YaHei", "微软雅黑", "Lantinghei SC", "Open Sans", Arial, "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
}
html {
	font-size: 10px;
}
body {
	overflow-x: hidden;
	font-size: 2rem;
}
img, button {
	border: 0;
}
p, h1, h2, h3, h4, h5, h6, ul, ol {
	margin: 0;
}
a {
	text-decoration: none;
}
li {
	list-style: none;
}
textarea {
	resize: none;
	overflow: hidden;
}
::selection {
	background: #d7000e;
	color: #fff;
}
/****************************************通用样式****************************************/
.f-l {
	float: left;
	display: inline;
}
.f-r {
	float: right;
	display: inline;
}
/****************************************盒子模型****************************************/
.m-wrap {
	width: 100%;
	min-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.m-box {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.m-t {
	width: 100%;
}
.m-c {
	width: 100%;
}
.m-f {
	width: 100%;
}
/****************************************效果集合****************************************/
@keyframes bounceIn {
 0%, 100%, 20%, 40%, 60%, 80% {
 transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 0% {
 opacity: 0;
 transform: scale3d(0.3, 0.3, 0.3);
}
 20% {
 opacity: 0.3;
 transform: scale3d(1.1, 1.1, 1.1);
}
 40% {
 opacity: 0.6;
 transform: scale3d(0.9, 0.9, 0.9);
}
 60% {
 opacity: 0.9;
 transform: scale3d(1.03, 1.03, 1.03);
}
 80% {
 opacity: 1;
 transform: scale3d(0.97, 0.97, 0.97);
}
 100% {
 opacity: 1;
 transform: scale3d(1, 1, 1);
}
}
 @keyframes bounceOut {
 0%, 100%, 20%, 40%, 60%, 80% {
 transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 0% {
 opacity: 1;
 transform: scale3d(1, 1, 1);
}
 20% {
 opacity: 1;
 transform: scale3d(0.97, 0.97, 0.97);
}
 40% {
 opacity: 0.9;
 transform: scale3d(1.03, 1.03, 1.03);
}
 60% {
 opacity: 0.6;
 transform: scale3d(0.9, 0.9, 0.9);
}
 80% {
 opacity: 0.3;
 transform: scale3d(1.1, 1.1, 1.1);
}
 100% {
 opacity: 0;
 transform: scale3d(0.3, 0.3, 0.3);
}
}
 @keyframes bounceInUp {
 0%, 100%, 60%, 75%, 90% {
 transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 0% {
 opacity: 0;
 transform: translate3d(0, 3000px, 0);
}
 60% {
 opacity: 1;
 transform: translate3d(0, -20px, 0);
}
 75% {
 opacity: 1;
 transform: translate3d(0, 10px, 0);
}
 90% {
 opacity: 1;
 transform: translate3d(0, -5px, 0);
}
 100% {
 opacity: 1;
 transform: translate3d(0, 0, 0);
}
}
 @keyframes bounceInLeft {
 0%, 100%, 60%, 75%, 90% {
 transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 0% {
 opacity: 0;
 transform: translate3d(-3000px, 0, 0);
}
 60% {
 opacity: 1;
 transform: translate3d(25px, 0, 0);
}
 75% {
 opacity: 1;
 transform: translate3d(-10px, 0, 0);
}
 90% {
 opacity: 1;
 transform: translate3d(5px, 0, 0);
}
 100% {
 opacity: 1;
 transform: none;
}
}
 @keyframes bounceInUp {
 0%, 100%, 60%, 75%, 90% {
 transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 0% {
 opacity: 0;
 transform: translate3d(0, 3000px, 0);
}
 60% {
 opacity: 1;
 transform: translate3d(0, -20px, 0);
}
 75% {
 transform: translate3d(0, 10px, 0);
 opacity: 1;
}
 90% {
 transform: translate3d(0, -5px, 0);
 opacity: 1;
}
 100% {
 transform: translate3d(0, 0, 0);
 opacity: 1;
}
}
 @keyframes bounceInRight {
 0%, 100%, 60%, 75%, 90% {
 transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 0% {
 opacity: 0;
 transform: translate3d(3000px, 0, 0);
}
 60% {
 opacity: 1;
 transform: translate3d(-25px, 0, 0);
}
 75% {
 opacity: 1;
 transform: translate3d(10px, 0, 0);
}
 90% {
 opacity: 1;
 transform: translate3d(-5px, 0, 0);
}
 100% {
 opacity: 1;
 transform: none;
}
}
 @keyframes fadeInDown {
 0% {
 opacity: 0;
 transform: translate3d(0, -100%, 0);
}
 100% {
 opacity: 1;
 transform: none;
}
}
 @keyframes fadeInUp {
 0% {
 opacity: 0;
 transform: translate3d(0, 100%, 0);
}
 100% {
 opacity: 1;
 transform: none;
}
}
 @keyframes fadeIn {
 0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
 @keyframes rotateIn {
 0% {
 transform-origin: center;
 transform: rotate3d(0, 0, 1, -200deg);
 opacity: 0;
}
 100% {
 transform-origin: center;
 transform: none;
 opacity: 1;
}
}
 @keyframes bounceInDown {
 0%, 100%, 60%, 75%, 90% {
 transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
 0% {
 opacity: 0;
 transform: translate3d(0, -3000px, 0);
}
 60% {
 opacity: 1;
 transform: translate3d(0, 25px, 0);
}
 75% {
 opacity: 1;
 transform: translate3d(0, -10px, 0);
}
 90% {
 opacity: 1;
 transform: translate3d(0, 5px, 0);
}
 100% {
 opacity: 1;
 transform: none;
}
}
 @keyframes rollIn {
 0% {
 opacity: 0;
 transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
 100% {
 opacity: 1;
 transform: none;
}
}
 @keyframes zoomIn {
 0% {
 opacity: 0;
 transform: scale3d(0.3, 0.3, 0.3);
}
 100% {
 opacity: 1;
}
}
 @keyframes zoomOut {
 0% {
 opacity: 1;
}
 100% {
 opacity: 0;
 transform: scale3d(0.3, 0.3, 0.3);
}
}
 @keyframes zoomInUp {
 0% {
 opacity: 0;
 transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 60% {
 opacity: 1;
 transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
 @keyframes slideInRight {
 from {
 transform: translate3d(100%, 0, 0);
 visibility: visible;
}
 to {
 transform: translate3d(0, 0, 0);
}
}
 @keyframes zoomInLeft {
 from {
 opacity: 0;
 transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 60% {
 opacity: 1;
 transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
 @keyframes zoomInRight {
 from {
 opacity: 0;
 transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
 animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
 60% {
 opacity: 1;
 transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
 animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
 @keyframes topLoop {
 0% {
 transform: translateY(100px);
 opacity: 0;
}
 100% {
 transform: translateY(0);
 opacity: 1
}
}
 @keyframes leftLoop {
 0% {
 transform: translateX(-200px);
 opacity: 0;
}
 100% {
 transform: translateX(0);
 opacity: 1
}
}
 @keyframes rightLoop {
 0% {
 transform: translateX(200px);
 opacity: 0;
}
 100% {
 transform: translateX(0);
 opacity: 1
}
}
 @keyframes enLarge {
 0% {
 transform: scale(0.3);
}
 50% {
 transform: scale(1.05);
}
 70% {
 transform: scale(0.9);
}
 100% {
 transform: scale(1);
}
}
 @keyframes rotateYIn {
 from {
 transform: rotateY(90deg);
 opacity: 0;
}
 to {
 transform: rotateY(0);
 opacity: 1;
}
}
 @keyframes slideDown {
 from {
 height: 0;
}
 to {
 height: 100%;
}
}
.bounceIn {
	animation: bounceIn 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceOut {
	animation: bounceOut 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceInUp {
	animation: bounceInUp 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceInLeft {
	animation: bounceInLeft 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceInRight {
	animation: bounceInRight 0.8s ease;
	animation-fill-mode: forwards;
}
.bounceInDown {
	animation: bounceInDown 0.8s ease;
	animation-fill-mode: forwards;
}
.fadeInDown {
	animation: fadeInDown 0.8s ease;
	animation-fill-mode: forwards;
}
.fadeInUp {
	animation: fadeInUp 0.8s ease;
	animation-fill-mode: forwards;
}
.fadeIn {
	animation: fadeIn 1.6s ease;
	animation-fill-mode: forwards;
}
.rotateIn {
	animation: rotateIn 0.8s ease;
	animation-fill-mode: forwards;
}
.rollIn {
	animation: rollIn 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomIn {
	animation: zoomIn 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomOut {
	animation: zoomOut 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomInd {
	animation: zoomIn 0.2s cubic-bezier(0.18, 0.74, 1, 1);
	animation-fill-mode: forwards;
}
.zoomOutd {
	animation: zoomOut 0.2s cubic-bezier(0.18, 0.74, 1, 1);
	animation-fill-mode: forwards;
}
.zoomInUp {
	animation: zoomInUp 0.8s ease;
	animation-fill-mode: forwards;
}
.slideInRight {
	animation: slideInRight 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomInLeft {
	animation: zoomInLeft 0.8s ease;
	animation-fill-mode: forwards;
}
.zoomInRight {
	animation: zoomInRight 0.8s ease;
	animation-fill-mode: forwards;
}
.topLoop {
	animation: topLoop 1s ease;
	animation-fill-mode: forwards;
}
.leftLoop {
	animation: leftLoop 1s ease;
	animation-fill-mode: forwards;
}
.rightLoop {
	animation: rightLoop 1s ease;
	animation-fill-mode: forwards;
}
.enLarge {
	animation: enLarge 1s ease;
	animation-fill-mode: forwards;
}
.rotateYIn {
	animation: rotateYIn 1.6s ease;
	animation-fill-mode: forwards;
}
.slideDown {
	animation: slideDown 1.6s ease;
	animation-fill-mode: forwards;
}
/****************************************头部导航****************************************/
.g-header {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	height: 150px;
	overflow: hidden;
}
.g-header .f-l {
	width: auto;
	height: 50px;
	overflow: hidden;
	margin-top: 50px;
}
.g-header .f-l img {
	display: block;
	width: auto;
	height: 100%;
}
.g-header .f-r {
	width: auto;
	height: auto;
	overflow: hidden;
}
.g-header .f-r ul {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-top: 56px;
}
.g-header .f-r li {
	width: 90px;
	height: auto;
	overflow: hidden;
	float: left;
	margin: 0 10px;
	box-sizing: border-box;
	border: 1px solid transparent;
	font-size: 14px;
	line-height: 36px;
	color: #fff;
	text-align: center;
	transition: all ease-out 0.3s;
}
.g-header .f-r li:hover {
	border-color: #fff;
}
.g-header .f-r li a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: inherit;
}
/****************************************幻灯模块****************************************/
.g-banner {
	position: relative;
	height: auto;
}
.focusBox {
	position: relative;
	width: 100%;
	height: 100%;
}
.focusBox .hd {
	position: absolute;
	z-index: 9;
	bottom: 3%;
	left: 0;
	width: 100%;
	height: auto;
}
.focusBox .hd ul {
	display: flex;
	width: 120px;
	height: auto;
	margin: 0 auto;
	justify-content: space-around;
}
.focusBox .hd li {
	width: 10px;
	height: 10px;
	overflow: hidden;
	background: #fff;
	box-sizing: border-box;
	border-radius: 50%;
	cursor: pointer;
	color: transparent;
	transition: all ease-out 0.3s;
}
.focusBox .hd li.on {
	background: #d7000e;
}
.focusBox .bd {
	width: 100%;
}
.focusBox .bd img {
	display: block;
	width: 100%;
	height: auto;
}
/****************************************共用模块****************************************/
.u-btn {
	display: block;
	width: 175px;
	height: 55px;
	overflow: hidden;
	background: #000;
	box-sizing: border-box;
	padding: 7px;
	transition: all ease-out 0.3s;
}
.u-btn:hover {
	background: #d7000e;
}
.u-btn .main {
	width: 100%;
	height: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid #fff;
	font-size: 14px;
	line-height: 39px;
	color: #fff;
	text-align: center;
}
.u-title {
	width: 350px;
	height: 100px;
	overflow: hidden;
	margin: 0 auto;
	background: url(../images/10.png) 0 bottom no-repeat;
	text-align: center;
}
.u-title h3 {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 26px;
	font-weight: normal;
	color: #2e2e2e;
}
.u-title p {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-top: 15px;
	font-size: 14px;
	color: #d7000e;
}
/****************************************搜索模块****************************************/
.g-search {
	height: 125px;
	overflow: hidden;
	background: url(../images/03.jpg) center 0 no-repeat;
	background-size: auto 100%;
}
.g-search .m-box {
	width: 870px;
}
.g-search .f-l {
	width: 420px;
	height: 45px;
	overflow: hidden;
	margin-top: 40px;
}
.g-search .f-l input {
	display: block;
	width: 350px;
	height: 100%;
	overflow: hidden;
	background: #fff;
	float: left;
	box-sizing: border-box;
	padding: 0 10px;
	border: 0;
	outline: 0;
	font-size: 12px;
	line-height: 45px;
	color: #333;
}
.g-search .f-l span {
	display: block;
	width: 57px;
	height: 100%;
	overflow: hidden;
	float: right;
	background: #d7000e url(../images/05.png) center center no-repeat;
	cursor: pointer;
}
.g-search .f-r {
	width: 260px;
	height: 55px;
	overflow: hidden;
	background: url(../images/06.png) left center no-repeat;
	margin-top: 35px;
	box-sizing: border-box;
	padding-left: 85px;
}
.g-search .f-r p {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 16px;
	color: #fff;
}
.g-search .f-r h3 {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 26px;
	font-weight: normal;
	color: #d7000e;
}
/****************************************关于我们****************************************/
.g-about {
	height: 640px;
	background: #ededed;
}
.g-about .f-l {
	position: relative;
	width: 600px;
	height: 520px;
	opacity: 0;
}
.g-about .f-l .btnx {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	width: 200px;
	height: 72px;
	overflow: hidden;
}
.g-about .f-l .btnx a {
	display: block;
	width: 95px;
	height: 100%;
	overflow: hidden;
	float: left;
	margin-right: 5px;
	background-color: rgba(26, 26, 26, 0.6);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto auto;
	transition: all ease-out 0.3s;
}
.g-about .f-l .btnx a:hover {
	background-color: rgba(215, 0, 14, 0.6);
}
.g-about .f-l .btnx a.prev {
	background-image: url(../images/08.png);
}
.g-about .f-l .btnx a.next {
	background-image: url(../images/09.png);
}
.g-about .f-l ul {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	width: auto;
	height: 100%;
	overflow: hidden;
}
.g-about .f-l ul .main {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.g-about .f-l ul li {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	transform: scale(1.2);
	visibility: hidden;
	transition: all ease-out 0.5s;
}
.g-about .f-l ul li.on {
	opacity: 1;
	transform: scale(1);
	visibility: visible;
}
.g-about .f-l ul li img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 100%;
	transition: all ease-out 0.3s;
}
.g-about .f-r {
	width: 520px;
	height: auto;
	overflow: hidden;
	box-sizing: border-box;
	padding-top: 80px;
	opacity: 0;
}
.g-about .f-r em {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 14px;
	font-style: normal;
	color: #2e2e2e;
}
.g-about .f-r h3 {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-top: 15px;
	font-size: 28px;
	font-weight: normal;
	color: #000;
}
.g-about .f-r span {
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-top: 12px;
	font-size: 14px;
	color: #d7000e;
}
.g-about .f-r p {
	width: 400px;
	height: 162px;
	overflow: hidden;
	margin-top: 40px;
	font-size: 12px;
	line-height: 27px;
	color: #2e2e2e;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	transition: all ease-out 0.3s;
}
.g-about .f-r p:hover {
	transform: translateX(5px);
	color: #d7000e;
}
.g-about .f-r p a {
	color: inherit;
}
.g-about .f-r .u-btn {
	margin-top: 80px;
}
/****************************************案例展示****************************************/
.g-case {
	height: 700px;
	overflow: hidden;
	background: #ededed;
}
.g-case .m-t {
	height: 160px;
	overflow: hidden;
	opacity: 0;
}
.g-case .m-c {
	height: auto;
	overflow: hidden;
}
.g-case .m-c ul {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.g-case .m-c li {
	width: 370px;
	height: 450px;
	overflow: hidden;
	background: url(../images/12.png) center bottom no-repeat;
	float: left;
	margin: 0 15px;
	opacity: 0;
}
.g-case .m-c li:hover img {
	transform: scale(1.1);
}
.g-case .m-c li:hover .img .cover {
	transform: translateY(0);
	opacity: 1;
}
.g-case .m-c li .img {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
}
.g-case .m-c li .img img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 100%;
	transition: all ease-out 0.3s;
}
.g-case .m-c li .img .cover {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #d7000e;
	box-sizing: border-box;
	padding: 0 10px;
	transform: translateY(100%);
	opacity: 0;
	transition: all ease-out 0.3s;
}
.g-case .m-c li .img .cover h3 {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 40px;
}
.g-case .m-c li .img .cover h3 a {
	color: inherit;
}
/****************************************服务项目****************************************/
.g-items {
	height: 730px;
	overflow: hidden;
	background: url(../images/13.jpg) center 0 no-repeat;
	background-size: auto 68.5%;
	box-sizing: border-box;
	padding-top: 55px;
}
.g-items .m-t {
	height: 115px;
	overflow: hidden;
	opacity: 0;
}
.g-items .m-t .u-title h3 {
	color: #d7000e;
}
.g-items .m-t .u-title p {
	color: #fff;
}
.g-items .m-c {
	height: 140px;
	overflow: hidden;
	opacity: 0;
}
.g-items .m-c p {
	width: 620px;
	height: 54px;
	overflow: hidden;
	margin: 0 auto;
	font-size: 12px;
	line-height: 18px;
	color: #fff;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.g-items .m-c a {
	color: inherit;
}
.g-items .m-f {
	height: auto;
	opacity: 0;
}
.g-items .m-f ul {
	width: 1140px;
	height: auto;
}
.g-items .m-f li {
	position: relative;
	width: 190px;
	height: 300px;
	float: left;
}
.g-items .m-f li:hover img {
	transform: scale(1.1);
}
.g-items .m-f li:hover .cover {
	transform: scale(1);
	opacity: 1;
}
.g-items .m-f li .img {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.g-items .m-f li .img img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 100%;
	transition: all ease-out 0.3s;
}
.g-items .m-f li .cover {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(215, 0, 14, 0.8);
	box-sizing: border-box;
	padding: 50px 20px;
	transform: scale(0);
	opacity: 0;
	transition: all ease-out 0.3s;
}
.g-items .m-f li .cover h3 {
	width: 100%;
	height: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 16px;
	font-weight: normal;
	color: #fff;
	text-align: center;
}
.g-items .m-f li .cover h3 a {
	color: inherit;
}
.g-items .m-f li .cover p {
	width: 100%;
	height: 72px;
	overflow: hidden;
	margin-top: 20px;
	font-size: 12px;
	line-height: 18px;
	color: #fff;
	text-align: justify;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.g-items .m-f li .cover p a {
	color: inherit;
}
.g-items .m-f li .cover .u-btn {
	margin: 50px auto 0;
	width: 80%;
	height: 40px;
	padding: 4px;
}
.g-items .m-f li .cover .u-btn .main {
	line-height: 30px;
}
.picScroll-left {
	width: 1140px;
	position: relative;
	margin: 0 auto;
}
.picScroll-left .prev, .picScroll-left .next {
	position: absolute;
	z-index: 1;
	top: 132px;
	width: 36px;
	height: 36px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	transition: all ease-out 0.3s;
}
.picScroll-left .prev {
	left: -50px;
	background-image: url(../images/15.png);
}
.picScroll-left .prev:hover {
	background-image: url(../images/17.png);
}
.picScroll-left .next {
	right: -50px;
	background-image: url(../images/16.png);
}
.picScroll-left .next:hover {
	background-image: url(../images/18.png);
}
.picScroll-left .bd {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}
.picScroll-left .bd ul {
	overflow: hidden;
	zoom: 1;
}
/****************************************新闻资讯****************************************/
.g-news {
	height: 545px;
	overflow: hidden;
}
.g-news .m-t {
	height: 140px;
	overflow: hidden;
	opacity: 0;
}
.g-news .m-c {
	height: 285px;
	overflow: hidden;
	opacity: 0;
}
.g-news .m-c ul {
	width: 100%;
	height: 260px;
	overflow: hidden;
}
.g-news .m-c ul li {
	width: 580px;
	height: 100px;
	overflow: hidden;
	float: left;
	margin: 15px 10px;
}
.g-news .m-c ul li:hover .f-r h3 {
	color: #d7000e;
}
.g-news .m-c ul li .f-l {
	width: 100px;
	height: 100%;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid #c8c8c8;
}
.g-news .m-c ul li .f-l h2 {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #000;
	font-size: 36px;
	font-weight: normal;
	line-height: 68px;
	color: #fff;
	text-align: center;
}
.g-news .m-c ul li .f-l h3 {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #d7000e;
	box-sizing: border-box;
	border-top: 1px solid #c8c8c8;
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
	color: #fff;
	text-align: center;
}
.g-news .m-c ul li .f-r {
	width: 455px;
	height: 100%;
	overflow: hidden;
}
.g-news .m-c ul li .f-r h3 {
	width: 100%;
	height: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
	font-weight: normal;
	color: #000;
	transition: all ease-out 0.3s;
}
.g-news .m-c ul li .f-r span {
	display: block;
	width: 40px;
	height: 2px;
	overflow: hidden;
	margin: 10px 0;
	background: #000;
}
.g-news .m-c ul li .f-r p {
	width: 100%;
	height: 60px;
	overflow: hidden;
	font-size: 12px;
	line-height: 20px;
	color: #333;
	text-align: justify;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.g-news .m-c ul li .f-r a {
	color: inherit;
}
.g-news .m-f {
	height: 28px;
	overflow: hidden;
	background: url(../images/19.png) center center no-repeat;
	background-size: 100% auto;
	opacity: 0;
}
.g-news .m-f .btnx {
	width: 72px;
	height: 28px;
	overflow: hidden;
	margin-left: 1054px;
}
.g-news .m-f .btnx a {
	display: block;
	width: 32px;
	height: 100%;
	overflow: hidden;
	margin: 0 2px;
	float: left;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% auto;
	background-color: #000;
	transition: all ease-out 0.3s;
}
.g-news .m-f .btnx a:hover {
	background-color: #d7000e;
}
.g-news .m-f .btnx a.prev {
	background-image: url(../images/08.png);
}
.g-news .m-f .btnx a.next {
	background-image: url(../images/09.png);
}
/****************************************尾部导航****************************************/
.g-footer {
	height: 500px;
	overflow: hidden;
	background: #171717;
	box-sizing: border-box;
	padding-top: 36px;
}
.g-footer .f1 {
	height: 84px;
	overflow: hidden;
}
.g-footer .f1 h3 {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: 26px;
	font-weight: normal;
	color: #fff;
}
.g-footer .f2 {
	height: 320px;
	overflow: hidden;
}
.g-footer .f2 .t1 {
	width: 440px;
	height: 100%;
	overflow: hidden;
	float: left;
	box-sizing: border-box;
	border-right: 1px solid rgba(77, 77, 77, 0.6);
}
.g-footer .f2 .t1 input {
	display: block;
	width: 390px;
	height: 45px;
	overflow: hidden;
	background: #4d4d4d;
	box-sizing: border-box;
	padding: 0 15px;
	border: 0;
	outline: 0;
	font-size: 14px;
	line-height: 45px;
	color: #202020;
	margin-bottom: 8px;
}
.g-footer .f2 .t1 textarea {
	display: block;
	width: 390px;
	height: 150px;
	overflow: hidden;
	background: #4d4d4d;
	margin-bottom: 10px;
	box-sizing: border-box;
	padding: 0 15px;
	border: 0;
	outline: 0;
	font-size: 14px;
	line-height: 45px;
	color: #202020;
}
.g-footer .f2 .t1 .u-btn {
	background: #d7000e;
}
.g-footer .f2 .t2 {
	width: 380px;
	height: 100%;
	overflow: hidden;
	float: left;
	box-sizing: border-box;
	border-right: 1px solid rgba(77, 77, 77, 0.6);
	padding: 0 50px;
}
.g-footer .f2 .t2 img {
	display: block;
	width: auto;
	height: auto;
	margin: 0 auto 28px;
}
.g-footer .f2 .t2 .s-list {
	width: 100%;
	height: auto;
	overflow: hidden;
	box-sizing: border-box;
	border-top: 1px solid rgba(255, 255, 255, 0.6);
	padding: 24px 0;
	font-size: 14px;
	line-height: 24px;
	color: #a0a0a0;
}
.g-footer .f2 .t2 .s-list h3 {
	width: 87px;
	height: auto;
	overflow: hidden;
	float: left;
	font-size: 14px;
	font-weight: normal;
	line-height: 24px;
}
.g-footer .f2 .t2 .s-list span {
	display: block;
	width: 190px;
	height: auto;
	overflow: hidden;
	float: left;
}
.g-footer .f2 .t3 {
	width: 360px;
	height: 100%;
	overflow: hidden;
	float: left;
	box-sizing: border-box;
	padding-left: 50px;
}
.g-footer .f2 .t3 .g-map {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff;
}
/****************************************备案信息****************************************/
.g-copyright {
	height: auto;
	overflow: hidden;
	background: #333;
}
.g-copyright p {
	width: auto;
	height: auto;
	overflow: hidden;
	font-size: 14px;
	line-height: 50px;
	color: #aeaeae;
	text-align: center;
}
.g-copyright p a {
	color: inherit;
}
.g-copyright p a:hover {
	text-decoration: underline;
}
.g-copyright p span {
	box-sizing: border-box;
	padding: 0 15px;
}
.g-copyright p em {
	font-style: normal;
}
