﻿@charset "utf-8";
/* CSS Document */
body {
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow-x: hidden;
}
body.menu-open {
	overflow-y: hidden!important;
}
body, html {
	font-family: Arial, "微软雅黑", Microsoft YaHei;
}
.info video,.info .video-js{
    width: 100%;
    height:550px;
}
dd, dl, dt, ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
input {
	margin: 0;
	outline: none
}
a {
	text-decoration: none;
}
a:link {
	color: inherit;
}/*未访问样式*/
a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
a:hover, a:focus, input:hover, input:focus, button:focus, button:hover {
	outline: none;
}
h1 {
	margin: 0px;
}
i {
	font-weight: normal;
}
hr {
	border: none;
	border-top: 1px solid #f0f0f0;
	margin: 10px 0px;
}
img {
	max-width: 100%;
}
pre {
	display: block;
	border: none;
	background: none;
	padding: 0px;
	white-space: pre-wrap;
	font-family: Arial, "微软雅黑", Microsoft YaHei;
}
.red {
	color: #e60012;
}
::-webkit-scrollbar-track {
background:#CCC;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background:#333;
}
/*滚动条设置*/

/*表格边框样式*/
table, tbody, tr, td {
	border: none;
}
table tr {
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}
table td {
	font-size: 0.85rem;
	line-height: 1.5em;
	padding: 15px;
	border-left: 1px solid #e6e6e6;
	border-top: 1px solid #e6e6e6;
}
table td p {
	margin: 0px;
}
/*boostrap遮罩层导致页面抖动*/
.modal-open {
	overflow: scroll !important;
}
.container {
	width: 96%!important;
	max-width: 1600px;
}
/*图片放大*/
.zoom-img {
	overflow: hidden;
}
.zoom-img img {
	width: 100%;
	transform: scale(1);
	transition: all ease 0.6s;
}
.zoom-img:hover img {
	transform: scale(1.1);
}
/*点状背景*/
.point-bg {
	background-image: url(../images/point.png);
	background-repeat: repeat;
}

@media screen and ( max-width: 1199.8px) {
.container {
	width: 96%!important;
	max-width: 96%!important;
}
}
/*页面haed*/
/*头部*/	
#head {
	display: flex;
	flex-wrap: nowrap;
	height: 90px;
	padding-top: 0;
	padding-bottom: 0;
	background: #000;
	box-shadow: 0 0 4vh rgba(0,0,0,0.1);
}
/*头部标志*/
.navbar-brand {
	height: 100%;
	display: flex;
	align-items: center;
}
.navbar-brand img {
	max-height: 46px;
}
/*头部导航*/
#head .navbar-nav {
	padding-right: 20px;
}
#head .navbar-nav li {
	margin: 0 10px;
}
#head .navbar-nav li a {
	position: relative;
	display: inline-block;
	padding: 0 15px;
	font-size: .875rem;
	line-height: 2em;
	color: #fff;
}
#head .navbar-nav li a:hover {
	opacity: 0.7;
}

@media screen and ( max-width: 1400px) {
#head .navbar-nav li a {
	padding: 0 6px;
}
}

@media screen and ( max-width: 1199.8px) {
.navbar-expand-lg .navbar-collapse {
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}
#head .navbar-nav {
	display: none;
}
}
/*头部菜单按钮*/
.menu-button {
	position: fixed;
	z-index: 1081;
	top: 0;
	right: 0px;
	width: 90px;
	height: 90px;
	border: none;
	background: none;
	padding: 0;
	font-size: 0;
	transition: all 0.3s ease-in-out;
}
.menu-button:hover {
	opacity: 0.7;
}
.menu-button span {
	width: 24px;
	height: 2px;
	border-radius: 6px;
	background-color: #f7f7f7;
	display: block;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.menu-open .menu-button span {
	background-color: #fff;
	opacity: 0.7;
}
.menu-button:hover {
	cursor: pointer;
}
.menu-open .menu-button span:nth-child(2) {
	opacity: 0;
}
.menu-open .menu-button span:nth-child(1) {
	-webkit-transform: translateY(7px) rotate(45deg);
	-ms-transform: translateY(7px) rotate(45deg);
	-o-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
}
.menu-open .menu-button span:nth-child(3) {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	-ms-transform: translateY(-7px) rotate(-45deg);
	-o-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
}
/*语言*/
.language {
	margin-right: 20px;
	font-size: 0.85rem;
	color: #fff;
}
.language svg {
	margin-right: 5px;
	width: 24px;
	height: 24px;
}
.language .dropdown-menu {
	border-radius: 0;
	background: #333;
}
.language .dropdown-menu .dropdown-item {
	font-size: 0.85rem;
	color: #fff;
	border-radius: 0;
}
.language .dropdown-menu .dropdown-item:hover {
	background: #666;
}

@media screen and ( max-width: 992px) {
.language {
	margin-right: 10px;
	font-size: 0.75rem;
}
}

@media screen and ( max-width: 768px) {
.language {
	margin-right: 0px;
}
}
/*搜索*/
#search {
	position: relative;
	width: 42px;
	height: 42px;
	line-height: 42px;
	border-radius: 50%;
	transition: .3s;
}
#search input.search-input {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	display: block;
	width: 42px;
	height: 100%;
	line-height: inherit;
	border: none;
	border-radius: 21px;
	font-size: 14px;
	color: #fff;
	background: #666;
	transition: .3s
}
 #search input.search-input::-webkit-input-placeholder {
 color: #fff;
 font-size: 14px;
}
#search .search-submit, #search .search-button {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	line-height: inherit;
	text-align: center;
	color: #fff;
	background-image: url(../images/search.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	background-color: #333;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	transition: .3s
}
#search .search-button:hover {
	background-color: #1a1a1a
}
#search .search-submit {
	display: none
}
#search.open .search-input {
	width: 200px;
	padding: 0 50px 0 21px;
}
#search.open .search-button {
	display: none
}
#search.open .search-submit {
	display: block;
	background-color: #1a1a1a
}

@media ( min-width:1200px) {
.menu-button {
	display: none;
}
}

@media screen and ( max-width: 1199.8px) {
#search {
	margin-right: 60px;
}
}

@media screen and ( max-width: 992px) {
#head {
	height: 70px;
}
.navbar-brand img {
	max-height: 32px;
}
.menu-button {
	align-self: flex-end;
	width: 70px;
	height: 70px;
}
#search {
	width: 36px;
	height: 36px;
	line-height: 36px;
	margin-right: 40px;
}
#search input.search-input {
	width: 36px;
}
}

