body {
	background: #fff;
	text-align: center;
}

.w {
	width: 1200px;
	padding: 0;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.cb {
	clear: both;
}

.mt-100 {
	margin-top: -105px;
}

.col666 {
	color: #666;
}

.f16 {
	font-size: 16px;
}


/*banner↓↓↓完美兼容IE浏览器*/

.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel img {
	width: 100%;
}

.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
	float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer;
}

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x: 50%;
	-webkit-perspective-origin-y: 50%;
	-moz-perspective: 1200px;
	-moz-perspective-origin-x: 50%;
	-moz-perspective-origin-y: 50%;
	perspective: 1200px;
}

.owl-fade-out {
	z-index: 10;
	-webkit-animation: fadeOut .7s both ease;
	-moz-animation: fadeOut .7s both ease;
	animation: fadeOut .7s both ease;
}

.owl-fade-in {
	-webkit-animation: fadeIn .7s both ease;
	-moz-animation: fadeIn .7s both ease;
	animation: fadeIn .7s both ease;
}

.owl-backSlide-out {
	-webkit-animation: backSlideOut 1s both ease;
	-moz-animation: backSlideOut 1s both ease;
	animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
	-webkit-animation: backSlideIn 1s both ease;
	-moz-animation: backSlideIn 1s both ease;
	animation: backSlideIn 1s both ease;
}

.owl-goDown-out {
	-webkit-animation: scaleToFade .7s ease both;
	-moz-animation: scaleToFade .7s ease both;
	animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
	-webkit-animation: goDown .6s ease both;
	-moz-animation: goDown .6s ease both;
	animation: goDown .6s ease both;
}

.owl-fadeUp-in {
	-webkit-animation: scaleUpFrom .5s ease both;
	-moz-animation: scaleUpFrom .5s ease both;
	animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
	-webkit-animation: scaleUpTo .5s ease both;
	-moz-animation: scaleUpTo .5s ease both;
	animation: scaleUpTo .5s ease both;
}

@-webkit-keyframes empty {
	0% {
		opacity: 1
	}
}

@-moz-keyframes empty {
	0% {
		opacity: 1
	}
}

@keyframes empty {
	0% {
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@-moz-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes backSlideOut {
	25% {
		opacity: .5;
		-webkit-transform: translateZ(-500px);
	}
	75% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(-200%);
	}
	100% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(-200%);
	}
}

@-moz-keyframes backSlideOut {
	25% {
		opacity: .5;
		-moz-transform: translateZ(-500px);
	}
	75% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(-200%);
	}
	100% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(-200%);
	}
}

@keyframes backSlideOut {
	25% {
		opacity: .5;
		transform: translateZ(-500px);
	}
	75% {
		opacity: .5;
		transform: translateZ(-500px) translateX(-200%);
	}
	100% {
		opacity: .5;
		transform: translateZ(-500px) translateX(-200%);
	}
}

@-webkit-keyframes backSlideIn {
	0%,
	25% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(200%);
	}
	75% {
		opacity: .5;
		-webkit-transform: translateZ(-500px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0) translateX(0);
	}
}

@-moz-keyframes backSlideIn {
	0%,
	25% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(200%);
	}
	75% {
		opacity: .5;
		-moz-transform: translateZ(-500px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateZ(0) translateX(0);
	}
}

@keyframes backSlideIn {
	0%,
	25% {
		opacity: .5;
		transform: translateZ(-500px) translateX(200%);
	}
	75% {
		opacity: .5;
		transform: translateZ(-500px);
	}
	100% {
		opacity: 1;
		transform: translateZ(0) translateX(0);
	}
}

@-webkit-keyframes scaleToFade {
	to {
		opacity: 0;
		-webkit-transform: scale(.8);
	}
}

@-moz-keyframes scaleToFade {
	to {
		opacity: 0;
		-moz-transform: scale(.8);
	}
}

@keyframes scaleToFade {
	to {
		opacity: 0;
		transform: scale(.8);
	}
}

@-webkit-keyframes goDown {
	from {
		-webkit-transform: translateY(-100%);
	}
}

@-moz-keyframes goDown {
	from {
		-moz-transform: translateY(-100%);
	}
}

@keyframes goDown {
	from {
		transform: translateY(-100%);
	}
}

@-webkit-keyframes scaleUpFrom {
	from {
		opacity: 0;
		-webkit-transform: scale(1.5);
	}
}

@-moz-keyframes scaleUpFrom {
	from {
		opacity: 0;
		-moz-transform: scale(1.5);
	}
}

@keyframes scaleUpFrom {
	from {
		opacity: 0;
		transform: scale(1.5);
	}
}

@-webkit-keyframes scaleUpTo {
	to {
		opacity: 0;
		-webkit-transform: scale(1.5);
	}
}

@-moz-keyframes scaleUpTo {
	to {
		opacity: 0;
		-moz-transform: scale(1.5);
	}
}

@keyframes scaleUpTo {
	to {
		opacity: 0;
		transform: scale(1.5);
	}
}

.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
	float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer;
}

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x: 50%;
	-webkit-perspective-origin-y: 50%;
	-moz-perspective: 1200px;
	-moz-perspective-origin-x: 50%;
	-moz-perspective-origin-y: 50%;
	perspective: 1200px;
}

.owl-fade-out {
	z-index: 10;
	-webkit-animation: fadeOut .7s both ease;
	-moz-animation: fadeOut .7s both ease;
	animation: fadeOut .7s both ease;
}

.owl-fade-in {
	-webkit-animation: fadeIn .7s both ease;
	-moz-animation: fadeIn .7s both ease;
	animation: fadeIn .7s both ease;
}

.owl-backSlide-out {
	-webkit-animation: backSlideOut 1s both ease;
	-moz-animation: backSlideOut 1s both ease;
	animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
	-webkit-animation: backSlideIn 1s both ease;
	-moz-animation: backSlideIn 1s both ease;
	animation: backSlideIn 1s both ease;
}

.owl-goDown-out {
	-webkit-animation: scaleToFade .7s ease both;
	-moz-animation: scaleToFade .7s ease both;
	animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
	-webkit-animation: goDown .6s ease both;
	-moz-animation: goDown .6s ease both;
	animation: goDown .6s ease both;
}

