@charset "utf-8";
/* CSS Document */
*{ margin:0px; padding:0px; }
.clear{ width:100%; clear:both; }
ul,li{ list-style-type:none; }
ul {
    display: block;
    list-style-type: disc;
    margin-block-start:0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start:0px;
}
h1 {
    display: block;
    font-size: 0em;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
a{ text-decoration:none; color:#444; }
a:hover{ text-decoration:none; color:#d10111; }

/*====================导航*********/
.containernav{ width:100%; max-width:100%; padding:0px; height:105px;}
.header{
	width:100%;
	position:relative;
	z-index:999;
	height:105px;
	padding:0px;
	background: rgba(255, 255, 255, 1);
}
/*左侧logo*/
.header .left{
	width: 20%;
	padding-left:7%;
	float:left;
}
.header .left a img{
	height:82px;
	margin-top:12px;
}
.header .left .img2{
	display: none;
}
/*右侧*/
.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height:105px;
	display: block;
	width:auto;
	float:right;
	padding-right:7%;
}
.header .navbar_nav li{
	float:left;
	position: relative;
	display: block;
}
.header .navbar_nav li:after{
    content: "";
    width: 0;
    height:105px;
    background:#b70000;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease 0s;
	z-index:-1;
}
.header .navbar_nav li:hover:after{
    width: 100%;
}
.header .navbar_nav li a{
	text-decoration: none;
	height: 100%;
	padding: 0 20px;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #000;
	font-size: 16px;
}
.header .navbar_nav li:hover a{
	color:#fff;
}
.header .navbar_nav li.dropdown{
	display: inherit;
	position: relative;
}
.header .navbar_nav li.dropdown .jt{
	width: 20px;
	height: 20px;
	background: url(i/top.png) no-repeat;
	background-size: 100% 100%;
	display: block;
}
.header .navbar_nav li.dropdown .dropdown_menu{
	display: none;
	position: absolute;
	top:105px;
	width: 100%;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    left:0%;
}
.header .navbar_nav li.dropdown .dropdown_menu a{
	font-size: 14px;
	color: #666;
	padding: 0 10px;
	line-height: 40px;
	text-align: center;
	background: #fff;
	margin-bottom:0px;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu{
	display: block;
	background: #b70000;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a{
	color: #666;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover{
	color: #fff;
	background:#b70000;
}
/*白色背景的头部*/
.header.on{
	background: #fff;
	box-shadow: rgba(43, 50, 54, 0.2) 0px 13px 35px -12px;
}
.header.on .left .img1{
	display: none;
}
.header.on .left .img2{
	display: block;
}
.header.on .navbar_nav li a{
	color: #333;
}
.header.on .navbar_nav li:hover a{
	color: orangered;
}
#navToggle{
	display: none;
}

.m_nav{
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
	z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav .logo{
	width: 100%;
	margin:0 auto;
}
.m_nav .logo img{
	height: 80px;
	display: block;
	margin:30px auto;
}
.m_nav .ul{
	margin-top: 30px;
}
.m_nav .ul li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
	opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 30px;
	height: 80px;
	line-height: 80px;
	width: 100%;
	text-align:center;
}
.m_nav .ul li .dropdown_menu{
	display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
	display: block;
}
.m_nav .ul li .dropdown_menu a{
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child{
	border: none;
}
.banner{
	width: 100%;
}
.banner img{
	width: 100%;
}

@media screen and (max-width: 992px){
	.header{
		padding:0px;
	}
	.header #navToggle {
		height: 100%;
		padding: 30px 15px;
		margin-right:15px;
		display: inline-block;
		float: right;
	}
	.header #navToggle span {
		position: relative;
		width: 45px;
		height:5px;
		margin-top: 19px;
	}
	.header #navToggle span:before,
	.header #navToggle span:after {
		content: '';
		position: relative;
		width: 100%;
		height: 5px;
		left: 0;
	}
	.header #navToggle span,
	.header #navToggle span:before,
	.header #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #c30d23;
	}
	.header #navToggle span:before {
		top: 10px;
	}
	.header #navToggle span:after {
		bottom: 15px;
	}
	.header #navToggle.open span:before {
		top: 10px;
		-webkit-transform: translateY(-11px) rotate(-45deg);
		-moz-transform: translateY(-11px) rotate(-45deg);
		-ms-transform: translateY(-11px) rotate(-45deg);
		-o-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-11px) rotate(-45deg);
	}
	.header #navToggle.open span:after {
		bottom: 12px;
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-o-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}
	.header #navToggle.open span {
		background: none;
	}
	.header #navToggle.open span:before,
	.header #navToggle.open span:after {
		background: #4f4f4f;
	}
	
	.header .nav{
		display: none;
	}
}