@media screen and ( max-width: 768px) {
#head {
	height: 56px;
}
.navbar-brand img {
	max-height: 28px;
}
.menu-button {
	width: 56px;
	height: 56px;
}
#search {
	width: 32px;
	height: 32px;
	line-height: 32px;
}
#search input.search-input {
	width: 32px;
}
}
/*菜单*/
#menu {
	position: fixed;
	z-index: 1080;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	background: #000;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
.menu-open #menu {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.35s linear;
	-moz-transition: all 0.35s linear;
	-ms-transition: all 0.35s linear;
	-o-transition: all 0.35s linear;
	transition: all 0.35s linear;
}
.menu-navbar-brand {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	padding: 0 16px;
	height: 90px;
	display: flex;
	align-items: center;
}
.menu-navbar-brand img {
	height: 46px;
}
.menu-nav {
	counter-reset: compteListe;
	padding-left: 3rem;
}
.menu-nav li {
	-webkit-transform: translateY(6vh);
	-moz-transform: translateY(6vh);
	-ms-transform: translateY(6vh);
	transform: translateY(6vh);
	opacity: 0;
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	transition: all .6s;
}
.menu-open #menu .menu-nav li {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
.menu-nav>li>a {
	position: relative;
	font-size: 2rem;
	line-height: 2em;
	color: #fff;
	transition: all .4s
}
.menu-nav>li>a:hover, .menu-nav>li.on>a {
	color: #0174c1;
	text-decoration: underline;
}
.menu-nav>li>a::before {
	counter-increment: compteListe 1;
	content: "0" counter(compteListe);
	position: absolute;
	z-index: 1;
	bottom: 2px;
	left: -2rem;
	font-size: 1rem;
	line-height: 1em;
	font-weight: bold;
	color: inherit;
}
#menu .menu-contact {
	display: flex;
	align-items: flex-end;
	font-size: 0.85rem;
	line-height: 1.25em;
	color: #ccc;
}
#menu .menu-contact div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-left: 6%;
	border-left: 1px solid #ebebeb;
	font-size: 0.85rem;
	line-height: 1.5em;
	color: #ccc;
}
#menu .menu-contact h3 {
	width: 100%;
	margin-bottom: 2rem;
}
#menu .menu-contact div p {
	width: 48%;
}
#menu .menu-contact div p, #menu .menu-contact div h3 {
	-webkit-transform: translateY(6vh);
	-moz-transform: translateY(6vh);
	-ms-transform: translateY(6vh);
	transform: translateY(6vh);
	opacity: 0;
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	transition: all .6s
}
.menu-open #menu .menu-contact div p, .menu-open #menu .menu-contact div h3 {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
#menu .menu-contact a {
	color: #ccc;
}
#menu .menu-contact a:hover {
	color: #0174c1;
}
p.icon {
	position: relative;
	padding-left: 30px;
}
p.icon:before {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	font-size: 1.25rem;
	width: 20px;
	height: 20px;
	line-height: 1em;
	text-align: center;
	color: #999;
}

@media ( min-width: 1200px) {
#menu {
	display: none;
}
}

@media screen and ( max-width: 1199.8px) {
.menu-nav>li>a {
	font-size: 1.5rem;
	line-height: 2em;
}
}

@media screen and ( max-width: 992px) {
#menu {
	display: block;
	align-items: flex-start;
	padding-top: 90px;
	overflow-y: auto;
}
.menu-navbar-brand {
	height: 70px;
}
.menu-navbar-brand img {
	height: 32px;
}
#menu .menu-contact div {
	padding-left: 0;
	padding-top: 6vh;
	padding-bottom: 4vh;
	margin-top: 6vh;
	border-top: 1px solid rgba(255,255,255,0.2);
	border-left: none;
	font-size: 0.85rem;
}
#menu .menu-contact div h3 {
	font-size: 1.5rem;
}
}

@media screen and (max-width:991.8px) {
.menu-nav>li>a {
	font-size: 1.25rem;
}
#menu .menu-contact div h3 {
	font-size: 1.25rem;
}
#menu .menu-contact div p {
	width: 100%;
	font-size: 0.85rem;
}
}
/*首页通用*/
.section {
	background-position: center;
	background-size: cover;
}
#index-menu {
	position: fixed;
	left: 0;
	top: 40%;
	z-index: 2;
	padding: 10px 0px;
	background: #0174c1;
}
#index-menu a {
	display: block;
	width: 100%;
	padding: 0 25px;
	font-size: 0.85rem;
	line-height: 2.5em;
	color: #fff;
}
#index-menu .active a {
	background: rgba(255,255,255,0.3)
}

