@charset "utf-8";
/* CSS Document */
body {
	margin: 0px;
	padding: 0px;
	position: relative;
}
body.modal-open {
	width: 100vw;
	height: 100vh;
	overflow: hidden!important;
}
body.menu-open {
	width: 100vw;
	height: 100vh;
	overflow-y: hidden!important;
}
body, html {
	font-family: Arial, "微软雅黑", Microsoft YaHei;
	font-size: 1rem;
}
.font-en {
	font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
}
@font-face {
	font-family: 'en';
	src: local('☺'), url(../font/HelveticaNeueLTPro-HvCn.otf);
	font-weight: normal;
	font-style: normal;
}
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;
}
a.txt-link {
	text-decoration: underline;
}
a.txt-link:hover {
	color: #005694;
}
h1 {
	margin: 0px;
}
i {
	font-weight: normal;
}
hr {
	border: none;
	border-top: 1px solid #ebebeb;
	margin: 3vh 0px;
}
img {
	max-width: 100%;
}
pre {
	display: block;
	border: none;
	background: none;
	padding: 0px;
	white-space: pre-wrap;
	font-family: Arial, "微软雅黑", Microsoft YaHei;
}
section {
	max-width: 100vw;
	overflow: hidden;
}
.blue {
	color: dodgerblue;
}
.green {
	color: green;
}
.yellow {
	color: yellow;
}
.red {
	color: red;
}
::-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: 1.125rem;
	line-height: 1.5em;
	padding: 8px 1.125rem;
	border-left: 1px solid #e6e6e6;
	border-top: 1px solid #e6e6e6;
}
table td p {
	margin: 0px;
}
/*boostrap遮罩层导致页面抖动*/
.modal-open {
	overflow: scroll !important;
}
/*页面内容宽度*/
.container {
	max-width: 100%;
}

@media(min-width:768px) {
.container {
	max-width: 96%;
}
}

@media(min-width:992px) {
.container {
	max-width: 90%;
}
}

@media(min-width:1430px) {
.container {
	max-width: 1230px;
}
}
/*图片放大*/
.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;
}
/*页面haed*/
/*头部*/	
#head {
	position: relative;
	z-index: 4;
	display: flex;
	flex-wrap: wrap;
	padding-top: 0;
	padding-bottom: 0;
	background: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
/*头部标志*/
.head-conent {
	height: 90px;
}
.navbar-brand {
	height: 100%;
	display: flex;
	align-items: center;
	white-space: normal;
}
.navbar-brand img {
	height: 61.8%;
}
/*slogan*/
.slogan {
	display: flex;
	align-items: center;
	float: left;
	height: inherit;
	margin-left: 0.5rem;
	line-height: 1rem;
}
.slogan p {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	line-height: 1em;
	font-weight: bold;
	background: -o-linear-gradient(90deg, #005694 0%, #733a85 100%);
	background: linear-gradient(90deg, #005694 0%, #733a85 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #333;
}
.slogan span {
	margin: 0px;
	font-size: 0.875rem;
	line-height: 1em;
	color: #999;
}
/*头部导航*/
.navbar-expand-lg .navbar-collapse {
	display: flex;
	justify-content: flex-end;
	height: inherit;
}
#head .navbar-nav {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	height: inherit;
	padding: 0 1%;
}
#head .navbar-nav li {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: inherit;
	font-size: 1rem;
	line-height: 38px;
	margin: 0 1.5rem;
}
#head .navbar-nav li a {
	display: block;
	width: 100%;
	padding: 0px;
	color: #333;
	text-align: center;
	transition: all .4s;
}
#head .navbar-nav li:hover a {
	color: #005694;
}
#head .navbar-nav li.on>a {
	text-transform: Uppercase;
	color: #005694;
}
#head .navbar-nav li.on>a:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0%;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #005694 0%, #733a85 100%);
}
#head .navbar-nav li .dropdown-menu {
	width: 100%;
	max-width: auto;
	margin: 0px;
	padding: 0px;
	background: #f5f5fa;
	border-radius: 0px;
	border: none;
	border-bottom: 3px solid #005694;
	transition: box-shadow .4s;
}
#head .navbar-nav li:hover .dropdown-menu {
	box-shadow: 0 0 1.125rem rgba(29,32,136,0.2);
}
#head .navbar-nav li .dropdown-menu a {
	display: inline-block;
	width: 100%;
	padding: 0 1rem;
	font-size: 0.875rem;
	line-height: 3rem;
	color: #333;
	text-align: left;
	white-space: nowrap;
	border-bottom: 1px solid #ebebeb;
}
#head .navbar-nav li .dropdown-menu a:hover {
	color: #fff;
	background: #005694;
}
#head .navbar-nav li .dropdown-menu a:last-of-type {
	border-bottom: none;
}
#head .head-shop {
	height: inherit;
	display: flex;
}
#head .head-shop>div {
	display: flex;
	align-items: center;
	height: inherit;
	margin-left: 10px;
	color: #999;
}
#head .head-shop>div span {
	display: inline-block;
	margin-right: 4px;
	vertical-align: bottom;
	font-size: 20px;
	line-height: 20px;
}
#head .head-shop>div>a {
	display: inline-block;
	padding: 5px 10px;
	font-size: 1rem;
	line-height: 20px;
	color: #999;
	transition: all .4s;
}
#head .head-shop>div>a:hover {
	color: #fff;
	background: #005694;
}
#head .head-shop>div a svg {
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	font-size: 20px;
	line-height: 20px;
}

@media(max-width:1399.8px) {
#head .navbar-nav li {
	margin: 0 1.125rem;
}
}

@media(max-width:1199.8px) {
#head .navbar-nav {
	display: none;
}
.head-conent {
	height: 70px;
	width: 100%;
	max-width: 100%;
	padding-right: 110px;
}
.navbar-brand img {
	height: 32px;
}
}

@media( min-width: 992px) {
#head {
	padding: 0px;
}
}

@media screen and ( max-width:991.8px) {
.head-conent {
	height: 70px;
}
.navbar-expand-lg>.head-conent {
	padding-right: 80px;
}
.navbar-brand img {
	height: 42px;
}
.navbar-expand-lg .navbar-collapse {
	flex-basis: auto;
}
}

@media screen and ( max-width:767.8px) {
.head-conent {
	height: 56px;
}
.navbar-brand img {
	height: 36px;
}
.slogan {
	display: none;
}
}

@media( max-width:565.8px) {
.navbar-expand-lg>.head-conent {
	padding-right: 56px;
}
}
/*--手机菜单--*/
/*头部菜单按钮*/
.menu-button {
	display: block;
	position: fixed;
	z-index: 1039;
	top: 0;
	right: 0px;
	width: 70px;
	height: 70px;
	border: none;
	padding: 0;
	font-size: 0;
	background: #005694;
	transition: all 0.3s ease-in-out;
}
.menu-open .menu-button {
	color: #333;
	background: #005694;
}

@media (min-width: 1200px) {
.menu-button {
	display: none;
}
.menu-open .menu-button {
	display: block;
}
}

@media (max-width: 997.8px) {
.menu-button {
	display: block;
	width: 70px;
	height: 70px;
}
}

@media (max-width: 767.8px) {
.menu-button {
	display: block;
	width: 56px;
	height: 56px;
}
}
.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;
}
.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);
}
/*菜单设置*/
.menu-content {
	display: flex;
	align-items: center;
}
.menu-inner {
	height: 100vh;
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 1038;
	width: 100%;
	left: 100%;
	top: 0;
	color: #fff;
	background: #25263b;
	transition: all .8s ease;
	transition-delay: 0.8s;
}

@media screen and (max-width: 991px) {
.menu-inner {
	height: 0;
	min-height: 100vh;
}
}
.menu-open .menu-inner {
	left: 0;
	transition: all 1.2s ease;
}
/*右侧一级菜单*/
.nav-menu {
	height: 100vh;
	width: 33.333%;
	background: #f7f7f7;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: -37%;
	top: 0;
	transition: all 1.2s ease;
	transition-delay: 0.8s;
	z-index: 2;
}