.owl-fadeUp-in {
	-webkit-animation: scaleUpFrom .5s ease both;
	-moz-animation: scaleUpFrom .5s ease both;
	animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
	-webkit-animation: scaleUpTo .5s ease both;
	-moz-animation: scaleUpTo .5s ease both;
	animation: scaleUpTo .5s ease both;
}

@-webkit-keyframes empty {
	0% {
		opacity: 1
	}
}

@-moz-keyframes empty {
	0% {
		opacity: 1
	}
}

@keyframes empty {
	0% {
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@-moz-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes backSlideOut {
	25% {
		opacity: .5;
		-webkit-transform: translateZ(-500px);
	}
	75% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(-200%);
	}
	100% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(-200%);
	}
}

@-moz-keyframes backSlideOut {
	25% {
		opacity: .5;
		-moz-transform: translateZ(-500px);
	}
	75% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(-200%);
	}
	100% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(-200%);
	}
}

@keyframes backSlideOut {
	25% {
		opacity: .5;
		transform: translateZ(-500px);
	}
	75% {
		opacity: .5;
		transform: translateZ(-500px) translateX(-200%);
	}
	100% {
		opacity: .5;
		transform: translateZ(-500px) translateX(-200%);
	}
}

@-webkit-keyframes backSlideIn {
	0%,
	25% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(200%);
	}
	75% {
		opacity: .5;
		-webkit-transform: translateZ(-500px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateZ(0) translateX(0);
	}
}

@-moz-keyframes backSlideIn {
	0%,
	25% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(200%);
	}
	75% {
		opacity: .5;
		-moz-transform: translateZ(-500px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateZ(0) translateX(0);
	}
}

@keyframes backSlideIn {
	0%,
	25% {
		opacity: .5;
		transform: translateZ(-500px) translateX(200%);
	}
	75% {
		opacity: .5;
		transform: translateZ(-500px);
	}
	100% {
		opacity: 1;
		transform: translateZ(0) translateX(0);
	}
}

@-webkit-keyframes scaleToFade {
	to {
		opacity: 0;
		-webkit-transform: scale(.8);
	}
}

@-moz-keyframes scaleToFade {
	to {
		opacity: 0;
		-moz-transform: scale(.8);
	}
}

@keyframes scaleToFade {
	to {
		opacity: 0;
		transform: scale(.8);
	}
}

@-webkit-keyframes goDown {
	from {
		-webkit-transform: translateY(-100%);
	}
}

@-moz-keyframes goDown {
	from {
		-moz-transform: translateY(-100%);
	}
}

@keyframes goDown {
	from {
		transform: translateY(-100%);
	}
}

@-webkit-keyframes scaleUpFrom {
	from {
		opacity: 0;
		-webkit-transform: scale(1.5);
	}
}

@-moz-keyframes scaleUpFrom {
	from {
		opacity: 0;
		-moz-transform: scale(1.5);
	}
}

@keyframes scaleUpFrom {
	from {
		opacity: 0;
		transform: scale(1.5);
	}
}

@-webkit-keyframes scaleUpTo {
	to {
		opacity: 0;
		-webkit-transform: scale(1.5);
	}
}

@-moz-keyframes scaleUpTo {
	to {
		opacity: 0;
		-moz-transform: scale(1.5);
	}
}

@keyframes scaleUpTo {
	to {
		opacity: 0;
		transform: scale(1.5);
	}
}

.owl-theme .owl-controls {
	text-align: center;
	width: 100%;
	position: inherit;
	text-align: center;
	top: -90px;
	left: 0;
	right: 0;
	z-index: 98999999;
}

.owl-theme .owl-controls .owl-buttons div {
	display: inline-block;
	zoom: 1;
	*display: inline;
	/*IE7 life-saver */
	margin: 5px;
	height: 65px;
	width: 65px;
	padding: 3px 10px;
	font-size: 12px;
	filter: Alpha(Opacity=50);
	/*IE7 fix*/
	opacity: 0.5;
}

.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100);
	/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline;
	border-radius: 50%;
	/*IE7 life-saver */
	z-index: 99;
}

.owl-theme .owl-controls .owl-page span {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);
	/*IE7 fix*/
	background: #535353;
	border-radius: 50%;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);
	/*IE7 fix*/
	background: white;
}

