/*滚动条样式*/

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
	background: #0f3682;
	height: 60px;
}

::-webkit-scrollbar-thumb:window-inactive {
	background: #0f3682;
}

::-webkit-scrollbar-thumb:vertical:hover {
	background: #0f3682;
}

body {
	font-family: "Helvetica Neue","Helvetica","Arial","sans-serif", "微软雅黑";
}

i,em {
	font-style: normal;
}

a:hover {
	text-decoration: none;
}

@media (min-width: 1440px) {
	.container {
		width: 1400px;
	}
}
@media (min-width: 1600px) {
	.index_body .container,
	.header .container {
		width: 1550px;
	}
}

.img {
	width: 100%;
	overflow: hidden;
}
.img img {
	display: block;
	width: 100%;
	transition: all .5s;
}

/*foot*/
.footer {	
	background-color: #686868;
	font-size: 14px;
	text-transform: uppercase;
	text-align: center;
	line-height: 20px;
	color: #fff;
	padding: 15px 0;
}
.footer div {
	display: inline-block;
}
.footer a {
	display: inline-block;
	color: #fff;
}
.footer a:hover {
	opacity: .8;
}
.gotop {
	width: 40px;
	height: 40px;
	background: url(../images/icon/gotop.png) no-repeat center;
	background-size: contain;
	position: fixed;
	right: 5px;
	bottom: 60px;
	cursor: pointer;
	display: none;
	transition: all .5s;
}
.gotop:hover {
	background: url(../images/icon/gotop1.png) no-repeat center;
	background-size: contain;
}
@media (max-width: 767px) {
	.footer {
		font-size: 12px;
		padding: 10px 0;
	}
	.gotop {
		width: 30px;
		height: 30px;
	}
}
@media (min-width: 1200px) {
	.footer {
		font-size: 16px;
		padding: 20px 0;
	}
}

/*导航*/
.navbar-default {
	background-color: #fff;
	border: 0;
	border-radius: 0;
	margin-bottom: 0;
}
.navbar-brand {
	height: auto;
	padding-top: 0;
	padding-bottom: 10px;
}
.navbar-brand img {
	display: block;
	height: 40px;
}
.navbar-default .navbar-toggle {
	border: 0;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #0f3682;
	transition: all .5s;
}
.indexHeader .navbar-default .navbar-toggle .icon-bar {
	background-color: #fff
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
	background-color: transparent;
}
.navbar-default .menu_close .icon-bar:nth-child(1) {
	transform: rotate(45deg);
	position: relative;
	top: 6px;
}
.navbar-default .menu_close .icon-bar:nth-child(2) {
	display: none;
}
.navbar-default .menu_close .icon-bar:nth-child(3) {
	transform: rotate(-45deg);
}
.navbar-default .navbar-nav>li>a {
	color: #333;
	text-transform: uppercase;
	transition: all .5s;
}
.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: #0f3682;
	background-color: transparent;
}
.navbar-default .navbar-nav>li>a span {
	position: relative;
	display: block;
	text-transform: uppercase;
	padding: 0 5px;
}
.navbar-default .navbar-nav>li>a span:after {
	content: "";
	width: 0;
	height: 2px;
	background-color: #003fb5;
	position: absolute;
	left: 0;
	bottom: -10px;
	z-index: 1;
	transition: all .5s;
}
.navbar-default .navbar-nav>li:hover>a span:after,
.navbar-default .navbar-nav>.active>a span:after {
	width: 100%;
}

.header .dropdown-menu {
	width: 100%;
	padding: 0;
	border: none;
	border-radius: 0;
}
.header .dropdown-menu>li>a {
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 10px 5px;
}
.header .dropdown-menu>li>a:focus,
.header .dropdown-menu>li>a:hover {
	background-color: #0f3682!important;
	color: #fff!important;
}

.header_top {
	background-color: #003fb5;
	border-top: 5px #003fb5 solid;
	padding: 5px 0 10px;
	position: relative;
}
.header_top:after {
	content: "";
	width: 35%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: -25px;
	transform: skewX(55deg);
}
.top_tel {
	color: #83aeff;
	text-align: right;
	position: relative;
	z-index: 1;
}
.top_tel span {
	display: inline-block;
}
.top_tel span+span {
	margin-left: 10px;
}
.top_tel a {
	color: #83aeff;
}
.top_tel a:hover {
	color: #fff;
}