@media screen and (max-width: 991.8px) {
.menu-open .nav-menu {
	width: 100%;
	justify-content: center;
	right: -100%;
	overflow: auto;
}
}
.menu-open .nav-menu {
	right: 0;
	transition: all .5s ease;
}
.nav-menu .nav-menu-item>a, .nav-menu .nav-menu-item .sub-nav li a, .menu-content p {
	position: relative;
}
.nav-menu .nav-menu-item>a {
	font-size: 20px;
	line-height: 2.5em;
	font-weight: bold;
	text-transform: Uppercase;
	color: #333;
	overflow: hidden;
}
.nav-menu .nav-menu-item>a:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0px;
	left: 0%;
	width: 0%;
	height: 3px;
	background-color: #005694;
	transition: all .4s;
}
.nav-menu .nav-menu-item>a:hover:after {
	content: "";
	width: 100%;
}
.nav-menu .nav-menu-item>a:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #f7f7f7;
	transition: all .75s ease;
}
.menu-open .nav-menu .nav-menu-item>a:before {
	content: "";
	height: 0%;
	transition-delay: 1.3s;
}
/*二级菜单*/
.sub-content {
	width: 66.6%;
	height: 100vh;
	background: #25263b;
	display: none;
	position: fixed;
	left: 0%;
	top: 0;
	transition: all 1.2s ease;
	transition-delay: 0.8s;
	z-index: 2;
}
.sub-content.sub-content-open {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.sub-content .sub-nav {
	padding: 0 1rem;
}
.sub-content .sub-nav li {
	width: 100%;
}
.sub-content .sub-nav li a {
	display: block;
	padding: 0.5em 0;
	font-size: 1.5rem;
	line-height: 1em;
	color: #fff;
	white-space: nowrap;
	transition: all .4s;
}
.sub-content .sub-nav li a:hover {
	color: #005694;
}
.sub-content .sub-nav li a:before {
	content: "";
	background-color: #25263b;
	display: inline-block;
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	z-index: 1;
}
.sub-content.sub-content-open .sub-nav li a:before {
	height: 0;
	animation: anime-sub 1s;
}
.sub-content .sub-nav li a svg {
	display: inline-block;
	margin-right: 10px;
	font-size: 22px;
	width: 22px;
	height: 22px;
	line-height: 1.5rem;
	vertical-align: bottom;
}
 @keyframes anime-sub {
0% {
height:calc(100% + 20px)
}
to {
height:0
}
}

@media screen and (max-width: 991.8px) {
.nav-menu .nav-menu-item>a {
	font-size: 1.5rem;
	line-height: 2em;
}
.sub-content {
	display: flex;
	width: 100%;
	left: -100%;
	padding: 75px 1.125rem 20px;
	transition: all .6s ease;
	z-index: 2;
}
.sub-content.sub-content-open {
	width: 100%;
	justify-content: center;
	left: 0%;
	padding: 75px 1.125rem;
	overflow: auto;
}
.sub-content .sub-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	overflow: auto;
	height: 100%;
}
.sub-content .sub-menu::-webkit-scrollbar-track {
background:rgba(255,255,255,0.1);
}
.sub-content .sub-menu::-webkit-scrollbar {
width: 4px;
}
.sub-content .sub-menu::-webkit-scrollbar-thumb {
background:#005694;
}
.sub-content .sub-nav li {
	width: 100%;
}
.sub-content .sub-nav li a {
	text-align: center;
}
}
/*左侧讯息*/
.menu-content {
	width: 100%;
	display: flex;
}
.menu-content-item {
	width: 66.6%;
	padding-left: 10%;
	padding-right: 10%;
}
.menu-content p {
	margin: 0 0 1em;
	font-size: 1.5rem;
	color: #fff;
}
.menu-content a {
	color: inherit;
}
.menu-content a:hover {
	color: #005694;
}
.menu-content p:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0px;
	left: -1%;
	width: 102%;
	height: 100%;
	background-color: #25263b;
	transition: all .75s ease;
}
.menu-open .menu-content p:before {
	content: "";
	height: 0%;
	transition-delay: 1.3s;
}
.close-sub-menu {
	position: absolute;
	z-index: 2;
	right: 30px;
	bottom: 5%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	text-align: center;
	color: #fff;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	cursor: pointer;
}
/*-- 手机菜单end --*/


/*首页通用*/
.section {
	background-position: center;
	background-size: cover;
}
#index-menu {
	position: fixed;
	left: 0;
	top: 40%;
	z-index: 2;
	padding: 10px 0px;
	background: #25263b;
}
#index-menu a {
	display: block;
	width: 100%;
	padding: 0 25px;
	font-size: 0.875rem;
	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;
}
}
/* .banner */
.banner-box {
	position: relative;
	z-index: 1;
	height: 100%;
}
#banner {
	position: relative;
	overflow: hidden;
}
#banner .owl-stage-outer, #banner .owl-stage, #banner .owl-item, #banner .item {
	height: 100%;
}
#banner .item {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
#banner .item img {
	display: none;
}

@media screen and (max-width:767.8px) {
.banner-box {
	position: relative;
	z-index: 1;
	height: auto;
}
#banner {
	position: relative;
	overflow: hidden;
	height: auto;
	margin: 0px;
}
.banner-wap {
	display: block!important;
}
#banner .item img {
	display: block;
	width: 100%;
}
}
#banner .owl-nav {
	position: absolute;
	z-index: 2;
	bottom: 0px;
	right: 90px;
	background: #fff;
	margin: 0;
	padding: 20px;
	padding-left: 30px;
	line-height: 36px;
}
#banner .owl-nav #counter {
	display: inline-block;
	margin-right: 40px;
	font-weight: bold;
	font-size: 18px;
	color: #999;
	vertical-align: bottom;
}
#banner .owl-nav #counter span {
	color: #333;
	vertical-align: bottom;
}
#banner .owl-nav #interval {
	display: inline-block;
	height: 20px;
	width: 1px;
	margin: 8px;
	background: #ccc;
	vertical-align: bottom;
}
#banner .owl-nav [class*=owl-] {
	color: #FFF;
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	cursor: pointer;
	border-radius: 3px;
	outline: none;
	vertical-align: bottom;
}
#banner .owl-nav [class*=owl-]:hover {
	text-decoration: none
}
#banner .owl-nav .disabled {
	opacity: 0.3;
	cursor: default
}
#banner .owl-nav [class*=owl-] i {
	display: inline-block;
	font-size: 28px;
	height: inherit;
	line-height: inherit;
	color: #333;
	transition: all .4s;
}
#banner .owl-nav [class*=owl-]:hover i {
	color: #2968b2;
}

@media screen and (max-width:991.8px) {
#banner .owl-nav {
	position: absolute;
	z-index: 2;
	bottom: 0px;
	right: 60px;
	background: #fff;
	margin: 0;
	padding: 10px;
	padding-left: 20px;
	line-height: 32px;
}
#banner .owl-nav #counter {
	margin-right: 25px;
	font-weight: bold;
	font-size: 18px;
}
}

@media (min-width:768px) {
#banner {
	height: 600px;
}
}
/* .banner背景 */