@media screen and (max-width:991.8px) {
#index-menu {
	display: none;
}
}
/*首页板块*/
.index-box {
	display: flex;
	flex-wrap: wrap;
}
.index-box2 {
	display: flex;
	flex-wrap: wrap;
}
.index-box>div {
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 700px;
}
.index-box>div>a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}
.index-text {
	position: absolute;
	z-index: 3;
	color: #333;
}
.index-box.tb .index-text {
	top: 0;
	bottom: auto;
	left: 10%;
	width: 80%;
	margin: 60px auto 0;
	text-align: center;
}
.index-box.lr .index-text {
	top: 0;
	bottom: 0;
	left: 15%;
	right: 55%;
	display: flex;
	align-items: center;
	text-align: left;
}
.index-box.rl .index-text {
	top: 0;
	bottom: 0;
	left: 55%;
	right: 15%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
}
.theme-dark .index-text {
	color: #fff;
}
.index-box .en-name {
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: rgba(0,0,0,0.15);
}
.index-box h2, .index-box h3 {
	margin: 0 0 20px;
	font-size: 2.25rem;
	line-height: 1.25em;
	color: inherit;
}
.index-box p {
	font-size: 1.5rem;
	line-height: 1.5em;
	color: inherit;
}
a.index-box-more {
	position: relative;
	z-index: 5;
	display: inline-block;
	font-size: 0.85rem;
	padding: 0 2.5rem;
	line-height: 2.25em;
	color: #333;
	border: 1px solid #333;
	transition: all .4s;
}
a.index-box-more:hover {
	color: #fff;
	background: #0174c1;
	border: 1px solid #0174c1;
}
.index-text ul {
	display: flex;
	flex-wrap: wrap;
	max-width: 600px;
	margin: auto;
}
.index-text ul li {
	width: 50%;
	text-align: left;
}
.index-box.thead-dark h2, .index-box.thead-dark h3, .index-box.thead-dark p {
	color: #fff;
	text-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.index-box.thead-dark a.index-box-more {
	color: #fff;
	border: 1px solid #fff;
}
.index-box.thead-dark a:hover {
	color: #2997ff;
}
.index-box .index-img {
	position: absolute;
	z-index: 2;
	display: flex;
}
.index-box.tb .index-img {
	top: 45%;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: flex-end;
	justify-content: center;
}
.index-box.lr .index-img {
	top: 10%;
	bottom: 0;
	left: 50%;
	right: 0;
	align-items: center;
	justify-content: flex-start;
}
.index-box.rl .index-img {
	top: 10%;
	bottom: 0;
	left: 0%;
	right: 50%;
	align-items: center;
	justify-content: flex-end;
}
.index-box .index-img img {
	width: 80%;
	height: auto;
	max-width: 650px;
	max-height: 530px;
}
.index-bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}
.index-box>.index-box-2 {
	padding: 5%;
	height: 400px;
	color: #fff;
}
.index-box>.index-box-2 .index-text {
	vertical-align: bottom;
}
.index-box>.index-box-2 h3 {
	font-size: 2rem;
	color: #fff;
	text-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.index-box>.index-box-2 p {
	margin: 0px;
	font-size: 1rem;
	color: #fff;
	text-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.index-box>.index-box-3 {
	padding: 5%;
	height: 400px;
	color: #fff;
}

@media screen and (min-width:768px) {
.index-box>.index-box-2 {
	width: 50%;
}
}

@media screen and (max-width:991.8px) {
.index-box>div {
	height: 560px;
}
.index-box .en-name {
	font-size: 1rem;
}
.index-box h2, .index-box h3 {
	font-size: 1.5rem;
}
.index-box p {
	font-size: 0.85rem;
}
.index-text, .index-box.tb .index-text, .index-box.lr .index-text, .index-box.rl .index-text {
	position: absolute;
	z-index: 3;
	color: #333;
	top: 0;
	bottom: auto;
	left: 10%;
	width: 80%;
	margin: 60px auto 0;
	text-align: center;
	display: block;
	align-items: stretch;
	justify-content: center;
}
.index-box .index-box-2 .index-text {
	top: auto;
	left: 5%;
	justify-content: flex-start;
	text-align: left;
}
.index-box .index-img, .index-box.tb .index-img, .index-box.lr .index-img, .index-box.rl .index-img {
	position: absolute;
	z-index: 2;
	top: auto;
	bottom: 0;
	left: 10%;
	right: 10%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
}

@media screen and (max-width:767.8px) {
.index-box>.index-box-2 {
	width: 100%;
	height: 300px;
}
.index-box>div {
	height: 490px;
}
}
.index-product-box {
	height: 650px;
}
.index-product {
	position: relative;
	z-index: 4;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
}
.index-product>div {
	width: 28%;
}
.index-product>div:nth-of-type(2) {
	width: 35%;
}
.index-product ul {
	display: flex;
	flex-wrap: wrap;
}
.index-product ul li {
	width: 32%;
}

@media screen and (max-width:991.8px) {
.index-product-box {
	height: auto;
}
.index-product>div, .index-product>div:nth-of-type(2) {
	width: 100%;
	text-align: center;
}
.index-product>div img {
	margin-top: 50px;
	max-width: 300px;
}
.index-product ul, .index-product ol {
	display: none;
}
}
/*首页新闻*/
.news-slogan {
	font-size: 2rem;
	margin-bottom: 4vh;
}
#news {
	width: 80%;
	max-width: 1200px;
	padding: 0 40px;
	margin: auto;
}
#news span {
	display: inline-block;
	font-size: 1rem;
	color: #666;
	margin-bottom: 10px;
}
#news a {
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
#news a.index-n-title {
	margin-bottom: 10px;
	font-size: 1.25rem;
	color: #333;
}
#news .item:hover a.index-n-title {
	color: #0174c1;
}
#news hr {
	border-top: 2px solid #333;
	margin-top: 30px;
	margin-bottom: 20px;
	transition: all .4s;
}
#news .item:hover hr {
	border-top: 2px solid #0174c1;
}
#news pre {
	font-size: 0.85rem;
	line-height: 1.5em;
	max-height: 2.55rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #666;
}
#news .owl-nav {
	margin-top: 0px;
}
#news .owl-nav [class*="owl-"] {
	position: absolute;
	z-index: 1;
	top: 50%;
	margin: 0px;
	margin-top: -24px;
	display: inline-block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	color: #333;
	border-radius: 50%;
	background: #f2f2f2;
	text-align: center;
	transition: all .4s;
}
#news .owl-nav [class*="owl-"].owl-prev {
	left: -38px;
}
#news .owl-nav [class*="owl-"].owl-next {
	right: -38px;
}
#news .owl-nav [class*="owl-"]:hover {
	color: #fff;
	background: #0174c1;
}
#news .owl-nav [class*="owl-"] i {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 18px;
	line-height: inherit;
	color: inherit;
}

@media screen and (max-width:991.8px) {
.news-slogan {
	font-size: 1.5rem;
}
#news {
	margin-top: 15px;
}
#news .owl-nav {
	margin-top: 15px;
}
#news .owl-nav [class*="owl-"] {
	position: static;
	z-index: 1;
	top: auto;
	margin: 0px 6px;
	margin-top: auto;
}
#news .owl-nav [class*="owl-"].owl-prev {
	left: auto;
}
#news .owl-nav [class*="owl-"].owl-next {
	right: auto;
}
}
/*页脚*/
#foot {
	position: relative;
	background: #999;
	border-top: 1px solid #ebebeb;
	width: 100%;
	padding: 50px 0 0;
	font-size: 0.85rem;
	line-height: 1.75rem;
	color: #fff;
}
#foot .container {
	width: 96%!important;
	max-width: 1600px;
}
#foot ol {
	padding: 0px;
	margin-bottom: 10px;
}
#foot ol a {
	display: block;
	font-size: 1rem;
	line-height: 1.75rem;
	color: #fff;
}
#foot li a {
	color: #fff;
}
#foot li a:hover {
	opacity: 0.7;
}
#foot .foot-contact img {
	margin-bottom: 10px;
}
#foot p {
	margin: 0;
}
.foot-copyright {
	margin-top: 50px;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 15px 0;
	width: 100%;
	font-size: 0.85rem;
	line-height: 1.75rem;
	color: #fff;
	overflow: hidden;
}
.foot-copyright p, .foot-copyright span, .foot-copyright a {
	float: left;
	display: inline-block;
	margin: 0px;
	font-size: 13px;
	line-height: 20px;
	color: #fff;
	transition: all ease .4s;
}
.foot-copyright a {
	margin: 0px 4px;
}
.foot-copyright a:hover {
	color: #e60012;
}

