@charset "utf-8";
	body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td {
	margin:0;
	padding:0;
}
body {
	background:#fff;
	color:#555;
	font-size:14px;
	font-family:'PingFang SC','Helvetica Neue',Helvetica,'Hiragino Sans GB','Microsoft YaHei','微软雅黑,Arial','sans-serif';
}
td,th,caption {
	font-size:62.5%;
}
h1,h2,h3,h4,h5,h6 {
	font-weight:normal;
	font-size:100%;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
a {
	color:#555;
	text-decoration:none;
}
a:hover {
	text-decoration:none;
}
img {
	border:none;
}
ol,ul,li {
	list-style:none;
}
input,textarea,select,button {
	font:14px Verdana,Helvetica,Arial,sans-serif;
}
table {
	border-collapse:collapse;
}
html {
	overflow-y:scroll;
}
.clearfix:after,.clearfix:before {
	content:"";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}
.clearfix {
	*zoom:1;
}
.pull-left {
	float:left;
}
.pull-right {
	float:right;
}
header,section,footer,aside,nav,main,article,figure {
	display:block;
}
.icon {
	width:1em;
	height:1em;
	vertical-align:-0.15em;
	fill:currentColor;
	overflow:hidden;
}
/**********内页公共banner****************************/
.c_nybanner {
	width:100%;
	overflow:hidden;
	height:505px;
	position:relative;
	z-index:1
}
.c_nybanner img {
	-webkit-animation:scaleBigToSmall 2s;
	animation:scaleBigToSmall 2s;
	display:block;
	/*width:100%;
	height:100%;
	max-width:100%;
	max-height:100%;
	*/object-fit:cover;
}
.c_nybanner .banner_title {
	color:#fff;
	position:absolute;
	top:0;
	left:0;
	-webkit-animation:fadeInDown 1s;
	animation:fadeInDown 1s;
	width:100%;
	height:100%;
}
.c_nybanner .banner_title h4 {
	font-size:55px;
	font-weight:600;
	text-align:center;
	letter-spacing:5px;
}
.c_nybanner .banner_title .table {
	width:1200px;
	margin:0 auto;
}
.c_nybanner .banner_title .crumbs {
	color:#fff;
	font-size:14px;
	margin-top:30px;
	font-size:34px;
	text-align:center;
	font-weight:300;
}
/*圆角10px*/.radius10 {
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	-ms-border-radius:10px;
	-o-border-radius:10px;
	border-radius:10px;
}
/*投影*/.shadow10 {
	-webkit-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
	-moz-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
	-ms-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
	-o-box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
	box-shadow:rgba(0,0,0,0.13) 0px 0px 10px;
}
.shadow10 {
	-webkit-box-shadow:rgba(0,0,0,0.1) 0px 0px 18px;
	-moz-box-shadow:rgba(0,0,0,0.1) 0px 0px 18px;
	-ms-box-shadow:rgba(0,0,0,0.1) 0px 0px 18px;
	-o-box-shadow:rgba(0,0,0,0.1) 0px 0px 18px;
	box-shadow:rgba(0,0,0,0.1) 0px 0px 18px;
}
/*图片翻转*/
.flip {
	-webkit-transform:rotate(0deg);
	-ms-transform:rotate(0deg);
	transform:rotate(0deg);
	-webkit-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
	-webkit-transform:all 0.3s ease;
}
.flip:hover {
	-webkit-transform:rotateY(360deg);
	-ms-transform:rotateY(360deg);
	transform:rotateY(360deg);
	-webkit-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
	-webkit-transform:all 0.3s ease;
	cursor:pointer;
}
.anitop {
	-webkit-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	-webkit-transition:all 0.5s;
	-o-transition:all 0.5s;
	transition:all 0.5s;
}
.anitop:hover {
	-webkit-transform:translate3d(0,-3%,0);
	transform:translate3d(0,-3%,0);
	cursor:pointer;
}
/*flex布局***/
.flex {
	display:flex;
	display:-webkit-flex;
}
.flex-wrap {
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	align-content:flex-start;
}
.flex-end {
	display:flex;
	display:-webkit-flex;
	justify-content:flex-end;
	align-items:center;
}
/* flex垂直排列*/
.flex-col {
	display:flex;
	display:-webkit-flex;
	flex-direction:column;
}
/* flex全居中*/
.flex-center {
	display:flex;
	display:-webkit-flex;
	align-items:center;
	justify-content:center;
}
/* flex竖向全居中*/
.flex-center-col {
	display:flex;
	display:-webkit-flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
}
/* flex垂直居中*/
.flex-center-y {
	display:flex;
	display:-webkit-flex;
	align-items:center;
}
/* 竖直baseline对齐*/
.flex-baseline {
	display:flex;
	display:-webkit-flex;
	align-items:baseline;
}
/* flex水平居中*/
.flex-center-x {
	display:flex;
	display:-webkit-flex;
	justify-content:center;
}
/* flex左右靠边*/
.flex-between {
	display:flex;
	display:-webkit-flex;
	align-items:center;
	justify-content:space-between;
}
/* 水平均匀分布*/
.flex-around {
	display:flex;
	display:-webkit-flex;
	justify-content:space-around;
	align-items:center;
}
.flex-ul {
	display:flex;
	display:-webkit-flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
/**图片自适应**/
.img-cover {
	width:100%;
	height:100%;
	max-width:100%;
	max-height:100%;
	object-fit:cover;
}
/*tablecell*/
.table {
	display:table;
	width:100%;
	height:100%;
	margin:0 auto;
}
.cell {
	display:table-cell;
	vertical-align:middle;
}
.blockbox {
	width:1200px;
	*+height:1%;
	margin:0 auto;
}
.blockbox:after {
	content:"";
	display:block;
	height:0;
	clear:both;
	visibility:hidden
}
/**网站建设***/
.comtitle {
	text-align:center;
	overflow:hidden;
}
.comtitle h4 {
	color:#333;
	font-size:26px;
	line-height:1.6;
	display:block;
	font-weight:bold
}
.comtitle p {
	color:#878787;
	font-size:16px;
	padding-top:5px;
}
.works_process {
	width:100%;
	overflow:hidden;
	background:url(../images/websitebox6.png) no-repeat center;
	height:610px;
}
.works_process .blockbox {
	padding-top:60px;
	overflow:hidden;
}
.works_process .blockbox .comtitle h4 {
	color:#fff;
}
.works_process .blockbox .lcul {
	margin-left:500px;
	width:700px;
	margin-top:50px;
	height:400px;
}
.works_process .blockbox ul li {
	float:left
}
.works_process .blockbox ul li.lcjt {
	background:url(../images/icons8-advance.png) no-repeat center;
	width:83px;
	height:100px;
}
.works_process .blockbox ul li.lcjt4 {
	background:url(../images/icons8-advance-f.png) no-repeat center;
	width:83px;
	height:100px;
}
.works_process .blockbox ul {
	width:700px;
	position:relative;
	overflow:hidden;
	height:160px;
}
.works_process .blockbox ul li.li div.img {
	text-align:center;
	color:#fff;
	font-size:18px;
	line-height:80px;
	background:url(../images/circle.png) no-repeat center;
	margin:0 auto 10px auto;
}
.works_process .blockbox ul li.lcjt2 {
	position:absolute;
	right:60px;
	top:160px;
	background:url(../images/icons8-advance1.png) no-repeat  center;
	width:60px;
	height:40px;
}
.works_process .blockbox ul li.li p {
	color:#fff;
	font-size:14px;
	text-align:center;
}
.works_process .blockbox ul.ul1 {
	height:240px;
}
.works_process .blockbox ul.ul2 li.lcjt3 {
	width:126px;
	height:100px;
}
.webs_box4 {
	width:100%;
	padding:60px 0;
	background:#fff url(../images/websbox4.png) no-repeat center bottom;
	height:620px;
	overflow:hidden;
}
.webs_box4 .blockbox ul {
	width:100%;
	position:relative;
	height:522px;
	margin-top:50px;
}
.webs_box4 .blockbox ul li {
	width:360px;
	position:absolute;
	height:80px;
	overflow:hidden;
}
.webs_box4 .blockbox ul li div.img {
	width:78px;
	height:78px;
}
.webs_box4 .blockbox ul li h5 {
	color:#333;
	font-size:20px;
	font-weight:400;
	text-transform:uppercase;
}
.webs_box4 .blockbox ul li p {
	color:#878787;
	font-size:14px;
	text-transform:uppercase;
	line-height:1.6;
	padding-top:5px;
}
.webs_box4 .blockbox ul li.li div.img {
	float:right
}
.webs_box4 .blockbox ul li.li-1 div.img {
	float:left
}
.webs_box4 .blockbox ul li.li {
	left:-25px;
}
.webs_box4 .blockbox ul li.li-1 {
	right:-25px;
}
.webs_box4 .blockbox ul li.li1 {
	top:40px;
}
.webs_box4 .blockbox ul li.li2 {
	top:180px;
}
.webs_box4 .blockbox ul li.li3 {
	top:315px;
}
.webs_box4 .blockbox ul li.li4 {
	top:445px;
}
.webs_box4 .blockbox ul li.li-1 .txt {
	float:left;
	text-align:left;
	margin-left:25px;
	padding-top:5px;
	width:240px;
}
.webs_box4 .blockbox ul li.li .txt {
	float:right;
	text-align:right;
	margin-right:25px;
	display:block;
	padding-top:5px;
	width:246px;
}
.webs_box3 {
	width:100%;
	background:url(../images/websbox2.png) no-repeat center bottom;
	height:460px;
	overflow:hidden;
}
.webs_box3 .blockbox {
	padding:60px 0;
	overflow:hidden;
}
.webs_box3 .blockbox .comtitle h4 {
	color:#fff;
}
.webs_box3 .blockbox ul {
	overflow:hidden;
	width:100%;
	margin:50px auto 0 auto;
}
.webs_box3 .blockbox ul li {
	cursor:pointer;
	margin-bottom:15px;
	color:#fff;
	text-align:center;
	height:110px;
	width:285px;
	background:url(../images/websli.png) no-repeat center;
	border-radius:2px;
}
.webs_box3 .blockbox ul li h5 {
	font-size:20px;
	padding-top:20px;
}
.webs_box3 .blockbox ul li p {
	font-size:14px;
	padding-top:10px;
}
.webs_box3 .blockbox ul li:hover {
	background:url(../images/websli1.png) no-repeat center;
}
.webs_box2 {
	background:#F9F9F9;
	width:100%;
	height:auto;
}
.webs_box2 .blockbox {
	padding:60px 0;
}
.webs_box2 .blockbox .seritem {
	margin:60px 0 0 0;
	height:auto;
}
.webs_box2 .blockbox ul {
	height:auto;
	float:left;
}
.webs_box2 .blockbox ul.ul1 {
	width:240px;
}
.webs_box2 .blockbox ul.ul2 {
	width:480px;
}
.webs_box2 .blockbox ul li {
	width:220px;
	background:#fff;
	height:175px;
	text-align:center;
	cursor:pointer;
	float:left;
	margin:10px;
}
.webs_box2 .blockbox ul li.li1 {
	height:370px;
}
.webs_box2 .blockbox ul.ul1 li.li2 {
	position:absolute;
}
.webs_box2 .blockbox ul li div.img {
	width:75px;
	height:75px;
	margin:0 auto;
}
.webs_box2 .blockbox ul li h5 {
	color:#333;
	font-size:20px;
	font-weight:500;
	padding-top:10px;
}
.webs_banner .banner_title .crumbs {
	margin-top:20px;
	font-weight:300;
}
.webs_banner .banner_title h4 {
	font-weight:600;
}
.webs_banner .flex-ul {
	width:470px;
	height:54px;
	margin:50px auto 0 auto;
}
.webs_banner .flex-ul li {
	color:#fff;
	background:url(../images/shadow.png) repeat;
	height:54px;
	width:216px;
	line-height:54px;
	text-align:center;
	border-radius:30px;
}
.webs_banner .flex-ul li h5 {
	color:#fff;
	font-weight:500;
	font-size:16px;
	display:block;
}
.webs_banner .flex-ul li.tels h5 {
	background:url(../images/tels.png) no-repeat 30px center;
	padding-left:20px;
}
.webs_banner .flex-ul li.telss h5 {
	background:url(../images/tels1.png) no-repeat 24px center;
	padding-left:28px;
}
.serviceItembox {
	width:1200px;
	margin:0px auto;
	background:#fff;
	padding:40px 0;
	position:relative;
	top:-50px;
	z-index:999;
}
.serviceItembox ul {
	padding:0 40px;
}
.serviceItembox ul li {
	min-height:150px;
	text-align:center;
}
.serviceItembox ul li div.img {
	width:70px;
	height:70px;
	margin:0 auto 10px auto;
	overflow:hidden;
}
.serviceItembox ul li h5 {
	color:#333;
	font-size:20px;
}
.serviceItembox ul li p {
	color:#878787;
	font-size:16px;
	padding-top:5px;
}
.shadow1_1 {
	-webkit-box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	-moz-box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	-ms-box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	-o-box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	box-shadow:rgba(0,0,0,0.1) 0px 0px 5px;
	transition:all 0.3s ease 0s;
	-webkit-transform:all 0.3s ease 0s;
}