/*彩色文字*/
.colour {
	background: -o-linear-gradient(90deg, #005694 0%, #733a85 100%);
	background: linear-gradient(90deg, #005694 0%, #733a85 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #005694;
}
/*首页标题*/
.title {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: 1em;
	font-weight: bold;
	background: -o-linear-gradient(90deg, #005694 0%, #733a85 100%);
	background: linear-gradient(90deg, #005694 0%, #733a85 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #005694;
}
.index-title .subtitle {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	line-height: 1em;
	font-weight: bold;
	color: #333;
}
.index-title pre {
	font-size: 0.875rem;
	line-height: 1.75em;
	color: #666;
}
.index-title.index-title-w .title, .index-title.index-title-w .subtitle {
	color: #fff;
}
.index-title.index-title-w pre {
	color: #ccc;
}

@media (max-width: 991.8px) {
.title {
	font-size: 1.375rem;
}
}
/*首页产品*/
#index-proudtc {
	width: auto;
	margin-left: -25px;
	margin-right: -25px;
}
#index-proudtc .owl-item {
	padding: 25px 0;
}
#index-proudtc .item {
	position: relative;
	min-height: 100%;
	padding: 1rem;
	text-align: center;
	background: #fff;
	box-shadow: 0 0 1.5rem rgba(0,86,148,0);
	border-radius: 0.5rem;
	transition: all 0.4s;
}
#index-proudtc .item:hover {
	box-shadow: 0 0 1.5rem rgba(0,86,148,0.25);
}
#index-proudtc .item :after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0px;
	left: 0%;
	width: 0%;
	height: 4px;
	background: linear-gradient(to right, #005694 0%, #733a85 100%);
	transition: all .4s;
}
#index-proudtc .item:hover :after {
	content: "";
	width: 100%;
}
.index-p-img {
	margin-bottom: 1rem;
	overflow: hidden;
}
.index-p-name {
	margin-bottom: 0.5rem;
	font-size: 1.125rem;
	font-weight: bold;
	color: #005694;
}
#index-proudtc pre {
	width: 90%;
	margin: 0 auto 1rem;
	font-size: 0.875rem;
	line-height: 1.5em;
	color: #666;
	max-height: 4.5em;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#index-proudtc .owl-nav [class*=owl-].owl-prev {
	left: -56px;
}
#index-proudtc .owl-nav [class*=owl-].owl-next {
	right: -56px;
}
/*服务领域*/
#index-app {
	padding-top: 1rem;
}
#index-app .item {
	position: relative;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, #005694, #733a85);
}
.index-app-img {
	opacity: 0.6;
	transition: all .4s;
}
#index-app .item:hover .index-app-img {
	opacity: 0.2;
}
.index-app-text {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	padding: 2rem;
	color: #fff;
}
.app-icon {
	display: inline-block;
	border-radius: 50%;
	background: #fff;
}
.app-icon span {
	position: relative;
	z-index: 2;
	display: inline-block;
	width: 5.625rem;
	height: 5.625rem;
	line-height: 5.625rem;
	font-size: 3rem;
	color: #005694;
	border-radius: 50%;
	background: -o-linear-gradient(135deg, #005694, #733a85);
	background: linear-gradient(135deg, #005694, #733a85);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#index-app p {
	font-size: 1.125rem;
	font-weight: bold;
	margin: 1.5rem 0 1rem;
}
#index-app pre {
	font-size: 0.875rem;
	line-height: 1.5em;
	height: 4.5em;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#index-app .item:hover pre {
	opacity: 1;
	visibility: visible;
}
#index-app a {
	display: inline-block;
	padding: 0 1rem;
	font-size: 0.75rem;
	line-height: 2.5em;
	color: #fff;
	border: 1px solid #fff;
	opacity: 0;
	visibility: hidden;
}
#index-app .item:hover a {
	opacity: 1;
	visibility: visible;
}
#index-app .app-icon, #index-app p, #index-app pre, #index-app a {
	transform: translate(0%, 4rem);
	transition: all .4s;
}
#index-app .item:hover .app-icon, #index-app .item:hover p, #index-app .item:hover pre, #index-app .item:hover a {
	transform: translate(0%, 0rem);
}
#index-app .owl-nav [class*=owl-].owl-prev {
	left: -64px;
}
#index-app .owl-nav [class*=owl-].owl-next {
	right: -64px;
}

@media (max-width:991.8px) {
#index-app.owl1 .owl-nav {
	margin-top: 2rem;
}
}

@media (max-width:575.8px) {
#index-app {
	padding: 0 8%;
}
}
/*首页关于*/
.index-about {
	background: url(../images/about2-1.jpg) center left no-repeat;
	background-size: 45% 100%;
	color: #666;
}
.index-about .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-about-title {
	width: 100%;
	color: #fff;
	margin-bottom: 2rem;
	padding-left: 2rem;
	border-left: 3px solid rgba(255,255,255,0.2);
}
.index-about-title p {
	margin-bottom: 0.3rem;
	font-size: 1.5rem;
	font-weight: bold;
}
.index-about-title span {
	font-size: 0.875rem;
	opacity: 0.8;
}
.index-a-img {
	width: 52%;
}
.index-a-img img {
	width: 100%;
}
.index-a-info {
	padding-top: 4vh;
	width: 40%;
	line-height: 1.75rem;
}
.index-a-info ul {
	display: flex;
	justify-content: space-between;
	margin-top: 2.5rem;
}
.index-a-info ul li.data-line {
	display: block;
	width: 1px;
	background: #ebebeb;
}
.index-a-info ul li .data {
	display: inline-block;
	font-size: 2.25rem;
	color: #005694;
}
.index-a-info ul li small {
	font-size: 1rem;
	font-weight: bold;
	color: #005694;
}
.index-a-info ul li p {
	margin: 0;
	font-size: 0.875rem;
	color: #666;
}

@media(max-width:991.8px) {
.index-about {
	background: url(../images/about2-1.jpg) center top no-repeat;
	background-size: 100%;
	color: #666;
}
.index-a-img {
	width: 100%;
}
.index-a-info {
	padding: 0 1rem;
	padding-top: 6vh;
	width: 100%;
}
.index-a-info ul li .data {
	font-size: 2rem;
}
.index-a-info ul li small {
	font-size: 0.875rem;
}
}

@media(max-width:767.8px) {
.index-a-info ul li .data {
	font-size: 1.75rem;
}
}
/*数据*/
.index-data {
	transform: translate(0%, -50%);
}
.index-data ul {
	display: flex;
	background: #fff;
	box-shadow: 0 0 1.5rem rgba(228,20,24,0.2);
}
.index-data ul li {
	position: relative;
	padding: 2rem 1rem;
	width: 100%;
	text-align: center;
}
.index-data ul li:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0%;
	width: 1px;
	height: 40%;
	background-color: #ccc;
	transform: translate(0%, -50%);
	transition: all .4s;
}
.index-data span {
	display: block;
	width: 100%;
	font-size: 4rem;
	line-height: 4rem;
	color: #005694;
}
.index-data .data {
	display: inline-block;
	margin-bottom: 1rem;
	margin-right: 0.5rem;
	font-size: 3rem;
	line-height: 3rem;
	color: #005694;
}
.index-data small {
	font-size: 1.125rem;
	font-weight: bold;
	color: #005694;
}
.index-data p {
	margin-bottom: 0px;
	color: #666;
}

@media(max-width:1199.8px) {
.index-data span {
	margin-bottom: 0.75rem;
	font-size: 3.5rem;
	line-height: 3rem;
}
.index-data .data {
	font-size: 2.25rem;
	line-height: 2rem;
}
.index-data small {
	font-size: 1rem;
	font-weight: bold;
	color: #005694;
}
}

@media(max-width:767.8px) {
.index-data {
	transform: translate(0%, 0%);
	margin-bottom: 6vh;
}
.index-data ul {
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
.index-data span {
	margin-bottom: 0.5rem;
	font-size: 3rem;
	line-height: 3rem;
}
.index-data .data {
	margin-right: 0.25rem;
	font-size: 1.75rem;
	line-height: 2rem;
}
}
/*首页新闻*/
.index-news {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 3rem;
	background: #fff;
}
.index-n-l {
	width: 35%
}
.index-n-title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.index-n-title a {
	font-size: 0.875rem;
	color: #999;
	transition: all 0.4s;
}
.index-n-title a:hover {
	color: #005694;
}
.index-n-l p {
	font-size: 0.9375rem;
	line-height: 1.75rem;
	color: #666;
}
.index-n-btn {
	margin-top: 3rem;
}
.index-n-btn a span {
	display: inline-block;
	margin: 0 0.25rem;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	font-size: 1.5rem;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	background: #005694;
	transition: all 0.4s;
}
.index-n-btn a:hover span {
	background: #733a85;
}
.index-n-r {
	width: 60%
}
#index-news .index-n-img {
	overflow: hidden;
}
#index-news .index-n-text {
	margin-top: 1.5rem;
	display: flex;
	justify-content: space-between;
}
#index-news .index-n-time {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	margin-right: 1.5rem;
	text-align: center;
	border-right: 1px solid #ebebeb;
}
.index-n-time p {
	margin: 0;
	font-size: 2.5rem;
	line-height: 1em;
	color: #005694;
}
.index-n-time span {
	font-size: 0.875rem;
	line-height: 1em;
	color: #666;
}
.index-n-info {
	width: calc(100% - 6.5rem)
}
.index-n-info p {
	margin-bottom: 0.25rem;
	font-size: 0.875rem;
	font-weight: bold;
	color: #ccc;
}
.index-n-info a {
	display: inline-block;
	font-size: 0.9375rem;
	line-height: 1.5em;
	color: #333;
}
.index-n-info a:hover {
	color: #005694;
}