@media (min-width:992px) {
#foot ol a:hover {
	cursor: default;
}
}

@media screen and (max-width:991.8px) {
#foot {
	padding: 0 15px;
	padding-top: 4vh;
}
#foot ul {
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
#foot ol {
	margin: 5px 0;
}
.foot-contact {
	margin-top: 4vh;
}
.foot-copyright {
	margin-top: 4vh;
}
}
/*============ 首页end ============*/

/*内页公共*/
/*内页banner*/
.inside-banner-box {
	position: relative;
	overflow: hidden;
}
.inside-banner {
	display: flex;
	z-index: -2;
	left: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 450px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

@media screen and (max-width:991.8px) {
.inside-banner {
	height: 0;
	padding-bottom: 45%;
}
}

@media screen and (max-width:767.8px) {
.inside-banner {
	height: 0;
	padding-bottom: 55%;
}
}
/*面包屑*/
.breadcrumb-box {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.breadcrumb {
	margin: 0px auto;
	border: nonr;
	border-radius: 0;
	width: 100%;
	text-align: right;
	padding: 0 60px;
	font-size: 12px;
	color: #fff;
	line-height: 40px;
	background: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,.3));
	background: -o-linear-gradient(right, rgba(0,0,0,0), rgba(0,0,0,.3));
	background: -moz-linear-gradient(right, rgba(0,0,0,0), rgba(0,0,0,.3));
	background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.3));
}
.breadcrumb a {
	display: inline-block;
	font-size: 0.85rem;
	line-height: 1em;
	color: #fff;
	transition: all .4s;
}
.breadcrumb a:hover {
	color: #e60012;
}
.breadcrumb span {
	display: inline-block;
	margin: 0 5px;
	color: #fff;
}
/*盒子*/

.padding-box {
	padding-top: 9vh;
	padding-bottom: 9vh;
}
.padding-top {
	padding-top: 9vh;
}
.padding-bottom {
	padding-bottom: 9vh;
}
.main {
	position: relative;
	z-index: 2;
	background: #fff;
}
.gray-box {
	background: #f7f7f7;
}
.clear-box:after {
	content: "";
	display: block;
	width: 100%;
	height: 0;
}

@media screen and (max-width:991.8px) {
.padding-box {
	padding-top: 6vh;
	padding-bottom: 6vh;
}
.padding-top {
	padding-top: 6vh;
}
.padding-bottom {
	padding-bottom: 6vh;
}
}

@media screen and (max-width:767.8px) {
.padding-box {
	padding-top: 5vh;
	padding-bottom: 5vh;
}
.padding-top {
	padding-top: 5vh;
}
.padding-bottom {
	padding-bottom: 5vh;
}
}
/*信息盒子*/
.info {
	font-size: 1rem;
	color: #333;
	line-height: 1.75em;
}
.info p {
	margin: 0 0 15px;
}
.inside-box {
	width: 96%;
	max-width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	margin: auto;
}

@media screen and (max-width:1199.8px) {
.info {
	font-size: 0.85rem;
}
.info p {
	margin: 0 0 10px;
}
}
/*横线*/
.line {
	display: inline-block;
	width: 36px;
	height: 2px;
	background: #e60012;
}
.line-bicolor {
	background-image: repeating-linear-gradient(90deg, #e60012 0%, #e60012 50%, #262626 50%, #262626 100%);
}

@media screen and (max-width:1199.8px) {
.line {
	width: 40px;
	height: 2px;
}
}
/*内页翻页*/
.page-box {
	padding-top: 30px;
}
.page {
	font-size: 0rem;
	color: #666;
}
.page span {
	display: inline-block;
	padding: 0 14px;
	margin: 0 4px;
	background: #f7f7f7;
}
.page span strong {
	font-size: 1rem;
	color: #333;
}
.page a {
	display: inline-block;
	padding: 0 18px;
	color: #666;
	background: #f7f7f7;
	transition: all .4s;
}
.page a:first-child {
	border-radius: 4px 0 0 4px;
}
.page a:last-child {
	border-radius: 4px 0 0 4px;
}
.page input {
	display: inline-block;
	width: 4rem;
	padding: 0px 10px;
	margin-left: 15px;
	color: #666;
	border-radius: 4px 0 0 4px;
	border: none;
	box-shadow: 0 0 1px #999 inset;
	overflow: hidden;
	transition: all .4s;
}
.page button {
	padding: 0 18px;
	margin: 0px;
	border: none;
	border-radius: 0 4px 4px 0;
	color: #666;
	background: #f7f7f7;
	cursor: pointer;
	transition: all .4s;
}
.page a:hover, .page button:hover {
	color: #333;
	background: #ccc;
}
.page a, .page button, .page input, .page span {
	font-size: 0.85rem;
	line-height: 3em;
}

@media screen and (max-width:991.8px) {
.page a, .page button, .page input, .page span {
	font-size: 0.75rem;
	line-height: 2.6em;
}
.page input {
	margin-left: 8px;
}
.page a, .page button {
	padding: 0 10px;
}
}
/*子导航*/
.sub-title h3 {
	font-size: 1.5rem;
	line-height: 2em;
	margin: 0px;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
#subnav {
	position: relative;
	z-index: 10;
	margin: 0;
	font-size: 0.85rem;
}
#subnav .subnav-button {
	display: block;
	width: 100%;
	padding: 0 15px;
	font-size: 0.85rem;
	font-weight: bold;
	line-height: 3.2em;
	color: #fff;
	background: #0174c1;
	transition: all .4s;
}
#subnav .subnav-button.collapsed {
	color: #666;
	background: #fff;
}
#subnav #subnav-nav {
	width: 100%;
	font-size: 0px;
	transition: all .4s;
}

@media (min-width:992px) {
#subnav .subnav-button {
	display: none;
}
#subnav-nav {
	text-align: center;
	margin-top: -4rem;
}
#subnav #subnav-nav li {
	display: inline-block;
}
#subnav #subnav-nav li a {
	display: block;
	padding: 0 3rem;
	font-size: 1rem;
	line-height: 4rem;
	color: #333;
	background: #fff;
	border-bottom: 2px solid #ebebeb;
}
#subnav #subnav-nav li.on a {
	color: #0174c1;
	border-bottom: 2px solid #0174c1;
}
}