.language {
	float: right;
	margin: 18px 0 18px 10px;
}
.language a {
	float: left;
	color: #777;
	line-height: 1;
	text-transform: uppercase;
	padding: 0 6px;
}
.language a+a {
	border-left: 1px #3b914d solid;
}
.language a:hover,
.language a.active {
	color: #333;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 40%;
	transform: translateY(-50%);
	z-index: 2;
}
.sidebar ul {	
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar ul li {
	position: relative;
	background-color: #fff;
	padding: 10px;
	margin: 2px 0;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.sidebar ul li>img {
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 auto;
}
.sidebar ul li span {
	font-size: 18px;
	line-height: 30px;
	color: #1a6aff;
	text-transform: uppercase;
	background-color: #fff;
	padding: 10px;
	position: absolute;
	left: -100%;
	z-index: -1;
	transition: all .5s;
	min-width: 100px;
}
.sidebar ul li a {
	color: #1a6aff;
}
.sidebar ul li span:before {
	content: "";
	width: 1px;
	height: 30px;
	background-color: #1a6aff;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -15px;
}
.sidebar ul li:hover span {
	left: 50px;
}

@media (max-width: 767px) {
	.sidebar {
		display: none;
	}
	.header_top {
		padding: 0 0 5px;
	}
	.header_top:after {
		left: -45px;
	}
	.top_tel {
		font-size: 12px;
	}
	.navbar-brand .logo {
		display: none;
	}
	.PC_lanuage {
		display: none;
	}
}
@media (min-width: 768px) {
	.navbar-brand img {
		height: 50px;
	}
	.navbar-brand .logo {
		display: none;
	}
	.navbar-default .navbar-nav>li>a {
		padding: 20px 10px;
	}
	.navbar-default .navbar-nav>li>a span:after {
		bottom: -18px;
	}
	.min_language {
		display: none;
	}
	.language {
		margin-top: 23px;
		margin-bottom: 23px;
		margin-right: -15px;
	}
	.header .dropdown-menu {
		text-align: center;
		left: 50%;
		transform: translateX(-50%);
	}
}
@media (min-width: 992px) {
	.navbar-brand .log1 {
		display: none;
	}
	.navbar-brand .logo {
		display: block;
	}
	.navbar-brand img {
		height: 40px;
	}
}
@media (min-width: 1200px) {
	.top_tel span+span {
		margin-left: 50px;
	}
	.navbar-brand {
		padding-bottom: 20px;
	}
	.navbar-brand img {
		height: 50px;
	}
	.navbar-default .navbar-nav>li>a {
		font-size: 16px;
		padding: 25px 15px;
	}
	.navbar-default .navbar-nav>li>a span:after {
		bottom: -23px;
	}
	.language {
		margin-top: 28px;
		margin-bottom: 28px;
	}
}
@media (min-width: 1600px) {
	.navbar-brand {
		padding-bottom: 30px;
	}
	.navbar-brand img {
		height: 60px;
	}
	.navbar-default .navbar-nav>li>a {
		font-size: 18px;
		padding: 35px 25px;
	}
	.navbar-default .navbar-nav>li>a span:after {
		bottom: -33px;
	}
	.language {
		margin-top: 38px;
		margin-bottom: 38px;
	}
}

/*首页*/
.index_banner {
	position: relative;
}
.index_banner img {
	display: block;
	width: 100%;
}
.banner_text {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.banner_text img {
	display: block;
	width: 100%;
	-webkit-transition: all 1s;
	transition: all 1s;
	opacity: 0;
}
.banner_text .min_img {
	display: none;
}
.banner1 .banner_text img {
	transform: translateY(-100%);
}
.banner2 .banner_text img {
	transform: translateY(100%);
}
.banner3 .banner_text img {
	transform: translateX(-100%);
}
.banner4 .banner_text img {
	transform: translateX(100%);
}
.banner5 .banner_text img {
	transform: scale(0);
}
.index_banner .swiper-slide-active .banner_text img {
	opacity: 1;
	transform: none;
	transition-delay: .5s;
}

.index_banner .swiper-pagination-bullet {
	background-color: #98abd1;
	opacity: 1;
}
.index_banner .swiper-pagination-bullet-active {
	background-color: #133984;
}

@media (max-width: 767px) {
	.banner_text .PC_img {
		display: none;
	}
	.banner_text .min_img {
		display: block;
	}
	.index_banner .swiper-pagination-bullets {
		bottom: 0;
	}
}

.index_main {
	padding: 50px 0;
	overflow: hidden;
	position: relative;
}
.index_title a {
	display: block;
}
.index_title img {
	display: block;
	width: 100%;
	max-width: 190px;
	margin: 0 auto;
}

.index_about {
	margin-top: 5px;
}
.index_about .column {
	margin: 15px 0;
}
.index_about .img {
	width: 90%;
	margin: 0 auto;
}
.index_about_info>h2 {
	font-size: 16px;
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
	margin: 0;
	background: url(../images/bg4.png) no-repeat center left;
	background-size: contain;
	padding: 30px 0 40px 15px;
}
.index_about_info .text {
	font-size: 14px;
	color: #666;
	line-height: 36px;
	text-indent: 28px;
	overflow: hidden;
	margin-top: -20px;
	word-break: break-all;
}
.index_about_info .text p {
	margin: 0;
}
.index_about_list {
	margin-top: 30px;
}
.index_about_list a {
	display: block;
	background: url(../images/bg3.png) no-repeat center;
	background-size: contain;
	padding: 55px 15px;
	position: relative;
	overflow: hidden;
}
.index_about_list a:after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../images/bg3_1.png) no-repeat center;
	background-size: contain;
	position: absolute;
	left: 0;
	bottom: -100%;
	z-index: -1;
	transition: all .5s;
}
.index_about_list a:hover:after {
	bottom: 0;
}
.index_about_list a .icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 10px;
	overflow: hidden;
	position: relative;
}
.index_about_list a .icon img {
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all .5s;
}
.index_about_list a:hover .iconDefault,
.index_about_list a .icon .iconHover {
	bottom: -100%;
}
.index_about_list a:hover .iconHover {
	bottom: 0;
}
.index_about_list a h2 {
	font-size: 18px;
	line-height: 20px;
	color: #2154b9;
	text-align: center;
	letter-spacing: 5px;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	margin: 0;
}
.index_about_list a:hover h2 {
	color: #fff;
}