@media(max-width:991.8px) {
.index-news {
	padding: 2rem;
}
.index-n-l {
	width: 100%
}
.index-n-title {
	margin-bottom: 0.5rem;
}
.index-n-l p {
	font-size: 0.875rem;
	line-height: 1.5em;
}
.index-n-btn {
	text-align: right;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.index-n-r {
	width: 100%
}
}
/*页脚*/
#foot {
	padding: 5vh 0;
	position: relative;
	width: 100%;
	color: #fff;
	background: linear-gradient(to right, #005694 0%, #733a85 100%);
}
#foot .container {
	display: flex;
	justify-content: space-between;
}
.foot-logo {
	padding: 1rem 0;
}
.foot-logo>div {
	display: flex;
	align-items: flex-end;
}
.foot-logo img {
	max-width: 140px;
}
.foot-logo>div>div {
	margin-left: 1.5rem;
}
.foot-logo p {
	font-size: 1.25rem;
	line-height: 1em;
	font-weight: bold;
	margin: 0 0 0.25rem;
}
.foot-logo span {
	font-size: 0.875rem;
	line-height: 1em;
	opacity: 0.8;
}
.foot-nav div {
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	font-weight: bold;
	color: #fff;
}
.foot-nav ul {
	-webkit-column-gap: 2rem;
	-webkit-column-count: 2;
}
.foot-nav ul a {
	font-size: 0.875rem;
	line-height: 2rem;
	color: #fff;
	transition: all 0.4s;
}
.foot-nav ul a:hover {
	color: red;
}
.foot-content {
	font-size: 0.875rem;
	line-height: 2em;
	color: #fff;
}
.foot-content div {
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	font-weight: bold;
	color: #fff;
}
.foot-content p {
	margin-bottom: 0rem;
}
.foot-content a {
	color: red;
}

@media(max-width:992.8px) {
#foot {
	padding: 5vh 0 3vh;
}
#foot .container {
	flex-wrap: wrap;
}
.foot-logo {
	padding: 0 0 2rem;
}
.foot-nav {
	display: none;
}
}

@media(max-width:767.8px) {
.foot-logo {
	display: none;
}
}
/*首页友情链接*/
.index-links>div {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	display: flex;
}
.links-title {
	padding-right: 1rem;
	flex-shrink: 0;
	font-size: 0.9375rem;
	font-weight: bold;
	color: #005694;
}
.index-links .links-nav a {
	display: inline-block;
	margin-right: 1rem;
	font-size: 0.875rem;
	line-height: 1.75em;
	color: #666;
}
.index-links .links-nav a:hover {
	color: #005694;
}

@media(max-width:991.8px) {
.index-links {
	display: none;
}
}
/*============ 首页end ============*/

/*内页公共*/
/*banner*/
.inside-banner {
	position: relative;
}
.inside-banner .inside-banner-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 450px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
.inside-banner-img img {
	max-width: none;
	height: 100%;
}

@media screen and (max-width:1199.8px) {
.inside-banner .inside-banner-img {
	height: 360px;
}
}

@media screen and (max-width:991.8px) {

.inside-banner .inside-banner-img {
	height: 280px;
}
}

@media screen and (max-width:575.8px) {
.inside-banner .inside-banner-img {
	height: 240px;
}
}
/*内页导航*/
.inside-nav {
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0px;
	background: rgba(0,0,0,0.2);
}

#subnav {
	position: relative;
	z-index: 2;
}

@media(min-width:992px) {
#subnav {
	margin: 0;
	border-left: 1px solid rgba(255,255,255,0.3);
}
#subnav .panel-default {
	background: none;
	border: none;
	box-shadow: none;
}
#subnav .panel-heading {
	display: none;
}
#subnav .panel-body {
	flex-wrap: wrap;
	border: none;
	background: none;
	padding: 0px;
	padding-left: -4px;
	padding-right: -4px;
	font-size: 0px;
}
#subnav .panel-body li {
	display: inline-block;
	margin-left: -1px;
}
#subnav .panel-body li a {
	display: inline-block;
	width: 100%;
	padding: 0.5rem 2rem;
	font-size: 0.8752rem;
	line-height: 2.5em;
	color: #fff;
	border-right: 1px solid rgba(255,255,255,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	transition: all .4s;
}
#subnav .panel-body li a:hover, #subnav .panel-body li a:focus {
	color: #fff;
	background: #2968b2;
}
#subnav .panel-body li.on a {
	color: #fff;
	background: #2968b2;
}
}

@media(max-width:991.8px) {
.inside-nav {
	background: rgba(0,0,0,0.4);
}
.inside-nav .container {
	width: 100%;
	max-width: 100%;
	padding: 0px;
}
#subnav {
	margin: 0px;
}
#subnav .panel-default {
	background: none;
	border: none;
	box-shadow: none;
}
#subnav .panel-heading {
	padding: 0px;
	border: none;
	background: none;
	color: #fff;
}
#subnav .panel-heading a {
	display: block;
	width: 100%;
	padding: 15px;
	font-size: 15px;
	line-height: 20px;
	font-weight: bold;
	color: #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	background: #2968b2;
	text-transform: Uppercase;
	overflow: hidden;
}
#subnav .panel-heading a.collapsed {
	background: none;
	color: #fff;
}
#subnav .panel-heading a b {
	float: right;
	display: inline-block;
	margin-top: 8px;
}
#subnav #p-nav1 {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
}
#subnav .panel-body {
	padding: 5px 0px;
	margin-bottom: 15px;
	border: none;
	background: #f7f7f7;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#subnav .panel-body li a {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0px 15px;
	font-size: 14px;
	line-height: 42px;
	color: #999;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .3s;
}
#subnav .panel-body li:last-child a {
	border-bottom: none;
}
#subnav .panel-body li.on a {
	padding-left: 32px;
	color: #2968b2;
}
#subnav .panel-body li a:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 15px;
	width: 9px;
	height: 9px;
	margin-top: -4px;
	background-color: #2968b2;
	border-radius: 50%;
	opacity: 0;
	transition: all .4s;
}
#subnav .panel-body li.on a:before {
	content: "";
	opacity: 1;
}
}

@media(max-width:767.8px) {
.inside-nav .container {
	padding: 0px;
	width: 100%;
	min-width: 100%!important;
}
}
/*面包屑*/
.breadcrumb {
	padding: 0px;
	margin: 4vh 0 0;
	background: none;
}
.breadcrumb>div {
	font-size: 0px;
}
.breadcrumb a {
	display: inline-block;
	font-size: 1.125rem;
	line-height: 1.2em;
	color: #333;
	transition: all .4s;
}
.breadcrumb a:hover {
	color: #005694;
}
.breadcrumb a:not([href]):not([tabindex]) {
	color: #999;
}
.breadcrumb a:after {
	content: ">";
	margin: 0 5px;
	color: #333
}
.breadcrumb a:not([href]):not([tabindex]):after {
	content: "";
}

@media(max-width:991.8px) {
.breadcrumb {
	display: none;
}
}
/*边距盒子*/
.padding-box {
	padding-top: 8vh;
	padding-bottom: 8vh;
}
.padding-top {
	padding-top: 8vh;
}
.padding-bottom {
	padding-bottom: 8vh;
}
.main {
	position: relative;
	z-index: 2;
	background: #fff;
}
.gray-box {
	background: #f8f9fd;
}
.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;
}
}
/*信息盒子*/
.info {
	font-size: 1.125rem;
	color: #333;
	line-height: 1.75em;
}
.info p {
	margin: 0 0 0.75em;
}

@media screen and (max-width:1200px) {
.info {
	font-size: 1.125rem;
}
}
/*横线*/
.line {
	display: inline-block;
	width: 30px;
	height: 3px;
	line-height: 3px;
	font-size: 0px;
	background: #005694;
}
/*内页翻页*/
.page-box {
	padding-top: 30px;
}
.page {
	font-size: 0;
	color: #666;
}
.page span {
	display: inline-block;
	padding: 0 1rem;
	margin: 0 4px;
	font-size: 0.875rem;
	line-height: 3em;
	background: #f2f2f2;
}
.page span strong {
	font-size: 1.125rem;
	color: #333;
}
.page a {
	display: inline-block;
	padding: 0 1.5rem;
	font-size:0.875rem;
	line-height: 3em;
	color: #666;
	background: #f2f2f2;
	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: 1.125rem;
	font-size: 0.875rem;
	line-height: 3em;
	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 1.5rem;
	margin: 0px;
	border: none;
	border-radius: 0 4px 4px 0;
	font-size: 0.875rem;
	line-height: 3em;
	color: #666;
	background: #f2f2f2;
	cursor: pointer;
	transition: all .4s;
}
.page a:hover, .page button:hover {
	color: #fff;
	background: #005694;
}

@media(max-width:767.8px) {
.page {
	font-size: 13px;
	line-height: 2.5em;
}
.page a, .page span {
	padding: 0 1rem;
	font-size: 13px;
	line-height: 2.5em;
}
.page input {
	margin-left: 5px;
	font-size: 13px;
	line-height: 2.5em;
}
.page button {
	padding: 0 1rem;
	font-size: 13px;
	line-height: 2.5em;
}
}
/*内页大标题*/
.bigTitle {
	margin-bottom: 0.6em;
	font-size: 48px;
	line-height: 1em;
	font-weight: 900;
	text-transform: Uppercase;
}