@media screen and (max-width:991.8px) {
#subnav {
	border-bottom: 1px solid #ebebeb;
}
#subnav .container {
	width: 100%!important;
	max-width: 100%!important;
	padding: 0;
}
#subnav #subnav-nav {
	position: absolute;
	z-index: 3;
	top: 100%;
	padding: 5px 0px;
	box-shadow: 0 0 20px rgba(0,0,0,.1);
	background: #fff;
}
#subnav #subnav-nav li a {
	display: block;
	padding: 0 15px;
	font-size: 0.85rem;
	line-height: 2.5rem;
	color: #333;
	border-bottom: 1px solid #ebebeb;
}
#subnav #subnav-nav li.on a {
	color: #0174c1;
	background: #f7f7f7;
}
}
/*内页公共*/
.inside-title {
	width: 100%;
	margin-bottom: 3vh;
}
.inside-title span {
	display: inline-block;
	font-size: 2rem;
	margin-bottom: 0.25em;
}
.inside-title p {
	font-size: 1.5rem;
}

@media screen and (max-width:991.8px) {
.inside-title span {
	font-size: 1.5rem;
	margin-bottom: 0.25em;
}
.inside-title p {
	font-size: 1.25rem;
}
}
/*关于*/
.about {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.about-info {
	width: 45%;
}
.about-img {
	width: 45%;
}
.about-img ul {
	margin-top: 30px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	color: #0174c1;
}
.about-img ul li span {
	font-size: 0.85rem;
}
.about-img ul li p {
	margin: 10px 0;
	font-size: 3rem;
	font-weight: bold;
}
.about-img ul li small {
	font-size: 0.85rem;
	font-weight: bold;
}

@media screen and (max-width:1199.8px) {
.about-img ul li p {
	font-size: 2.5rem;
}
}

@media screen and (max-width:991.8px) {
.about-info {
	order: 1;
	width: 100%;
}
.about-img {
	order: 0;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
.about-img ul li {
	text-align: left;
}
.about-img ul li p {
	font-size: 2rem;
}
}
/*演说*/
.speech {
	max-width: 1000px;
}
.speech .text-right {
	padding-right: 3em;
}
/**/
.culture-title {
	font-size: 1.25rem;
	margin: 2.5em auto 2em;
	font-weight: bold;
}

@media screen and (max-width:991.8px) {
.culture-title {
	font-size: 1rem;
	margin: 2em auto 1.5em;
}
}
.culture-c {
	display: flex;
	justify-content: space-between;
}
.culture-c li {
	width: 23%;
	font-size: 1rem;
	line-height: 1.75em;
}
.culture-c li img {
	margin-bottom: 20px;
	;
}

@media screen and (max-width:767.8px) {
.culture-c {
	flex-wrap: wrap;
}
.culture-c li {
	width: 45%;
	margin-bottom: 15px;
	font-size: 0.85rem;
	line-height: 1.75em;
}
}
.culture-co {
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}
.culture-co li {
	width: 28%;
	margin: 0 3%;
	padding: 10px 2%;
	border-radius: 6px;
	background: #b0e6ff;
	text-align: left;
}
.culture-co li img {
	float: left;
	margin-top: -25px;
	margin-right: 15px;
}
.culture-co li p {
	margin: 0px;
}

@media screen and (max-width:767.8px) {
.culture-co {
	flex-wrap: wrap;
}
.culture-co li {
	width: 100%;
	margin: 0 0% 25px;
	padding: 10px 2%;
	border-radius: 6px;
	background: #b0e6ff;
	text-align: left;
}
}
.culture-vi {
	overflow: hidden;
}
.culture-vi-img {
	width: 100%;
	height: 180px;
	background-position: center;
	background-size: cover;
	margin: 20px 0;
}

@media screen and (max-width:767.8px) {
.culture-vi-img {
	height: 120px;
}
}
.culture-id {
	text-align: justify;
}
.culture-id li {
	position: relative;
	display: inline-block;
	width: 20%;
	margin: 0 2% 2%;
	text-align: center;
	vertical-align: top;
}
.culture-id li>div {
	position: absolute;
	z-index: 1;
	top: 25%;
	bottom: 15%;
	left: 15px;
	right: 15px;
}
.culture-id li:before {
	content: "";
	display: block;
	width: 100%;
	height: 0%;
	padding-bottom: 100%;
	border-radius: 50%;
	border: 2px solid #0e6eb4;
	background-color: #fff;
	transition: all .4s;
}
.culture-id p {
	width: 100%;
	font-size: 1.25rem;
}

@media screen and (max-width:767.8px) {
.culture-id li {
	position: relative;
	display: inline-block;
	width: 45%;
	height: 0%;
	margin: 2%;
}
.culture-id p {
	font-size: 1rem;
}
}
.culture-c2 {
	display: flex;
}

@media screen and (max-width:767.8px) {
.culture-c2 {
	display: flex;
	flex-wrap: wrap;
}
.culture-c2 li {
	width: 100%;
}
}
/*公司地图*/
.network-box {
	background: url(../images/img-networkBg.jpg) center bottom no-repeat;
	background-size: 100% auto;
}
.network {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.network>ul {
	width: 22%;
}
.network>ul.network2 {
	display: none;
}
.network>ul li {
	padding: 45px 0;
	border-bottom: 1px solid #ebebeb;
	display: flex;
	align-items: flex-end;
}
.network>ul span {
	display: block;
	padding-right: 15px;
	font-size: 3rem;
	line-height: 3rem;
	vertical-align: bottom;
}
.network>ul p {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.5em;
}
.network>div {
	width: 50%;
	text-align: center;
}

@media screen and (max-width:1199.8px) {
.network>ul {
	width: 48%;
	order: 1;
}
.network>ul li {
	padding: 35px 0;
}
.network>div {
	width: 100%;
	text-align: center;
}
}

@media screen and (max-width:991.8px) {
.network>ul li {
	padding: 25px 0;
}
}

@media screen and (max-width:767.8px) {
.network>ul {
	display: none
}
.network>ul.network2 {
	display: block;
	width: 100%;
}
}
/*发展历程*/
.culture-box {
	background: url(../images/img-courseBg.jpg) center no-repeat;
	background-attachment: fixed;
}
.culture {
	max-width: 1000px;
	position: relative;
	z-index: 2;
	margin: 6vh auto 0;
}
.culture li {
	position: relative;
	z-index: 2;
	color: #333;
}
.culture li:first-child {
	color: #0174c1;
}
.culture big {
	display: inline-block;
	font-size: 3rem;
	line-height: 0.85em;
	font-weight: bold;
	margin-bottom: 0.45em;
}
.culture small {
	font-size: 1.25rem;
	font-weight: bold;
}

@media (min-width:767.8px) {
.culture:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: #ccc;
}
.culture li {
	display: flex;
}
.culture li:nth-of-type(Odd) {
	justify-content: flex-end;
}
.culture li:nth-of-type(even) {
	justify-content: flex-start;
	text-align: right;
}
.culture li:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 50%;
	margin-left: -12px;
	width: 23px;
	height: 23px;
	border: 2px solid #ccc;
	border-radius: 50%;
	background-color: #fff;
}
.culture li:first-child:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 9px;
	left: 50%;
	margin-left: -3px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #0174c1;
}
.culture li>div {
	width: 45%;
}
}

