@charset "UTF-8";

/*头部*/
.header {
	position: relative;
	padding: 30px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
	display: inline-block;
  margin-right: auto;
}
.header .logo .box {
	position: relative;
	overflow: visible;
}
.header .logo .box .slogan {
	position: absolute;
	left: 100%;
	top: 7px;
	padding-left: 24px;
	margin-left: 24px;
	width: 270px;
	line-height: 100px;
	
	font-size: 18px;
	color: #475470;
	border-left: 1px solid #eee;
}
.head-tel {
	/*position: absolute;
	right: 0;*/
	overflow: hidden;
	/*width: 480px;*/
	height: 53px;
}
.head-tel .item,
.num-list .mini-item {
	position: relative;
	float: left;
	padding-left: 40px;
	margin-left: 40px;
	margin-top: 2px;
	height: 51px;
}
.head-tel .item:before,
.num-list .mini-item:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	height: 100%;
	background: url(../images/icon-head-tel.png) no-repeat center;
}
/*抖动*/
.head-tel .item:hover:before,
.num-list .mini-item:hover:before {
	-webkit-animation: sh-shake 2s ease infinite;
	animation: sh-shake 2s ease infinite;
}
/*动画——抖动效果*/
@-webkit-keyframes sh-shake {
	0%,25%,100% {
	-webkit-transform:translateY(0)
}
3%,9%,15% {
	-webkit-transform:translateY(-5px)
}
6%,12%,20% {
	-webkit-transform:translateY(5px)
}
}@keyframes sh-shake {
	0%,25%,100% {
	-webkit-transform:translateY(0);
	transform:translateY(0)
}
3%,9%,15% {
	-webkit-transform:translateY(-5px);
	transform:translateY(-5px)
}
6%,12%,20% {
	-webkit-transform:translateY(5px);
	transform:translateY(5px)
}
}


.header .language {
	margin-left: 20px;
}
.header .language .item {
	float: left;
	text-align: center;
	line-height: 15px;
	margin-left: 15px;
	margin-top: 10px;
}
.header .language .item i {
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.header .language .item .icon-cn {
	background-image: url(../images/icon-chinese.png);
}
.header .language .item .icon-en {
	background-image: url(../images/icon-usa.png);
}
.header .language .item span {
	display: block;
	font-size: 12px;
}

.head-tel .item h5,
.num-list .mini-item h5 {
	font-size: 14px;
	color: #6b6b6b;
}
.head-tel .item p,
.num-list .mini-item p {
	height: 30px;
	font-size: 30px;
	color: #0b3ba3;
	font-family: "DINCond-Bold","Microsoft Yahei";
	line-height: 1;
	width: 144px;
}
.main-nav {
	height: 52px;
	line-height: 52px;
	background: url(../images/nav-list-bg.png) no-repeat center #1043a3;
}
.main-nav ul li {
	float: left;
	padding: 0 35px;
	margin-right: 30px;
	height: 52px;
}
.main-nav ul li a {
	position: relative;
	display: inline-block;
	font-size: 18px;
	color: #fff;
}
.main-nav ul li a:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	border-bottom: 3px solid #ebce3c;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.main-nav ul li.on a:before,
.main-nav ul li:hover a:before {
	left:0;
	width: 100%;
}


/*通用标题*/
.com-title {
	text-align: center;
}
.page-title {
	padding: 60px 0;
}
.com-title h3 {
	font-size: 36px;
	line-height: 42px;
	color: #475470;
}
.com-title h3 span {
	display: inline-block;
	margin-right: 15px;
	vertical-align: middle;
	font-size: 42px;
	text-transform: uppercase;
	color: #0b3ba3;
}
.detail-title h3 {
	position: relative;
}
.detail-title h3:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -30px;
	width: 60px;
	height: 3px;
	background: #0b3ba3;
	margin-left: -30px;
}
.com-title p {
	margin-top: 10px;
	font-size: 16px;
	color: #949494;
	background: url(../images/com-title-bg.png) no-repeat center;
	text-transform: uppercase;
}
.com-title p .tit-bg {
	display: inline-block;
	padding: 0 30px;
	background: #f5f5f5;
}
.com-title .mini {
	background: url(../images/com-title-bg2.png) no-repeat center;
}
.com-title.white h3,
.com-title.white h3 span {
	color: #fff;
}
.com-title.white p {
	color: #b8bcc5;
	background: url(../images/com-title-bg-white.png) no-repeat center;
}

/*通用按钮*/
.com-btn {
	position: relative;
	display: inline-block;
	width: 154px;
	line-height: 45px;
	border: 2px solid #cfd4dd;
	text-align: center;
	font-size: 18px;
	color: #fff;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.com-btn:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 0;
	background: #0b3ba3;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.com-btn:hover:before {
	height: 100%;
	top: 0;
}
.com-btn:hover,
.com-btn.c-default:hover {
	color: #fff;
	border-color: #0b3ba3;
}
.com-btn span {
	position: relative;
}
.com-btn.c-default {
	color: #475470;
	border-color: #475470;
}


