/*滚动条样式*/

::-webkit-scrollbar {
	width: 8px;
	height: 8px
}

::-webkit-scrollbar-track {
	background: #f8f8f8
}

::-webkit-scrollbar-thumb {
	background: #e22b1c;
	height: 60px
}

::-webkit-scrollbar-thumb:window-inactive {
	background: #e22b1c
}

::-webkit-scrollbar-thumb:vertical:hover {
	background: #e22b1c
}

body {
	font-family: "Helvetica Neue", "Helvetica", "Arial", "sans-serif", "微软雅黑";
	padding-top: 50px;
}

html,
body {
	height: 100%;
}

.bgColorF0 {
	background-color: #f0f0f0;
}
.bgColorF2 {
	background-color: #f2f2f2;
}

svg {
	display: block;
}
i,
em {
	font-style: normal;
}
a:focus,
a:hover {
	text-decoration: none;
}

a:focus,
a:hover {
	text-decoration: none;
}

.row {
	display: flex;
	flex-flow: row wrap;
}
.row:before,
.row:after {
	display: block;
}
.row a {
	display: block;
	color: #333;
	position: relative;
}
.h1,.h2,.h3,.h4,.h5,.h6 {
	margin: 0;
}

.Animation {
	-webkit-transition: all 1s;
	transition: all 1s;
	opacity: 0
}
.fullpage {
	width: 100%;
	overflow: hidden
}
.section {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
}

.img {
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	position: relative
}

.img img {
	display: block;
	width: 100%;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.clamp2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nothing img {
	display: block;
	width: 200px;
	margin: 0 auto;
}
.nothing span {
	display: block;
	font-size: 16px;
	color: #666;
	text-align: center;
	margin-top: 15px;
}

.container {
	position: relative;
	z-index: 2;
}

@media (max-width: 767px) {
	.section .container,
	.banner-text .container {
		width: 100%;
	}
	.PC-img {
		display: none!important;
	}
}
@media (max-width: 479px) {
	.nothing img {
		width: 170px;
	}
	.nothing span {
		font-size: 14px;
	}
}
@media (min-width: 768px) {
	body {
		padding-top: 80px;
	}
	.container {
		width: 93.33333%;
		max-width: 1400px;
		padding-left: 0;
		padding-right: 0;
	}
	.min-img {
		display: none!important;
	}
	.nothing img {
		width: 240px;
	}
}


/*foot*/
.gotop {
	width: 30px;
	height: 30px;
	background: url(../image/gotop.png) no-repeat center;
	background-size: contain;
	position: fixed;
	right: 10px;
	bottom: 40px;
	cursor: pointer;
	display: none;
	transition: all .5s;
	z-index: 10;
}
.gotop:hover {
	background: url(../image/gotop1.png) no-repeat center;
	background-size: contain;
}

.footer {
	background-color: #666;
	color: #fff;
	font-size: 12px;
	line-height: 20px;
	overflow: hidden;
}
.footer a {
	color: #fff;
}
.footer a:hover {
	color: rgba(255, 255, 255, .6);
}

.copyright {
	background-color: #4c4c4c;
	padding: 15px 0;
}

.foot-top {
	padding-top: 20px;
}
.foot-logo {
	margin-bottom: 20px;
}
.foot-logo img {
	display: block;
	max-width: 100%;
}
.foot-nav {
	margin: 0 -15px 20px;
	display: flex;
	flex-flow: row wrap;
}
.foot-nav a {
	display: inline-block;
	padding: 0 15px;
	margin: 6px 0;
}

.wechat {
	display: flex;
	flex-flow: row wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.wechat .img {
	max-width: 100px;
	padding: 0 10px;
	margin: 0 0 20px;
}
.wechat span {
	display: block;
	text-align: center;
	margin-top: 5px;
}

@media (min-width: 768px) {
	.gotop {
		width: 40px;
		height: 40px
	}
	
	.foot-top {
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		padding-top: 35px;
	}
	.foot-logo {
		padding-right: 50px;
		margin-right: 50px;
		width: 28.574729%;
		position: relative;
	}
	.foot-logo:after {
		content: "";
		width: 1px;
		height: 68px;
		background-color: rgba(255, 255, 255, .2);
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -34px;
	}
	.foot-nav {
		max-width: 360px;
	}
	.foot-nav a {
		width: 33.33333%;
	}
	.foot-top .wechat {
		flex: 0 0 auto;
		margin-left: auto;
	}
}

/*导航*/
.navbar-default {
	background-color: #fff;
	border: 0;
	border-radius: 0;
	margin-bottom: 0;
}
.navbar-brand {
	height: auto;
	padding-top: 5px;
	padding-bottom: 5px;
}
.navbar-brand img {
	height: 40px;
}
.navbar-default .navbar-toggle {
	border: 0;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 0;
	margin-bottom: 0;
	margin-right: 5px;
	min-height: 50px;
}
.navbar-default .navbar-toggle .icon-bar {
	width: 30px;
	background-color: #e22b1c;
	position: relative;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 7px;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
	background-color: transparent;
}
.navbar-default .menu-close .icon-bar:nth-child(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 4.5px;
}
.navbar-default .menu-close .icon-bar:nth-child(2) {
	display: none;
}
.navbar-default .menu-close .icon-bar:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: 4.5px;
}
.navbar-default .navbar-nav>li>a {
	font-size: 16px;
	color: #333;
}
.navbar-default .nav>li>a:focus,
.navbar-default .nav>li>a:hover,
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
	color: #e22b1c;
	background-color: transparent;
}
.navbar-default .nav>li>a:after {
	content: "";
	width: 0;
	height: 1px;
	background-color: #e22b1c;
	position: absolute;
	left: 15px;
	bottom: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.navbar-default .nav>li>a:hover:after,
.navbar-default .nav>.active>a:after {
	width: 20px;
}
.navbar-collapse::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}