@media(max-width:1199.8px) {
.bigTitle {
	font-size: 36px;
}
}
/*关于*/
.about-title .title {
	margin-bottom: 0.5rem;
}
.about-title p {
	font-size: 0.9375rem;
	color: #666;
}
.about-box {
/*background: url(../images/about2-2.jpg) right center no-repeat;
	background-size: auto 100%;*/
}
.about-data {
	display: flex;
	margin-top: 2.5rem;
}
.about-data li.data-line {
	max-width: 180px;
	display: block;
	width: 1px;
	margin: 0 4rem;
	background: #ebebeb;
}
.about-data li .data {
	display: inline-block;
	font-size: 2.25rem;
	color: #005694;
}
.about-data li small {
	font-size: 1rem;
	font-weight: bold;
	color: #005694;
}
.about-data li p {
	margin: 0;
	font-size: 0.875rem;
	color: #666;
}
.about-info {
	margin-top: 5vh;
	font-size: 0.9375rem;
	line-height: 1.75em;
	color: #666;
}
/*业务*/
.business-box {
	/*
	background: url(../images/img-b-bg.jpg) center;
	background-size: cover;
	*/
}
.business {
	display: flex;
	flex-wrap: wrap;
	margin-top: 4vh;
}
.business li {
	position: relative;
	width: 18%;
	margin-right: 2%;
	background:#005694;
	border-radius: 0 1.5rem 0 0;
	overflow: hidden;
	transition: all 0.4s;
}
.business li:hover {
	background:#733a85;
	transform: translate(0%, -1rem);
	box-shadow: 0px 1rem 1rem -1rem rgba(0,86,148,0.8);
}

.business li .business-img {
	overflow: hidden;
}
.business li .business-name {
	display: flex;
	align-items: center;
	padding: 0.5rem 1.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	height: 4em;
	color: #fff;
}
.business li .business-name p {
	margin: 0px;
}

@media(max-width:1199.8px) {
.business li {
	width: 31%;
	margin-bottom: 2%;
}
}

@media(max-width:767.8px) {
.business li {
	width: 48%;
	margin-bottom: 2%;
}
}
/*企业架构*/
.structure {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.structure li {
	width: 32%;
	margin-top: 2%;
	padding: 2rem;
	border: 1px solid #ebebeb;
	border-radius: 1rem;
	transition: all 0.4s;
}
.structure li:hover {
	border: 1px solid #005694;
	box-shadow: 0 0 1.5rem rgba(0,86,148,0.2);
}
.structure li p {
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.5em;
	color: #666;
}
.structure li p:before {
	content: "";
	display: inline-block;
	margin-right: 0.5rem;
	width: 9px;
	height: 9px;
	line-height: inherit;
	border-radius: 50%;
	background: #2968b2;
}
.structure-title {
	margin-bottom: 2rem;
}
.structure-title span {
	display: inline-block;
	margin-right: 1rem;
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	font-size: 2rem;
	text-align: center;
	color: #fff;
	background: #005694;
	border-radius: 50%;
}
.structure-title .structure-name {
	display: inline-block;
	font-weight: bold;
	font-size: 1.25rem;
	color: #005694;
}

@media(max-width:991.8px) {
.structure li {
	width: 48.5%;
	padding: 1.5rem;
}
.structure-title {
	margin-bottom: 1.25rem;
}
.structure-title span {
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	font-size: 1.75rem;
}
.structure-title .structure-name {
	font-size: 1.125rem;
}
}

@media(max-width:575.8px) {
.structure li {
	width: 100%;
	padding: 1.25rem;
}
}
/*企业历史*/

.history {
	position: relative;
	background: url(../images/img-history-bg.jpg) center;
	background-size: cover;
	
}
/* 波浪滚动
.history:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0px;
	left: 0%;
	width: 100%;
	height: 15rem;
	background: url(../images/history.png);
	background-size: 100% 15rem;
	animation: animate-cloud 140s linear infinite;
}
@-webkit-keyframes animate-cloud {
from {
background-position: 9999px 100%;
}
 to {
background-position: 0 100%;
}
}
@keyframes animate-cloud {
from {
background-position: 9999px 100%;
}
 to {
background-position: 0 100%;
}
}
*/
.history-title {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: 1em;
	font-weight: bold;
	color: #fff;
}
.about-title-w p {
	color: #ebebeb;
}
#history {
	position: relative;
	z-index: 2;
	padding-top: 4rem;
	margin-top: 2rem;
}
#history .owl-stage-outer {
	padding: 2rem 0;
	border-top: 1px solid #ccc;
}
#history .item {
	padding: 1.5rem 1.5rem 1rem;
	border: 1px solid #fff;
	background: rgba(255,255,255,0.9);
	border-radius: 0.75rem;
	color: #666;
	opacity: 0.5;
	transition: all 0.4s;
}
#history .center .item {
	opacity: 1;
	box-shadow: 0 0 1.5rem rgba(0,86,148,0.2);
}
#history .item p {
	font-size: 0.875rem;
	line-height: 1.75em;
	color: #666;
}
#history .owl-dots, #history .owl-dots.disabled {
	position: absolute;
	top: 0.75rem;
	left: 3rem;
	right: 3rem;
	z-index: 2;
	display: block;
	margin: 0px;
}
#history .owl-dots button {
	margin: 0 1rem;
	font-size: 1.5rem;
	line-height: 1em;
	font-weight: bold;
	font-family: 'en';
	color: #999;
	transition: all 0.4s;
}
#history .owl-dots button.active {
	color: #005694;
}
#history .owl-nav, #history .owl-nav.disabled {
	display: block;
	margin: 0px;
}
#history .owl-nav button, #history .owl-nav.disabled button {
	position: absolute;
	top: 0;
	z-index: 3;
	display: block;
	margin: 0px;
}
#history .owl-nav button.owl-prev {
	left: 0;
}
#history .owl-nav button.owl-next {
	right: 0;
}
/*企业风采*/
.style-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -0.75rem;
	margin-right: -0.75rem;
}
.style-list li {
	width: 33.33%;
	padding: 0.75rem;
}
.style-list li a {
	display: block;
	border-radius: 0.5rem  0.5rem 0 0;
	background: #f8f9fd;
	transition: all .4s;
}
.style-list li:hover a{
	box-shadow: 0 0 1.125rem rgba(0, 86, 148, 0.4);
}