/*产品*/
.inex-product {
	padding-top: 70px;
	padding-bottom: 50px;
	background: url(../images/bg-xw.png);
}
.index-product-tab {
	margin-top: 40px;
	margin-bottom: 40px;
	font-size: 0;
	text-align: center;
}
.index-product-tab li {
	display: inline-block !important;
	width: 14% !important;
	float: none !important;
	font-size: 20px;
	cursor: pointer;
}
.index-product-tab li h5,
.cwd-product-list li .box h5 {
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.index-product-tab li:hover h5,
.index-product-tab li.slick-current h5,
.cwd-product-list li .box:hover h5 {
	color: #0b3ba3;
}
.index-product-tab li .pic {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 0;
}
.index-product-tab li .pic i {
	width: 50px;
	height: 50px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.index-product-tab li:hover .pic i,
.index-product-tab li.slick-current .pic i {
	background-position: -50px center;
}
.index-product-tab li .pic .icon-p1 {
	background: url(../images/icon-product-1.png) no-repeat left center;
}
.index-product-tab li .pic .icon-p2-1 {
	background: url(../images/icon-product-2-1.png) no-repeat left center;
}
.index-product-tab li .pic .icon-p2 {
	background: url(../images/icon-product-2.png) no-repeat left center;
}
.index-product-tab li .pic .icon-p3 {
	background: url(../images/icon-product-3.png) no-repeat left center;
}
.index-product-tab li .pic .icon-p4 {
	background: url(../images/icon-product-4.png) no-repeat left center;
}
.index-product-tab li .pic .icon-p5 {
	background: url(../images/icon-product-5.png) no-repeat left center;
}
.index-product-tab li .pic .icon-p6 {
	background: url(../images/icon-product-6.png) no-repeat left center;
}

.index-product-content {
	height: 415px;
	overflow: hidden;
}
.cwd-product-list li {
	text-align: center;
}
.cwd-product-list li .box .pic {
	height: 340px;
	width: 340px;
	line-height: 338px;
	font-size: 0;
	border: 1px solid #ddd;
	overflow: hidden;
	background: #fff;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-product-list li .box .pic img {
	width: 100%;
}
.cwd-product-list li .box:hover .pic {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.cwd-product-list li .box h5 {
	padding-top: 20px;
	padding-bottom: 30px;
	font-size: 16px;
}

.index-solution {
	position: relative;
	height: 391px;
	background: url(../images/index-solution.jpg) no-repeat center;
}
.index-solution .cont {
	position: absolute;
	left: 50%;
	top: 110px;
	width: 690px;
	margin-left: -80px;
	color: #fff;
}
.index-solution .cont h3 {
	font-size: 36px;
	color: #fff;
	line-height: 1.1;
}
.index-solution .cont h4 {
	margin-top: 15px;
	margin-bottom: 25px;
	font-size: 18px;
	color: #dde0e8;
}
.index-solution .cont p {
	color: #b5b8ca;
}

/*产业资源*/
.index-resources {
	padding-top: 80px;
	padding-bottom: 75px;
}
.index-resources .pic {
	position: relative;
	overflow: visible;
}
.index-resources .pic:before {
	content: "";
	position: absolute;
	left: -20px;
	bottom: -20px;
	width: 100%;
	height: 100%;
	border: 1px solid #dadde2;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.index-resources .pic:hover:before,
.cwd-about-content .pic:hover:before {
	border-color: #0b3ba3;
}
.index-resources .pic img {
	position: relative;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.index-resources .pic:hover img,
.cwd-about-content .pic:hover img {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.index-resources .cont {
	overflow: hidden;
	padding-right: 100px;
}
.index-resources .cont h3 {
	font-size: 22px;
	color: #475470;
	margin-bottom: 20px;
	padding-top: 30px;
}
.index-resources .cont h3 span {
	position: relative;
	display: inline-block;
	font-size: 48px;
	color: #0b3ba3;
	line-height: 1.5;
	text-transform: uppercase;
}
.index-resources .cont h3 span:before {
	content: "";
	position: absolute;
	right: -75px;
	bottom: 25px;
	width: 67px;
	border-bottom: 1px solid #0c3ba3;
}
.index-resources .cont h4 span {
	display: inline-block;
	font-size: 18px;
	color: #475470;
	margin-right: 25px;
}
.index-resources .cont .des {
	margin-top: 15px;
	margin-bottom: 20px;
	color: #6c6c6c;
	line-height: 30px;
}
.index-resources .cont .more {
	font-size: 16px;
	color: #0b3ba3;
}
.index-resources .cont .more .icon-com-more {
	opacity: 0;
}
.index-resources .cont .more:hover .icon-com-more {
	opacity: 1;
}

/*关于*/
.index-about {
	padding-top: 60px;
	padding-bottom: 70px;
	background: url(../images/index-about-bg.jpg) no-repeat center;
	background-size: cover;
}
.index-about-content {
	position: relative;
	margin: 35px auto 0;
	background: #fff;
}
.index-about-content .pic,
.index-about-content .cont {
	width: 50%;
	overflow: hidden;
}
.index-about-content .cont {
	position: absolute;
	right: 0;
	height: 100%;
	padding-right: 60px;
}
.index-about-content .cont h3 {
	font-size: 28px;
	color: #475470;
	line-height: 1;
}
.index-about-content .cont .des {
	margin-top: 20px;
	line-height: 28px;
	color: #888;
}
.index-about-content .cont .com-btn {
	margin-top: 30px;
}
.index-about-content .cont .cwd-number {
	padding-top: 60px;
}
.index-about-content .cont .cwd-number li {
	float: left;
	font-size: 18px;
}
.index-about-content .cont .cwd-number li ~ li {
	margin-left: 110px;
}
.index-about-content .cont .cwd-number li h5 {
	position: relative;
	color: #0b3ba3;
	font-size: 48px;
	line-height: 1;
	margin-bottom: 4px;
}
.index-about-content .cont .cwd-number li h5 .f1 {
	font-size: 30px;
}
.index-about-content .cont .cwd-number li h5 span {
	font-size: 22px;
}
.index-about-content .cont .cwd-number li h5 sub {
	position: absolute;
	top: -18px;
	font-size: 30px;
	line-height: 30px;
}

/*新闻*/
.index-news {
	padding-top: 65px;
	padding-bottom: 70px;
}
.index-news .com-title {
	position: relative;
	text-align: left;
	margin-bottom: 32px;
}
.index-news .com-title h3 {
	display: inline-block;
	font-size: 28px;
	line-height: 1.3
}
.index-news .com-title h3 span {
	font-size: 48px;
	line-height: 1;
}
.index-news .com-title .more {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 18px;
	color: #949494;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.index-news .com-title .more:hover {
	color: #0d3ba3;
}
.icon-com-more {
	margin-top: 2px;
	margin-left: 12px;
	width: 28px;
	height: 28px;
	background: url(../images/icon-more.png) no-repeat center;
	vertical-align: middle;
	position: relative;
	top: -2px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-news-list li {
	position: relative;
	float: left;
	width: 50%;
	margin-bottom: 20px;
	background: #fff;
}
.cwd-news-list li .box {
	position: relative;
	z-index: 3;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-news-list li .box:hover .icon-com-more,
.index-news .com-title .more:hover .icon-com-more,
.index-resources .cont .more:hover .icon-com-more {
	background: url(../images/icon-more-on.png) no-repeat center;
	-webkit-transform: rotate(360deg) scale(1.05);
	-ms-transform: rotate(360deg) scale(1.05);
	-o-transform: rotate(360deg) scale(1.05);
	transform: rotate(360deg) scale(1.05);
}
.cwd-news-list li .box:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.cwd-news-list li .pic {
	position: relative;
	width: 350px;
	height: 350px;
	line-height: 350px;
	background: #fff;
}
.cwd-news-list li .pic img {
	width: 100%;
}
.cwd-news-list li .pic:before {
	content: "";
	position: absolute;
	top: 54px;
	right: 0;
	z-index: 2;
	display: inline-block;
	width: 0;
	height: 0;
	vertical-align: middle;
	border-right: 14px dashed #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-news-list li .cont {
	position: relative;
	padding: 45px 30px 0;
	overflow: hidden;
	height: 350px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-news-list li .cont h5 {
	font-size: 18px;
	color: #475470;
	line-height: 28px;
	height: 56px;
	overflow: hidden;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-news-list li .box:hover .cont h5 {
	color: #0d3ba3;
}
.cwd-news-list li .cont .date {
	display: block;
	margin-top: 14px;
	margin-bottom: 15px;
	color: #949494;
}
.cwd-news-list li .cont p {
	color: #888;
	line-height: 28px;
}
.cwd-news-list li .cont .more-bar {
	margin-top: 35px;
	font-size: 16px;
	color: #0b3ba3;
}
.list-case-content .cwd-news-list li .cont .more-bar {
	margin-top: 50px;
}
.index-news-content .cwd-news-list li {
	width: 25%;
}
.index-news-content .cwd-news-list li ~ li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 25px;
	height: 300px;
	border-left: 1px solid #eeeeee;
	z-index: 1;
}
.index-news-content .cwd-news-list li .pic {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
}
.index-news-content .cwd-news-list li:hover .cont {
	background: #fff;
	opacity: .9;
}
.index-news-content .cwd-news-list li:hover .pic img {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}






/*友情链接*/
.links {
	padding-bottom: 25px;
	color: #949494;
	line-height: 2;
}
.links a {
	color: #949494;
	margin-right: 10px;
}
.links a:hover {
	color: #0b3aa3;
}



/*底部*/
.footer {
	background: url(../images/foot-bg.png) no-repeat center top;
}
.foot-content {
	padding: 50px 0 40px;
}


.foot-nav .item {
	float: left;
	margin-right: 70px;
}

.foot-nav .item .tit {
	position: relative;
	font-size: 18px;
	color: #111;
	margin-bottom: 12px;
	padding-bottom: 14px;
}

.foot-nav .item .tit:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	border-bottom: 2px solid #2c2c2c;
}

.foot-nav .item ul li a {
	display: inline-block;
	width: 100%;
	line-height: 30px;
	font-size: 14px;
	color: #475470;
}

.foot-nav .item ul li a:hover, .copyright a:hover {
	color: #0b3ba3;
}

.foot-contact {
	padding-top: 2px;
}

.foot-qr {
	margin-right: 45px;
	text-align: center;
}
.foot-qr li {
	color: #475470;
	margin-bottom: 10px;
	line-height: 30px;	
}

.foot-contact .tit {
	color: #475470;
	margin-bottom: 5px;
}

.foot-contact .tel {
	font-size: 36px;
	color: #0b3ba3;
	line-height: 1.1;
	font-family: "din-bold", Arial;
}

.foot-contact .zx {
	display: inline-block;
	width: 199px;
	height: 44px;
	line-height: 44px;
	border-radius: 22px;
	text-align: center;
	background: #0b3aa3;
	color: #fff;
	font-size: 18px;
	margin-top: 15px;
	margin-bottom: 20px;
	cursor: pointer;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.foot-contact .zx:hover {
	opacity: .9;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.foot-contact .info {
	font-size: 14px;
	color: #475470;
	line-height: 32px;
}

.icon-foot-zx {
	width: 30px;
	height: 100%;
	background: url(../images/icon-foot-zx.png) no-repeat center;
	background-size: contain;
	vertical-align: top;
	margin-right: 15px;
}


.copyright {
	border-top: 1px solid #eee;
	height: 60px;
	line-height: 60px;
	color: #949494;
}

.copyright .fr {
	font-size: 12px;
}

.copyright a {
	color: #949494;
}


/*首页banner*/
.banner-wrap {
	background: #f9f9f9;
}
.ms-bullets.ms-dir-h {
	bottom: 20px !important;
}
.ms-skin-default .ms-bullet {
	float: none !important;
	position: relative;
	display: inline-block;
	text-indent: -9999px;
	background: transparent !important;
	width: 16px !important;
	height: 16px !important;
	border-radius: 0 !important;
	margin: 0 8px;
	cursor: pointer;
	border-radius: 50%;
	opacity: 1;
	position: relative;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.ms-skin-default .ms-bullet:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	z-index: 2;
	width: 100%;
	background: #2c2c2c;
	box-sizing: border-box;
	border: 3px solid transparent;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	opacity: .5;
}

.ms-skin-default .ms-bullet-selected:before {
	background: transparent;
	border-color: #037ad1;
	opacity: 1;
}

.ms-skin-default .ms-nav-next, .ms-skin-default .ms-nav-prev {
	display: none;
}



/*内页*/
.page-banner {
	position: relative;
	overflow: hidden;
}

.page-banner .pb-pic {
	overflow: hidden;
}

.page-banner .pb-pic img {
	max-width: 100%;
	-webkit-animation: SlickIn cubic-bezier(1, 0, .5, .5) 1s;
    animation: SlickIn cubic-bezier(1, 0, .5, .5) 1s;
}

@-webkit-keyframes SlickIn {
    0% {
        -webkit-transform: scale(1.1, 1.1)
    }

    100% {
        -webkit-transform: scale(1, 1)
    }
}

@-webkit-keyframes SlickOut {
    0% {
        -webkit-transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(.9, .9)
    }
}

@keyframes SlickIn {
    0% {
        transform: scale(1.1, 1.1)
    }

    100% {
        transform: scale(1, 1)
    }
}

@keyframes SlickOut {
    0% {
        transform: scale(1, 1)
    }

    100% {
        transform: scale(.9, .9)
    }
}

.page-banner .pb-center-tit {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	width: 100%;
	text-align: center;
}

.page-banner .pb-tit {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	margin-left: -600px;
	margin-top: -107px;
	font-size: 36px;
}
.page-banner .pb-tit.black {
	margin-top: -87px;
}

.page-banner .pb-tit .en-tit {
	color: #fff;
	font-size: 50px;
	line-height: 1.2;
	text-transform: uppercase;
	font-family: "066-CAI978",Arial;
}
.page-banner .pb-tit.c-deep .en-tit {
	color: #0b3ba3;
}
.page-banner .pb-tit h2 {
	color: #fff;
}
.page-banner .pb-tit.c-deep h2 {
	color: #475470;
}

.page-banner .pb-tit.black .en-tit, .page-banner .pb-tit.black h2 {
	color: #142f2a;
}

@media (max-width:1600px) {
	.page-banner .pb-tit .en-tit {
		font-size: 45px;
	}

	.page-banner .pb-tit {
		font-size: 30px;
		margin-top: -96px;
	}

	.page-banner .pb-tit.black {
		margin-top: -70px;
	}

}

@media (max-width:1440px) {
	.page-banner .pb-tit .en-tit {
		font-size: 40px;
	}

	.page-banner .pb-tit {
		font-size: 24px;
		margin-top: -86px;
	}
	.page-banner .pb-tit.black {
		margin-top: -60px;
	}

}



/*内页分类*/
.com-cate {
	position: relative;
	width: 100%;
	height: 72px;
	text-align: center;
	border-bottom: 1px solid #e2e2e2;
	box-shadow: 0 1px 5px rgba(0,0,0,0.08);
	font-size: 0;
  display: table;
}
.solution-cate {
	border-bottom: none;
}
.com-cate li {
	position: relative;
	display: table-cell;
	margin: 0 35px;
	height: 72px;
}
.com-cate li>a {
	display: inline-block;
	padding: 0 35px;
	font-size: 18px;
	color: #475470;
	line-height: 72px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.com-cate li:hover>a,
.com-cate li.on>a {
	color: #0d3ba3;
}
.com-cate li .caret>a .caret {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.com-cate li:hover>a .caret {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.com-cate li .sub-cate {
	position: absolute;
	left: 0;
	top: 100px;
	z-index: 10;
	background: #fff;
	padding-top: 12px;
	padding-bottom: 12px;
	width: 100%;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.com-cate li .sub-cate:before {
    position: absolute;
    display: inline-block;
    top: -8px;
    left: 50%;
    margin-left: -11px;
    width: 0;
    height: 0px;
    content: '';
    border-style: solid;
    border-width: 9px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(-45deg);
    box-shadow: 2px -2px 2px rgba(0,0,0,0.1);
}
.com-cate li .sub-cate a {
	display: block;
	font-size: 16px;
	color: #475470;
	line-height: 45px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.com-cate li .sub-cate a:hover {
	color: #0d3ba3;
}
.com-cate li:hover .sub-cate {
	visibility: visible;
	opacity: 1;
	top: 72px;
}


/* ====== 产品详情 ====== */
/*产品左侧*/
.product-detail-header .product-pic {
	float: left;
	width: 750px;
	height: 660px;
}
.product-pic .thumb-list {
	width: 140px;
	height: 600px;
	margin-right: 10px;
	overflow: hidden;
}
.product-pic .thumb-list .slick-track {
	/*margin-top: -202px;*/
}
.product-pic .thumb-list li {
	width: 140px;
	font-size: 0;
	line-height: 138px;
	text-align: center;
	border: 1px solid #dfdfdf;
	margin-bottom: 10px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.product-pic .thumb-list li.slick-current {
	border-color: #0b3ba3;
}
.product-pic .pic-list {
	width: 598px;
	height: 598px;
	overflow: hidden;
	border: 1px solid #dfdfdf;
}
.product-pic .pic-list .slick-prev,
.product-pic .pic-list .slick-next {
	background: transparent;
}
.product-pic .pic-list .slick-prev:before {
	width: 14px;
	height: 24px;
	background: url(../images/icon-product-prev.png) no-repeat center;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.product-pic .pic-list .slick-prev:hover:before {
	background: url(../images/icon-product-prev-on.png) no-repeat center;
}
.product-pic .pic-list .slick-next:before {
	width: 14px;
	height: 24px;
	background: url(../images/icon-product-next.png) no-repeat center;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.product-pic .pic-list .slick-next:hover:before {
	background: url(../images/icon-product-next-on.png) no-repeat center;
}
.product-detail-header .product-des {
    float: right;
    width: 600px;
    padding-top: 0;
}

.product-detail-header .product-des .tit {
	padding-top: 10px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
    color: #475470;
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.5;
}


.product-detail-header .p-desc {
    min-height: 150px;
    max-height: 350px;
    color: #949494;
    font-size: 16px;  
    overflow: hidden;
    line-height: 35px;
}

/*滚动条 开始*/
.product-detail-header .p-desc::-webkit-scrollbar {
    width:4px;
    height:4px;
}
.product-detail-header .p-desc::-webkit-scrollbar-button    {
    background-color:#f5f5f5;
}
.product-detail-header .p-desc::-webkit-scrollbar-track     {
    background:#f5f5f5;
}
.product-detail-header .p-desc::-webkit-scrollbar-thumb{
    background:#ddd;
    border-radius:2px;
}
.product-detail-header .p-desc::-webkit-scrollbar-corner {
    background:#82AFFF;
}
.product-detail-header .p-desc::-webkit-scrollbar-resizer  {
    background:#FF0BEE;
}
/*滚动条 结束*/



.product-detail-header .p-desc table,
.product-detail-header .p-desc table tr,
.product-detail-header .p-desc table td {
    border: none !important;
    width: auto!important;
    padding: 0 !important;
    height: 30px !important;
    color: #475470;
    text-align: left !important;
}

.product-detail-header .p-desc table td p,
.product-detail-header .p-desc table td p span {
	text-align: left !important;
	font-family: "微软雅黑"!important;
	font-size: 16px !important;
	text-indent: 0 !important;
}

.product-detail-header .p-desc table td:first-child {
    color: #949494;
    padding-right: 35px !important;
    position: relative;
}
.product-detail-header .p-desc table td:first-child:after {
	content: ":";
	position: absolute;
	right: 26px;
	top: 0;
	line-height: 1;
}

.product-detail-header .product-des .zixun-box {
    margin-top: 35px;
    height: 50px;
    line-height: 50px;
    border-radius: 3px;
    color: #fff;
    font-size: 0;
    text-align: center;
    -webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.product-detail-header .product-des .zixun-box span {
	float: left;
}
.product-detail-header .product-des .zixun-box .t1 {
	position: relative;
	width: 160px;
	font-size: 18px;
	background: #475470;
	padding-left: 40px;
}
.product-detail-header .product-des .zixun-box .t1:before {
	content: "";
	position: absolute;
	left: 20px;
	top: 0;
	width: 25px;
	height: 100%;
	background: url(../images/icon-product-tel.png) no-repeat center;
}

.product-detail-header .product-des .zixun-box .num {
	width: 200px;
	font-size: 22px;
	background: #0c3ba3;
	
}

.product-detail-header .product-des .zixun-box:hover {
	/*width: 220px;*/
	opacity: .9;
}

.product-detail-item {
    margin-bottom: 55px;
    z-index: 999;
    height: 62px;
    text-align: center;
    line-height: 62px;
    background: #dddddd;
}

.product-detail-item li {
    position: relative;
    float: left;
    width: 160px;
    font-size: 18px;
    color: #475470;
    cursor: pointer;
    text-align: center;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.product-detail-item li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    border-top: 2px solid #0c3ba3;
    background: #fff;
    opacity: 0;
}
.product-detail-item li.on:before {
	left: 0;
	width: 100%;
	opacity: 1;
}
.product-detail-item li span {
	position: relative;
}
.product-detail-item li.on {
    color: #0c3ba3;
}
.product-detail-item li:hover {
    color: #0c3ba3;
}

.product-detail .bd {
    height: auto !important;
}

.product-detail .bd .item {
    position: static !important;
}

.product-detail .bd .item~.item {
    display: none;
}
.product-ys {
	margin-top: 70px;
}
.product-ys .ys-item {
	position: relative;
	background: #f8f8f8;
}
.product-ys .ys-item .pic,
.product-ys .ys-item .cont {
	width: 50%;
	overflow: hidden;
}
.product-ys .ys-item .pic img {
	position: relative;
	max-width: 100%;
}
.product-ys .ys-item .cont {
	position: absolute;
	left: 50%;
	top: 0;
	height: 100%;
	overflow: hidden;
	padding-left: 100px;
}
.product-ys .ys-item:nth-child(2n) .cont {
	margin-left: -700px;
}
.product-ys .ys-item:nth-child(2n) .cont {
	padding-left: 35px;
}

.product-ys .ys-item .cont h4 {
	font-size: 28px;
	color: #475470;
}
.product-ys .ys-item .cont .en {
	display: inline-block;
	margin-top: 5px;
	font-size: 48px;
	color: #0b3ba3;
	line-height: 48px;
	position: relative;
	text-transform: uppercase;
}
.product-ys .ys-item .cont .en:after {
	content: "";
	position: absolute;
	right: -74px;
	bottom: 5px;
	width: 67px;
	border-bottom: 1px solid #0b3ba3;
}
.product-ys .ys-item .cont ul {
	margin-top: 35px;
	font-size: 0;
}
.product-ys .ys-item .cont ul li {
	display: inline-block;
	width: 94px;
	text-align: center;
	font-size: 16px;
	color: #0b3ba3;
}
.product-ys .ys-item .cont ul li .icon-pic {
	height: 80px;
	margin-bottom: 10px; 
}
.product-ys .ys-item .cont ul li ~ li {
	margin-left: 50px;
}
.product-ys .ys-item .cont .des {
	margin-top: 20px;
	font-size: 16px;
	color: #6b6b6b;
	line-height: 30px;
}
.product-func h3,
.product-xg h3 {
	font-size: 18px;
	margin-bottom: 30px;
	color: #475470;
}
.product-func ul {
	margin-left: -10px;
	margin-right: -10px;
}
.product-func ul li,
.product-func-content>p {
	float: left;
	width: 25%;
	height: 210px;
	padding: 0 10px;
	background: #fff;
	margin-bottom: 20px;
}
.product-func-content>p:nth-child(2){color: #fff;}
.product-func-content>p:nth-child(4){color: #fff;}
.product-func-content>p:nth-child(5){color: #fff;}
.product-func-content>p:nth-child(7){color: #fff;}
.product-func ul li .box,
.product-func-content>p {
	padding: 30px 30px 0!important;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.product-func-content {
	width: 1420px;
}
.product-func-content>p {
	width: 335px!important;
	margin-right: 20px!important;
	margin-bottom: 20px!important;
}
.product-func ul li .box:hover,
.product-func-content>p:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.2)!important;
}
.product-func ul li:nth-child(2) .box,
.product-func ul li:nth-child(4) .box,
.product-func ul li:nth-child(5) .box,
.product-func ul li:nth-child(7) .box,
.product-func ul li:nth-child(9) .box,
.product-func ul li:nth-child(11) .box,
.product-func-content>p:nth-child(2),
.product-func-content>p:nth-child(4),
.product-func-content>p:nth-child(7),
.product-func-content>p:nth-child(9),
.product-func-content>p:nth-child(5),
.product-func-content>p:nth-child(11) {
	background: #2c61d4!important;
}
.product-detail table {
    width: 70%;
    border-color: #e5e5e5;
    margin: 0 auto 80px;
}
.product-func ul li .box h5,
.product-func-content>p>strong {
	display: block;
	margin-bottom: 6px;
	font-size: 24px;
	color: #0b3ba3;
	line-height: 1.5;
}
.product-func-content>p>strong span {
	font-size: 24px !important;
	color: #0b3ba3 !important;
}

.product-func ul li .box p,
.product-func-content>p>span {
	font-size: 16px !important;
	color: #6b6b6b !important;
	line-height: 1.75;
}
.product-func ul li:nth-child(2) .box h5,
.product-func ul li:nth-child(4) .box h5,
.product-func ul li:nth-child(5) .box h5,
.product-func ul li:nth-child(7) .box h5,
.product-func ul li:nth-child(9) .box h5,
.product-func ul li:nth-child(11) .box h5,
.product-func-content>p:nth-child(2)>strong span,
.product-func-content>p:nth-child(4)>strong span,
.product-func-content>p:nth-child(5)>strong span,
.product-func-content>p:nth-child(7)>strong span,
.product-func-content>p:nth-child(9)>strong span,
.product-func-content>p:nth-child(11)>strong span {
	color: #fff!important;
}
.product-func ul li:nth-child(2) .box p,
.product-func ul li:nth-child(4) .box p,
.product-func ul li:nth-child(5) .box p,
.product-func ul li:nth-child(7) .box p,
.product-func ul li:nth-child(9) .box p,
.product-func ul li:nth-child(11) .box p,
.product-func-content>p:nth-child(2)>span,
.product-func-content>p:nth-child(4)>span,
.product-func-content>p:nth-child(5)>span,
.product-func-content>p:nth-child(7)>span,
.product-func-content>p:nth-child(9)>span,
.product-func-content>p:nth-child(11)>span {
	color: #c1c9ed!important;
}


.product-detail table td,
.product-detail table th {
    border: 1px solid #e5e5e5!important;
    color: #666!important;
    padding: 15px 20px!important;
    text-align: center;
}

.product-spec table td p,
.product-spec table td p span,
.product-spec table th p span {
	font-size: 16px!important;
	font-family: "微软雅黑"!important;
	text-align: center!important;
	text-indent: 0!important;
}

.product-detail-body {
	padding: 40px 0 0;
}

.bg-map {
	background: url(../images/bg-map.jpg) no-repeat center top #f5f5f5;
}


/*新闻详情页*/
.news-show-left { float: left; width: 1090px; }
.news-show-cont { width: 100%; background: #fff; border: 1px solid #ddd; }
.news-show-left .news-title { padding: 40px 50px; padding-bottom: 30px; }
.news-show-left .news-title h2 {
	font-size: 32px;
	color: #475470;
	padding-bottom: 15px;
	font-weight: normal;
	line-height: 1.3;
}
.news-show-left .news-title p { font-size: 14px; color: #6b6b6b; padding-bottom: 28px; border-bottom: 1px solid #ddd; 
}
.news-show-left .news-title p a { color: #6b6b6b; }
.news-show-left .news-views { margin: 40px 50px 20px; margin-top: 0; font-size: 16px; min-height: 600px; color: #666; line-height: 1.75; overflow: hidden; }
.news-show-left .news-views table {
	width: 100%!important;
	border: none;
}
#textstyle_1 {
	font-family: "微软雅黑"!important;
    line-height: 1.75!important;
    font-size: 16px!important;
    /*text-indent: 0!important;*/
}
.news-show-left .news-views img { max-width: 100% !important; }
.news-show-left .news-views p { margin-bottom: 5px!important; font-size: 16px !important;font-family: "微软雅黑"!important;
    line-height: 1.75!important; background: transparent !important;}
.news-show-left .news-views span { font-size: 16px !important; }
.news-show-left .news-other { padding: 20px 15px; border-top: 1px #f1f1f1 solid; }
.news-show-left .news-other p { display: block; height: 40px; line-height: 40px; padding-left: 3px; }
.news-show-left .news-other p a { font-size: 14px; color: #333; }
.news-show-left .news-other p a:hover { color: #a1272d; }
.news-show-left .share-bar { padding: 20px 40px; }
.news-show-left .share-bar .fl { position: relative; top: -3px; }
.news-show-right { float: right; width: 290px; }
.news-show-right dl { display: block; margin-top: 0; margin-bottom: 20px; background: #fff; border: 1px solid #ddd; }
.news-show-right dl dt { display: block; height: 50px; line-height: 50px; position: relative; border-bottom: 1px #f1f1f1 solid; }
.news-show-right dl.tab dt { height: 50px; line-height: 50px; color: #1d1d1d; font-size: 18px; padding-left: 20px; }
.news-show-right dl.tab dd { position: relative; }
.news-show-right dl.tab dd ul { display: block; padding: 0 20px; }
.news-show-right dl.tab dd ul li { display: block; padding: 10px 0 10px; border-bottom: 1px #f1f1f1 solid; }
.news-show-right dl.tab dd ul li .pic { margin-right: 20px; width: 60px; height: 60px; overflow: hidden; position: relative; }
.news-show-right dl.tab dd ul li h5 { padding-top: 4px; padding-bottom: 10px; font-size: 14px; color: #666; display: block; line-height: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.news-show-right dl.tab dd ul li h5 a { color: #333; }
.news-show-right dl.tab dd ul li h5 a:hover { color: #a1272d; }
.news-show-right dl.tab dd ul li .news-cate { color: #999; }
.news-show-right dl.tab dd ul li i { float: left; font-size: 12px; color: #999; }
.news-show-right dl.tab dd ul li em { float: right; padding-left: 25px; font-size: 12px; color: #999;/* background: url(../images/eye.png) no-repeat left center; */ font-style: normal; }
.news-show-right dl.tab dd .more { color: #333; height: 45px; line-height: 45px; border-top: 1px #f1f1f1 solid; position: relative; top: -1px; text-align: center; }
.news-show-right dl.tab dd .more a { display: inline-block; position: relative; color: #333; }
.news-show-right dl.tab dd .more a b { margin-left: 5px; -webkit-transition: transform .3s; -o-transition: transform .3s; transition: transform .3s; }
.news-show-right dl.tab dd .more a:hover b { -webkit-transform: translateX(5px); -ms-transform: translateX(5px); -o-transform: translateX(5px); transform: translateX(5px); }
.news-show-right dl.tab dd .more a:hover { color: #a1272d; }
.news-show-right dl.list dt { padding-left: 20px; color: #333; font-size: 18px; }
.news-show-right dl.tab dt a { width: 33%; height: 42px; line-height: 42px; text-align: center; display: table-cell; color: #009A62; font-size: 18px; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; transition: all .3s ease-in-out; }
.news-show-right dl.list dt a b { width: 15px; height: 15px; overflow: hidden; display: inline-block; vertical-align: middle; background-position: 0 -64px; margin-left: 2px; position: relative; top: -1px; }
.news-show-right dl.list dd ul { display: block; padding: 20px; }
.news-show-right dl.list dd ul li { padding-bottom: 12px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news-show-right dl.list dd ul li a { position: relative; padding-left: 10px; display: inline-block; color: #666; font-size: 14px; -webkit-transition: .2s; -o-transition: .2s; transition: .2s; }
.news-show-right dl.list dd ul li:before { content: "·"; color: #666; }
.news-show-right dl.list dd ul li a:hover { color: #a1272d; }
.news-page-other { margin-top: 20px; border: 1px solid #ddd; padding: 20px 40px; background: #fff; }
.news-page-other p { line-height: 26px; font-size: 14px; color: #949494; }
.news-page-other p a { color: #6b6b6b; }
.news-page-other p a:hover { color: #a1262d; }
.news-page-other .p-prev { margin-bottom: 10px; }
.news-page-other .com-back-btn { margin-top: 9px; }


.com-back-btn {
    width: 160px;
    height: 42px;
    line-height: 42px;
    font-size: 20px;
    color: #fff;
    background: #173aa3;
    text-align: center;
    border-radius: 3px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.com-back-btn:hover {
	opacity: .9;
	color: #fff;
}


/*案例*/
.list-case-content .cwd-news-list {
	margin-left: -10px;
	margin-right: -10px;
}
.list-case-content .cwd-news-list li {
	background: transparent;
	padding: 0 10px;
}
.list-case-content .cwd-news-list li .box {
	padding: 25px;
	background: #fff;
	border: 1px solid #ededed;
}
.list-case-content .cwd-news-list li .pic {
	height: 200px;
	width: 270px;
	line-height: 200px;
}
.list-case-content .cwd-news-list li .cont {
    height: 200px;
    padding: 30px 10px 0 30px;
}
.list-case-content .cwd-news-list li .cont .des {
	margin-top: 20px;
	color: #888;
	line-height: 28px;
	font-size: 14px;
	height: 140px;
	display: none;
}
.news-show-left .case-title p {
	padding-bottom: 15px;
}
.case-tj-tit {
    font-size: 16px;
    color: #949494;
    margin-top: -69px;
    line-height: 70px;
}
.case-tj-list li {
	margin-bottom: 16px;
	border: 1px solid #ddd;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.case-tj-list li:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.case-tj-list li .box {
	padding: 20px;
	background: #fff;
}
.case-tj-list li .box .pic {
	/*height: 250px;*/
}
.case-tj-list li .box h5 {
	margin-top: 16px;
	font-size: 16px;
	color: #475470;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.case-tj-list li:hover .box h5 {
	color: #0b3ba3;
}
.case-tj-list li .box .more {
	display: block;
	margin-top: 20px;
	font-size: 16px;
	color: #0b3ba3;
}


/*关于*/
.cwd-about-content .pic {
	position: relative;
	margin-right: 70px;
	overflow: visible;
}
.cwd-about-content .pic:before {
	content: "";
	position: absolute;
	left: 20px;
	top: 20px;
	width: 100%;
	height: 100%;
	border: 1px solid #ededed;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-about-content .pic img {
	border: 1px solid transparent;
	position: relative;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-about-content .pic .tit {
	position: absolute;
	left: 55px;
	top: 55px;
}
.cwd-about-content .pic .tit p {
	font-size: 38px;
	color: #2c61d4;
	text-transform: uppercase;
	line-height: 1.2;
	font-weight: bold;
}
.cwd-about-content .pic .tit p span {
	display: block;
	font-size: 48px;
}
.cwd-about-content .pic h4 {
	margin-top: 20px;
	font-size: 20px;
	color: #475470;
}
.cwd-about-content .cont {
	padding-top: 10px;
	font-size: 16px;
	color: #6b6b6b;
	line-height: 30px;
}
.cwd-about-content .cont p ~ p {
	margin-top: 30px;
}

.cwd-about-num {
	padding-top: 55px;
	height: 300px;
	background: url(../images/about-num-bg.jpg) no-repeat center;
	text-align: center;
}
.cwd-about-num .item {
	position: relative;
	display: inline-block;
	width: 184px;
	height: 184px;
	background: url(../images/about-num-bg.png) no-repeat center;
	vertical-align: top;
	padding-top: 46px;
	font-size: 18px;
	color: #484a4c;
	margin: 0 100px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-about-num.num-4 .item {
	margin: 0 75px;
}
.cwd-about-num .item:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}
.cwd-about-num .item h5 {
	font-size: 60px;
	color: #0b3ba3;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 6px;
}
.cwd-about-num .item span {
	position: absolute;
	right: 20px;
    top: 12px;
	font-size: 22px;
	color: #0b3ba3;
}
.cwd-about-num .item span.f36 {
	font-size: 36px;
	line-height: 1;
}
.cwd-about-num .item span.f18 {
	font-size: 18px;
	top: 15px;
	right: 8px;
}
.cwd-culture {
	height: 720px;
	background: url(../images/culture-bg.jpg) no-repeat center fixed;
}
.cwd-youshi {
	height: 720px;
	background: url(../images/service-ys-bg.jpg) no-repeat center fixed;
}
.cwd-culture-content ul li h4 {
	font-size: 26px;
	color: #b9bec9;
	line-height: 1;
}
.cwd-culture-content ul li .en {
	display: inline-block;
	position: relative;
	font-size: 24px;
	color: #b9bec9;
	text-transform: uppercase;
}
.cwd-culture-content ul li .en:after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: 12px;
    width: 67px;
    border-bottom: 1px solid #b8bec9;
}
.cwd-culture-content ul li .pic {
	margin-top: 15px;
	margin-bottom: 20px;
}
.cwd-culture-content ul li .des {
	font-size: 20px;
	color: #fff;
}

.cwd-partner ul li .box {
	background: #fff;
	height: 160px;
	line-height: 160px;
	font-size: 0;
	text-align: center;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-partner ul li .box:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/*荣誉*/
.cwd-honor ul li .box {
	text-align: center;
}
.cwd-honor ul li .box .pic {
	height: 340px;
	line-height: 340px;
	font-size: 0;
	background: #fff;
	border: 1px solid #e4e4e4;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-honor ul li .box:hover .pic {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.cwd-honor ul li .box h5 {
	padding-top: 20px;
	padding-bottom: 25px;
	font-size: 16px;
	color: #484a4c;
}


/*发展历程*/
.cwd-develop-title .tit {
	font-size: 36px;
	color: #475470;
}
.cwd-develop-title .des {
	margin-top: 14px;
	font-size: 16px;
	color: #6b6b6b;
}
.cwd-develop-content {
    position: relative;
}
.cwd-develop-content .develop-box {
	padding-top: 50px;
    position: relative;
}
.cwd-develop-content .develop-box:before {
    content: "";
    position: absolute;
    left: 15%;
    height: 100%;
    border-left: 1px solid #cccccc;
}
.cwd-develop-content .item ~ .item {
    margin-top: 60px;
}
.cwd-develop-content .item:first-child {
    padding-top: 15px;
}
.cwd-develop-content .item .date {
    font-size: 50px;
    color: #0b3ba3;
    line-height: 1;
    width: 15%;
}
.cwd-develop-content .item .cont {
    font-size: 16px;
    line-height: 30px;
    width: 85%;
    padding-top: 5px;
    box-sizing: border-box;
}
.cwd-develop-content .item .cont ul li {
	padding-left: 130px;
	position: relative;
	margin-bottom: 16px;
}
.cwd-develop-content .item .cont ul li h5 {
	position: absolute;
	left: 23px;
	width: 70px;
	height: 30px;
	background: #2c61d3;
	line-height: 30px;
	text-align: center;
	border-radius: 5px;
	font-size: 18px;
	color: #fff;
}
.cwd-develop-content .item .cont ul li h5:before {
	content: "";
	position: absolute;
	left: -10px;
	top: 50%;
	display: inline-block;
	width: 0;
	height: 0;
	margin-top: -4px;
	vertical-align: middle;
	border-top: 8px dashed #2d61d3;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.cwd-develop-content .item .cont ul li h5:after {
	content: "";
	position: absolute;
	left: -27px;
	top: 11px;
	width: 9px;
	height: 9px;
	background: #2c61d4;
	border-radius: 50%;
}
.cwd-develop-content .item .cont ul li .des {
	font-size: 16px;
	color: #475470;
}

.cwd-develop-content .item .cont ul li .des p span {
	font-family: "微软雅黑" !important;
}


/*联系页面*/
.cwd-contact .contact-tit {
	position: relative;
	padding-bottom: 20px;
	font-size: 24px;
	color: #475470;
	margin-bottom: 45px;
}
.cwd-contact .contact-tit:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	border-bottom: 3px solid #475470;
}
.cwd-contact .qr-code {
	padding-top: 70px;
}
.cwd-contact .qr-code li {
	float: left;
	margin-left: 100px;
	text-align: center;
	font-size: 18px;
	color: #282a2c;
}
.cwd-contact .qr-code li img {
	border: 1px solid #dedede;
	margin-bottom: 10px;
}
.cwd-map {
	position: relative;
}
.cwd-map:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #475470;
	opacity: .7;
}
.cwd-map .cont {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	z-index: 2;
	margin-top: -53px;
}
.cwd-map .cont h4 {
	font-size: 28px;
	color: #fff;
}
.cwd-map .cont .more-addr {
	display: inline-block;
	margin-top: 20px;
	width: 200px;
	height: 44px;
	line-height: 44px;
	border-radius: 22px;
	background: #f4f4f4;
	color: #f4f4f4;
	font-size: 18px;
	color: #0b3ba3;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-map .cont .more-addr .icon-addr {
	display: inline-block;
	width: 23px;
	height: 100%;
	background: url(../images/icon-map.png) no-repeat center;
	background-size: contain;
	vertical-align: top;
	margin-right: 15px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-map .cont .more-addr:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	background: #0d3aa3;
	color: #fff;
}
.cwd-map .cont .more-addr:hover .icon-addr {
	background: url(../images/icon-map-on.png) no-repeat center;
	background-size: contain;
}



.cwd-support ul li .box {
	padding: 52px 22px 0;
	height: 335px;
	background: #fff;
	border: 1px solid #e2e2e2;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	text-align: center;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-support ul li .box:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.cwd-support ul li .box .pic {
	height: 115px;
	line-height: 115px;
	font-size: 0;
}
.cwd-support ul li .box .pic i {
	vertical-align: middle;
}
.cwd-support ul li .box .pic .icon-s1 {
	width: 80px;
	height: 90px;
	background: url(../images/icon-service-1.png) no-repeat center;
}
.cwd-support ul li .box .pic .icon-s2 {
	width: 84px;
	height: 83px;
	background: url(../images/icon-service-2.png) no-repeat center;
}
.cwd-support ul li .box .pic .icon-s3 {
	width: 84px;
	height: 84px;
	background: url(../images/icon-service-3.png) no-repeat center;
}
.cwd-support ul li .box .pic2 {
	padding-top: 8px;
	height: 115px;
}
.cwd-support ul li .box .pic2 .icon-s4 {
	width: 48px;
	height: 57px;
	background: url(../images/icon-service-4.png) no-repeat center;
}
.cwd-support ul li .box .pic2 span {
	display: block;
	font-size: 30px;
	color: #0b3ba3;
	line-height: 1;
}
.cwd-support ul li .box h5 {
	margin-top: 20px;
	margin-bottom: 15px;
	font-size: 24px;
	color: #0b3ba3;
}
.cwd-support ul li .box p {
	color: #6b6b6b;
}

.bg-xw {
	background: url(../images/about-num-bg.jpg) repeat-y center;
}
.cwd-service-intro {
	margin-top: 15px;
	margin-bottom: 20px;
	font-size: 16px;
	color: #6b6b6b;
	text-align: center;
}

.cwd-service-info {
	margin: -120px auto 0;
}
.cwd-service-info .item {
	float: left;
	padding: 0 15px;

}
.cwd-service-info .item .box {
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border: 1px solid #ededed;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-service-info .item .box:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.cwd-service-info .item ~ .item {
	margin-top: 30px;
}
.cwd-service-info .item-tel {
	height: 200px;
	width: 100%;
}
.cwd-service-info .item-tel .box {
	padding: 56px 130px 0;
}
.cwd-service-info .item-tel .box .tit {
	padding-left: 88px;
	font-size: 16px;
	color: #949494;
	background: url(../images/icon-support-tel.png) no-repeat left center;
}
.cwd-service-info .item-tel .box .tit h4 {
	font-size: 36px;
	color: #475470;
}
.cwd-service-info .item-tel .box .num {
	font-size: 16px;
	color: #6b6b6b;
}
.cwd-service-info .item-tel .box .num .tel {
	font-size: 60px;
	color: #0b3ba3;
	line-height: 1.4;
}
.cwd-service-info .item-tel .box .num .name {
	position: relative;
	top: -2px;
	display: inline-block;
	margin-left: 30px;
}
.cwd-service-info .item-bx {
	height: 280px;
}
.cwd-service-info .item-bx .box {
	padding: 40px 40px 0;
}
.cwd-service-info .item-2 {
	width: 64%;
}
.cwd-service-info .item-3 {
	width: 36%;
}
.cwd-service-info .item-bx .box h4 {
	font-size: 24px;
	color: #0b3ba3;
	margin-bottom: 20px;
}
.cwd-service-info .item-bx .box .des {
	font-size: 16px;
	color: #6b6b6b;
}
.cwd-service-info .item-bx .box .des p ~ p {
	margin-top: 20px;
}



/*方案*/
.solution-intro {
	padding-top: 165px;
	height: 768px;
}
.solution-intro .cont {
	text-align: center;
}
.solution-intro .cont .tit {
	font-size: 46px;
	color: #fff;
	line-height: 1;
}
.solution-intro .cont .tit .font-bold {
	font-weight: bold;
}
.solution-intro .cont .sub-tit {
	font-size: 18px;
	color: #dfe2ed;
	margin-top: 25px;
	margin-bottom: 30px;
}
.solution-intro .cont .des {
	color: #d7d9e4;
}
.solution-intro .cont .des p ~ p {
	margin-top: 10px;
}
.solution-intro ul {
	padding-top: 30px;
}
.solution-intro ul li {
	display: inline-block;
	margin: 0 8px;
	width: 154px;
	line-height: 45px;
	border-radius: 28px;
	border: 2px solid #cfd6e5;
	font-size: 18px;
	color: #fff;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.solution-intro ul li:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
}
.solution-title{
    padding: 30px 0;
}
.cwd-tab-list {
	text-align: center;
}
.cwd-tab-list li {
	display: inline-block !important;
	float: none;
	margin: 0 22px;
	padding: 0 20px;
	width: auto !important;
	line-height: 45px;
	background: #949494;
	color: #fff;
	font-size: 18px;
	border-radius: 28px;
	cursor: pointer;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.cwd-tab-list li:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.cwd-tab-list li.slick-current,
.cwd-tab-list li.slick-disabled {
	background: #2c61d4;
}
.solution-ys {
    margin-top: 55px;
}
.solution-ys .ys-item .cont {
	padding-left: 60px;
	padding-right: 50px;
}
.solution-ys .ys-item .cont .des {
	margin-top: 50px;
}
.solution-ys .ys-item .cont .des p ~ p {
	margin-top: 25px;
}
.solution-ys .ys-item:nth-child(2n) .cont {
    padding-left: 60px;
    margin-left: 0;
}
.solution-ys .ys-item .pic {
	border: 1px solid #ddd;
}

.cwd-product-list .slick-track li {
	padding: 0 6.5px;
}

.com-dots .slick-dots {
	bottom: -30px;
}
.com-dots .slick-dots li {
	float: none;
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.com-dots .slick-dots li button {
	width: 16px;
    height: 16px;
}
.com-dots .slick-dots li button:before {
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	content: ' ';
	background: #475470;
	border-radius: 50%;
}
.com-dots .slick-dots li.slick-active button:before {
  background: transparent;
  border: 2px solid #0b3ba3;
}
.com-dots .slick-list {
	padding: 10px 0;
}

.solution-list-wrap .slick-track {
	padding-bottom: 10px;
}
.solution-list li .box {
	background: #fff;
	text-align: center;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	-webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.solution-list li .box .cont {
	width: 100%;
	height: 160px;
	border: 1px solid #ebebeb;
	padding: 30px 20px 0;
}
.solution-list.value li .box .cont {
	/*height: 200px;*/
	border: none;
}
.solution-list.value li .box .pic img {
	width: 100%;
}
.solution-list.value li .box .cont {
	padding: 18px 20px 0;
}
.solution-list li .box:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.solution-list li .box .cont h5 {
	font-size: 24px;
	color: #0b3ba3;
}
.solution-list li .box .cont p {
	margin-top: 15px;
	color: #6b6b6b;
}

.solution-list2 li {
    height: 210px;
    margin-top: 20px;
}
.solution-list2 li .box {
    padding: 30px 30px 0;
    background: #fff;
    border: 1px solid #ededed;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.solution-list2 li .box:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.solution-list2 li:nth-child(2) .box,
.solution-list2 li:nth-child(4) .box,
.solution-list2 li:nth-child(5) .box,
.solution-list2 li:nth-child(7) .box,
.solution-list2 li:nth-child(9) .box,
.solution-list2 li:nth-child(11) .box {
	background: #2c61d4;
}
.solution-list2 li .box h5 {
	margin-bottom: 6px;
	font-size: 24px;
	color: #0b3ba3;
}
.solution-list2 li .box p {
	font-size: 16px;
	color: #6b6b6b;
}
.solution-list2 li:nth-child(2) .box h5,
.solution-list2 li:nth-child(4) .box h5,
.solution-list2 li:nth-child(5) .box h5,
.solution-list2 li:nth-child(7) .box h5,
.solution-list2 li:nth-child(9) .box h5,
.solution-list2 li:nth-child(11) .box h5 {
	color: #fff;
}
.solution-list2 li:nth-child(2) .box p,
.solution-list2 li:nth-child(4) .box p,
.solution-list2 li:nth-child(5) .box p,
.solution-list2 li:nth-child(7) .box p,
.solution-list2 li:nth-child(9) .box p,
.solution-list2 li:nth-child(11) .box p {
	color: #c1c9ed;
}

.dz-list {

	text-align: center;
	font-size: 0;
}
.dz-list li {
	display: inline-block;
	width: 211px;
	height: 184px;
	background: url(../images/solution/s3-icon-2.png) no-repeat center;
	margin: 0 15px;
	font-size: 20px;
	color: #484a4c;
	padding-top: 45px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.dz-list li:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}
.dz-list li:nth-child(2n) {
	background: url(../images/solution/s3-icon-1.png) no-repeat center;
}
.dz-list li:first-child {
	background: url(../images/solution/s3-icon-3.png) no-repeat center;
}
.dz-list li:last-child {
	background: url(../images/solution/s3-icon-4.png) no-repeat center;
}
.dz-list li h5 {
	font-size: 48px;
	color: #2c5eaa;
	line-height: 1.1;
}

.sulution-info {
	margin: 90px auto 0;
}
.sulution-info .item {
	float: none;
	padding: 0;
}
.sulution-info .item-tel .box .tit {
	background: transparent;
	padding-left: 0;
}
.num-list .mini-item {
    padding-left: 60px;
    height: 62px;
}
.num-list .mini-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 100%;
    background: url(../images/icon-support-tel.png) no-repeat center;
    background-size: contain;
}
.num-list .mini-item h5 {
	font-size: 16px;
}
.num-list .mini-item p {
	font-size: 42px;
    height: auto;
    width: auto;
}


/*--------网站地图---------------*/
.m-pro-lb{overflow:hidden;padding-bottom:100px;}
.m-pro-lb .col-l{width:20%;}
.m-pro-lb .col-r{width:76%;}
.m-snav{background-color:#069faf;text-align:center;padding:55px 0 35px;}
.snav-tit{font-size:16px;color:#fff;margin-bottom:50px;}
.ul-pro-lb li a{display:block;font-size:16px;color:#fff;}
.ul-pro-lb li a:hover{color:#000;}
.ul-pro-lb li{position:relative;margin-bottom:31px;}
.ul-pro-lb li:after{content:"";position:absolute;left:22%;top:50%;width:6px;height:1px;background-color:#fff;opacity:0.55;filter:alpha(opacity=55);}
.dl-pro-con dt{height:80px;background-color:#f8f8f8;margin-bottom:22px;}
.dl-pro-con dt em{float:left;padding-right:55px;padding-left:20px;height:80px;line-height:80px;font-size:24px;color:#0b3ba3;background-color:#f8f8f8;font-weight:normal;}
.dl-pro-con dd{color:#555;}
.dl-pro-con dd h3{position:relative;font-size:14px;border-bottom:1px solid #f2f2f2;padding:20px 8.5% 17px 10px;line-height:2em;cursor:pointer;}
.dl-pro-con dd h3:before,.dl-pro-con dd h3:after{content:'';position:absolute;left:92%;top:50%;width:16px;height:2px;background-color:#333;-webkit-transition:.3s;-o-transition:.3s;transition:.3s;}
.dl-pro-con dd h3:after{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);}
.dl-pro-con dd h3:hover,.dl-pro-con dd h3.on{color:#069faf;background-color:#f8f8f8;}
.dl-pro-con dd p{display:none;font-size:14px;line-height:2em;padding:10px 28px;padding-right:200px;color:#666;background-color:#f8f8f8;}
.dl-pro-con dd h3.on{background-color:#dedede;}
.dl-pro-con dd h3.on:after{-webkit-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0);}
.dl-pro-con dd:last-child h3{border:none;}


.contact_main3{width: 100%; padding-bottom: 80px;}
.contact_main3 h4{ font-size: 32px; color: #333; padding-top: 10px; padding-bottom: 50px; text-align: center;}

.guest_box {width:100%;margin:0 auto;}
li.error {position:relative;}
.guest_box li {width:456px;line-height:40px;font-size:12px;color:#666;float:left;margin-bottom:10px;}
.guest_box li .input {font-size:12px;border:1px solid #fff;width:510px;height:40px;line-height:40px;padding-left:30px;color:#666;background:#fff;background-color:#eee;}
.guest_box li.error {}
span.error {position:absolute;top:72px;left:0;color:#ff0000;font-size:12px;}
.guest_box li .textarea {font-size:12px;width:510px;height:230px;border:1px solid #fff;padding-left:30px;padding-top:10px;color:#666;line-height:20px;background-color:#eee;}
textarea {overflow:auto;}
.guest_box .submit {width:198px;height:57px;margin:0 auto;margin-top:67px;background:none;display:block;color:#76ae0d;font-size:16px;cursor:pointer;transition:0.3s; border: 1px solid #76ae0d; }
/*.guest_box .submit:hover {color:#fff;background-color:#76ae0d;}*/
.zxly .list_title2 {margin-bottom:65px;}
.guest_box2 li {width:386px;margin-bottom:15px;}
.guest_box2 li.error {margin-right:20px;}
.guest_box2 .submit {width:145px;height:40px;}

.biaodan_con li{ border: 0; margin-right: 1%; border: 1px solid #b5b5b5; }
.biaodan_con li.m_r{ margin-right: 0; }
.biaodan_con li .input{ border: 0; height: 43px; padding-left: 5%; width: 100%; background-color: #fff;}
.biaodan_con li.text_error{ width: 99.8%; height: 202px; margin-bottom: 0px; }
.biaodan_con li .textarea{ width: 100%; padding-left: 1.5%; height: 200px; background-color: #fff; }
.biaodan_con .submit { border: 0; width:200px;height:44px; line-height: 44px; border-radius: 22px; margin:0 auto;margin-top:65px;background-color:#173aa3;display:block;color:#fff;font-size:16px; cursor:pointer;transition:0.3s;opacity: 1;}
.biaodan_con .submit:hover {opacity: .9;}
.biaodan_con_p{ font-size: 14px; color: #999; padding-top: 20px; padding-left: 20px; }
