 
.w5{
    margin: 5px;
    color: #d8d8d8;
}
/*常用*/
.top50 {
	margin-top: 50px !important;
}
.w1200 {
	width: 1200px;
	margin: 0 auto;
	min-width: 1200px
}
.w1400 {
	width: 1400px;
	margin: 0 auto;
	min-width: 1400px
}

/** 滚动条 **/
/*.layui-table-body{overflow-y:hidden;}*/
body::-webkit-scrollbar {
display:none
}

/** 滚动条 **/
::-webkit-scrollbar {height: 0.6rem;width: 0px}/*滚动条整体部分*/
::-webkit-scrollbar-button:vertical {display: none;}/*竖直方向的滚动条*/
::-webkit-scrollbar-track {background-color: #f2f2f2;}/*外层轨道*/
::-webkit-scrollbar-thumb {border-radius: 999px;background-color: #c2c2c2;margin: 5px;}/*动条里面可以拖动的那个*/
body {
	font-size: 13px;
	font-family: "Microsoft YaHei", "微软雅黑";
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	overflow-y: scroll;
	overflow-x: hidden;
	background-color: #fff;
	color: #374455
}
/*头部导航*/
.header-nav {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	z-index: 999;
	transition: all 0.45s ease-in-out;
	padding: 0 10px;
	height: 60px;
	margin: 0 auto;
}
.header-nav .moveDown {
	top: 29px;
	transition: all 0.45s ease-in-out;
}
.header-nav .logo {
	width: 200px;
	height: 60px;
	background: url(/images/logo1.png) no-repeat;
	background-size: 160px auto;
	margin-left: 30px;
	margin-top: 15px;
}
.header-nav .wrapper .logo {
	position: relative;
}
.header-nav.solid {
	box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
	border-radius: 4px;
	border: 1px solid #ebeef5;
	background-color: #fff;
/*	overflow: hidden;*/
	color: #303133;
	transition: .3s;
}
.header-nav.solid .logo {
	background: url(/images/logo2.png) no-repeat;
	background-size: 130px auto;
	margin-left: 30px;
}
.header-nav .logo h1 {
	text-indent: -99999px;
}
.header-nav .wrapper .top-nav {
	position: absolute;
	right: 30px;
	top: 0;
}
.menu{
	 display: flex;
}
.menu .li {
    height: 60px;
	width: 120px;
}
.menu .li >span {
	display: inline-block;
    vertical-align: baseline;
    zoom: 1;
    height: 60px;
    font-size: 15px;
    line-height: 60px;
	font-weight: bold;
    color: #fff;
    border-bottom: 2px solid transparent;
    background-color: rgba(0,0,0,0);
    width: 120px;
    text-align: center;
}
.moveDown .li >span {
	text-shadow:0px 4px 8px rgba(0, 0, 0, 0.3);
}
.solid .menu .li >span {
    color: #383838 !important;
}
.solid {
	background-color: #fff;
	border-bottom: 1px solid #f0f1f2;
	transition: all 0.5s ease-in-out;
}
.menu .li .block {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	border-radius: 5px;
    text-align: center;
    width: 120px;
	padding: 12px 0px;
	margin-top: 5px
}
.moveDown .menu .li .block {
	margin-top: -5px;
}
.menu .li:hover .block {
	animation: bottomFadeIn.4s; 
    display: block;
}
.menu .li:hover .block p{
	padding: 10px 3px;
    border-bottom: 1px solid #f5f5f7;	 
}
.menu .block span{
	display: none;
	width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fff;
    margin: 0 auto; 
	margin-top: -11px;
	top: 50%;
    transform: translateY(-50%);
}
.menu .li:hover .block span {
    display: block;
	animation: bottomFadeIn .1s;
}
.block p:first-child{
		border-radius: 5px 5px 0px 0px;
}
.block p:last-child{
		border-radius: 0px 0px 5px 5px;
}
.block p:hover{
		background-color: #f6f6f6;
		color: #333;
}
/*导航下banner*/
.banner_top{
	height: 300px;
    cursor: default;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    outline: none;
    margin: 0px auto;
    position: relative;
    z-index: 1;
    background-size: contain;
    background-image: url(/images/top300.jpg);
    padding-top: 60px;
}	

/*新闻*/
.news{margin-top: 60px;}
.news .item {
   width: 360px;
    height: 360px;
    background: #fff;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
    position: relative;
    overflow: hidden;
}
.news .item h4 {
    font-weight: normal;
    color: #081232;
    padding-top: 20px;
    padding-left: 20px;
    font-size: 20px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
	height: 50px;
}
.news .item p {
    color: #666;
    line-height: 150%;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.news .item .pic img {
	width: 360px;
    height: 240px;
    transition: all .4s;
	background-size: cover;background-position: center center;
}
.news .item .pic:hover img {
	transform: scale(1.05);
}
/*案例列表*/
.case {margin: 20px auto auto;}
.layui-laypage a, .layui-laypage span {
    display: inline-block;
    vertical-align: middle;
    padding: 0 20px;
    height: 38px !important;
    line-height: 38px !important;
    margin: 0 -1px 5px 0 !important;
    background-color: #fff;
    color: #333;
    font-size: 12px;
}
.case .item {
/*    float: left;*/
    width: 320px;
    height: 320px;
    overflow: hidden;
    margin: 0 18px 18px 0;
    text-align: center;
    background: #fff;
    position: relative;
    transition: all .2s;
	display: inline-block;
    vertical-align: middle;
}

.case .item a .pad {
    width: 320px;
    height: 240px;
	border-radius: 5px 5px 0px 0px;
}

.case .item .info {
    height: 100px;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transition: all .2s;
}
.case .item:hover .info {
    height: 300px;
}

.case .item .logo {
    transition: all .2s;
    width: 340px;
    height: 100px;
}

.case .item .title {
   font-size: 14px;
    color: #646466;
    /* margin-bottom: 15px; */
    font-weight: bold;
}

.case .item .text {
    font-size: 14px;
    color: #666;
    padding: 0 30px;
    text-align: left;
    line-height: 1.8;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}
/*详细页内容*/
#page_contect{
    margin: 20px 0px 10px 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    padding: 25px;
    background-color: #fff;
}

/*底部*/
.footer { font-size: 14px; color: #a8aaba; background: #32333b;    position: relative;}
.footer a { color: #a8aaba;}
.footer a:hover { color: #f44 !important;}
.footer .footer-article { padding: 30px 0 20px; overflow: hidden;}
.footer .contact { float: left; width: 280px;}
.footer .contact dt { width: 90px;}
.footer .contact .iconfont { width: 66px;height: 66px; display: block;float: left;background: url(/images/kefu.png) center center no-repeat;background-size: 55px;}
.footer .contact .text { font-size: 14px; line-height: 30px; color: #fff;}
.footer .contact .tel { padding: 3px 0 15px; font-size: 20px; color: #fff;}
.footer .contact a { display: block; width: 90px; font-size: 14px; line-height: 30px; color: #9b9ea0; text-align: center; border: 1px solid #9b9ea0; border-radius: 4px;}
.footer .contact a:hover { color: #fff !important;}
.footer .col-article { float: left; width: 171px;}
.footer .col-article dt { margin-bottom: 15px; font-size: 16px; font-weight: normal; color: #d7d8d9;}
.footer .col-article dd { margin-bottom: 8px; overflow: hidden;}
.footer .col-article dd a { font-size: 12px; color: #9b9ea0; text-overflow: ellipsis; white-space: nowrap; overflow: hidden;}
.footer .wx { float: left; width: 135px; margin-right: 0;}
.footer .wx dt { margin-bottom: 15px; font-size: 16px; font-weight: normal; color: #d7d8d9;}
.footer .wx dd { margin-bottom: 15px;}
.footer .wx dd img { display: block; width: 110px; height: 110px; margin: 5px 0; border-radius: 2px;}
.footer .wx dd.other { margin-bottom: 0; line-height: 18px;}
.footer .wx dd.other span { display: block; font-size: 12px;}
.footer .wx dd.other a { display: inline-block; margin-right: 5px; font-size: 12px; line-height: 18px; vertical-align: top;}
.footer-links { padding: 10px 0; border-top: 1px solid #41424c; border-bottom: 1px solid #41424c;}
.footer-links p { font-size: 14px; color: #a8aaba;}
.footer-links a { margin-right: 20px; font-size: 12px; color: #a8aaba;}
.footer-info .info-text { padding: 20px 0; font-size: 13px; text-align: center;line-height: 18px}
.footer-info .info-text .nav-bottom { padding: 20px 0 5px; font-size: 14px; color: #ccc; text-align: center;}
.footer-info .info-text .nav-bottom a { padding: 0 8px; color: #9b9ea0;}
.footer-info .info-text .copyright { padding-top: 5px;}
.footer-info .info-text em { padding: 0 8px;}


/**/