.style-list li div {
	overflow: hidden;
}
.style-list li p {
	margin: 0px;
	padding: 0 1.125rem;
	font-size: 0.875rem;
	line-height: 3em;
	color: #666;
	background: #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.style-list li:hover p {
	color: #fff;
	background: linear-gradient(to right, #005694 0%, #733a85 100%);
}

@media(max-width:1199.8px) {
.style-list li {
	width: 33.33%;
}
}

@media(max-width:991.8px) {
.style-list li {
	width: 50%;
}
}

@media(max-width:565.8px) {
.style-list {
	margin-left: -10px;
	margin-right: -10px;
}
.style-list li {
	width: 50%;
	padding: 10px;
}
}

/*客户*/
.logo-list {
	display: flex;
	flex-wrap: wrap;

}
.logo-list li {
	position: relative;
	z-index: 1;
	background: #fff;
	border: 1px solid #ebebeb;
	border-radius: 0.5rem;
}
.logo-list li .logo-img, .logo-list li .logo-name {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.logo-list li .logo-img {
	z-index: 2;
}
.logo-list li .logo-name {
	z-index: 3;
	background: rgba(228,20,24,0.9);
	opacity: 0;
	transition: all .4s;
}
.logo-list li:hover .logo-name {
	opacity: 1;
}
.logo-list li div img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.logo-list li .logo-name div {
	text-align: center;
	color: #fff;
}
.logo-list li .logo-name div p {
	position: relative;
	margin-bottom: 0px;
	font-weight: bold;
	font-size: 16px;
}

@media(min-width:1200px) {
.logo-list li {
	margin: 0.5%;
	width: 19%;
	height: 0px;
	padding-bottom: 10%;
}
}

@media (min-width:768px) and (max-width:1199.8px) {
.logo-list li {
	margin: 1%;
	width: 23%;
	padding-bottom: 12%;
}
}

@media(max-width:767.8px) {
.logo-list li {
	margin: 1%;
	width: 31.33%;
	height: 0px;
	padding-bottom: 18%;
}
}


/*产品列表*/
.product-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1%;
	margin-right: -1%;
	margin-top: -1%;
}
.product-list li {
	width: 25%;
	padding: 1%;
	transition: all .4s;
}
.product-list li a {
	position: relative;
	display: block;
	min-height: 100%;
	padding: 1rem;
	text-align: center;
	background: #fff;
	box-shadow: 0 0 1.5rem rgba(0,86,148,0);
	border-radius: 0.5rem;
	overflow: hidden;
	transition: all 0.4s;
}
.product-list li a:hover {
	box-shadow: 0 0 1.5rem rgba(0,86,148,0.25);
}
.product-list li a:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0px;
	left: 0%;
	width: 0%;
	height: 4px;
	background: linear-gradient(to right, #005694 0%, #733a85 100%);
	transition: all .4s;
}
.product-list li a:hover:after {
	content: "";
	width: 100%;
}
.product-list-img {
	margin-bottom: 1rem;
	overflow: hidden;
}
.product-list-name {
	margin-bottom: 0.5rem;
	font-size: 1.125rem;
	font-weight: bold;
	color: #005694;
}
.product-list pre {
	width: 90%;
	margin: 0 auto 1rem;
	font-size: 0.875rem;
	line-height: 1.5em;
	color: #666;
	max-height: 4.5em;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}


@media(max-width:1199.8px) {
.product-list li {
	width: 33.33%;
	padding: 2%;
}
}

@media(max-width:767.8px) {
.product-list li {
	width: 50%;
	padding: 2%;
}
}

@media(max-width:565.8px) {
.product-list li {
	width: 100%;
	padding: 3% 0;
}
}
/*产品详情*/
.product-box {
	display: flex;
	flex-wrap: wrap;
	padding: 5%;
	background: #fff;
}
.product-info {
	width: 35%;
	margin-right: 5%;
	padding-right: 5%;
	border-right: 1px solid #ebebeb;
}
.product-info h1 {
	display: inline-block;
	margin: 0px 0 1rem;
	font-size: 1.5rem;
	line-height: 1.2em;
	font-weight: bold;
	color: #333;
}
.product-info p {
	margin-bottom: 8px;
	font-size: 0.9375rem;
	line-height: 1.5em;
	color: #666;
}
.product-info p .colour {
	font-size: 1.75rem;
	line-height: 1.25em;
	font-weight: bold;
}
.product-info hr {
	margin: 40px 0;
	border-top: 1px solid #ebebeb;
}
.product-info .product-btn {
	margin-top: 20px;
}
.product-info .product-btn a {
	display: inline-block;;
	font-size: 0.9375rem;
	line-height: 2.5em;
	font-weight: bold;
	color: #fff;
	padding: 0 20px;
	margin: 2px 0;
	text-align: center;
	background: #005694;
	border-radius: 0.25rem;
	transition: all .4s;
}
.product-info .product-btn a:hover {
	color: #fff;
	background: #733a85;
}
.product-info a.product-btn span {
	display: inline-block;
	margin-right: 8px;
	font-size: 1.5rem;
	font-weight: normal;
	color: inherit;
	vertical-align: top;
}
.product-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%;
}
#product {
	width: 100%;
}
#product .item {
	text-align: center;
}
#product .item img {
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 50vh;
}
#product .owl-nav {
	margin: 0;
	padding: 0px;
}
#product.owl1 .owl-nav [class*=owl-]{
	position: absolute;
}
#product .owl-nav [class*=owl-].owl-prev {
	left: 20px;
}
#product .owl-nav [class*=owl-].owl-next {
	right: 20px;
}
#product .owl-nav [class*=owl-] i {
	display: inline-block;
	font-size: 28px;
	height: inherit;
	line-height: inherit;
	color: #fff;
	background: #005694;
	transition: all .4s;
}
#product .owl-nav [class*=owl-]:hover i {
	color: #fff;
	background: #733a85;
}

#product .owl-nav #counter {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 1;
	font-weight: bold;
	font-size: 1.125rem;
	color: #999;
}
#product .owl-nav #counter span {
	font-size: 24px;
	color: #005694;
}
#product .owl-dots {
	width: 100%;
	padding-left: 100px;
	text-align: left;
}
#product .owl-dot {
	display: inline-block;
	border: 1px solid #ebebeb;
}
#product .owl-dot.active {
	border: 1px solid #005694;
}
#product .owl-dots img {
	width: auto;
	height: auto;
	max-height: 80px;
}

.product-details{
	position: relative;
	margin-top: 3rem;
	padding: 5%;
	background: #fff;
	font-size: 0.9375rem;
	line-height: 1.5rem;
	color: #666;
}
.product-details p{
	margin-bottom: 0.5rem;
}

/**/
.p-d-adv{
	display: flex;
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.p-d-adv li{
	width: 25%;
	padding:0 1.5rem;
	border-left: 1px solid #ebebeb;
}
.p-d-adv li:first-child{
	border-left:none;
}
.p-d-adv li p{
	font-size: 0.875rem;
}
/*产品翻页*/
.product-page{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3rem;
}
.product-page li{
	width: 49%;
}
.product-page li a{
	display: block;
	padding:1.5rem;
	min-height: 100%;
	font-size: 0.875rem;
	background: #fff;
	color: #005694;
	transition: all 0.4s;
}
.product-page li a:hover{
	background: #005694 ;
	color: #fff;
}
.product-page li a:not([href]):not([tabindex]),
.product-page li a:not([href]):not([tabindex]):hover{
	color: #999;
	background: #fff;
}
.product-page li a span{
	float: left;
	margin-right: 1rem;
	display: inline-block;
	width: 2.5em;
	height: 2.5em;
	line-height: 2.5em;
	font-size:0.9375rem;
	color: #fff;
	text-align: center;
	background: #005694;
	border-radius: 50%;
	transition: all 0.4s;
}
.product-page li a:hover span{
	color: #005694;
	background: #f2f2f2;
}
.product-page li a:not([href]):not([tabindex]) span,
.product-page li a:not([href]):not([tabindex]):hover span{
	color: #666;
	background: #fff;
}
@media screen and (max-width:991.8px) {
.product-box {
	padding: 40px;
	border-top: 5px;
}
.product-info h1 {
	font-size: 24px;
}
.product-info p .red {
	font-size: 28px;
}
.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: 2vh 0% 6vh;
	margin: 0px;
	border-right: none;
}
}

@media screen and (max-width:767.8px) {
.product-box {
	padding: 20px;
}
#product {
	position: relative;
	width: 100%;
	padding: 6% 0;
}
#product .owl-nav #counter {
	position: static;
	bottom: auto;
	left: auto;
}
#product .owl-dots {
	width: 100%;
	padding-left: 0;
	text-align: center;
}
#product .owl-dots img {
	width: auto;
	height: auto;
	max-height: 48px;
}
#product.owl1 .owl-nav [class*=owl-] {
	width: 48px;
	height: 48px;
	line-height: 48px;
}
#product .owl-nav [class*=owl-].owl-prev {
	left: -20px;
}
#product .owl-nav [class*=owl-].owl-next {
	right: -20px;
}
	