.index_pro_bg {
	background: url(../images/bg1.jpg) center;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.index_pro {
	margin: 30px 0;
}
.submenu_title {
	background: url(../images/icon/icon4.png) no-repeat center left 15px #133984;
	background-size: 20px;
	color: #fefefe;
	padding: 20px 15px 20px 50px;
}
.submenu_title h2 {
	font-size: 18px;
	text-transform: uppercase;
	margin: 0;
}
.submenu_title span {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 6px;
}
.submenu li {
	background-color: #1b49a3;
}
.submenu li a {
	display: block;
	color: #fff;
	text-transform: uppercase;
	padding: 14px 25px 14px 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}
.submenu li a:before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(49,113,238,.48);
	position: absolute;
	left: 0;
	bottom: 0;
}
.submenu li a:after {
	content: "+";
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 15px;
	transition: all .5s;
}
.submenu li a:hover,
.submenu li.active a {
	background-color: rgba(226,236,255,.2)
}
.submenu li.active a:after {
	transform: rotate(45deg);
}

.index_pro_right {
	width: 100%;
}
.index_pro_list a {
	display: block;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	padding: 10px;
	color: #333;
}
.index_pro_list a:hover {
	color: #133984;
}
.index_pro_list a:hover img {
	transform: scale(1.1);
}
.index_pro_list a h2 {
	font-size: 14px;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	border-bottom: 1px #a7a8a8 solid;
	padding-bottom: 10px;
	margin: 30px 0 15px;
}
.index_pro_list a p {
	font-size: 14px;
	line-height: 24px;
	color: #6d6c6c;
	height: 48px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 20px;
}
.index_pro_list a i {
	display: block;
	width: 28px;
	height: 10px;
	background: url(../images/icon/icon5.png) no-repeat center;
	background-size: contain;
	margin: 0 auto 10px;
	transition: all .5s;
}
.index_pro_list a:hover i {
	background-image: url(../images/icon/icon5_1.png);
}

.index_partner_list {
	margin-left: -10px;
	margin-right: -10px;
	margin-top: 30px;
}
.index_partner_list .column {
	padding: 0 10px;
	margin: 10px 0;
}
.index_partner_list .img {
	background-color: #f2f2f2;
	border: 1px #cacaca solid;
}
.index_partner_list .img:hover img {
	transform: scale(1.1);
}