.owl-theme .owl-controls .owl-page span.owl-numbers {
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.owl-item.loading {
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

.owl-prev {
	position: absolute;
	top: 27%;
	left: -6%;
	background: url(../images/leftbtn.png) no-repeat;
}

.owl-next {
	position: absolute;
	top: 27%;
	right: -7%;
	background: url(../images/rightbtn.png) no-repeat;
}

.owl-pagination {
	width: 1200px;
	margin: auto;
	padding: 35px 0;
	text-align: right;
}

@media (max-width: 768px) {
	.owl-theme .owl-controls .owl-buttons div {
		display: none;
		zoom: 1;
		*display: inline;
		/*IE7 life-saver */
		margin: 5px;
		height: 65px;
		width: 65px;
		padding: 3px 10px;
		font-size: 12px;
		filter: Alpha(Opacity=50);
		/*IE7 fix*/
		opacity: 0.5;
	}
}


/*banner-end*/

.gy-mar-top {
	overflow: hidden;
	width: 100%;
	height: auto;
	position: relative;
}

.gy-mar-top .xsxx {
	width: 100%;
	margin: auto;
	padding: 30px 0;
	text-align: left;
	position: absolute;
	bottom: 105px;
	z-index: 98;
	left: 0;
	right: 0;
	color: white;
	font-size: 24px;
	background-color: rgba(232, 112, 85, 0.8);
}

.gy-mar-top .xsxx .xxcon {
	width: 1200px;
	margin: auto;
	z-index: 999;
	line-height: 30px;
}

.gy-mar-top .xsxx span {
	margin-right: 35px;
}

.gy-top {
	margin-top: 50px;
	text-align: center;
}

.gy-top h2 {
	color: #333;
	font-size: 34px;
	font-weight: 600;
}

.gy-top .gy-i-p {
	margin: 25px 0 50px 0;
}

.gy-top .gy-i-p span {
	color: #666;
	font-size: 16px;
}

.gy-top .gy-i-p span:nth-child(2) {
	color: #e46d52;
	margin-left: 35px;
}

.gy-top p {
	margin: 30px 0;
}

.gy-top .row .bdr1dc {
	border: 1px solid #dcdcdc;
	transform: scale(0.95);
	margin-top: 10px;
	margin-bottom: 10px;
}

.gy-top .row .col-lg-6 {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.gy-top .row .col-lg-6 .imgbg {
	width: 30%;
	height: 240px;
	overflow: hidden;
}

.gy-top .row .col-lg-6 .imgbg img {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
}

.gy-top .row .col-lg-6 .zg-zhezhao {
	width: 30%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s;
	overflow: hidden;
}

.gy-top .row .col-lg-6:hover .zg-zhezhao {
	height: 0;
	border: 250px solid rgba(234, 85, 50, 0.8);
	border-color: white white white rgba(234, 85, 50, 0.8);
	top: -130px;
	left: -70px;
	overflow: hidden;
	background: none;
}

.gy-top .row .col-lg-6 .zhihui {
	margin: auto;
	position: absolute;
	top: 70px;
	left: 50px;
}

.gy-top .row .col-lg-6 .zhihuicon {
	width: 350px;
	text-align: left;
	margin-right: 40px;
	line-height: 20px;
	position: absolute;
	right: 0;
	top: 0;
}

.gy-top .row .col-lg-6 .zhihuicon .lookmore {
	display: inline-block;
	text-align: center;
	cursor: pointer;
	border: 1px solid #ea5532;
	background-color: white;
	color: #eb6d20;
	position: absolute;
	right: -5px;
	bottom: 0;
	padding: 5px 15px;
}

.gy-top .row .col-lg-6 .zhihuicon .lookmore:hover {
	background-color: #e97257;
	color: white;
}

.gy-top .row .col-lg-6 .zhihuicon span {
	color: #666;
	font-size: 14px;
}

.gy-top .row .col-lg-6 .zhihuicon p:nth-child(1) {
	font-size: 20px;
	color: #333;
	margin-bottom: 20px;
}

.gy-top .row .col-lg-6 .zhihuicon p:nth-child(3) {
	font-size: 16px;
	color: #000;
	margin-bottom: 10px;
	margin-top: 20px;
}

.gy-top .row .col-lg-6 .zhihuicon a {
	transition: all 0.2s;
	margin-right: 10px;
	margin-left: 5px;
}

.gy-top .row .col-lg-6 .zhihuicon .zhihuicona {
	line-height: 30px;
	color: #666;
	cursor: default;
}

.gy-top .row .col-lg-6 .zhihuicon .zhihuicona a {
	color: #666;
}

.gy-top .row .col-lg-6 .zhihuicon a:hover {
	color: #ff6600;
}

.pingtai {
	margin: 20px;
	display: none;
}

.pingtai li {
	padding: 0 10px;
}

.pingtai li img {
	width: 35px;
	height: 35px;
}

.pingtai li p {
	font-size: 16px;
	margin: 5px 0;
}

.pingtai ul li {
	width: 50%;
	float: left;
	padding: 15px;
	border: 1px solid #dcdcdc;
	border-bottom: none;
	border-right: none;
}

.pingtai ul li:nth-child(2) {
	border-right: 1px solid #dcdcdc;
}

.pingtai ul li:nth-last-child(1) {
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}

.pingtai ul li:nth-last-child(2) {
	border-bottom: 1px solid #dcdcdc;
}

.pingtai li span {
	color: #666;
	font-size: 12px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}


/*电脑图片 */

.yinxiang {
	width: 100%;
	height: 280px;
	margin: 150px 0;
}

.yinxiang .yxcon img {
	width: 100%;
}

.yinxiang .yxcon {
	width: 1200px;
	margin: auto;
	position: relative;
}

.yinxiang .yxcon .yx {
	max-width: 400px;
	max-height: 500px;
	float: left;
	position: absolute;
	top: -380px;
	left: 30px;
}

.yinxiang .yxcon .yxtex {
	color: white;
	text-align: left;
	position: absolute;
	top: -225px;
	right: 0px;
}

.yinxiang .yxcon .yxtex span {
	margin-left: 60px;
	font-size: 26px;
	font-weight: bold;
}

.yinxiang .yxcon .yxtex p {
	font-size: 20px;
	margin-left: 60px;
}

.yinxiang .yxcon .yxtex .mt50 {
	margin-top: 40px;
	margin-bottom: 10px;
}

.yinxiang .yxcon .yxtexht {
	text-align: left;
	margin-left: 450px;
	margin-top: 15px;
	font-size: 16px;
	color: #333;
}

.yxmt {
	margin-top: 40px;
	margin-bottom: 45px;
}

.yxmt p {
	margin-top: 20px;
}


/*电脑图片 end */


/*网站建设 */

.wzjsbg {
	text-align: left;
}

.wzjsbg .fl {
	float: left;
}

.wzjsbg .fr {
	float: right;
}

.wzjsbg .wzjs {
	width: 100%;
	background: #707070;
	color: white;
	font-size: 24px;
}

.wzjshover {
	width: 47%;
}

.wzjsbg .wzjs p {
	font-size: 14px;
	padding: 25px;
	padding-top: 0;
}

.wzjsbg .wzjs .wzjsimgbg span {
	margin-left: 10px;
	display: inline-block;
	padding-top: 15px;
}

.wzjsbg .wzjs .wzjsimgbg a {
	display: inline-block;
	float: right;
	margin: 25px 30px 0 0;
	color: white;
	border: 1px solid white;
	padding: 5px 10px;
	font-size: 12px;
}

.wzjsbg .wzjs .wzjsimgbg a:hover{ cursor: pointer;}

.wzjsbg .wzjs img {
	margin: 15px 25px;
}

.wzjsbg table {
	width: 100%;
	margin-top: 10px;
}

.wzjsbg table tr {
	width: 100%;
	height: 180px;
}

.wzjsbg table tr td {
	width: 50%;
	line-height: 50px;
	background: #fff;
}

.wzjsbg table tr td div {
	float: left;
}

.wzjsbg table tr td:hover img {
	-webkit-filter: none;
	/* Chrome, Safari, Opera */
	filter: none;
}

.wzjsbg table tr td a:hover {
	background-color: #ea5532;
	color: white;
	border: 1px solid white;
}

.wzjsbg table tr td:hover p {
	color: #ea5532;
}

.wzjsadd {
	width: 50px;
	float: left;
	margin-top: 245px;
	margin-left: 15px;
}

.text-1 {
	line-height: 30px;
	text-align: center;
	float: right;
	width: 50%;
	margin-right: 15px;
}

.text-1 span {
	font-size: 12px;
	color: #666;
	display: block;
	width: 100%;
	float: right;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 20px;
	text-align: left;
}

.text-1 p {
	font-size: 20px;
	color: #333;
	text-align: center;
	margin: 10px 0;
}

.text-1 a {
	font-size: 16px;
	color: #666;
	display: inline-block;
	padding: 6px 23px;
	border: 1px solid #c9c9c9;
	margin: 25px 0;
}

.img-1 {
	margin: 32px;
	margin-top: 40px;
}

.img-1 img {
	width: 50px;
	height: 50px;
	-webkit-filter: grayscale(100%);
	/* Chrome, Safari, Opera */
	filter: grayscale(100%);
}


/*网站建设end */

.fwlchr {
	width: 100%;
	height: 1px;
	background-color: #b5b5b5;
	margin: 65px 0;
}

.fwlc {
	width: 1200px;
	margin: auto;
	text-align: left;
	color: #000000;
	font-size: 22px;
}

.fwlc .fwlctitle {
	display: inline-block;
	padding: 10px 50px;
	background-color: #ea5532;
	color: white;
	font-size: 30px;
	margin-right: 30px;
}

.fwlc span span {
	color: #ff6600;
}

.fwlc .appnone {
	display: none;
}

.fwlc hr {
	float: right;
	width: 260px;
	height: 1px;
	background-color: #a0a0a0;
	margin-top: 35px;
}


/*规划设计*/

@media (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}

p {
	margin: 0;
}

a:hover {
	text-decoration: none;
}


/*规划设计*/

.cp-text-1 {
	width: 100%;
	text-align: center;
}

.cp-text-1 .cp-text-2 {
	font-size: 30px;
	color: #333333;
	margin-top: 96px;
}

.cp-text-1 .cp-text-3 {
	font-size: 20px;
	color: #333333;
	margin-top: 18px;
}

.cp-text-1 .cp-text-3 span {
	color: #ea5432;
}

.cp-fwlcbg {
	width: 1200px;
	margin: auto;
}

.cp-fwlcbg .cp-qiehuan-1 li {
	width: 100px;
	height: 100px;
	background-color: #ea5532;
	border: none;
	color: white;
	border-radius: 50%;
	float: left;
	line-height: 27px;
	margin: 50px;
	border: 1px solid #ea5532;
	position: relative;
	text-align: center;
	transition-delay: all;
	transition-duration: 0.3s;
	cursor: pointer;
	/*光标呈现为指示链接的指针（一只手）*/
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Chrome/Safari/Opera */
	-khtml-user-select: none;
	/* Konqueror */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently not supported by any browser */
}

.cp-fwlcbg .cp-qiehuan-2 li {
	background-color: #ea5532;
	border: none;
	color: white;
	border-radius: 50%;
	float: left;
	line-height: 27px;
	margin: 50px;
	border: 1px solid #ea5532;
	position: relative;
}

.cp-fwlcbg .cp-qiehuan-1 li:after {
	content: '>';
	color: #000;
	position: absolute;
	top: 40px;
	right: -50px;
}

.cp-fwlcbg .cp-qiehuan-1 li:nth-last-child(1):after {
	content: '';
}

.cp-fwlcbg .cp-qiehuan-1 li:nth-child(1) {
	color: #ea5532;
	background-color: white;
	width: 110px;
	height: 110px;
	margin: 40px;
	margin-top: 50px;
}

.cp-fwlcbg .cp-qiehuan-1 li:hover {
	color: #ea5532;
	background-color: white;
}

.cp-fwlcbg .cp-qiehuan-1 li p {
	font-size: 36px;
	margin-top: 30px;
}

.cp-fwlcbg .cp-qiehuan-1 li span {
	font-size: 14px;
}

.cp-fwlccon .cp-qiehuan-2 li {
	width: 100%;
	border-radius: 0;
	background-color: #f5f5f5;
	padding-bottom: 20px;
	margin: 0;
	border: none;
	display: none;
}

.cp-fwlccon .cp-qiehuan-2 li:hover {
	background-color: #f5f5f5;
}

.cp-fwlccon .cp-qiehuan-2 li:after {
	content: '';
}

.cp-bodersanjiao {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 30px solid #f5f5f5;
	position: absolute;
	top: -30px;
}

.cp-fwlccon .cp-qiehuan-2 li:nth-child(1)>.cp-bodersanjiao {
	left: 80px;
}

.cp-fwlccon .cp-qiehuan-2 li:nth-child(2)>.cp-bodersanjiao {
	left: 280px;
}

.cp-fwlccon .cp-qiehuan-2 li:nth-child(3)>.cp-bodersanjiao {
	left: 480px;
}

.cp-fwlccon .cp-qiehuan-2 li:nth-child(4)>.cp-bodersanjiao {
	left: 680px;
}

.cp-fwlccon .cp-qiehuan-2 li:nth-child(5)>.cp-bodersanjiao {
	left: 880px;
}

.cp-fwlccon .cp-qiehuan-2 li:nth-child(6)>.cp-bodersanjiao {
	left: 1080px;
}

.cp-fwlccon .cp-qiehuan-2 li:nth-child(1) {
	display: block;
}

.cp-hengxian {
	width: 840px;
	height: 4px;
	background-color: #cccccc;
	margin-top: 42px;
}

.cp-hengxian .cp-sanjiao {
	width: 0;
	height: 0;
	border-top: 10px solid #cccccc;
	border-left: 10px solid transparent;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	/* IE 9 */
	-moz-transform: rotate(45deg);
	/* Firefox */
	-webkit-transform: rotate(45deg);
	/* Safari 和 Chrome */
	-o-transform: rotate(45deg);
	/* Opera */
	float: right;
	margin-top: -3px;
}

.cp-shuzi-1 {
	width: 175px;
	text-align: left;
	margin-top: -16px;
	margin-left: 38px;
	float: left;
}

.cp-shuzi-1>p {
	margin: 0 !important;
}

.cp-shuzi-1 p:nth-child(1) {
	width: 28px;
	height: 28px;
	border-radius: 100px;
	border: 1px solid #cccccc;
	background-color: white;
	color: #000000;
	font-size: 14px;
	text-align: center;
	margin-left: 14px !important;
}

.cp-shuzi-1 p:nth-child(2) {
	font-size: 14px;
	color: #ea5532;
	margin-top: 8px !important;
}

.cp-shuzi-1 p:nth-child(3) {
	font-size: 14px;
	color: #000000;
	margin-top: 4px !important;
}

.cp-shuzi-1 p:nth-child(3) span {
	font-weight: bold;
}


/*规划设计结束*/


/*媒体查询*/

@media only screen and (max-width: 1200px) {
	.cp-fuwu {
		width: 95%;
		height: auto;
		margin: 0 auto;
		margin-top: 30px;
		border-top: 1px dashed #cccccc;
		border-bottom: 1px dashed #cccccc;
		margin-bottom: 30px;
	}
	.cp-fuwu p {
		font-size: 16px;
		color: #333333;
		text-align: center;
		display: inline;
		line-height: 30px;
	}
	.cp-fuwu p:nth-child(1) {
		margin-top: 54px;
	}
	.cp-fuwu span {
		color: #ea5532;
	}
	.cp-fuwu-1 {
		width: 90%;
		height: 0px;
		border-left: none;
		border-right: none;
		margin: 0 auto;
		margin-top: 0;
		margin-bottom: 0;
	}
	.cp-border-2 hr {
		width: 43px;
		height: 2px;
		background-color: #ea5837;
		border: none;
		margin: 0 auto;
		margin-top: 8px;
		margin-bottom: 12px;
	}
	.cp-zxfw-1 {
		padding: 0 40px;
		margin-top: 30px;
	}
	.cp-zxfw {
		margin-top: 30px;
		padding-bottom: 30px;
	}
	.cp-text-1 .cp-text-2,
	.cp-jsfw,
	.cp-ywfw-1,
	.cp-jsfw ul {
		margin-top: 30px;
	}
	.cp-text-1 .cp-text-2,
	.cp-jsfw .cp-jsfw-1,
	.cp-ywfw-1,
	.cp-ywfw-4 p:nth-child(2),
	.cp-border-2 p {
		font-size: 20px;
	}
	.cp-ywfw-2,
	.cp-jsfw .cp-jsfw-2 {
		font-size: 16px;
	}
	.cp-text-1 .cp-text-3,
	.cp-jsfw .cp-jsfw-3,
	.cp-ywfw-3,
	.cp-ywfw-4 p:nth-child(3) {
		font-size: 14px;
	}
	.cp-jsfw {
		padding: 30px 0;
	}
	.cp-jsfw ul a li {
		margin: 0 auto;
		margin-top: 10px;
		float: none;
	}
	.cp-jsfw ul a:nth-child(1) li {
		margin-left: auto;
	}
	.cp-border-3 {
		width: 100%;
		padding: 65px 0;
		margin: 0 auto;
		float: none;
		text-align: center;
	}
	.cp-ywfw-4 {
		margin-top: 50px;
	}
	.cp-fwlcbg {
		width: 100%;
	}
	.cp-fwlccon .cp-qiehuan-2 li {
		width: 100%;
	}
	.footer-3 {
		display: none;
	}
}


/*规划设计媒体查询*/

@media only screen and (min-width: 769px) and (max-width: 1024px) {
	.cp-fwlcbg .cp-qiehuan-1 li {
		width: 100px !important;
		height: 100px !important;
		margin: 35px !important;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(1)>.cp-bodersanjiao {
		left: 66px;
		top: -30px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(2)>.cp-bodersanjiao {
		left: 236px;
		top: -30px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(3)>.cp-bodersanjiao {
		left: 406px;
		top: -30px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(4)>.cp-bodersanjiao {
		left: 576px;
		top: -30px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(5)>.cp-bodersanjiao {
		left: 746px;
		top: -30px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(6)>.cp-bodersanjiao {
		left: 918px;
		top: -30px;
	}
	.cp-shuzi-1 {
		width: 160px;
	}
	.cp-jyqj {
		width: 100%;
		background-image: url(../img/index/index-2.png);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		text-align: center;
		padding: 50px 0 30px 0;
	}
	.cp-jyqj p:nth-child(1) {
		font-size: 22px;
		color: white;
	}
	.cp-jyqj p:nth-child(2) {
		font-size: 18px;
		color: #ea5432;
	}
}

@media only screen and (max-width: 768px) {
	.cp-fwlcbg {
		width: 95%;
		margin: 0 auto;
		margin-top: 30px;
	}
	.text-1{
		width: 100%;
	}
	.text-1 p{
		width: 100%;
	}
	.cp-qiehuan-1 {
		float: left;
		width: 15%;
	}
	.cp-qiehuan-2 {
		float: right;
		width: 79%;
	}
	.cp-qiehuan-1 li {
		width: 54px !important;
		height: 54px !important;
		margin: 0 auto !important;
		float: none !important;
		margin-top: 20px !important;
	}
	.cp-qiehuan-1 li p {
		margin: 0 !important;
		height: 20px !important;
		font-size: 20px !important;
	}
	.cp-qiehuan-1 li span {
		font-size: 12px !important;
	}
	.cp-qiehuan-2 li {
		height: auto !important;
		padding: 0 0 30px 0;
	}
	.cp-hengxian {
		width: 2px;
		height: 430px;
		margin-top: 0;
		margin-left: 20px;
		padding-top: 426px;
		float: left;
		opacity: 0;
	}
	.cp-hengxian>.cp-sanjiao {
		width: 0;
		height: 0;
		border: none;
		border-bottom: 10px solid #cccccc;
		border-left: 10px solid transparent;
		transform: rotate(45deg);
		float: none;
		margin-left: -4px;
		opacity: 0;
	}
	.cp-bodersanjiao {
		width: 0;
		height: 0;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-right: 20px solid #f5f5f5;
		position: absolute;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(1)>.cp-bodersanjiao {
		top: 38px;
		left: -38px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(2)>.cp-bodersanjiao {
		top: 111px;
		left: -38px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(3)>.cp-bodersanjiao {
		top: 185px;
		left: -38px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(4)>.cp-bodersanjiao {
		top: 260px;
		left: -38px;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(5)>.cp-bodersanjiao {
		top: 335px;
		left: -38px;
		;
	}
	.cp-fwlccon .cp-qiehuan-2 li:nth-child(6)>.cp-bodersanjiao {
		top: 413px;
		left: -38px;
	}
	.cp-shuzi-1 {
		float: none;
		margin-top: 10px;
		width: 80%;
	}
	.cp-shuzi-1 p:nth-child(1) {
		float: left;
		margin-left: -30px !important;
		position: absolute;
	}
	.cp-shuzi-1 p:nth-child(2) {
		float: none;
	}
	.cp-fwlcbg .cp-qiehuan-1 li:after {
		content: '>';
		color: #000;
		position: absolute;
		top: 50px;
		right: 43.5%;
		transform: rotate(90deg);
	}
	.cp-jyqj {
		width: 100%;
		background-image: url(../img/index/index-2.png);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		text-align: center;
		padding: 50px 0 30px 0;
	}
	.cp-jyqj p:nth-child(1) {
		font-size: 22px;
		color: white;
	}
	.cp-jyqj p:nth-child(2) {
		font-size: 18px;
		color: #ea5432;
	}
}

@media only screen and (max-width: 320px) {
	.cp-fwlcbg .cp-qiehuan-1 li span {
		display: none;
	}
	.cp-fwlcbg .cp-qiehuan-1 li p {
		line-height: 48px;
	}
	.cp-fwlcbg .cp-qiehuan-1 li span {
		display: none;
	}
}


/*-----------------------------------------场景方案------------------------------------------- */

.jjfabg {
	width: 100%;
	padding: 0 0 30px 0;
	background: url(../img/index/jjfabg.png) no-repeat;
	background-size: cover;
	height: 600px;
}

.jjfabg .jjfacon {
	width: 1200px;
	margin: auto;
	color: white;
	text-align: left;
	margin-top: 70px;
	padding-top: 60px;
	padding-left: 50px;
}

.jjfabg .jjfacon p {
	font-size: 30px;
	margin-bottom: 25px;
}

.jjfabg .jjfacon span {
	font-size: 16px;
}

.jjlistbg ul {
	border-right: 2px solid #5c5a59;
	width: 115px;
	margin-top: 40px;
}

.jjlistbg ul li {
	margin-right: -3px;
	padding: 10px 0;
	font-size: 18px;
}

.jjlistbg ul li:hover {
	border-right: 4px solid #ea5532;
	color: #ea5532;
	cursor: pointer;
}

.jjlistconbg {
	width: 900px;
	float: left;
	margin-left: 100px;
	margin-top: 40px;
}

.jjfacon .jjlistconbg ul li {
	line-height: 25px;
	display: none;
}

.jjfacon .jjlistconbg ul li p {
	font-size: 14px;
	margin-bottom: 10px;
}

.jjfacon .jjlistconbg ul li p:nth-child(1) {
	font-size:20px;
	padding-top: 10px;
	font-weight: bold;
}

.jjfacon .jjlistconbg ul li a:nth-child(4) {
	font-size: 14px;
	display: inline-block;
	padding: 5px 30px;
	border: 1px solid #ea5532;
	margin: 20px 0;
}

.jjfacon .jjlistconbg ul li span {
	display: inline-block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.jjfacon .jjlistconbg ul li a:nth-child(4):hover {
	color: #ea5532;
}

.whyd {
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid #ccc;
	margin: 5px 10px;
}

.whyd:hover {
	color: #ea5532;
	border: 1px solid #ea5532;
}

.anlicon {
	width: 1200px;
	margin: auto;
	margin-top: 60px;
}

.jjfacon .jjlistconbg ul li a div {
	display: inline-block;
	width: 180px;
	height: 50px;
	background-color: #434343;
	margin: 5px;
}

.jjfacon .jjlistconbg ul li a div img {
	width: 100%;
	height: 50px;
}

.jjfabg .hide {
	display: none;
	opacity: 0;
	transition: all 0.5s;
}

.jjfabg .avtiveone {
	display: block !important;
	opacity: 1;
}

.jjfabg .avtive2 {
	border-right: #ea5532 4px solid !important;
	color: #ea5532;
}


/*-----------------------------------------场景方案------------------------------------------- */


/*-----------------------------------------案例------------------------------------------- */

.anlititle {
	margin: auto;
	margin-top: 55px;
}

.anlititle p {
	font-size: 34px;
	color: #333;
	font-weight: bold;
	font-family: "微软雅黑";
}

.anlititle hr {
	width: 50px;
	height: 4px;
	background-color: #ea5532;
	margin-top: 15px;
}

.anlititle span {
	font-size: 16px;
	color: #666;
}

.anlicon .row .col-lg-3 .alctile {
	position: relative;
	margin-top: 10px;
}

.anlicon .row .col-lg-3 .alctile img {
	width: 100%;
}

.anlicon .row .col-lg-3 .alctile .alctco {
	width: 100%;
	height: 50px;
	/*background-color: rgba(255, 255, 255, 0.8);*/
	background-color: #fff;
	position: absolute;
	bottom: 0;
	transition: all 0.5s;
	opacity: 0;
}

.anlicon .row .col-lg-3 :hover {
	cursor: pointer;
}

.anlicon .row .col-lg-3:hover .alctile .alctco {
	opacity: 1;
}

.anlicon .row .col-lg-3 .alctile .alctco img:nth-child(1) {
	max-width: 100px;
}

.anlicon .row .col-lg-3 .alctile .alctco img {
	max-width: 35px;
	margin: 9px;
}

.anlicon .row .col-lg-3 p {
	width: 100%;
	font-size: 18px;
	padding: 10px;
	transition: all 0.5s;
}

.anlicon .row .col-lg-3:hover p {
	background-color: #ea5532;
	color: white;
}

.an_more {
	margin-top: 60px;
	display: inline-block;
	padding: 10px 95px;
	border: 1px solid #ea5532;
	color: #ea5532;
	transition: all 0.5s;
	font-size: 20px;
}

.an_more:hover {

	
	background-color: #ea5532;
	color: white;
}

/*-----------------------------------------案例------------------------------------------- */


/*-----------------------------------------数字跳动------------------------------------------- */

.sum {
	width: 100%;
	height: 500px;
	margin: 50px 0;
	background: url(../img/index/sumbg.png);
}

.sum .sumcon {
	width: 1200px;
	margin: auto;
}

.sum .sumcon p:nth-child(1) {
	font-size: 37px;
	color: white;
	padding: 65px 0 50px 0;
}

.sum .sumcon ul li {
	width: 25%;
	color: white;
	float: left;
	font-size: 60px;
}

.sum .sumcon ul li span {
	font-size: 60px;
}

.sum .sumcon ul li p {
	font-size: 22px;
	padding-top: 25px;
}

.sum .sumcon ul li:nth-child(3) p:nth-child(3) {
	padding-top: 0px;
}

.sum .sumcon a {
	margin-top: 60px;
	display: inline-block;
	padding: 10px 95px;
	border: 1px solid white;
	color: white;
	transition: all 0.5s;
	font-size: 20px;
}

.sum .sumcon a:hover {
	background-color: white;
	color: #ca2327;
}


/*-----------------------------------------数字跳动------------------------------------------ */


/*-----------------------------------------关注示剑------------------------------------------- */

.gzsj {
	width: 1200px;
	margin: 60px auto;
	margin-bottom: 30px;
}

.gzsj img {
	width: 100%;
}

.gzsj .row .col-lg-4 h6 {
	font-weight: bold;
	font-size: 18px;
}

.gzsj .row .col-lg-4 a {
	font-size: 14px;
	display: inline-block;
	text-align: right;
	border-bottom: 1px solid #e5e5e5;
	padding: 10px 0 10px 50px;
}

.gzlbg {
	margin: 20px 0;
	text-align: left;
}

.gzsj .row .col-lg-4 .gzlbg a {
	text-align: left;
	width: 100%;
	font-size: 16px;
	padding-left: 50px;
	color: #333;
}

.gzsj .row .col-lg-4 .gzlbg a {
	padding: 15px 0 15px 0;
}

.gzsj .row .col-lg-4 .gzlbg ul li {
	width: 100%;
}

.gzsj .row .col-lg-4 .gzlbg ul li a {
	float: left;
	text-align: left;
	padding: 10px 0 0 0;
	border: none;
	font-size: 15px;
	color: #666;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 85%;
}

.gzsj .row .col-lg-4 .gzlbg ul li span {
	margin-top: 10px;
	float: right;
	color: #999999;
}

.gzsj .row .col-lg-4 a:hover {
	color: #ea5532;
	cursor: pointer;
}

.gzsj .row .col-lg-4 .gzlbg ul li a:hover {
	color: #ea5532;
}


/*-----------------------------------------关注示剑----------------------------------------------- */

.fixfoot {
	position: fixed;
	bottom: 0;
	display: none;
}

.fixfoot ul li {
	width: 20%;
	float: left;
	background-color: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	color: white;
	text-align: center;
	padding-bottom: 10px;
}

.fixfoot ul li img {
	width: 80%;
	padding: 5px 15px;
}


/*-----------------------------------------1190px媒体查询------------------------------------------ */

@media screen and (max-width: 1190px) {
	.w {
		width: 100%;
	}
	.mt-100 {
		margin-top: -10%;
	}
	.owl-pagination {
		width: 100%;
	}
	.gy-mar-top .xsxx .xxcon {
		width: 100%;
	}
	.gy-mar-top .xsxx span {
		margin: 10px 20px;
	}
	.yinxiang .yxcon .yx {
		max-width: 230px;
		top: -285px;
	}
	.yinxiang .yxcon .yxtex {
		right: 200px;
	}
	.yinxiang .yxcon .yxtex span {
		font-size: 20px;
		margin: 20px;
	}
	.yinxiang .yxcon .yxtex p {
		margin-left: 20px;
	}
	.gy-top .row .col-lg-6 .zhihuicon {
		margin-right: 20%
	}
	.gy-top .row .col-lg-6 .zhihui {
		left: 100px;
	}
	.wzjsbg {
		margin: 0 40px;
	}
	.img-1 {
		margin: 5px;
	}
	.img-1 img {
		margin: 10px;
		margin-top: 35px;
	}
	.yxbg {
		max-width: 100%;
	}
	.anlicon {
		width: 100%;
	}
	.sum .sumcon {
		width: 100%;
	}
	.gzsj {
		width: 100%;
		padding: 0 20px;
	}
	.yinxiang {
		margin-top: 130px;
		height: 40px;
	}
	.fwlc hr {
		width: 20%;
	}
}


/*-----------------------------------------780px媒体查询------------------------------------------- */

@media screen and (max-width: 780px) {
	.gy-mar-top .xsxx {
		font-size: 18px;
	}
	.gy-top .row .col-lg-6 .zhihui {
		left: 70px;
	}
	.gy-top p {
		padding: 0 20px;
	}
	.anlititle {
		margin-top: 10px;
	}
	.anlicon {
		margin-top: 20px;
	}
	.wzjsbg .wzjs {
		text-align: left;
	}
	.gy-top .row .col-lg-6 .zhihuicon {
		margin-right: 10%;
	}
	.yinxiang .yxcon .yx {
		margin-top: 40px;
	}
	.yinxiang .yxcon .yxtex p {
		font-size: 18px;
	}
	.wzjsbg {
		text-align: center;
	}
	.img-1 img {
		margin: 0 auto;
	}
	.wzjsbg table tr td div {
		float: none;
		margin: auto;
	}
	.fwlc {
		font-size: 16px;
	}
	.fwlc .fwlctitle {
		margin-left: 20px;
	}
	.fwlchr {
		margin: 20px 0;
	}
	.jjfabg .jjfacon {
		width: 100%;
		margin-top: 20px;
	}
	.jjlistconbg {
		width: 75%;
		margin-left: 20px;
	}
	.jjlistbg {
		width: 25%;
	}
	.anlicon .row .col-lg-3 {
		margin: 20px 0;
	}
	.anlicon .row .col-lg-3 p {
		font-size: 22px;
	}
}


/*-----------------------------------------420px媒体查询------------------------------------------- */

@media screen and (max-width: 640px) {
	.text-1 span{ width: 90%;}
	.fixfoot {
		display: block;
	}
	.yxmt p {
		margin-top: 10px;
	}
	.jjfabg .jjfacon p {
		font-size: 18px;
	}
	.anlicon .row .col-lg-3 p {
		font-size: 18px;
	}
	h2 {
		font-size: 18px !important;
	}
	.wzjsbg .wzjs {
		font-size: 18px;
	}
	.fwlc .fwlctitle {
		font-size: 18px;
	}
	.fwlc hr {
		float: none;
		margin: 10px auto;
	}
	.cp-text-1 .cp-text-2 {
		margin-top: 10px !important;
		font-size: 18px;
	}
	.fwlc .appnone {
		display: block;
		margin: 20px 0;
	}
	.pingtai {
		display: block;
	}
	.pingtai ul li{ width: 98%; margin-bottom: 10px; border: 1px solid #ddd;}
	.pingtai ul li img{ width: 100%; height: auto;}
	
	.avtive2 {
		margin-right: -3px !important;
	}
	.text-1 p {
		font-size: 16px;
		margin-top: 5px;
	}
	.jjfacon .jjlistconbg ul li a div {
		width: 100px;
		height: 30px;
	}
	.whyd {
		margin: 5px 10px;
		padding: 3px 5px;
	}
	.sum {
		margin: 20px 0;
	}
	.gy-top .row .col-lg-6 .zhihuicon p:nth-child(1) {
		font-size: 18px;
	}
	.jjfacon .jjlistconbg ul li a div img {
		width: 100px;
		height: 30px;
	}
	.text-1 a {
		font-size: 14px;
	}
	.gy-mar-top .xsxx {
		font-size: 14px;
		padding: 10px;
	}
	.gy-mar-top .xsxx span {
		margin: 10px;
	}
	.owl-pagination {
		padding: 0;
		text-align: center;
		display: none !important;
	}
	.gy-top h2 {
		font-size: 20px;
	}
	.gy-top .gy-i-p {
		margin: 10px 0;
	}
	.gy-top .row .col-lg-6 .zhihuicon {
		width: 50%;
	}
	.gy-top .row .col-lg-6 .zhihuicon p:nth-child(1) {
		margin: 10px;
	}
	.gy-top .row .col-lg-6 .zhihuicon p:nth-child(3) {
		margin: 10px 0;
	}
	.gy-top .row .col-lg-6 .zhihuicon .lookmore {
		right: 45px;
		bottom: -45px;
	}
	.gy-top .row .col-lg-6 .zhihui {
		left: 25px;
	}
	.wzjshover {
		width: 100%;
		margin: 20px 0;
	}
	.fwlc {
		width: 100%;
		text-align: center;
	}
	.fwlc .fwlctitle {
		float: none;
		margin: 0 auto;
	}
	.jjfabg .jjfacon {
		padding: 10px;
	}
	.jjlistbg ul {
		margin: 15px 0;
	}
	.jjlistconbg {
		width: 60%;
		margin-left: 20px;
		margin-top: 0px;
	}
	.jjfabg .jjfacon span {
		font-size: 14px;
	}
	.jjfabg .jjfacon p {
		margin: 10px;
	}
	.jjfacon .jjlistconbg ul li a:nth-child(4) {
		margin: 10px 0;
	}
	.jjlistbg ul li {
		font-size: 16px;
		margin: 0;
		padding: 10px 0;
	}
	.anlititle p {
		font-size: 18px;
	}
	.sum {
		height: 350px;
	}
	.sum .sumcon p:nth-child(1) {
		font-size: 18px;
	}
	.sum .sumcon ul li {
		font-size: 18px;
	}
	.sum .sumcon ul li span {
		font-size: 18px;
	}
	.sum .sumcon ul li p {
		font-size: 16px;
	}
	.sum .sumcon a {
		margin: 20px 0;
	}
	.gy-top .row .col-lg-6:hover .zg-zhezhao {
		border: 180px solid rgba(234, 85, 50, 0.8);
		border-color: white white white rgba(234, 85, 50, 0.8);
		top: -60px;
		left: -60px;
	}
	.wzjsbg {
		margin: 10px 10px;
	}
	.fwlchr {
		margin: 20px 0;
	}
	.apptel{ display: block; border: 1px solid #ea5532; color: #ea5532; widows: 95%; padding: 15px 0; text-align: center; margin-top: 10px;}
}

.gy-top .row .col-lg-6 .zhihuicon .zhihuicona p {
	margin: 0;
	font-size: 14px !important;
}

.gy-top .row .col-lg-6 .zhihuicon .zhihuicona p a {
	font-size: 14px !important;
}


/*-----------------------------------------380px媒体查询------------------------------------------- */

@media screen and (max-width: 380px) {
	.gy-top .row .col-lg-6 .zhihuicon span {
		font-size: 12px;
	}
	.gy-top .row .col-lg-6 .zhihuicon .zhihuicona {
		font-size: 14px;
	}
	.gy-top .row .col-lg-6 .zhihuicon {
		margin-right: 5%;
	}
	.gy-top .row .col-lg-6 .zhihuicon {
		width: 60%;
	}
	.text-1 p {
		padding: 0 !important;
	}
	.img-1 img {
		margin: 0 auto;
	}
	.anlititle span {
		font-size: 14px;
	}
	.jjlistconbg {
		margin-left: 3px;
	}
	.jjfabg .jjfacon span {
		font-size: 12px;
	}
	.jjfacon .jjlistconbg ul li a:nth-child(4) {
		padding: 5px 10px;
	}
	.anlititle {
		padding: 0 20px;
	}
	.sum .sumcon p:nth-child(1) {
		padding: 20px 0;
	}
	.sum .sumcon ul li p {
		font-size: 12px;
	}
	.sum {
		height: 280px;
	}
	.gzsj {
		margin-top: 0;
	}
	.gzsj .row .col-lg-4 .gzlbg ul li a {
		font-size: 12px;
	}
	.gzsj .row .col-lg-4 .gzlbg ul li span {
		font-size: 12px;
	}
	.gy-top .row .col-lg-6 .zhihui {
		left: 10px;
	}
}

@media only screen and (max-width: 500px) {
	.cp-hengxian {
		width: 2px !important;
		height: 430px;
		margin-top: 0;
		margin-left: 20px;
		padding-top: 426px;
		float: left;
	}
}