.product-page li{
	width:100%;
	margin: 1% 0;
}
	
}
/*技术*/
.technology {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.technology-img {
	width: 43%;
}
.technology-info {
	width: 52%;
}
.technology-info .technology-title {
	margin: 20px 0;
	font-size: 24px;
	font-weight: bold;
}
.technology-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 8vh;
}
.technology-list li {
	width: 32%;
	margin-left: 2%;
	margin-bottom: 2%;
	background: #fff;
}
.technology-list li:first-child, .technology-list li:nth-child(3n+1) {
	margin-left: 0%;
}
.technology-list li img {
	width: 100%;
}
.technology-list li .info {
	padding: 20px;
}
.technology-list li .info strong {
	display: block;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

@media screen and (max-width:767.8px) {
.technology-img {
	width: 100%;
	margin-bottom: 10px;
}
.technology-info {
	width: 100%;
}
.technology-list li {
	width: 100%;
	margin-left: 0%;
	margin-bottom: 20px;
}
}


/*服务*/
.service1{
	display: flex;
	flex-wrap: wrap;
}
.service-info{
	display: flex;
	justify-content: center;
	width: 50%;
	padding:10vh 6vw;
	font-size: 0.9375rem;
	line-height: 1.75em;
	color: #666;
}
.service-title{
	display: inline-block;
	font-size: 1.5rem;
	line-height: 1.25em;
	margin-bottom: 2rem;
	font-weight: bold;
	color: #005694;
}
.service-info p{margin-bottom: 0.5rem;}
.service-info p:before{ content:""; display: inline-block; margin-right: 0.75rem; width: 7px;height: 7px;background-color:#005694; border-radius: 50%;}
.service-img{
	width: 50%;
	padding:10vh 6vw;background-position: center;
	background-size: cover;
}

.service2{
	padding:2rem 5% ;
	border-left: 3px solid #005694;
	background: #f8f9fd;
}
.service2 .service-title{
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: #005694;
}
.service2 p{
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.5em;
	color: #666;
}

.service3{
	padding:0 20%;
	font-size: 0.9375rem;
	line-height: 1.75em;
	color: #666;
}
.service3 p{
	margin-bottom: 0.5rem;
}
.service3 p:before{ content:""; display: inline-block; margin-right: 0.75rem; width: 7px;height: 7px;background-color:#005694; border-radius: 50%;}



.service-repair{
	display: flex;
	flex-wrap: wrap;
}
.service-repair li{
	width: 20%;
	padding: 1%;
}
.service-repair li .repair-title{
	padding:0 1rem;
	font-size: 1.125rem;
	line-height: 2.25em;
	font-weight: bold;
	color: #fff;
	background: #005694;
	border-radius: 0.5rem 0.5rem 0 0;
}
.service-repair li .repair-product{
	height: calc(100% - 2.53125rem);
	padding: 1rem;
	border: 1px solid #ebebeb;
	border-top: none;
	border-radius: 0 0 0.5rem 0.5rem;
	background: #fff;
}


.repair-product a{
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.25em;
	color: #666;
	transition: all 0.4s;
}
.repair-product a:hover{
	color: #005694;
	text-decoration:underline;
}
.repair-product a:before{ content:""; display: inline-block; margin-right: 0.5rem; width: 7px;height: 7px; line-height: inherit; vertical-align: middle;background-color:#005694; border-radius: 50%;}

#service-step .owl-stage{
	display: flex;
}


#service-step{
	margin-top: 2.5rem;
	counter-reset: compteListe;
}
#service-step .itme{
	position: relative;
	min-height: 100%;
	padding:2.5rem 1.5rem;
	font-size: 0.875rem;
	line-height: 1.75em;
	color: #666;
	text-align: center;
	background: rgba(248,249,253,1);
	border-radius: 0.5rem;
	transition: all 0.4s;
}
#service-step .itme:hover{
	background: rgba(248,249,253,0);
	color: #fff;
}
#service-step .itme:after{ content:""; position: absolute;  z-index:-1;top: 0px;left: 0%;width: 100%;height: 100%; background: linear-gradient(-45deg, #005694 0%, #733a85 100%);border-radius: 0.6rem;}
#service-step .itme{
	position: relative;
	background: #f8f9fd;
	border-radius: 0.5rem;
}

#service-step .itme span{
	display: inline-block;
	font-size: 3rem;
	color: #005694;
	transition: all 0.4s;
}
.step-title{
	margin: 1rem 0;
	font-size: 1.125rem;
	font-weight: bold;
	color: #005694;transition: all 0.4s;
}
.step-number{
	margin-top: 2rem;
	position: relative;
	font-size: 2.5rem;
	color: rgba(0,0,0,0.05);
	font-weight: bold;
}
#service-step .itme:hover .step-number{color: rgba(255,255,255,0.1);}
.step-number:after{ counter-increment: compteListe 1;content: "0" counter(compteListe); font-size: 1.25rem; color: #005694;  position: absolute;  z-index:2;top: 50%;left: 50%;transform:translate(-50%,-50%);transition:all .4s;}


#service-step .itme p{height:5.25em;  display: block; display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;}
#service-step .itme:hover .step-title,
#service-step .itme:hover span,
#service-step .itme:hover .step-number:after{
	color: #fff;
}

#service-step .owl-prev{
	left: -4rem;
}
#service-step .owl-next{
	right: -4rem;
}
@media screen and (max-width:1199.8px) {
	.service-repair li{
		width: 25%;
	}
}
@media screen and (max-width:991.8px) {
	.service-info{
		order: 1;
		width: 100%;
		justify-content: flex-start;
		padding: 3rem 5% 0;
	}
	.service-img{
		width: 100%;
		height: 0px;
		padding-bottom: 50%;
	}
	.service-repair li{
		width:33.33%;
	}
	
}
@media screen and (max-width:768.8px) {
	.service-repair li{
		width:50%;
	}
	
}
@media screen and (max-width:575.8px) {
	.service-repair li{
		width:100%;
	}
	
}