@media screen and (max-width:991.8px) {
.culture big {
	font-size: 2rem;
}
.culture small {
	font-size: 1rem;
}
}

@media screen and (max-width:767.8px) {
.culture:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 10px;
	width: 1px;
	height: 100%;
	background-color: #ccc;
}
.culture li:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0%;
	width: 21px;
	height: 21px;
	border: 2px solid #ccc;
	border-radius: 50%;
	background-color: #fff;
}
.culture li:first-child:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 8px;
	left: 8px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #0174c1;
}
.culture li>div {
	padding-left: 35px;
	margin-top: 4vh;
}
.culture big {
	font-size: 1.75rem;
}
.culture small {
	font-size: 0.85rem;
}
}
/*荣誉*/
.honor {
	display: flex;
	flex-wrap: wrap;
	margin-top: 4vh;
}
.honor li {
	width: 33.33%;
	padding: 1%;
	display: flex;
	align-items: flex-end;
}

@media screen and (max-width:767.8px) {
.honor li {
	width: 50%;
}
}
/*图片*/
.picture-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 4vh;
}
.picture-list li {
	width: 33.33%;
	padding: 1%;
}
.picture-list li a {
	display: block;
	padding: 7px;
	background: #fff;
	overflow: hidden;
	transition: all .4s;
}
.picture-list li a:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.picture-list li a>div {
	overflow: hidden;
}

@media screen and (max-width:767.8px) {
.picture-list li {
	width: 50%;
}
}
/*优势*/
.av-slogan {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 200px;
	padding: 0 15%;
	margin: 5vh 0;
	font-size: 1.75rem;
	line-height: 1.5em;
	text-align: center;
	color: #fff;
	background: url(../images/img-chainBg.jpg) center no-repeat;
	background-size: cover;
}
.av-slogan2 {
	width: 80%;
	margin: 5vh auto;
	text-align: center;
}

@media screen and (max-width:767.8px) {
.av-slogan {
	height: 160px;
	font-size: 1.25rem;
}
.av-slogan2 {
	width: 100%;
	text-align: left;
}
}
#av-eq {
	position: relative;
	width: 100%;
}
#av-eq .owl-stage {
	display: flex;
}
#av-eq .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
#av-eq img {
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 400px;
	max-height: 400px;
}
#av-eq p {
	margin: 10px 0;
	text-align: center;
}
#av-eq .owl-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 3vh;
}
#av-eq .owl-dots .owl-dot {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 110px;
	margin: 10px;
	border: 1px solid #fff;
}
#av-eq .owl-dots .owl-dot img {
	width: auto;
	height: auto;
	max-width: 90%;
	max-height: 90%;
}
#av-eq .owl-dots .owl-dot.active {
	border: 1px solid #0174c1;
}

@media screen and (max-width:991.8px) {
#av-eq .owl-dots .owl-dot {
	width: 90px;
	height: 90px;
	margin: 5px;
}
}