/*banner*/
.fullSlide{ width:100%; position:relative; height:866px; background:#000; }
.fullSlide .bd{margin:0 auto;position:relative;z-index:0;overflow:hidden; }
.fullSlide .bd ul{width:100% !important;}
.fullSlide .bd li{width:100% !important;height:866px;overflow:hidden;text-align:center; }
.fullSlide .bd li a{display:block;height:866px;}
.fullSlide .hd{width:100%;position:absolute;z-index:1;bottom:0;left:0;height:30px;line-height:30px; }
.fullSlide .hd ul{text-align:center;}
.fullSlide .hd ul li{cursor:pointer;display:inline-block;*display:inline;zoom:1;width:60px;height:8px;margin:0px 2px;overflow:hidden;background:rgba(255,255,255,0.9);filter:alpha(opacity=50);opacity:0.5;line-height:999px; }
.fullSlide .hd ul .on{background:#c30d23; filter:alpha(opacity=100);opacity:1; }
.fullSlide .prev,.fullSlide .next{display:block;position:absolute;z-index:1;top:50%;margin-top:-30px;left:5%;z-index:1;width:40px;height:60px;background:url(../images/slider-arrow.png) -126px -137px #000 no-repeat;cursor:pointer;filter:alpha(opacity=50);opacity:0.5;display:none; }
.fullSlide .next{left:auto;right:5%;background-position:-6px -137px; }

.indextite{ width:100%; text-align:center; }
.indextite h1{ width:100%; text-align:center; font-size:36px; }
.indextite span{ width:60px; height:5px; background:#c30d23; display:inline-block; margin-top:10px; }
.about{ width:100%; padding:60px 0px; background:url(../images/indexaboutbg.png) center no-repeat #fafeff; }
.about_w{ width:100%; max-width:1400px; margin:30px auto; background:#fff; }
.about_l{ width:48%; float:left; overflow:hidden; }
.about_l img{ width:100%; }
.about_r{ width:52%; background:#fff; float:right; padding:2% 3%;  }
.about_r h1{ width:100%; font-size:30px; font-weight:normal; }
.about_r dd{ width:100%; font-size:24px; color:#d10111; padding:15px 0px; border-bottom:1px solid #ccc; }
.about_text{ width:100%; font-size:16px; line-height:35px; margin-top:20px; }
.about_text a{ display:inline-block; padding:10px 40px; background:#d10111; color:#fff;  margin-top:40px; font-size:18px; border-radius:10px; }
.about_text a:hover{ background:#ff0014; }

.products{ width:100%; background:url(../images/productsbg.png) center no-repeat; padding:120px 0px 60px; }
.products_w{ width:100%; max-width:1400px; margin:20px auto; }
.products .indextite h1{ color:#fff; }
.products .indextite  span{ background:#fff; }
.flex-item_tite{ width:100%; background:rgba(0,0,0,0.5); padding:10px 0px; }
 .flex-item_tite a{ font-size:18px; display:block; text-align:center; width:92%; padding:0px 4% 5px; color:#fff; }
 .flex-item_tite p{ width:92%; padding:0% 4%; text-align:left; display:none; font-size:14px; color:#666; }
 .flex-item:hover .flex-item_tite { background:#c30d23; }
 .flex-item:hover a{ color:#fff; }
 .flex-item:hover p{ color:#fff; }
.products .productsimg{ display:block; width:100%; overflow:hidden; max-height:450px; }
 .flex-item img {
 width: 100%;

 transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.flex-item a:hover img {
 transform: scale(1.2, 1.2) 
}
	/* Carousel */
	.carousel-example {
		padding: 20px 0 50px 0;
		width:100%;
		max-width:1550px;
		margin:0 auto;
	}
	
	#complicated-content-carousel .carousel-control {
		position: absolute;
		top: -20px;
		right: 0;
		left: auto;
		bottom: auto;
		width: 14px;
		font-size: 25px;
		color: #3c3c3c !important;
		opacity: 1;
	}
	
	#complicated-content-carousel .carousel-control.left,
	#complicated-content-carousel .carousel-control.right {
		background-image: none;
	}
	
	#complicated-content-carousel .carousel-control.left {
		right: 35px;
	}
	
	#complicated-content-carousel .index {
		position: absolute;
		top: -70px;
		right: 0;
		font-size: 16px;
		color: #3c3c3c;
	}
	
	#complicated-content-carousel .flex-item {
		position: relative;
		display: inline-block;
		width: 320px;
		height: 380px;
		padding: 16px 13px;
		background-color: #f5f6f7;
		border: 6px solid #f5f6f7;
	}
	
	#complicated-content-carousel .flex-item:hover,
	#complicated-content-carousel .flex-item:focus {
		border: 6px solid #d2d4d5;
		border-radius: 3px;
	}
	
	.good-top {
		height: 21px;
	}
	
	.good-top-left {
		font-size: 16px;
		color: #424242;
		text-transform: uppercase;
		line-height: 21px;
	}
	
	.good-top-right {
		height: 21px;
		text-align: right;
	}
	
	.choose-color div {
		display: inline-block;
		width: 21px;
		height: 21px;
		border-radius: 50%;
		letter-spacing: 5px;
		cursor: pointer;
	}
	
	.choose-color .blue {
		background-color: #165eb9;
	}
	
	.choose-color .yellow {
		background-color: #ffe637;
	}
	
	.choose-color .black {
		background-color: #535253;
	}
	
	.choose-color .grey {
		background-color: #d3a7ac;
	}
	
	.choose-color .dark-blue {
		background-color: #35374c;
	}
	
	.choose-color .dark-blue-women {
		background-color: #192b5e;
	}
	
	.choose-color .light-blue-women {
		background-color: #1682c4;
	}
	
	.good-top-left .fa {
		position: relative;
		top: 2px;
		font-size: 21px;
	}
	
	.good-bottom {
		height: 21px;
	}
	
	.good-bottom * {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.good-bottom-left a h4 {
		font-size: 18px;
		color: #3c3c3c;
		text-transform: uppercase;
		line-height: 21px;
	}
	
	.good-bottom-right {
		position: relative;
		top: -1px;
		font-size: 22px;
		color: #424242;
		text-transform: uppercase;
		line-height: 21px;
	}
	
	.good-top-left,
	.good-bottom-left {
		float: left;
		text-align: left;
	}
	
	.good-top-right,
	.good-bottom-right {
		float: right;
		text-align: right;
	}
	
	.good-image {
		height: 294px;
		text-align: center;
	}
	
	.good-image:before {
	    content: "";
	    display: inline-block;
	    height: 100%;
	    vertical-align: middle;
	}
	
	.good-image img {
		max-height: 240px;
		vertical-align: middle;
	}
	
	.size {
		position: absolute;
		padding: 0;
		cursor: pointer;
		transition: all .35s;
	}
	
	.size.shown {
		padding: 0 5px 5px 5px;
		background-color: #fff;
		border-radius: 2px;
	}
	
	.size.shown .option:hover {
		background-color: #f5f6f7;
	}
	
	.carousel-control {
		width: 40px;
		height: 80px;
		top: 50%;
		transform: translateY(-50%);
		bottom: auto;
		font-size: 30px;
		text-align: center;
		opacity: 1;
	}
	
	a.carousel-control.left,
	a.carousel-control.right {
		background-image: none;
		opacity: 1;
		text-align: center;
	}

/* MEDIA QUERIES */
	/* styles for phones' displays */
	@media only screen and (max-width: 350px) {
		#complicated-content-carousel .flex-item {
			width: 300px;
		}
	}
	
	/* styles for medium size displays */
	@media only screen and (min-width: 992px) and (max-width: 1199px) {
		#complicated-content-carousel .flex-item {
			width: 300px;
		}
	}
.carousel.flexible .items {
	display: none;
}

.news{ width:100%; padding:60px 0px; }
.news_f{ width:100%; text-align:center; }
.news_f a{ display:inline-block; padding:10px 35px; font-size:18px; background:#c9c9c9; color:#fff; margin:20px 10px; border-radius:10px; }
.news_f a:hover{ background:#c30d23; }
.news_w{ width:100%; max-width:1400px; margin:30px auto; }
.news_w_l { width:48%; float:left; overflow:hidden; }
.news_w_r { width:49%; float:right; }
.news_w_r ul li{ width:100%; clear:both; margin-bottom:15px; min-height:95px; }
.news_w_r ul li .date{ width:15%; background:#acabab; float:left; text-align:center; padding:10px 0px; }
.news_w_r ul li .date h1{ width:100%; font-size:36px; color:#fff; }
.news_w_r ul li .date p{ font-size:16px; color:#fff; }
.news_w_r ul li .news_tite { width:83%; float:right;}
.news_w_r ul li .news_tite a{ font-size:18px; color:#000;  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; }
.news_w_r ul li .news_tite p{ width:100%; font-size:16px; color:#666; line-height:25px; display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden; padding-top:8px; }
.newsmore{ margin:50px auto 0px; border:1px solid #ddd; border-radius:10px; color:#666; padding:12px 0px; width:200px; text-align:center; font-size:24px; display:block; }
.newsmore:hover{ border:1px solid #c30d23; background:#c30d23; color:#fff;  }
/* box */
.box1{width:100%;margin:0px auto 0;background:#fff; }
.tab_menu{overflow:hidden; width:100%; background:#f7f6f6; }
.tab_menu li{width:25%;float:left;height:50px;line-height:50px;color:#000;background:#f7f6f6;text-align:center;cursor:pointer; font-size:18px; }
.tab_menu li.current{color:#fff;background:#0f74d6;}
.tab_menu li a{color:#000;text-decoration:none;}
.tab_menu li.current a{color:#fff;}
.tab_box{padding:15px;}
.tab_box li{height:35px;line-height:35px; font-size:16px; overflow:hidden; border-bottom: dashed 1px #ddd; }
.tab_box li span{margin:0 5px 0 0;font-family:"宋体";font-size:12px;font-weight:400;color:#0f74d6;}
.tab_box li a{ color:#000; }
.tab_box li a:hover{ color:#0f74d6; }
.tab_box li p{ display:inline-block; float:right; }
.more{ width:100%; text-align:center; }
.more a{ padding:12px 50px; background:#dddddd; color:#fff; border-radius:10px; font-size:20px; }
.more a:hover{ background:#0f74d6; color:#fff; text-decoration:none; }

	#wrap{
		width:100%;
		min-width: 100%;
		margin:0px;
		background: #fefefe;
		 min-height: 422px;
	}
	.hiSlider{
		overflow: hidden;
		height: auto;
		width: 100%;
		background: #eee;
		min-height: 422px;
	}
	.hiSlider-item{
		float: left;
		width:100%;
		min-height: 422px;
	}
.hiSlider-item img{ width:100%; min-height: 422px; }
.hiSlider-pages, .hiSlider-title {
	position: absolute;
	z-index: 3
}
.hiSlider-btn-prev, .hiSlider-btn-next {
	position: absolute;
	z-index: 5;
	top: 50%;
	height: 30px;
	width: 30px;
	background: url(../images/hislider-arrow.png) no-repeat;
	margin-top: -15px;
	text-indent: -200px;
	overflow: hidden;
	opacity: .6;
filter:alpha(opacity:60)
}
.hiSlider-btn-prev {
	left: 10px
}
.hiSlider-btn-next {
	right: 10px;
	background-position: -30px 0
}
.hiSlider-btn-prev:hover, .hiSlider-btn-next:hover {
	opacity: 1;
filter:alpha(opacity:100)
}
.hiSlider-title {
	bottom: 0;
	width: 100%;
	padding:15px 0;
	color: #fff;
	text-indent: 10px;
	background: rgba(0,0,0,.6);
	z-index: 2;
	font: 16px/2 "Microsoft YaHei", Arial, Tahoma
}
.hiSlider-pages {
	bottom: 25px;
	right: 10px;
	text-align: right
}
.hiSlider-pages a {
	height: 5px;
	width: 15px;
	margin: 0 2px;
	display: inline-block;
	overflow: hidden;
	text-indent: -100px;
	font-size: 0;
	background: #ddd
}
.hiSlider-pages a.active {
	background: #c30d23
}


.nzgy{ width:100%; background:url(../images/indexgybg.jpg) center no-repeat; padding:80px 0px 120px; }
.nzgy_w{ width:100%; max-width:1400px; margin:30px auto; }
.nzgy h1{ width:100%; color:#fff; text-align:center; font-size:36px; padding:20px 0px; }
.nzgy_w ul{ width:102%; }
.nzgy_w ul li { width: calc((100% - 120px)/4); float:left; margin-right:30px; background:rgba(0,0,0,0.5); text-align:center; padding:50px 0px; }
.nzgy_w ul li strong{ width:80px; height:80px; background:#ff0014; font-size:50px; color:#fff; border-radius:40px; line-height:80px; display:inline-block; }
.nzgy_w ul li p{ font-size:24px; color:#fff; padding-top:15px; }
.nzgy_w ul li span{ font-size:14px; display:inline-block; line-height:25px; color:#fff; padding:10px 20px; }
.nzgy_w ul li:hover{ background:#ff0014; }
.nzgy_w ul li:hover   strong{ background:#fff; color:#ff0014; }

.cqzs{ width:100%; background:url(../images/indexcqbg.png) center bottom no-repeat #ececec; padding:60px 0px; }
.cqzs_w{ width:100%; max-width:1400px; margin:30px auto 0px; }
.cqzs_l{ width:73.5%; float:left; overflow:hidden; }
.cqzs_r { width:24.5%; background:#fff; max-height:650px; overflow:hidden; padding:10px; float:right; box-shadow: rgba(43, 50, 54, 0.2) 0px 5px 25px -5px; }
.cqzs_r img {
 width: 100%;
 transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.cqzs_r:hover img {
 transform: scale(1.2, 1.2) 
}
.cqzs_l_t{ width:102%; }
.cqzs_l_t ul li{
 width: calc((100% - 90px)/3);
 float:left;
 background:#fff;
 padding:10px;
 margin-right:30px;
 margin-bottom:30px;
 box-shadow: rgba(43, 50, 54, 0.2) 0px 5px 25px -5px;
}
.cqzs_l_t ul li img {
 width: 100%;
 transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.cqzs_l_t ul li:hover img {
 transform: scale(1.2, 1.2) 
}
.cqzs_l_t .cqzs_tp{ width:100%; overflow:hidden; max-height:290px; }
.cqzs_l_b{ width:102%; }
.cqzs_l_b ul li{
 width: calc((100% - 60px)/2);
 float:left;
 background:#fff;
 padding:10px;
 height: 310px;
 margin-right:30px;
 margin-bottom:30px;
box-shadow: rgba(43, 50, 54, 0.2) 0px 5px 25px -5px;
}
.cqzs_l_b ul li img {
 width: 100%;
  height: 250px;
 transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.cqzs_l_b ul li:hover img {
 transform: scale(1.05, 1.05) 
}
.cqzs_l_b .cqzs_tp{ width:100%; max-height:193px; }
.cqzs_l_t ul li h1{ width:100%; font-size:18px; font-weight:normal; line-height:50px; text-align:center; }
.cqzs_l_b ul li h1{ width:100%; font-size:18px; font-weight:normal; line-height:160px; text-align:center; }

.bottom{ width:100%; background:#1b2022;  }
.bottom_top{ width:100%; max-width:1400px; margin:0 auto; padding:50px 0px; }
.bottom_top_left{ width:60%; float:left; border-right:1px solid #494d4e; }
.bottom_top_left ul{ width:100%;  }
.bottom_top_left h1 { width:13.6%; font-size:18px; float:left; color:#fff; font-weight:bold; }
.bottom_top_left h1 span{ display:block; background:#494d4e; margin:10px 0px 15px; }
.bottom_top_left a{ color:#fff; }
.bottom_top_left ul li a{ font-size:14px; color:rgba(255,255,255,0.4); line-height:30px; }
.bottom_top_left ul li a:hover{ color:#b70000; }
.bottom_b{ width:100%; background:#fff; font-size:14px; text-align:center; line-height:30px; padding:20px 0px; }
.bottom_b a{ color:#000; padding:0px 3px; display:inline-block; width:auto; line-height:30px; }
.bottom_b a:hover{ color:#b70000; }
.bottom_top_right{ width:20%; float:right; padding-top:20px; }
.bottom_top_right_l{ width:15%; float:left; text-align:center; padding-right:3%; }
.bottom_top_right_l p{ width:100%; font-size:16px; color:rgba(255,255,255,0.4); }
.bottom_top_right_l p strong{ font-size:24px; font-weight:normal; }
.bottom_top_right_l img{ width:160px; padding:10px 0px; }
.bottom_top_right_r{ width:95%; float:right; text-align:left; color:#fff; }
.bottom_top_right_r h1{ width:100%; text-align:left; color:#fff; padding:0px 0px 10px; margin:0px; font-size:30px; font-weight:bold; }
.bottom_top_right_r p{ line-height:25px!important; font-size:16px!important; }
.bottom_top_right_r span{ color:#fff!important; font-size:16px!important;  }
.bottom_top_left div h1:nth-child(1){ display:none; }
@media screen and (max-width:768px) {
.fullSlide .bd li{width:100% !important;height:300px;overflow:hidden;text-align:center; background-size:100%!important; }
.fullSlide{width:100%;position:relative;height:300px;background:#000;}
.fullSlide .bd{margin:0 auto;position:relative;z-index:0;overflow:hidden;}
.fullSlide .bd ul{width:100% !important;}
.fullSlide .bd li a{display:block;height:300px;}
.about_l {
    width:100%;
    float: none;
    overflow: hidden;
	padding:0px 4%;
}
.about_r {
    width:100%;
    background: #fff;
    float: right;
    padding: 2% 4%;
}
.news_f a {
    display: inline-block;
	width:24%;
    font-size: 18px;
    background: #c9c9c9;
    color: #fff;
    margin: 20px 0px 20px 1%;
    border-radius: 10px;
}
.news_w_l {
    width:100%;
    float: left;
    overflow: hidden;
	padding:0px 4%;
}
.news_w_r {
    width: 100%;
    float: right;
	padding:0px 4%;
	margin-top:15px;
}
.nzgy_w ul li {
    width: calc((100% - 60px)/2);
    float: left;
    margin-right: 30px;
    background: rgba(0,0,0,0.5);
    text-align: center;
    padding: 50px 0px;
	margin-bottom:20px;
}
.nzgy {
    width: 100%;
    background: url(../images/indexgybg.jpg) center repeat;
    padding: 80px 0px 120px;
}
.bottom_top_left{ display:none; }
.bottom_top_right_l {
    width: 100%;
    float: left;
    text-align: center;
    padding-right: 0%;
}
.bottom_top_right{ width:100%; padding-top:20px; }
.bottom_top_right_r h1 { text-align:center; }
.bottom_top_right_r{ text-align:center; }
.cqzs_l {
    width:100%;
    float: left;
    overflow: hidden;
	padding:0px 4%;
}
.nzgy_w {
	padding:0px 4%;
}
.cqzs_r {
    width: 92%;
    background: #fff;
    max-height:100%;
    overflow: hidden;
    padding: 0px 0px;
    float: none;
	margin:0 auto;
    box-shadow: rgba(43, 50, 54, 0.2) 0px 5px 25px -5px;
}
.cqzs_r img{ padding:15px;}
.cqzs_l_t ul li {
    width: calc((98% - 0px)/1);
    float: left;
    background: #fff;
    padding: 10px;
    margin-right: 30px;
    margin-bottom: 30px;
    box-shadow: rgba(43, 50, 54, 0.2) 0px 5px 25px -5px;
}
.cqzs_l_b ul li {
    width: calc((98% - 0px)/1);
    float: left;
    background: #fff;
    padding: 10px;
    margin-right: 30px;
    margin-bottom: 30px;
    box-shadow: rgba(43, 50, 54, 0.2) 0px 5px 25px -5px;
}
.header .left {
    width: 20%;
    padding-left: 2%;
    float: left;
}
.cqzs_l_b ul li h1 {
    width: 100%;
    font-size:24px;
    font-weight: normal;
    line-height: 50px;
    text-align: center;
}
.cqzs_l_t ul li h1 {
  width: 100%;
  font-size: 24px;
  font-weight: normal;
  line-height: 50px;
  text-align: center;
}
.carousel-control.right {
	right:0px !important;
	left: auto;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,.0001) 0, rgba(0,0,0,.5) 100%);
	background-image: -o-linear-gradient(left, rgba(0,0,0,.0001) 0, rgba(0,0,0,.5) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,.0001)), to(rgba(0,0,0,.5)));
	background-image: linear-gradient(to right, rgba(0,0,0,.0001) 0, rgba(0,0,0,.5) 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	background-repeat: repeat-x
}
.carousel-control.left {
	left:0px !important;}
}