/*服务领域*/
.area-list{
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 5px;
}
.area-list li{
	width: 33.33%;
	min-height: 260px;
	padding: 1rem;
}
.area-list li a{
	position: relative;
	z-index: 1;
	display: block;
	padding: 40px;
	height: 100%;
	background: #fff;
	border: 1px solid #ebebeb;
	border-radius: 1rem;
	overflow: hidden;
	transition:all .4s;    
}
.area-list li a:hover{
	transition-delay: 0.4s;
	background: linear-gradient(to right, #005694 0%, #733a85 100%);
}
.area-list-text{
	position: relative;
	z-index: 3;
	width: 60%;
}
.area-list li a .area-list-text .area-title{
	margin-bottom: 0.75rem;
	font-size: 1rem;
	line-height: 1.5em;
	font-weight: bold;
	color: #333;
	text-transform:Uppercase;
	transition:all .4s;  
}
.area-list li a .area-list-text p{
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5em;
	color: #666;
}
.area-list li a .area-list-text pre{
	font-size: 0.875rem;
	line-height: 1.5em;
	color: #666;
}
.area-list li a:hover .area-list-text .area-title,.area-list li a:hover .area-list-text p,.area-list li a:hover .area-list-text pre{
	color: #fff;
}
.area-list-img{
	position: absolute;
	z-index: 2;
	right: 25px;
	bottom: 25px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-position: center;
	background-size: cover;
	transition:all .4s;    
}
.area-list li a:hover .area-list-img{
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius:0;
	opacity: 0.6;
	transition:all .4s;    
}
@media(max-width:768px) {
.area-list li{
	width: 100%;
}
.area-list li a{
	padding: 20px;
	background: #000;
}
.area-list-text{
	width: 90%;
}
.area-list li a .area-list-text .area-title,.area-list li a .area-list-text p,.area-list li a .area-list-text pre{
	color: #fff;
}

.area-list li a .area-list-img{
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius:0;
	opacity: 0.6;
	transition:all .4s;    
}
}

/*新闻列表*/
.news-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
.news-list li {
	width: 33.33%;
	padding: 1.125rem;
}
a.news-img {
	display: block;
	overflow: hidden;
}
.news-list li div {
	position: relative;
	display: block;
	padding: 1.5rem;
	background: #fff;
	overflow: hidden;
	border-radius: 0.5rem;
	transition: all .4s;
}
.news-list li div:hover {
	box-shadow: 0 0 1.125rem rgba(0,68,148,0.2);
}
.news-list li div:after{ content:""; position: absolute;  z-index:1;bottom: 0px;left: 0%;width: 0%;height: 3px;background:linear-gradient(to right, #005694 0%, #733a85 100%);;transition:all .4s;}
.news-list li div:hover:after{width: 100%;}
a.news-list-title {
	margin-top: 20px;
	display: block;
	font-size: 1.125rem;
	line-height: 1.5em;
	color: #333;
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.news-list li div:hover a.news-list-title{
	color: #005694;
}
.news-list li div:hover a.news-list-title:hover {
	color: #733a85;
}
.news-list span {
	font-size: 12px;
	line-height: 1.25em;
	color: #ccc;
}
.news-list pre {
	margin: 10px 0 25px;
	font-size: 0.9375rem;
	line-height: 1.5em;
	height: 4.5em;
	color: #666;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media(max-width:1199.98px) {
.news-list li {
	width: 33.33%;
}
}

@media(max-width:991.98px) {
.news-list li {
	width: 50%;
}
.news-list li div {
	padding: 20px;
}
}

@media(max-width:767.8px) {
.news-list li {
	width: 100%;
}
}
/*文章详情*/
.info-box {
	max-width: 1200px;
	margin: auto;
	background: #fff;
}
.news-title {
	padding: 5% 5% 1.5rem;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.news-title h1 {
	margin: 0px 0px 5px;
	font-size: 1.5rem;
	line-height: 1.25em;
	font-weight: bold;
	color: #333;
}
.news-title span {
	font-size: 0.875rem;
	line-height: 1.25em;
	color: #999;
	vertical-align: bottom;
}
.news-title a.news-back {
	float: right;
	display: inline-block;
	padding: 0 1.5em;
	font-size: 0.875rem;
	line-height: 2rem;
	color: #666;
	background: #f7f7f7;
	transition: all .4s;
}
.news-title a.news-back:hover {
	color: #fff;
	background: #005694;
}
.news-content {
	padding: 5%;
	font-size: 0.9375rem;
	line-height: 1.5rem;
	color: #666;
}
.news-page {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #ebebeb;
}
.news-page em {
	display: inline-block;
	width: 3.5rem;
	height: 1em;
	line-height: 1em;
	font-size: 1.75rem;
	color: #333;
}
.news-page h4 {
	display: block;
	width: 100%;
	margin: 10px 0 1.125rem;
	font-size: 1rem;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
.news-page a:hover h4, .news-page a:hover em {
	color: #fff;
}
.news-page a.nomore:hover h4, .news-page a.nomore:hover em {
	color: #fff;
}
.news-page span {
	display: block;
	width: 100%;
	font-size: 0.875rem;
	line-height: 1em;
	height: 2em;
	color: #ccc;
	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;
}
.news-page a {
	display: block;
	width: 50%;
	padding: 2rem 5rem;
	transition: all .4s;
}
.news-page a:hover {
	background: #005694;
}
}

@media(max-width:991.8px) {
.news-page a {
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
}
.news-page em {
	display: none;
}
.news-page h4 {
	font-size: 16px;
}
.news-page span {
	font-size: 1rem;
}
.news-page a:hover h4, .news-page a:hover em {
	color: #005694;
}
.news-page a.nomore:hover h4, .news-page a.nomore:hover em {
	color: #005694;
}
}
/*单页标题*/
.inside-title {
	margin-top: 6vh;
	text-align: center;
	font-size: 36px;
	color: #333;
	font-weight: bold;
}

@media(max-width:991.8px) {
.inside-title {
	margin-top: 6vh;
	text-align: center;
	font-size: 24px;
	color: #333;
	font-weight: bold;
}
}
/*联系方式*/
.contact-box {
	background-image: url(../images/contact-footer.png);
	background-size: 55%;
	background-position: bottom -50vw left -8vw;
	background-repeat: no-repeat;
}
.contact-box>div {
	padding-left: 1.125rem;
	padding-right: 1.125rem;
	margin: auto;
}
.contact>div {
}


@media(max-width:767.8px) {
.contact-box {
	background-image: url(../images/contact-footer.png);
	background-size: 90%;
	background-position: bottom -65vw left -8vw;
	background-repeat: no-repeat;
}
}
.contact>div {
	font-size: 0.9375rem;
	line-height: 1.5em;
	color: #666;
}
.contact>div p.title-en-hv {
	margin-bottom: 2rem;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
}
.contact>div p {
	margin-bottom: 1.125rem;
}
.contact>div span.icon {
	display: inline-block;
	margin-right: 5px;
	font-size: 1.25rem;
	line-height: inherit;
	color: #005694;
}
.contact .contact-info {
	padding-top: 20px;
}
.contact .contact-info a {
	line-height: 1.8em;
	color: #333;
	text-decoration: underline;
}
.contact .contact-info a:hover {
	color: #005694;
}
.contact .contact-feedback {
	padding-top: 20px;
}
.feedback input {
	outline: none;
	margin-bottom: 0.75rem;
	width: 100%;
	padding: 0px 1.125rem;
	font-size: 0.9375rem;
	line-height: 3em;
	color: #666;
	border: none;
	background: #f7f8fa;
	transition: all .4s;
}
.form-control {
	border: 1px solid #ebebeb;
	font-size: 0.9375rem;
	line-height: 2em;
	height: 2em;
	width: 100%;
	padding: 0px 1.125rem;
	margin: 10px 0px;
	border-radius: none;
	box-shadow: 0;
}
.feedback textarea {
	border: none;
	font-size: 0.9375rem;
	line-height: 1.5em;
	width: 100%;
	height: 160px;
	padding: 1.125rem;
	margin: 10px 0px;
	outline: none;
	box-shadow: none;
	overflow-x: hidden;
	background: #f7f8fa;
}
.feedback input:focus, .feedback textarea:focus {
}
.feedback .submit {
	display: inline-block;
	padding: 0px 25px;
	background: #005694;
	font-size: 0.9375rem;
	line-height: 2.5em;
	color: #fff;
	margin: 1.125rem 0px;
	transition: all .4s;
}
.feedback .submit:hover {
	background: #733a85;
}
.feedback .submit span {
	display: inline-block;
	font-size: 20px;
	line-height: inherit;
	color: #fff!important;
	vertical-align: bottom;
}

@media screen and (max-width:767.8px) {
.contact {
	display: flex;
	flex-wrap: wrap;
}
.contact .contact-info {
	padding: 5vh 0 8vh;
	width: 100%;
}
.contact .contact-feedback {
	width: 100%;
	padding: 5vh 0 0;
}
}
/*地图*/
#map-canvas {
	height: 400px;
	width: 100%;
	padding: 0px;
}
.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: 1rem;
	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 1.125rem;
	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;
}
/*地图*/

/*网站地图*/
.sitemap-box {
	padding: 1% 5% 5%;
}
.sitemap-list li {
	padding: 1.125rem 0 1.5rem;
	border-bottom: 1px dashed #ccc;
}
.sitemap-list div a {
	font-size: 1.5rem;
	line-height: 2.25em;
	color: #005694;
	text-transform: Uppercase;
	transition: all .4s;
}
.sitemap-list a {
	display: inline-block;
	margin-right: 30px;
	font-size: 16px;
	line-height: 1.75em;
	color: #666;
	transition: all .4s;
}
.sitemap-list a:hover {
	color: #005694;
	text-decoration: underline;
}

@media screen and (max-width:767.8px) {
.sitemap-box {
	padding: 1px 30px 50px;
}
}
/*隐私政策*/
.privacy {
	padding: 1% 5% 5%;
	font-size: 1.125rem;
	line-height: 1.75em;
	color: #666;
}
/*搜索界面*/
.inside-search {
	display: block;
	font-size: 0px;
}
.inside-search form {
	text-align: center;
}
.inside-search input {
	display: inline-block;
	width: 400px;
	max-width: calc(100% - 60px);
	padding: 0 1.125rem;
	font-size: 1.125rem;
	line-height: 42px;
	border: 1px solid #ebebeb;
	vertical-align: bottom;
}
.inside-search input:last-child {
	margin-left: -1px;
	width: 60px;
	background-image: url(../images/search.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	background-color: #25263b;
	border: 1px solid #25263b;
}
.submit-nav {
	margin: 5vh 0 4vh;
}
.submit-nav ul {
	padding-bottom: 1.125rem;
	margin-bottom: 5px;
	border-bottom: 1px solid #ebebeb;
}
.submit-nav li {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin-right: 20px;
}
.submit-nav li.on:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -16px;
	left: 0%;
	width: 100%;
	height: 1px;
	background-color: #333;
}
.submit-nav li a {
	font-size: 1.125rem;
	color: #999;
}
.submit-nav li.on a {
	font-size: 1.125rem;
	color: #333;
}
.submit-nav span {
	font-size: 1.125rem;
	color: #999;
}
.search-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1%;
	margin-right: -1%;
}
.search-list li {
	padding: 1%;
	width: 25%;
}
.search-list li div {
	border: 1px solid #ebebeb;
	overflow: hidden;
}
.search-list li p {
	margin: 1em 0 0.5em;
	font-size: 1.125rem;
	line-height: 1.25em;
	color: #333;
	transition: all .4s;
}
.search-list li a:hover p {
	color: #005694;
}

@media screen and (max-width:991.8px) {
.search-list {
	margin-left: -1.5%;
	margin-right: -1.5%;
}
.search-list li {
	padding: 1.5%;
	width: 33.33%;
}
.search-list li p {
	font-size: 1.125rem;
	line-height: 1.25em;
	color: #333;
}
}
/*3D模型*/
model-viewer {
	width: 60%;
	height: 80%;
	position: relative;
	z-index: 1;
}
#lazy-load-poster {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
#lazy-load .userInput canvas {
	outline: none;
}
#button-load {
	background-color: #e60012;
	color: white;
	cursor: pointer;
	border-radius: 6px;
	display: inline-block;
	padding: 10px 18px 9px 18px;
	font-weight: 500;
	box-shadow: 0 0 8px rgba(0,0,0,.2), 0 0 4px rgba(0,0,0,.25);
	position: absolute;
	right: 0%;
	bottom: 5%;
	z-index: 100;
	transition: all .4s;
}
#button-load:hover, #button-load:focus {
	background: #333;
	transition: all .4s;
}