@media screen and (max-width:767.8px) {
#av-eq img {
	max-width: 280px;
	max-height: 280px;
}
#av-eq .owl-dots .owl-dot {
	width: 60px;
	height: 60px;
}
}
.av-table {
	overflow: auto;
	padding-bottom: 10px;
}
.av-table table {
	width: 100%;
	min-width: 600px;
}
.av-table table tr:first-child {
	background: #f2f2f2;
}
/*八大优势*/
.av-eight {
	display: flex;
	flex-wrap: wrap;
}
.av-eight li {
	width: 25%;
	padding: 3%;
	border: 2px solid #fff;
	transition: all .4s;
}
.av-eight li:hover {
	border: 2px solid #0174c1;
}
.av-eight .av-e-img {
	display: inline-block;
	width: 52px;
	height: 52px;
	margin-bottom: 10px;
	background-position: center left;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
.av-eight .av-e-img img {
	position: relative;
	z-index: 1;
	left: -52px;
	max-width: 100%;
	max-height: 100%;
	-webkit-filter: drop-shadow(52px 0 0 #333);
	filter: drop-shadow(52px 0 0 #333);
}
.av-eight li:hover .av-e-img img {
	-webkit-filter: drop-shadow(52px 0 0 #0174c1);
	filter: drop-shadow(52px 0 0 #0174c1);
}
.av-eight .av-e-title {
	font-size: 1.25rem;
	line-height: 1em;
	margin: 0px!important;
	color: #333;
}
.av-eight small {
	display: inline-block;
	margin-bottom: 10px;
	color: #999;
	text-transform: Capitalize;
}
.av-eight li:hover small, .av-eight li:hover .av-e-title {
	color: #0174c1;
}
/*资格认证*/
.honor2 li {
	padding: 4vh 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.honor2 li .honor2-img {
	width: 55%;
}
.honor2 li .honor2-info {
	width: 45%;
	display: flex;
	align-items: flex-end;
	padding: 0 5% 20px 5%;
}
.honor2 li .honor2-info img {
	max-width: 20%;
	margin-bottom: 15px;
}
.honor2 li .honor2-info p {
	margin-bottom: 0px;
}

@media screen and (max-width:767.8px) {
.honor2 li {
	border-bottom: 1px solid #ebebeb;
}
.honor2 li .honor2-img {
	width: 100%;
}
.honor2 li .honor2-info {
	width: 100%;
	display: flex;
	align-items: flex-end;
	padding: 10px 20px 0;
}
.honor2 li .honor2-info img {
	max-width: 50px;
}
}
/*专利*/
.honor3 {
	display: flex;
	flex-wrap: wrap;
	margin-top: 4vh;
}
.honor3 li {
	width: 25%;
	padding: 1%;
	display: flex;
	align-items: flex-end;
}

@media screen and (max-width:991.8px) {
.honor li {
	width: 33.33%;
}
}

@media screen and (max-width:767.8px) {
.honor li {
	width: 50%;
}
}
/*全产业链*/
.chain-title {
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
}
.chain {
	width: 80%;
	margin: auto;
}
.chain li {
	margin: 4vh 0;
	position: relative;
	font-size: 0.85rem;
}
.chain li:after {
	content: "";
	display: block;
	clear: both;
}
.ch-title {
	font-size: 1rem;
	font-weight: bold;
}
.chain li .chain-info {
	position: absolute;
	left: 0;
	top: 20%;
	z-index: 2;
	width: 65%;
	padding: 20px;
	margin-right: -5%;
	background: #fff;
	border-radius: 0 6px 6px 0px;
}
.chain li .chain-img {
	width: 520px;
	max-width: 50%;
	float: right;
	margin-left: -5%;
	text-align: right;
}
.chain2 {
	display: flex;
	flex-wrap: wrap;
	margin-top: 4vh;
	justify-content: space-between;
}
.chain2 li {
	width: 45%;
	padding: 25px;
	font-size: 0.85rem;
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

@media screen and (max-width:767.8px) {
.chain {
	width: 100%;
	margin: auto;
}
.chain li {
	display: flex;
	flex-wrap: wrap;
}
.chain li .chain-info {
	order: 1;
	position: static;
	left: auto;
	top: auto;
	z-index: 2;
	width: 100%;
	padding: 20px;
	margin-right: auto;
	background: #fff;
	border-radius: 0 6px 6px 0px;
}
.chain li .chain-img {
	width: 100%;
	max-width: 100%;
	float: none;
	margin-left: auto;
}
.chain li .chain-img img {
	width: 100%;
}
.chain2 li {
	width: 100%;
	margin: 2vh 0;
}
}
.chain3 li {
	display: flex;
	flex-wrap: wrap;
	background: #f7f7f7;
	padding: 4%;
	margin: 4% 0;
	font-size: 0.85rem;
}
.chain3 li .chain3-info {
	width: 60%;
	padding-right: 5%;
}
.chain3 li .chain3-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40%;
}

@media screen and (max-width:767.8px) {
.chain3 li {
	padding: 6%;
}
.chain3 li .chain3-info {
	order: 1;
	width: 100%;
	padding-right: 0%;
}
.chain3 li .chain3-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	margin: auto;
	margin: 20px 0;
}
}
/*产品*/
.p-list {
	padding: 25px;
	margin-bottom: 30px;
}
.p-list a .p-list-img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 1px solid #ebebeb;
	overflow: hidden;
	transition: all .4s;
}
.p-list a:hover .p-list-img {
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
.p-list a .p-list-img img {
	max-width: 80%;
}
.p-list a .p-list-name {
	position: relative;
	display: inline-block;
	z-index: 2;
	padding: 0 25px;
	max-width: 100%;
	min-width: 60%;
	font-size: 0.85rem;
	line-height: 3.6em;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.p-list a:hover .p-list-name {
	color: #0174c1;
}

@media (min-width:992px) {
.p-list a .p-list-img:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #0174c1;
	opacity: 0;
	transition: all .4s;
}
.p-list a:hover .p-list-img:before {
	content: "";
	opacity: 0.6;
}
.p-list a .p-list-img:after {
	content: "查看更多";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: inline-block;
	padding: 0 2rem;
	line-height: 2em;
	border: 1px solid #fff;
	border-radius: 1em;
	color: #fff;
	opacity: 0;
	transform: translate(-50%, -30%);
	transition: all .4s;
}
.p-list a:hover .p-list-img:after {
	content: "查看更多";
	transform: translate(-50%, -50%);
	opacity: 1;
	transition-delay: 0.3s;
}
}
/*产品详情*/
.product {
	display: flex;
	flex-wrap: wrap;
}
.product-img {
	display: flex;
	justify-content: center;
	align-items: center;
}
#product .owl-dots {
	text-align: left;
}
#product .owl-dots .owl-dot {
	width: 11px;
	height: 11px;
}
#product .owl-dots .owl-dot span {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	margin: 0 15px;
}
#product .owl-dots .owl-dot.active span {
	background: #0174c1;
}
.product-info pre {
	margin-bottom: 25px;
	font-size: 1rem;
	line-height: 1.5em;
	color: #999;
	overflow-y: auto;
}
.product-d table {
	width: 100%;
	min-width: 600px;
}
.product-d table tr:first-child {
	background: #f2f2f2;
}

@media(min-width:992px) {
.product {
}
.product-img {
	width: 50%;
	position: relative;
}
#product {
	position: static;
	width: 70%;
	max-width: 600px;
}
.product-info {
	width: 50%;
	padding: 8vh 6%;
}
}