@media (max-width: 767px) {
	.header .navbar-fixed-top .navbar-collapse {
		max-height: none;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		top: 50px;
		background-color: #fff;
		margin: 0;
	}
	.navbar-default .navbar-nav>li>a {
		font-size: 14px;
		border-bottom: 1px solid #e7e7e7;
	}
}
@media (min-width: 768px) {
	.navbar-brand {
		padding-top: 15px;
		padding-bottom: 15px;
		padding-right: 0;
	}
	.navbar-brand img {
		height: 50px;
	}
	.navbar-default .navbar-nav>li {
		padding: 0 5px;
	}
	.navbar-default .navbar-nav>li>a {
		padding: 30px 10px;
	}
	.navbar-default .nav>li>a:after {
		bottom: 25px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
@media (min-width: 992px) {
	.navbar-nav.navbar-right {
		margin-right: -30px;
	}
	.navbar-default .navbar-nav>li {
		padding: 0 10px;
	}
	.navbar-default .navbar-nav>li>a {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 1200px) {
	.navbar-default .navbar-nav {
		margin-right: -40px;
	}
	.navbar-default .navbar-nav>li>a {
		padding-left: 30px;
		padding-right: 30px;
	}
}

/*banner*/
.banner {
	position: relative;
}
.banner img {
	display: block;
	width: 100%;
}
.banner img[onclick] {
	cursor: pointer;
}
.banner-text {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}
.banner-text img {
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	opacity: 0;
}
.banner1 .banner-text img {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.banner2 .banner-text img {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
.banner3 .banner-text img {
	-webkit-transform: scale(0);
	transform: scale(0);
}
.banner4 .banner-text img {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.banner5 .banner-text img {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
.banner .swiper-slide-active .banner-text img {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition-delay: .5s;
	transition-delay: .5s
}

.banner .swiper-pagination-bullet {
	background-color: transparent;
	border: 1px #fff solid;
	opacity: 1;
}
.banner .swiper-pagination-bullet-active {
	background-color: #fff;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
	width: 20px;
	height: 40px;
	margin-top: -20px;
	background-color: rgba(0, 0, 0, 0.6);
}
.banner .swiper-button-prev:after,
.banner .swiper-button-next:after {
	font-size: 16px;
}
.banner .swiper-button-prev {
	left: 0;
}
.banner .swiper-button-next {
	right: 0;
}

.swiper-button-prev,
.swiper-button-next {
	outline: none;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

@media (min-width:768px) {
	.banner .swiper-button-prev,
	.banner .swiper-button-next {
		width: 38px;
		height: 76px;
		margin-top: -38px;
	}
	.banner .swiper-button-prev:after,
	.banner .swiper-button-next:after {
		font-size: 24px;
	}
	.banner .swiper-button-prev {
		left: -38px;
	}
	.banner .swiper-button-next {
		right: -38px;
	}
	.banner:hover .swiper-button-prev {
		left: 0;
	}
	.banner:hover .swiper-button-next {
		right: 0;
	}
}

.index-main {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 30px 0;
}
.index-title {
	position: relative;
	margin-bottom: 40px;
	text-align: center;
}
.index-title a {
	display: inline-block;
	color: #333;
}
.index-title .h2 {
	font-size: 24px;
	margin: 0;
}
.index-title .h2:after {
	content: "";
	width: 32px;
	height: 1px;
	background-color: #e22b1c;
	display: block;
	margin: 15px auto;
}
.index-title .en {
	display: block;
	font-family: arial;
	text-transform: uppercase;
}
.index-title .p {
	margin: 18px auto 0;
	line-height: 24px;
	max-width: 870px;
}

@media (max-width: 767px) {
	.index-title .p br {
		display: none;
	}
}
@media (max-width: 479px) {
	.index-title .h2 {
		font-size: 20px;
	}
}
@media (min-width: 768px) {
	.index-main {
		padding: 40px 0;
	}
	.index-title {
		margin-bottom: 40px;
	}
	.index-title .p {
		font-size: 16px;
		line-height: 28px;
	}
}
@media (min-width: 1200px) {
	.index-main {
		padding: 60px 0;
	}
}

@media (min-width: 1600px) {
	.index-main {
		padding: 90px 0;
	}
}

/*首页 - 关于金虞*/
.index-about-list .column {
	margin-bottom: 20px;
}
.index-about-list .title .h2 {
	font-size: 18px;
	color: #010101;
}
.index-about-list .title span {
	display: block;
	font-size: 12px;
	font-family: arial;
	margin-top: 5px;
}
.index-about-list .info {
	line-height: 24px;
	margin-top: 15px;
}

.index-about-list .more {
	margin-top: 30px;
}
.index-about-list .more a {
	display: block;
	width: 120px;
	height: 40px;
	background-color: #e22b1c;
	color: #fff;
	text-align: center;
	line-height: 20px;
	padding: 10px;
}

.list-group-box {
	background-color: #fff;
	padding: 15px 0;
	-webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, .1);
	box-shadow: 0 8px 15px rgba(0, 0, 0, .1);
	margin-top: 15px;
}
.list-group {
	margin-bottom: 0;
}
.list-group .inner {
	color: #808080;
	text-align: center;
	padding: 15px;
	position: relative;
}
.list-group .inner:after {
	content: "";
	width: 1px;
	height: 50px;
	background-color: #b2b2b2;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.list-group .column:nth-child(2n) .inner:after {
	display: none;
}
.list-group .span {
	font-size: 24px;
	line-height: 1.5;
	font-weight: 700;
}
.list-group i {
	display: block;
}
.list-group .inner:hover .span {
	color: #e22b1c;
}

@media (min-width: 768px) {
	.index-about-list .title .h2 {
		font-size: 20px;
	}
	.index-about-list .title span {
		font-size: 14px;
	}
	.index-about-list .info {
		font-size: 16px;
		line-height: 28px;
		margin-top: 35px;
	}
	.list-group-box {
		padding: 30px 0;
		margin-top: 30px;
	}
	.list-group .inner {
		padding: 15px;
	}
	.list-group .inner:after {
		height: 50px;
	}
	.list-group .column:nth-child(2n) .inner:after {
		display: block;
	}
	.list-group .column:nth-child(4n) .inner:after {
		display: none;
	}
	.list-group .span {
		font-size: 28px;
	}
}
@media (min-width: 992px) {
	.index-about-list .title .h2 {
		font-size: 24px;
	}
	.index-about-list .title span {
		font-size: 16px;
	}
	.index-about-list .col-md-7 {
		width: 57.718121%;
	}
	.index-about-list .col-md-5 {
		width: 42.281879%;
	}
}
@media (min-width: 1200px) {
	.index-about-list {
		margin-left: -45px;
		margin-right: -45px;
	}
	.index-about-list .column {
		padding-left: 45px;
		padding-right: 45px;
	}
	.index-about-list .more {
		margin-top: 60px;
	}
	.list-group-box {
		margin-top: 60px;
	}
	.list-group .span {
		font-size: 36px;
	}
}


/* 首页 - 我们的服务 */
.gallery-thumbs .icon {
	width: 32px;
	height: 32px;
	overflow: hidden;
	position: relative;
	margin: 0 auto;
}
.gallery-thumbs .icon img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.gallery-thumbs .icon .hover,
.gallery-thumbs .swiper-slide-thumb-active .icon .default,
.gallery-thumbs a:hover .icon .default {
	opacity: 0;
}
.gallery-thumbs .h5 {
	margin-top: 10px;
}
.gallery-thumbs a,
.gallery-top a {
	display: block;
	color: #808080;
	text-align: center;
}
.gallery-thumbs a:hover,
.gallery-thumbs .swiper-slide-thumb-active a {
	color: #e22b1c;
}
.gallery-thumbs a:hover .icon .hover,
.gallery-thumbs .swiper-slide-thumb-active .icon .hover {
	opacity: 1;
}
.gallery-top {
	margin-top: 20px;
}
.gallery-top a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

@media (min-width:768px) {
	.gallery-thumbs .icon {
		width: 42px;
		height: 42px;
	}
	.gallery-thumbs .h5 {
		font-size: 16px;
	}
	.gallery-top {
		margin-top: 40px;
	}
}

/* 首页 - 服务案例 */
.case-list {
	margin-left: -1px;
	margin-right: -1px;
}
.case-list .column {
	padding: 0 1px;
	margin-bottom: 2px;
}
.case-list .text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.case-list .text .i {
	position: relative;
	width: 0;
	height: 0;
	overflow: hidden;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.case-list .text .i:before,
.case-list .text .i:after {
	content: "";
	background-color: #fff;
	position: absolute;
}
.case-list .text .i:before {
	width: 1px;
	height: 38px;
	top: 0;
	left: 50%;
	margin-left: -.5px;
}
.case-list .text .i:after {
	width: 38px;
	height: 1px;
	left: 0;
	top: 50%;
	margin-top: -.5px;
}
.case-list .h5 {
	font-size: 16px;
	color: #fff;
	width: 100%;
	text-align: center;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.case-list .img {
	background-color: #000;
}
.case-list img {
	opacity: .85;
}
.case-list a:hover img {
	opacity: 0.4;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.case-list a:hover .text .i {
	width: 38px;
	height: 38px;
}

@media (max-width: 479px) {
	.case-list .column {
		width: 100%;
	}
}

/*首页 - 新闻资讯*/
.news-list .column {
	margin-bottom: 18px;
}
.news-list a {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-bottom: 18px;
}
.news-list a:before,
.news-list a:after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #ccc;
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.news-list a:after {
	width: 0;
	background-color: #e22b1c;
}
.news-list .img {
	flex: 0 0 auto;
	width: 142px;
	max-height: 92px;
	margin-right: 15px;
}
.news-list .text {
	width: 100%;
	overflow: hidden;
}
.news-list .date {
	display: block;
	margin: 10px 0;
}
.news-list a:hover:after {
	width: 100%;
}

.news-list .first a {
	display: block;
	color: #fff;
	padding-bottom: 0;
}
.news-list .first a:before,
.news-list .first a:after {
	display: none;
}
.news-list .first .img {
	width: 100%;
	max-height: none;
}
.news-list .first .text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 15px;
	background-color: rgba(0,0,0,.3);
}
.news-list .first a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

@media (max-width: 767px) {
	.news-list {
		margin-left: 0;
		margin-right: 0;
	}
	.news-list .column {
		padding: 0;
		width: 100%;
	}
	.news-list .img {
		width: 120px;
	}
	.news-list .h4 {
		font-size: 16px;
	}
}
@media (max-width: 479px) {
	.news-list {
		max-width: 300px;
		margin: 0 auto;
	}
	.news-list a {
		display: block;
	}
	.news-list .img {
		width: 100%;
		max-height: none;
		margin-bottom: 15px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.news-list {
		margin: 0 auto;
		max-width: 620px;
	}
	.news-list>.column {
		width: 100%;
		padding: 0;
	}
	.news-list .first .text {
		padding: 50px;
	}
}
@media (min-width: 992px) {
	.news-list .col-md-7 {
		width: 54.166667%;
	}
	.news-list .col-md-5 {
		width: 45.833333%;
	}
	.news-list .first .text {
		padding: 30px;
	}
}
@media (min-width: 1200px) {
	.news-list {
		margin-left: -20px;
		margin-right: -20px;
	}
	.news-list>.column {
		padding: 0 20px;
	}
	.news-list .first .text {
		padding: 50px;
	}
}

/*首页 - 联系我们*/
.list-group1 {
	margin-left: 0;
	margin-right: 0;
}
.list-group1 .column {
	padding: 0;
	margin-bottom: 20px;
}
.contact-wrap .h2 {
	font-size: 18px;
	color: #000;
	margin-bottom: 15px;
}
.contact-wrap p {
	color: #4c4c4c;
	line-height: 24px;
	margin: 0;
}
.contact-wrap p+p {
	margin-top: 5px;
}

.message-form .form-control {
	height: 40px;
	border-radius: 0;
	border-color: rgba(153,153,153,.4);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.message-form textarea.form-control {
	height: auto;
}
.message-form .form-control:focus {
	border-color: rgba(153,153,153,1);
}
.message-form .btn {
	display: block;
	width: 100%;
	max-width: 240px;
	height: 40px;
	background-color: #e22b1c;
	margin: 30px auto 0;
	color: #fff;
	border-radius: 0;
	outline: none!important;
}

@media (min-width: 768px) {
	.contact-wrap .h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.contact-wrap p {
		font-size: 16px;
		line-height: 28px;
	}
	
	.message-form .form-group {
		margin-bottom: 20px;
	}
	.message-form .form-control {
		height: 60px;
		padding: 12px 24px;
		font-size: 16px;
	}
	.message-form .btn {
		height: 50px;
		font-size: 16px;
		margin-top: 50px;
		max-width: 330px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.list-group1 {
		max-width: 620px;
		margin: 0 auto;
	}
}
@media (min-width: 992px) {
	.contact-wrap {
		min-height: 354px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.contact-wrap .inner {
		padding: 0 30px;
	}
}


/*内页*/
.wrapper {
	min-height: calc(100vh - 210px);
	position: relative;
	overflow: hidden;
}
.inside-banner-main,
.inside-banner {
	overflow: hidden;
	position: relative;
}
.inside-banner img {
	display: block;
	width: 100%;
}

.location-main {
	background-color: #f9f9f9;
	color: #4b4a4a;
}
.location {
	color: #4b4a4a;
	padding: 10px 0;
	position: relative;
}
.location b,
.location a {
	font-weight: normal;
	color: #4b4a4a;
	line-height: 20px;
}
.location a:hover {
	color: #e22b1c;
}

.inside-main {
	padding: 25px 0;
	overflow: hidden;
	position: relative;
}
.inside-main .container {
	position: relative;
	z-index: 2;
}

.submenu-main {
	background-color: #ededed;
	padding: 15px 0 10px;
}
.submenu {
	margin-left: -5px;
	margin-right: -5px;
}
.submenu>li {
	float: left;
	padding: 0 5px;
	margin-bottom: 5px;
}
.submenu>li>a {
	background-color: #fff;
	color: #333;
	padding-left: 5px;
	padding-right: 5px;
	min-width: 90px;
	text-align: center;
}
.submenu>li>a:hover,
.submenu>.active>a {
	background-color: #e22b1c;
	color: #fff;
}

.InfoContent {
	line-height: 2.4;
	position: relative;
	overflow: hidden;
}
.InfoContent p {
	margin: 0
}
.InfoContent img {
	max-width: 100%;
	height: auto!important;
}
.InfoContent video {
	display: block;
	width: 1000px;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
}

.InfoTitle {
	margin-bottom: 15px;
	text-align: center;
	text-transform: uppercase;
}
.InfoTitle .h4 {
	line-height: 1.4;
}
.InfoTitle .date {
	font-size: 12px;
	color: #999;
	margin-top: 10px
}
.InfoTitle .date span {
	padding: 0 5px
}

.goBack {
	text-align: center;
	margin-top: 30px;
}
.goBack a {
	display: inline-block;
	color: #666;
	line-height: 20px;
	border: 1px #bfbfbf solid;
	padding: 10px 30px;
	text-transform: uppercase
}
.goBack a:hover {
	border-color: #e22b1c;
	background-color: #e22b1c;
	color: #fff;
}

.pager {
	margin: 20px 0 0
}
.pager li>a,
.pager li>span {
	border: 1px #bfbfbf solid;
	color: #666;
	border-radius: 0;
	padding: 10px 30px;
	margin: 0 5px;
	text-transform: uppercase;
}
.pager li>span {
	color: #999
}
.pager li>a {
	color: #e22b1c;
	border-color: #e22b1c;
}
.pager li>a:hover {
	color: #fff;
	background-color: #e22b1c
}

.info-previous-next-wrap {
	border-top: 1px #dad9d9 solid;
	padding-top: 16px;
	margin-top: 40px;
	font-size: 14px;
	color: #666;
	overflow: hidden;
}
.info-previous-next-wrap b {
	font-weight: 400;
	text-transform: uppercase
}
.info-previous-next-wrap a {
	color: #666;
	text-decoration: none;
}
.info-previous-next-wrap a:hover {
	color: #e22b1c
}
.info-Next,
.info-Previous {
	margin-bottom: 10px;
}

.goBack ~ .info-previous-next-wrap {
	margin-top: 20px;
}

@media (max-width:767px) {
	
}
@media (max-width:479px) {
	
}
@media (min-width:768px) {
	.inside-main {
		padding: 40px 0;
	}
	.InfoTitle .h4 {
		font-size: 20px
	}
	.InfoTitle .date {
		font-size: 14px;
	}
	.InfoTitle .date span {
		padding: 0 10px;
	}
	
	.submenu>li>a {
		min-width: 120px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
}
@media (min-width: 992px) {
	.submenu-main {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 1px;
		z-index: 1;
		padding: 0;
		background-color: transparent;
	}
	.submenu>li {
		margin-bottom: 0;
	}
}
@media (min-width:1200px) {
	.inside-main {
		padding: 60px 0;
	}
}

/*内页 - 我们的服务*/
.service-list .column {
	margin-bottom: 30px;
}
.service-list .icon {
	width: 46px;
	height: 46px;
	overflow: hidden;
	position: relative;
	margin: 0 auto 20px;
}
.service-list .icon img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.service-list .icon .hover,
.service-list a:hover .icon .default {
	opacity: 0;
}
.service-list a:hover .icon .hover {
	opacity: 1;
}
.service-list .h4 {
	text-align: center;
}
.service-list .p {
	color: #999;
	line-height: 24px;
	margin-top: 15px;
}
.service-list a:hover .h4 {
	color: #e22b1c;
}

@media (max-width: 567px) {
	.service-list {
		margin-left: -5px;
		margin-right: -5px;
	}
	.service-list .column {
		padding: 0 5px;
	}
	.service-list .h4 {
		font-size: 16px;
	}
	.service-list .p {
		font-size: 12px;
		line-height: 20px;
		margin-top: 10px;
	}
}
@media (min-width: 768px) {
	.service-list .icon {
		width: 60px;
		height: 60px;
		margin-bottom: 30px;
	}
}
@media (min-width: 1200px) {
	.service-list .icon {
		width: 80px;
		height: 80px;
		margin-bottom: 40px;
	}
}

/*内页 - 服务案例*/
.case-list1 .column {
	margin-bottom: 40px;
}
.case-list1 .h4 {
	text-align: center;
	margin-top: 20px;
}
.case-list1 a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.case-list1 a:hover .h4 {
	color: #e22b1c;
}

@media (max-width: 767px) {
	.case-list1 {
		margin-left: -8px;
		margin-right: -8px;
	}
	.case-list1 .column {
		padding: 0 8px;
		margin-bottom: 20px;
	}
	.case-list1 .h4 {
		font-size: 16px;
		margin-top: 10px;
	}
}
@media (max-width: 479px) {
	.case-list1 .column {
		width: 100%;
	}
}

/*内页 - 新闻资讯*/
.news-list1 a {
	padding-bottom: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
	height: 100%;
}
.news-list1 a:before,
.news-list1 a:after {
	display: none;
}
.news-list1 .more {
	width: 24px;
	height: 6px;
	background: url(../image/icon1.png);
	background-size: contain;
	display: block;
	margin-top: 10px;
	margin-left: auto;
}
.news-list1 a:hover .more {
	background-image: url(../image/icon1-1.png);
}
.news-list1 .text {
	padding: 20px 10px;
}
.news-list1 .p {
	color: #666;
	line-height: 24px;
	height: 48px;
}
.news-list1 .date {
	color: #666;
}
.news-list1 a:hover {
	-webkit-box-shadow: 0 2px 12px rgba(0,0,0,.15);
	box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.news-list1 .img {
	width: 41.791045%;
	max-width: 280px;
	height: 100%;
	max-height: none;
	margin-right: 0;
}
.news-list1 .img img {
	height: 100%;
	width: auto;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (max-width: 479px) {
	.news-list1 a {
		-webkit-box-shadow: 0 2px 12px rgba(0,0,0,.15);
		box-shadow: 0 2px 12px rgba(0,0,0,.15);
	}
	.news-list1 .img {
		height: auto;
		width: 100%;
		max-width: 100%;
		margin-bottom: 0;
	}
	.news-list1 .img img {
		position: static;
		left: 0;
		-webkit-transform: none;
		transform: none;
		width: 100%;
		height: auto;
	}
}
@media (min-width: 768px) {
	.news-list1 .column {
		margin-bottom: 30px;
	}
	.news-list1 .text {
		padding: 20px;
	}
	.news-list1 .p {
		-webkit-line-clamp: 3;
		height: 72px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.news-list1 {
		margin: 0 auto;
		max-width: 100%;
	}
	.news-list>.column {
		width: 100%;
		padding: 0;
	}
}
@media (min-width: 992px) and (max-width: 1365px) {
	.news-list1 .p {
		-webkit-line-clamp: 2;
		height: 48px;
	}
}

/*内页 - 联系我们*/
.map #dituContent {
	height: 280px;
}
.contact-wrap .wechat {
	margin-top: 30px;
}
.contact-wrap .wechat .img {
	max-width: 160px;	
}
.contact-wrap .wechat .img img {
	border: 1px #ddd solid;
}

@media (min-width: 768px) {
	.map #dituContent {
		height: 480px;
	}
}

/*动画*/
.fadeIn {
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1s;
}
.fadeInUp {
	opacity: 0;
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0);
	-webkit-transition: all .8s;
	transition: all .8s;
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}
.fadeInDown {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-transition: all 1s;
	transition: all 1s;
}
.fadeInLeft {
	opacity: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	-webkit-transition: all 1s;
	transition: all 1s;
}
.fadeInRight {
	opacity: 0;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	-webkit-transition: all .8s;
	transition: all .8s;
}
.zoomIn {
	opacity: 0;
	-webkit-transform: scale3d(.3, .3, .3);
	transform: scale3d(.3, .3, .3);
	-webkit-transition: all .8s;
	transition: all .8s;
}
.animated {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}