.index_contact_bg {
	background: url(../images/bg2.jpg) center;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 62%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.index_contact_wrap {
	margin: 30px 0 15px;
	overflow: hidden;
}
.index_contact_wrap p {
	margin-bottom: 10px;
}
.index_contact_wrap p a {
	display: block;
	background-color: #0d45b5;
	color: #fff;
	padding: 15px;
}
.message_form {
	margin: 50px 0;
}
.index_message_form {
	margin: 0!important;
}
.message_form form {
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	padding: 15px;
}
.message_form h2 {
	font-size: 18px;
	color: #133984;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 30px;
	text-transform: uppercase;
}
.message_form .form-control {
	height: 40px;
	color: #555;
	background-color: transparent;
	border-color: #c1c1c1;
	border-width: 0 0 1px 0;
	border-radius: 0;
	box-shadow: none;
	padding-left: 0;
	padding-right: 0;
}
.message_form .error .form-control {
	border-color: #133984;
}
.message_form .error .valid_message {
	position: absolute;
	width: 100%;
	left: 0;
	font-size: 12px;
	color: #133984;
	display: none;
}
.message_btn .btn {
	display: block;
	background-color: #0f77b2;
	border: 1px #0f77b2 solid;
	color: #fff;
	border-radius: 20px;
	margin: 30px auto 0;
	padding-left: 50px;
	padding-right: 50px;
	outline: none!important;
	text-transform: uppercase;
}
.message_btn .btn:hover {
	background-color: transparent;
	color: #0f77b2;
}

@media (max-width: 767px) {
	.index_main {
		padding: 30px 0;
	}	
	.index_about_list {
		margin-left: -5px;
		margin-right: -5px;
		margin-top: 15px;
	}
	.index_about_list .column {
		padding: 0 5px;
		margin: 5px 0;
	}
	.index_about_list a {
		padding: 20px 5px;
	}
	.index_about_list a .icon {
		width: 36px;
		height: 36px;
		margin-bottom: 5px;
	}
	.index_about_list a h2 {
		font-size: 14px;
		letter-spacing: 2px;
	}
	.index_pro_bg,
	.index_contact_bg {
		background-attachment: initial;
	}
	.index_main .submenu_main,
	.submenu_title {
		display: none;
	}
	.submenu_main {
		width: 50%;
		max-width: 210px;
		position: fixed;
		top: 0;
		bottom: 0;
		right: -100%;
		z-index: 1;
		background-color: #0787e5;
		padding-top: 40px;
		overflow-y: scroll;
	}
	.submenu_main::-webkit-scrollbar {
		width: 0;
		height: 0;
	}
	.submenu li a {
		padding: 10px 20px 10px 15px;
	}
	.submenu li a:after {
		right: 10px;
	}
	.menu_icon {
		width: 24px;
		height: 24px;
		background: url(../images/icon/icon9.png) no-repeat center;
		background-size: contain;
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -12px;
	}
	.submenu_close {
		width: 100%;
		height: 40px;
		background: url(../images/icon/close.png) no-repeat center;
		background-size: 30px;
		position: absolute;
		top: 0;
		left: 0;
	}
	.index_pro_list .column {
		margin-bottom: 30px;
	}
}
/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.index_about .img {
		width: 70%;
	}
	.index_about_list a {
		padding: 30px 5px;
	}
	.index_pro_list {
		margin-left: -5px;
		margin-right: -5px;
	}
	.index_pro_list .column {
		float: left;
		width: 33.33333%;
		padding: 0 5px;
	}
}
@media (min-width: 768px) {
	.index_title img {
		max-width: 260px;
	}
	.index_about_info>h2 {
		font-size: 20px;
		padding-top: 35px;
		padding-bottom: 55px;
	}
	.index_about_info .text {
		height: 216px;
	}
	.index_pro {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		margin: 50px 0;
	}
	.submenu_main {
		flex: 0 0 auto;
		width: 180px;
		margin-right: 30px;
	}
	.index_pro_list .column:nth-child(n+3) {
		display: none;
	}
	.index_partner_list {
		margin-top: 50px;
	}
	.index_contact_wrap {
		margin: 55px -5px 35px;
	}
	.index_contact_wrap p {
		float: left;
		width: 33.33333%;
		padding: 0 5px;
		text-align: center;
	}
	.index_contact_wrap p a {
		padding: 15px 0;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
	.message_form form {
		padding: 30px;
	}
	.message_form h2 {
		font-size: 20px;
		margin-bottom: 50px;
	}
	.message_form .form-group {
		margin-bottom: 30px;
	}
}
@media (min-width: 992px) {
	.index_about .img {
		width: 100%;
		margin-top: 55px;
	}
	.index_pro_list .column:nth-child(n+3) {
		display: block;
	}
}
@media (min-width: 1200px) {
	.index_main {
		padding: 70px 0;
	}
	.index_title img {
		max-width: 310px;
	}
	.index_about {
		margin-left: -25px;
		margin-right: -25px;
	}
	.index_about>.column {
		padding: 0 25px;
	}
	.index_about_info>h2 {
		font-size: 24px;
		padding-top: 50px;
		padding-bottom: 70px;
	}
	.index_pro {
		margin: 80px 0;
	}
	.submenu_main {
		width: 240px;
	}
	.index_partner_list {
		margin-top: 70px;
	}
	.index_contact_wrap {
		margin: 75px -22px 35px;
	}
	.index_contact_wrap p {
		padding: 0 22px;
	}
	.message_form {
		margin: 80px 0;
	}
	.message_form h2 {
		font-size: 24px;
	}
	.message_form .row {
		padding-left: -50px;
		padding-right: -50px;
	}
	.message_form .column {
		padding: 0 50px;
	}
	.message_btn .btn {
		font-size: 16px;
		margin-top: 40px;
	}
}
@media (min-width: 1600px) {
	.index_main {
		padding: 100px 0;
	}
	.index_contact_main {
		padding-bottom: 70px;
	}
	.index_title img {
		max-width: 370px;
	}
	.submenu_main {
		width: 280px;
		margin-right: 60px;
	}
	.submenu_title {
		padding-left: 70px;
		background-size: 40px;
	}
	.submenu_title h2 {
		font-size: 24px;
	}
	.submenu_title span {
		font-size: 14px;
	}
	.index_pro_list {
		margin-left: -32px;
		margin-right: -32px;
	}
	.index_pro_list .column {
		padding: 0 32px;
	}
	.index_partner_list {
		padding: 0 120px;
	}
	.index_contact_wrap {
		padding: 0 160px;
	}
	.index_message_form {
		padding: 0 160px;
	}
}

/*内页*/
.index_banner_main {
	position: relative;
}
.inside_banner {
	position: relative;
	width: 100%;
}
.inside_banner_text {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	padding-bottom: 30px;
}
.inside_banner_text h2 {
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.inside_banner_text p {
	font-size: 12px;
	margin: 0;
}
.inside_banner img {
	display: block;
	width: 100%;
}

.classify_main {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.classify_menu li a {
	background-color: #fff;
	border: 1px #979797 solid;
	color: #333;
	text-align: center;
	line-height: 20px;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.classify_menu li a:hover,
.classify_menu li.active a {
	background-color: #1e62e9;
	color: #fff;
}

.inside_title {
	border-left: 2px #0279c1 solid;
	padding: 8px 0 8px 15px;
	margin-bottom: 20px;
	position: relative;
}
.inside_title h2 {
	font-size: 18px;
	text-transform: uppercase;
	margin: 0;
}
.inside_title h2:after {
	content: "";
	width: 106px;
	height: 2px;
	background-color: #2a2a2a;
	display: block;
	margin-top: 10px;
}

.wrapper {
	min-height: 70vh;
}
.inside_main {
	padding: 30px 0;
	position: relative;
	overflow: hidden;
	transition: all .5s;
}
.inside_main .container {
	position: relative;
}

.InfoContent {
	line-height: 2.4;
	position: relative;
	overflow: hidden;
}
.InfoContent p {
	margin: 0;
}
.InfoContent img {
	max-width: 100%;
	height: auto !important;
}
.InfoTitle {
	margin-bottom: 15px;
	border-bottom: 1px #dad9d9 solid;
	padding-bottom: 15px;
    text-align: center;
}
.InfoTitle h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.4;
}
.InfoTitle .date {
	font-size: 12px;
	color: #666;
	margin-top: 10px;
}
.info_previous_next_wrap {
	border-top: 1px #dad9d9 solid;
	padding-top: 16px;
	margin-top: 40px;
	font-size: 14px;
	color: #666;
    text-transform: uppercase;
}
.info_previous_next_wrap b {
	font-weight: normal;
}
.info_previous_next_wrap a {
	color: #666;
	text-decoration: none;
}
.info_previous_next_wrap a:hover {
	color: #003fb5;
}
.info_Previous,
.info_Next {
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.inside_banner .PC_img {
		display: none;
	}
	.classify_menu {
		display: flex;
		justify-content: center;
	}
	.classify_menu:before,
	.classify_menu:after {
		display: none;
	}
	.classify_menu li {
		width: 33.33333%;
		max-width: 90px;
	}
	.classify_menu li a {
		font-size: 12px;
		padding-left: 5px;
		padding-right: 5px;
		margin-left: -1px;
	}
	.info_previous_next_wrap {
		font-size: 12px;
		margin-top: 30px;
	}
}
/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
	.inside_banner .PC_img {
		display: block;
	}
	.inside_banner .min_img {
		display: none;
	}
}
@media (min-width: 768px) {
	.inside_banner .min_img {
		display: none;
	}
	.inside_banner_text h2 {
		font-size: 20px;
	}
	.classify_menu {
		margin-left: -2px;
		margin-right: -2px;
	}
	.classify_menu li {
		float: left;
		width: 16.66667%;
		padding: 0 2px;
	}
	.inside_main {
		padding: 50px 0;
	}
	.inside_title {
		border-left-width: 4px;
		padding-left: 25px;
	}
	.inside_title h2:after {
		height: 4px;
	}
}
@media (min-width: 992px) {
	.inside_banner_text {
		padding-bottom: 50px;
	}
	.classify_menu li a {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}
@media (min-width: 1200px) {
	.inside_banner_text h2 {
		font-size: 24px;
		margin-bottom: 15px;
	}
	.inside_banner_text p {
		font-size: 14px;
	}
	.classify_menu li {
		width: 12.5%;
	}
	.classify_menu li a {
		font-size: 16px;
	}
}
@media (min-width: 1440px) {
	.inside_banner_text h2 {
		font-size: 36px;
	}
	.inside_main {
		padding: 70px 0;
	}
	.InfoTitle {
		margin-bottom: 30px;
	}
	.InfoTitle h4 {
		font-size: 24px;
	}
}
@media (min-width: 1600px) {
	.classify_menu li a {
		font-size: 20px;
	}
}

/*关于我们*/
.about_list .column {
	margin-bottom: 30px;
}
.about_title {
	border-left: 3px #1e62e9 solid;
	padding-left: 15px;
	margin-bottom: 20px;
}
.about_title h2 {
	font-size: 20px;
	text-transform: uppercase;
	margin: 0;
}
.about_title h2 i {
	color: #1e62e9;
}
.about_title span {
	display: block;
	font-size: 14px;
	color: #777;
	text-transform: uppercase;
	margin-top: 5px;
}
.about_list .InfoContent {
	color: #666;
}

.culture_img_list {
	margin-left: -5px;
	margin-right: -5px;
	margin-top: 30px;
}
.culture_img_list .column {
	padding: 0 5px;
	margin: 5px 0;
}
.culture_list .inner {
	line-height: 1.71428571;
	margin-bottom: 25px;
}
.culture_list h2 {
	font-size: 18px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.culture_list p {
	margin: 0;
}
.honor_list .column {
	margin-bottom: 40px;
}
.honor_list .img:hover img {
	transform: scale(1.1);
}
.honor_list h2 {
	font-size: 14px;
	margin: 0;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	border-bottom: 1px #8b8b8b solid;
	padding: 15px 0;
}

@media (max-width: 767px) {
	.honor_list {
		margin-left: -5px;
		margin-right: -5px;
	}
	.honor_list .column {
		padding: 0 5px;
		margin-bottom: 20px;
	}
}
@media (min-width: 768px) {
	.about_title h2 {
		font-size: 24px;
	}
}
@media (min-width: 992px) {
	.about_list .img {
		width: 70%;
		margin: 0 auto;
	}
	.culture_list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
}
@media (min-width: 1200px) {
	.about_title {
		border-left-width: 5px;
		margin-top: 20px;
		margin-bottom: 40px;
	}
	.about_title h2 {
		font-size: 30px;
	}
	.about_title span {
		font-size: 16px;
		margin-top: 10px;
	}
	.about_list .img {
		width: 100%;
	}
	.culture_list h2 {
		font-size: 20px;
	}
	.culture_list p {
		font-size: 16px;
	}
	.honor_list h2 {
		font-size: 16px;
		padding: 20px 0;
	}
}
@media (min-width: 1600px) {
	.about_title {
		margin-top: 50px;
	}
}

/*产品中心*/
.pro_main .index_pro {
	margin: 0;
	min-height: 80vh;
}
.pro_main .submenu_title {
	background: #133984;
	padding: 15px;
}
.pro_main .submenu li {
	background-color: #e6e6e6;
}
.pro_main .submenu li a {
	color: #333;
	padding: 11px 15px;
}
.pro_main .submenu li a:before,
.pro_main .submenu li a:after {
	display: none;
}
.pro_main .submenu>li>a:hover,
.pro_main .submenu>li.active>a {
	background-color: #436ab5;
	color: #fff;
}
.pro_main .levelMenu a.active,
.pro_main .levelMenu a:hover {
	/*background-color: #436ab5;*/
	color: #436ab5;
}
.levelMenu {
	display: none;
}
.levelMenu a {
	border-bottom: 1px rgba(0,0,0,.1) solid;
}
.pro_list {
	padding-left: 17px;
}
.pro_list .column {
	margin-bottom: 20px;
}
.pro_list a {
	display: block;
	color: #fff;
	text-align: center;
	border: 1px transparent solid;
	position: relative;
	transition: all .5s;
}
.pro_list a:hover {
	border-color: #133984;
}
.pro_list a h2 {
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	margin: 0;
	background-color: rgba(0,0,0,.5);
	padding: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .5s;
}
.pro_list a:hover h2 {
	background-color: rgba(0,0,0,.24);
}

@media (max-width: 767px) {
	.pro_body .inside_banner_text {
		padding-bottom: 0;
	}
	.pro_main .submenu_main {
		background-color: #e6e6e6;
	}
	.pro_list {
		margin-left: -5px;
		margin-right: -5px;
	}
	.pro_list .column {
		padding: 0 5px;
	}
}
@media (min-width: 768px) {
	.pro_body {
		background-color: #f7f7f7;
	}
	.pro_main {
		padding-top: 0;
		overflow: visible;
	}
	.pro_main .index_pro,
	.pro_main .inner {
		margin-top: -60px;
		background-color: #fff;
		padding: 50px 30px 30px;
	}
	.pro_main .submenu li {
		margin: 20px 0;
	}
	.pro_list {
		padding-left: 30px;
	}
}
@media (min-width: 1200px) {
	.pro_main .index_pro,
	.pro_main .inner {
		margin-top: -100px;
	}
	.pro_main .submenu_title {
		padding: 30px 20px;
	}
	.pro_main .submenu li a {
		padding-left: 20px;
		padding-right: 20px;
	}
	.pro_list a h2 {
		font-size: 16px;
	}
}
@media (min-width: 1600px) {
	.pro_main .submenu_main {
		width: 264px;
		margin-right: 35px;
	}
	.pro_list {
		margin-left: -20px;
		margin-right: -20px;
	}
	.pro_list .column {
		padding: 0 20px;
	}
}

/*技术支持*/
.tech_list a {
	color: #333;
	border-bottom: 1px #ccc dotted;
	padding: 20px 15px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.tech_list a:after {
	content: "";
	width: 14px;
	height: 14px;
	background: url(../images/icon/icon6.png) no-repeat center;
	background-size: contain;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -7px;
}.tech_list a:hover:after {
	background-image: url(../images/icon/icon6_1.png);
}
.tech_list a:hover {
	color: #123884;
	background-color: #eee;
	border-bottom-color: #eee;
}
.tech_list a h2 {
	font-size: 18px;
	margin: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.tech_list a h2:before {
	content: "+";
	font-size: 18px;
	margin-right: 5px;
}
.tech_list a span {
	flex: 0 0 auto;
	font-size: 16px;
	line-height: 1;
	color: #888;
	margin-left: 15px;
	margin-right: 75px;
}
.tech_list a:hover span {
	color: #123884;
}
@media (max-width: 767px) {
	.tech_list a h2,
	.tech_list a h2:before {
		font-size: 14px;
	}
	.tech_list a span {
		font-size: 12px;
		margin-left: 5px;
		margin-right: 20px;
	}
	.tech_list a:after {
		width: 10px;
		height: 10px;
		margin-top: -5px;
	}
}

/*合作伙伴*/
.partner_body {
	background-color: #f7f7f7;
}
.partner_list .column {
	margin-bottom: 30px;
}
.partner_list .img {
	background-color: #fff;
	box-shadow: 0 0 12px rgba(0,0,0,.15);
}
.partner_list .img:hover img {
	transform: scale(1.1);
}

@media (max-width: 767px) {
	.partner_list {
		margin-left: -5px;
		margin-right: -5px;
	}
	.partner_list .column {
		padding: 0 5px;
		margin-bottom: 10px;
	}
}
@media (min-width: 1200px) {
	.partner_list .column {
		width: 20%;
	}
}

/*人才招聘*/
.job_modal .modal-dialog {
	width: 90%;
	height: 74%;
	max-width: 1000px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 20px;
	border-radius: 10px;
	background-color: #fff;
}
.job_modal.modal.fade .modal-dialog {
	-webkit-transform: translate(-50%,-25%);
	transform: translate(-50%,-25%);
}
.job_modal.modal.in .modal-dialog {
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.job_modal .modal-content {
	width: 100%;
	height: 100%;
	background-color: transparent;
	border-radius: 0;
	border: 0;
	box-shadow: none;
	padding-top: 50px;
	padding-bottom: 50px;
}
.job_modal .modal-content h2 {
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-bottom: 1px #ddd solid;
	padding-bottom: 10px;
}
.job_btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}
.job_btn a {
	display: inline-block;
	background-color: #133984;
	color: #fff;
	font-size: 12px;
	line-height: 20px;
	text-transform: uppercase;
	padding: 5px 30px;
	border-radius: 20px;
}
.job_btn a:hover {
	background-color: #2350a9;
}
.job_modal .modal-body {
	padding: 0;
	padding-right: 15px;
	height: 100%;
	overflow-y: auto;
}
.job_modal .modal-body::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}

.job_list_box {
	border: 1px #dadada solid;
	border-width: 0 1px;
}
.job_top {
	background-color: #2350a9;
	color: #fff;
	font-size: 16px;
	overflow: hidden;
	text-transform: uppercase;
}
.job_list_box .span {
	float: left;
	text-align: center;
	padding: 15px 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.job_list_box .span+.span {
	border-left: 1px #dadada solid;
}
.job_list_box .span1 {
	width: 30%;
}
.job_list_box .span2 {
	width: 19%;
}
.job_list_box .span3 {
	width: 16%;
}
.job_list_box .span4 {
	width: 20%;
}
.job_list_box .span5 {
	width: 15%;
}
.job_list .a {
	display: block;
	color: #444;
	border-bottom: 1px #dadada solid;
	overflow: hidden;
	outline: none;
}
.job_list .a:hover {
	background-color: #f0f0f0;
}
.job_list .a .span1,
.job_list .a .span2 {
	text-align: left;
}

@media (max-width: 767px) {
	.job_top {
		font-size: 14px;
	}
	.job_list_box .span {
		width: 20%;
		padding: 10px 5px;
	}
	.job_list .a {
		font-size: 12px;
	}
}
/*竖屏*/
@media (max-width: 767px) and (orientation: portrait) {
	.job_list_box .span {
		width: 33.33333%;
	}
	.job_list_box .span3,
	.job_list_box .span5 {
		display: none;
	}
}
@media (min-width: 768px) {
	.job_modal .modal-content h2 {
		font-size: 24px;
	}
	.job_btn a {
		font-size: 16px;
		padding: 10px 50px;
	}
}
@media (min-width: 1440px) {
	.job_list_box {
		margin: 0 100px;
	}
}

/*联系我们*/
.contact_item_title {
	margin-bottom: 30px;
}
.contact_item_title h2 {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
}
.contact_item {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.contact_item li {
	float: left;
	width: 20%;
	padding: 0 15px;
}
.contact_icon {
	border-radius: 100%;
	max-width: 60px;
	margin: 0 auto 10px;
	position: relative;
}
.contact_icon:before,
.contact_icon:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	-webkit-transition: all .8s;
	transition: all .8s;
}
.contact_icon:before {
	background-color: #797a7c;
}
.contact_icon:after {	
	background-color: #133984;
	opacity: 0;
	transform: scale(.5);
}
.contact_item li:hover .contact_icon:before {
	transform: scale(.5);
	opacity: 0;
}
.contact_item li:hover .contact_icon:after {
	opacity: 1;
	transform: scale(1);
}
.contact_icon img {
	display: block;
	width: 100%;
	/*border-radius: 100%;*/
	position: relative;
	z-index: 1;
}
.contact_text {
	text-align: center;
}
.contact_text h4 {
	font-size: 14px;
	text-transform: uppercase;
	margin: 0 0 5px;
}
.contact_text span {
	display: block;
}
.contact_text a {
	font-size: 12px;
	text-decoration: none;
	color: #333;
	word-break: break-all;
}

.contact_main {
	background-color: #f2f2f2;
	padding: 50px 0;
}
.contact_item1 {
	margin: 0;
}
.contact_item1 .column {
	padding: 0;
}
.contact_wrap {
	width: 100%;
	height: 100%;
	background-color: #133984;
	padding: 30px 15px;
	color: #fff;
}
.contact_wrap h2 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	margin: 0 0 15px;
}
.contact_wrap a {
	color: #fff;
}
.contact_wrap .more {
	text-align: center;
	margin-top: 30px;
}
.contact_wrap .more a {
	display: inline-block;
	border: 2px #fff solid;
	font-weight: bold;
	padding: 10px 30px;
	text-transform: uppercase;
}

.map {
	width: 100%;
	height: 100%;
}
.map #dituContent {
	width: 100%;
	height: 100%;
	border: 1px #ddd solid;
}
.map img {
	display: block;
	width: 100%;
	height: 100%;
}

@media (max-width: 767px) {
	.contact_item li {
		width: 50%;
		margin: 15px 0;
	}
	.map {
		display: none;
	}
	.contact_main {
		padding: 0;
	}
	.contact_wrap .more a {
		border-width: 1px;
		font-weight: normal;
	}
}
@media (min-width: 768px) {
	.contact_item_title {
		margin-bottom: 60px;
	}
	.contact_item1 {
		display: flex;
	}
}
@media (min-width: 992px) {	
	.contact_item_title h2 {
		font-size: 20px;
	}
	.contact_icon {
		max-width: 80px;
	}
	.contact_text h4 {
		font-size: 16px;
	}
	.contact_wrap {
		padding: 60px 30px;
	}
}
@media (min-width: 1200px) {
	.contact_item_title h2 {
		font-size: 24px;
	}
	.contact_icon {
		max-width: 90px;
		margin-bottom: 20px;
	}
	.contact_text h4 {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.contact_text a {
		font-size: 14px;
	}
	.contact_wrap h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.contact_wrap .more {
		margin-top: 50px;
	}
}
@media (min-width: 1440px) {
	.contact_icon {
		max-width: 118px;
	}
}


/*动画*/
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
.fadeIn {
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		-ms-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}
.fadeInDown {
	-webkit-animation: fadeInDown 1s;
	animation: fadeInDown 1s;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		-ms-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}
.fadeInUp {
	-webkit-animation: fadeInUp 1s;
	animation: fadeInUp 1s;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}
.fadeInLeft {
	-webkit-animation: fadeInLeft 1s;
	animation: fadeInLeft 1s;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none
	}
}
.fadeInRight {
	-webkit-animation: fadeInRight 1s;
	animation: fadeInRight 1s;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	50% {
		opacity: 1
	}
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		-ms-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	50% {
		opacity: 1
	}
}
.zoomIn {
    -webkit-animation: zoomIn 1s;
    animation: zoomIn 1s
}