@media screen and (max-width:991.8px) {
.product-img {
	width: 100%;
}
#product {
	position: relative;
	width: 100%;
	padding: 6%;
}
#product .item {
	text-align: center;
}
#product img {
	display: inline-block;
	width: 100%;
	max-width: 500px;
}
.product-info {
	width: 100%;
	padding: 5vh 6%;
}
}
/*服务支持*/
.service-ts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.service-ts li {
	width: 200px;
}
.service-ts img {
	margin: 0 0 20px;
}
.service-ts p {
	margin: 0;
}
.service-ts span {
	display: inline-block;
	font-size: 0.85rem;
	line-height: 1.25em;
	color: #999;
	vertical-align: text-top;
}
.service-ad {
	max-width: 1000px;
	margin: 0 auto 4vh;
	-webkit-column-count: 2;
	column-count: 2;
	counter-reset: serviceList;
}
.service-ad p {
	position: relative;
	display: inline-block;
	width: 100%;
	padding-left: 30px;
	font-size: 0.85rem;
	line-height: 1.5rem;
}
.service-ad p:before {
	counter-increment: serviceList 1;
	content: counter(serviceList);
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	font-size: 0.85rem;
	line-height: 1.25rem;
	text-align: center;
	color: #fff;
	background: #0174c1;
}
/*新闻列表*/
.news-list {
	display: flex;
	flex-wrap: wrap;
}
.news-list li {
	width: 33.33%;
	padding: 20px;
}
.news-list li>div {
	height: 100%;
	padding: 25px;
	font-size: 0.85rem;
	color: #333;
	background: #f2f2f2;
	transition: all .4s;
}
.news-list li>div:hover {
	color: #fff;
	background: #0174c1;
}
.news-list li>div a {
	display: block;
	width: 100%;
	font-size: 1rem;
	margin-bottom: 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
.news-list li>div p {
	margin: 0;
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
.news-list li>div span {
	float: right;
	font-size: 23px;
	line-height: 0.5em;
	margin-right: 5px;
}
/*文章详情*/
.news {
	min-height: calc(100vh - 140px);
	background: #f7f7f7;
}
.news-box {
	padding: 0 15px;
	margin: auto;
	max-width: 1200px;
}
.news-head {
	margin-bottom: 15px;
}
.news-head h1 {
	margin: 0 0 5px;
	font-size: 1.5rem;
	color: #333;
}
.news-head span {
	font-size: 0.85rem;
	color: #999;
}
.news-info {
	padding: 3vh 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}
.news-page {
	margin-top: 3vh;
	display: flex;
	flex-wrap: wrap;
}
.news-page a {
	display: block;
	width: 50%;
	padding: 2rem 5rem;
	transition: all .4s;
}
.news-page a:hover {
	background: #f0f0f0;
}
.news-page em {
	display: inline-block;
	width: 3.5rem;
	height: 1em;
	line-height: 1em;
	font-size: 1.75rem;
	color: #333;
}
.news-page p {
	display: block;
	width: 100%;
	margin: 10px 0 15px;
	font-size: 1rem;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
.news-page a:hover p, .news-page a:hover em {
	color: #0174c1;
}
.news-page a.nomore:hover p, .news-page a.nomore:hover em {
	color: #333;
}
.news-page span {
	display: block;
	width: 100%;
	font-size: 0.85rem;
	line-height: 1em;
	height: 2em;
	color: #999;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}

@media(min-width:992px) {
.news-page a:first-child {
	border-right: 1px solid #e0e0e0;
	text-align: right;
}
}
/*联系方式*/
.contact {
	max-width: 1000px;
	padding-left: 15px;
	padding-right: 15px;
	margin: auto;
}
.contact {
	display: flex;
	flex-wrap: wrap;
}
.contact>div {
	width: 50%;
	padding: 40px;
	font-size: 1rem;
	line-height: 1.5em;
}
.contact>div span {
	display: inline-block;
	font-size: 1.25rem;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.contact>div p {
	margin-bottom: 15px;
}
.contact .contact-info {
	padding: 40px;
	background: #fff;
}
.contact-feedback {
	margin-top: 4vh;
	margin-bottom: -4vh;
	width: 50%;
	padding: 40px;
	color: #fff;
	background: #0174c1;
}
.feedback input {
	outline: none;
	margin-bottom: 18px;
	width: 100%;
	padding: 0px 15px;
	font-size: 0.85rem;
	line-height: 42px;
	color: #666;
	border: 1px solid #ebebeb;
	background: #fcfcfc;
	transition: all .4s;
}
.form-control {
	border: 1px solid #ebebeb;
	line-height: 44px;
	height: 44px;
	width: 100%;
	padding: 0px 15px;
	margin: 10px 0px;
	border-radius: none;
	box-shadow: 0;
}
.feedback p {
	font-size: 1.5rem;
	line-height: 1.25em;
	margin-bottom: 2vh;
}
.feedback textarea {
	border: 1px solid #ebebeb;
	font-size: 0.85rem;
	line-height: 22px;
	width: 100%;
	height: 160px;
	padding: 15px;
	margin: 10px 0px;
	outline: none;
	box-shadow: none;
	overflow-x: hidden;
	background: #fff;
}
.feedback input:focus, .feedback textarea:focus {
	border: 1px solid #0174c1;
}
.feedback .submit {
	display: inline-block;
	padding: 0px 25px;
	background: #fff;
	font-size: 14px;
	line-height: 36px;
	color: #333;
	margin: 15px 0px;
	transition: all .3s;
}
.feedback .submit:hover {
	padding: 0 35px;
	color: #0174c1;
}

@media screen and (max-width:991.8px) {
.contact>div {
	font-size: 0.85rem;
	line-height: 1.5em;
}
.contact>div span {
	font-size: 1rem;
}
.contact>div p {
	margin-bottom: 15px;
}
.contact .contact-info {
	padding: 25px;
}
.contact-feedback {
	padding: 25px;
}
.feedback input {
	line-height: 36px;
	color: #666;
}
.feedback textarea {
	border: 1px solid #ebebeb;
	font-size: 0.85rem;
	line-height: 22px;
	width: 100%;
	height: 160px;
	padding: 15px;
	margin: 10px 0px;
	outline: none;
	box-shadow: none;
	overflow-x: hidden;
	background: #fff;
}
}

@media screen and (max-width:767.8px) {
.contact {
	display: flex;
	flex-wrap: wrap;
}
.contact .contact-info {
	width: 100%;
}
.contact .contact-feedback {
	width: 100%;
}
}
/*地图设置*/
#map-canvas {
	height: 500px;
	width: 100%;
	margin: 8vh 0px;
	padding: 0px;
	border: 3px solid #0174c1;
}

@media screen and (max-width:991.8px) {
#map-canvas {
	height: 400px;
}
}

@media screen and (max-width:767.8px) {
#map-canvas {
	height: 300px;
}
}
.content-window-card {
	position: relative;
	box-shadow: none;
	bottom: 0;
	left: 0;
	width: auto;
	padding: 0;
}
.content-window-card p {
	height: 2rem;
}
.amap-icon img, .amap-marker-content img {
	width: 25px;
	height: 34px;
}
.custom-info {
	border: solid 1px silver;
}
div.info-top {
	display: none;
	position: relative;
	background: none repeat scroll 0 0 #F9F9F9;
	border-bottom: 1px solid #CCC;
	border-radius: 5px 5px 0 0;
}
div.info-top div {
	display: inline-block;
	color: #333333;
	font-size: 14px;
	font-weight: bold;
	line-height: 31px;
	padding: 0 10px;
}
div.info-top img {
	position: absolute;
	top: 10px;
	right: 10px;
	transition-duration: 0.25s;
}
div.info-top img:hover {
	box-shadow: 0px 0px 5px #000;
}
div.info-middle {
	font-size: 12px;
	padding: 10px 15px;
	line-height: 20px;
	overflow: hidden;
}
div.info-bottom {
	height: 0px;
	width: 100%;
	clear: both;
	text-align: center;
}
div.info-bottom img {
	position: relative;
	z-index: 104;
}
.custom-info span {
	margin-left: 5px;
	font-size: 11px;
}
.info-middle img {
	float: left;
	margin-right: 6px;
}
/*地图*/