﻿@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;
	letter-spacing: 0.5px;
	font-size: 16px;
}
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: #eb3d00;
}
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;
}
.blue {
	color: #0089e1;
}
.green {
	color: #eb3d00;
}
.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: 15px;
	line-height: 1.5em;
	padding: 8px 15px;
	border-left: 1px solid #e6e6e6;
	border-top: 1px solid #e6e6e6;
}
table td p {
	margin: 0px;
}
/*boostrap遮罩层导致页面抖动*/
.modal-open {
	overflow: scroll !important;
}

/*页面内容宽度*/
@media(min-width:576px) {
.container {
	width:92%;
	max-width:92%;
}
}
@media(min-width:768px) {
.container {
	width:92%;
	max-width:92%;
}
}
@media(min-width:992px) {
.container {
	width:92%;
	max-width:92%;
}
}
@media(min-width:1440px) {
.container {
	width:92%;
	max-width:92%;
}
}
@media(min-width:1600px) {
.container {
	max-width:82%;
}
}

/*图片放大*/
.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 {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	background: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
/*头部标志*/
.head-conent {
	display: flex;
	width: 100%;
	height: 110px;
	padding-left: 5%;
	padding-right: 120px;
}
.navbar-brand {
	height: 100%;
	display: flex;
	align-items: center;
	white-space: normal;
}
.navbar-brand img {
	height: 70px;
}
.navbar-brand .slogan {
	position: relative;
	padding-left: 20px;
}
.navbar-brand .slogan img {
	max-width: none;
}
.navbar-brand .slogan span{
	display: inline-block;
	font-size: 1.125rem; 
	line-height: 1.25em;
	letter-spacing: 0;
	color: #333;
	font-weight: bold;
}
/*头部导航*/
.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: 14px;
	line-height: 38px;
}
#head .navbar-nav li a {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	padding: 0 20px;
	color: #333;
	font-weight: bold;
	text-align: center;
	white-space:nowrap;
	transition: all .4s;
}
#head .navbar-nav li:hover a {
	color: #eb3d00;
}
#head .navbar-nav li.on>a {
	text-transform: Uppercase;
	color: #0089e1;
}
#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 #0089e1;
	transition: box-shadow .4s;
}
#head .navbar-nav li:hover .dropdown-menu {
	box-shadow: 0 0 15px rgba(29,32,136,0.2);
}
#head .navbar-nav li .dropdown-menu a {
	display: inline-block;
	width: 100%;
	font-size: 15px;
	line-height: 50px;
	color: #333;
	text-align: left;
	font-weight: normal;
	white-space: nowrap;
	border-bottom: 1px solid #ebebeb;
}
#head .navbar-nav li .dropdown-menu a:hover {
	color: #fff;
	background: #0089e1;
}
#head .navbar-nav li svg {
    display: inline-block;
    margin-right: 6px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

@media(max-width:1599.8px) {
.head-conent {
    padding-right: 100px;
}
#head .navbar-nav li {
	font-size: 13px;
}
#head .navbar-nav li a {
	padding: 0 15px;
}	
}
@media(max-width:1399.8px) {
.navbar-brand .slogan span {
    font-size: 16px;
}
}
@media(max-width:1299.8px) {
#head .navbar-nav {
	display: none;
}
}
@media(max-width:1199.8px) {

.head-conent {
	height: 90px;
	width: 100%;
	max-width: 100%;
	padding-right: 110px;
}
.navbar-brand img {
	height: 60px;
}
.navbar-brand .slogan {
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
}
.navbar-brand .slogan span{
	font-size:18px; 
	line-height: 20px;
}
.navbar-brand .slogan .logo-slogan {
	height: 14px;
}
}


@media screen and ( max-width:991.8px) {
.head-conent {
	height: 70px;
}
.navbar-expand-lg>.head-conent {
	padding-right: 80px;
}
.navbar-brand img {
	height: 50px;
}
.navbar-brand .slogan span{
	font-size:14px; 
	line-height: 16px;
}

.navbar-expand-lg .navbar-collapse {
	display: none;
}
}

@media screen and ( max-width:767.8px) {
.head-conent {
	height: 56px;
}
.navbar-brand img {
	height: 40px;
}
.navbar-brand .slogan {
	padding-left: 10px;
	padding-right: 0px;
}
.navbar-brand .slogan .logo-name {
	height: 20px;
}
.navbar-expand-lg>.head-conent {
	padding-right: 56px;
}
}

@media( max-width:565.8px){
}

/*--手机菜单--*/
/*头部菜单按钮*/
.menu-button {
	display: block;
	position: fixed;
	z-index: 1039;
	top: 0;
	right: 0px;
	width: 110px;
	height: 110px;
	border: none;
	padding: 0;
	font-size: 0;
	background: #0089e1;
	transition: all 0.3s ease-in-out;
}
.menu-open .menu-button {
	color: #333;
	background: #eb3d00;
}

@media (max-width: 1200px) {
.menu-button {
	width: 90px;
	height: 90px;
}
}

@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: #eb3d00;
	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 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-left: 10%;
	padding-right: 30px;
}
.sub-content .sub-nav li {
	width: 100%;
}
.sub-content .sub-nav li a {
	display: block;
	padding: 0.5em 0;
	font-size: 18px;
	line-height: 1em;
	color: #fff;
	transition: all .4s;
}
.sub-content .sub-nav li a:hover {
	color: #eb3d00;
}
.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: 18px;
	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: 18px;
	line-height:7vh;
}
.sub-content {
	display: flex;
	width: 100%;
	left: -100%;
	padding: 75px 15px 20px;
	transition: all .6s ease;
	z-index: 2;
}
.sub-content.sub-content-open {
	width: 100%;
	justify-content: center;
	left: 0%;
	padding: 75px 15px;
	overflow: auto;
}
.sub-content .sub-menu {
	display: flex;
	align-items: 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:#eb3d00;
}
.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: 18px;
	color: #fff;
}
.menu-content a {
	color: inherit;
}
.menu-content a:hover {
	color: #eb3d00;
}
.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;
}

.language{
    margin-top: 10vh;
}
.language a{
    margin-right: 20px;
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
}
.language svg{
    display: inline-block;
    margin-right: 6px;
    width: 24px;
    height: 24px;
    vertical-align: bottom;
}
/*-- 手机菜单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.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;
}
}


/* .banner视频背景 */
.video-back {
	position: relative;
	z-index: 2;
	width: 100%;
	font-size: 18px;
	line-height: 2em;
	color: #fff;
}
.video-back:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0%;
	width: 100%;
	height: 100%;
	background: url(../video/bg.png) repeat;
}
.vidbacking-active-body-back {
	position: fixed;
	z-index: -100;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	background-size: cover;
	overflow: hidden;
	opacity: 1;
	transition: 2s opacity;
	transform: translateX(-50%) translateY(-50%);
}
.vidbacking-active-block-back {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	height: auto;
	width: auto;
	z-index: -100;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.vidbacking {
	display: none;
}
.vidmask-body-back {
	background: url(bg.jpg) repeat;
	opacity: 0.4;
	min-height: 100%;
	min-width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -50;
	display: block;
}
.vidmask-block-back {
	background: url(bg.jpg) repeat;
	opacity: 1;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: auto;
	width: auto;
	z-index: -50;
	display: block;
}
.banner-text {
	position: absolute;
	z-index: 1;
	left: 9%;
	right: 9%;
	top: 0;
	display: flex;
	align-items: flex-end;
	height: 100%;
	
}
.banner-text>div{
	margin-bottom: 18vh;
	max-width: 500px;
}
.banner-text strong {
	margin: 30px 0px 20px;
	font-size: 60px;
	line-height: 1.25em;
}
.banner-text pre {
	font-size: 24px;
	line-height: 1.5em;
	color: #fff;
	font-weight: bold;
}
.banner-text a {
	margin-top: 6vh;
	display: inline-block;
	padding: 0 2.5em;
	font-size: 18px;
	line-height: 3em;
	color: #fff;
	border:1px solid #fff;
	transition:all .4s;  
}

@media (max-width: 1199.8px){
.banner-text>div{
	margin-top: 50px;
	max-width: 500px;
}
.banner-text strong {
	margin: 30px 0px 20px;
	font-size: 56px;
}
.banner-text pre {
	font-size: 24px;
	line-height: 1.5em;
	color: #fff;
	font-weight: bold;
}
.banner-text a {
	font-size: 13px;
}
}

/*首页视频*/
/* .banner背景 */


/*首页标题*/
.index-title {
	position: relative;
	z-index: 1;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 5vh;
}
.index-title p {
	position: relative;
	z-index: 1;
	margin-top: 8px;
	margin-bottom: 20px;
	font-size: 36px;
	line-height: 1em;
	font-weight: bold;
	text-transform: Uppercase;
	color: #333;
	white-space: nowrap;
}
.index-title p:after{ content:"";display: inline-block;width:6px;height:6px;margin-left: 8px; background-color:#0089e1;}
.index-title span {
	display: block;
	font-size: 16px;
	line-height: 1.2em;
	color: #666;
}
.index-title.index-title-w p {
	color: #fff;
}
.index-title.index-title-w span {
	font-size: 15px;
	color: #ccc;
}

/*按钮*/
.btn{
	display: inline-block;
	padding: 0 2.5em;
	font-size: 16px;
	line-height: 3em;
	color: #666;
	border-radius: 6px;
	background: #f7f7f7;
	transition:all .4s;
}
.btn:hover{
	color: #fff;
	background: #0089e1;
}

/*首页产品*/
.index-p{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 6vh;
}
.index-p li{
	width: 16.66%;
	padding: 10px;
}
.index-p li a{
	position: relative;
	display: block;
}
.index-p li a div{
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,137,225,0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	transition:all .4s;    
	opacity: 0;
}
.index-p li a:hover div{
	opacity: 1;
}
.index-p li a div span{
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	transition:all .4s; 
	transition-delay: 0s;
	transform:translate(0%,20px);
	opacity: 0;
}
.index-p li a:hover div span{
	transition-delay: 0.25s;
	transform:translate(0%,0px);
	opacity: 1;
}
@media screen and (max-width: 1199.8px) {
.index-p li{
	width: 25%;
	padding: 6px;
}
}
@media screen and (max-width: 767.8px) {
.index-p li{
	width: 33.33%;
}
}
@media screen and (max-width: 565.8px) {
	
}


/*首页制造*/
#index-m .owl-stage{
	display: flex;
}
#index-m .item{
	padding:10%;
	min-height: 100%;
	background: #f7f7f7;
}
#index-m .item .index-m-icon{
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
}
#index-m .item .index-m-icon:after{ content:""; position: absolute;  z-index:-1;bottom: 0px;left: 0%;width: 0%;height: 0%;padding: 27px; background-color:#fff;transition:all .4s;}
#index-m .item .index-m-icon span{
	display: inline-block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 66px;
	color: #0089e1;
}
#index-m .item .index-m-title{
	font-size: 24px;
	font-weight: bold;
	color: #333;
}
#index-m .item .index-m-title:after{ content:""; display: block; width: 20px;height: 3px;margin: 15px 0 25px; background-color:#999;}
#index-m .item pre{ font-size: 16px; line-height: 1.75em; color: #666;}


/*产品*/
#index-p .item {
	background: #f7f7f7;
	border-radius: 0 20px 0 20px;
	transition: all .4s;
}
#index-p .item:hover {
	background: #eb3d00;
}
#index-p .item .index-p-img {
	padding: 20px;
	overflow: hidden;
	transition: all .4s;
}
#index-p .item .index-p-txt {
	padding: 5px 18px 20px;
}
#index-p .item .index-p-txt p {
	display: block;
	margin-bottom: 5px;
	font-size: 17px;
	line-height: 20px;
	max-height: 40px;
	color: #333;
	font-weight: bold;
	text-transform: Uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
#index-p .item:hover .index-p-txt p {
	color: #fff;
}
#index-p .item .index-p-txt span {
	font-size: 15px;
	color: #999;
	transition: all .4s;
}
#index-p .item:hover .index-p-txt span {
	color: #ebebeb;
}
#index-p .owl-nav [class*=owl-] {
	position: absolute;
	transform: translate(0%, -50%);
}
#index-p .owl-nav [class*=owl-].owl-prev {
	top: 50%;
	left: -80px;
}
#index-p .owl-nav [class*=owl-].owl-next {
	top: 50%;
	right: -80px;
}
#index-p .owl-dots {
	text-align: right;
}

@media screen and (max-width:1439.8px) {
#index-p{
		overflow: hidden;
}
#index-p .owl-nav{
	float: right;
	width: auto;
	margin-top: 25px;
}
#index-p .owl-nav [class*=owl-] {
	position: static;
	box-shadow: none;
	top: auto!important;
	bottom: auto!important;
	left: auto!important;
	right: auto!important;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin: 0 10px !important;
	transform: translate(0%, 0%);
}

#index-p .owl-dots{
	margin-top: 10px;
	margin-right: 20px;
	float: right;
}

}
@media screen and (max-width:565.8px) {
#index-p .owl-dots{
	display: none;
}	
}

/*按钮  */
a.btn-more {
	margin-top: 25px;
	display: inline-block;
	padding: 0 28px;
	font-size: 15px;
	line-height: 38px;
	color: #999;
	border: 1px solid #ebebeb;
	transition: all .4s;
}
a.btn-more:hover {
	color: #fff;
	background: #eb3d00;
	border: 1px solid #eb3d00;
}


/*首页关于*/
.index-a {
	background: url(../images/word-map.png) center no-repeat,#f4f6fc;
}
.index-a>div {
	display: flex;
	flex-wrap: wrap;
}
.index-a-info{
	width: 58%;
	padding-left: 10%;
}
.index-a-info a{
	display: inline-block;
	padding: 0 22px;
	margin-top: 4vh;
	font-size: 15px;
	line-height: 36px;
	color: #fff;
	border-radius: 0 12px 0 12px;
	background: #0089e1;
	transition:all .4s;
}
.index-a-info a:hover{
	background: #eb3d00;
}
.index-a-img{
	width: 42%;
	display: flex;
	align-items: center;
}
.index-a-img div{
	position: relative;
	z-index: 1;
}


@media(max-width:991.8px) {
.index-a-info{
	width: 100%;
	padding-left: 0%;
	margin-top: 8vh;
}
.index-a-img{
	width: 100%;
}
}
@media(max-width:565.8px) {
.index-a-video a.video-link {
	box-shadow: 10px 10px 0px #eb3d00;
}
}
/*首页设备*/
.index-e{
	display: flex;
	padding-top: 15vh;
	padding-bottom: 18vh;
	padding-left: 9%;
	position: relative;
	overflow: hidden;
}
.index-e:after{ 
	content:"plant and equipment"; 
	position: absolute;  
	z-index:-1;
	bottom: -2%;
	left: 50%;
	opacity: 0.05;
	display: inline-block;
	font-weight: bold;
	font-size: 12rem;
	line-height: 0.8em;
	text-transform:Uppercase;
	-webkit-text-stroke: 1px #000;
    color:#fff;
	white-space:nowrap;
	transform:translate(-50%,0%);
}

#index-e .owl-stage-outer{
	padding-right: 50px;
}

.index-e-info{
	width: 480px;
	padding-right: 120px;
}
#index-e{
	position: relative;
	width:calc(100% - 480px);
}
#index-e  .index-e-title{
	display: block;
	padding-left: 10px;
	margin-top: 18px;
	font-size: 16px;
	color: #666;
	font-weight: bold;
	line-height: 1em;
	border-left: 2px solid #ebebeb;
}
#index-e .owl-item{
	transform:translate(-80px,0%);
}
#index-e .owl-nav {
	margin: 0;
	padding: 0px;
}
#index-e .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	margin-top: -48px;
}
#index-e .owl-nav [class*=owl-].owl-prev {
	left: -28px;
}
#index-e .owl-nav [class*=owl-].owl-next {
	display: none;
}
#index-e .owl-nav [class*=owl-] i {
	display: inline-block;
	font-size: 28px;
	height: inherit;
	line-height: inherit;
	color: #333;
	background: #f7f7f7;
	transition: all .4s;
}
#index-e .owl-nav [class*=owl-]:hover i {
	color: #fff;
	background: #eb3d00;
}
#index-e .owl-nav [class*=owl-] i {
	color: #333;
}

@media(max-width:1599.8px) {
.index-e{
	padding-left: calc(4% + 15px);
}
#index-e .owl-item{
	transform:translate(-30px,0%);
	}
}
@media(max-width:991.8px) {
.index-e{
	flex-wrap: wrap;
}
.index-e-info{
	width: 100%;
	padding-right: 15px;
	margin-bottom: 5vh;
}
#index-e{
	position: relative;
	width:100%;
}	
}
@media(max-width:565.8px) {
.index-e{
	padding-left: 15px;
}	
}
/*首页新闻*/
#index-n .owl-stage{
	display: flex;
}
#index-n .item{
	margin-bottom: 15px;
	min-height: 100%;
	background: #fff;
}
a.index-n-img{
	display: block;
	overflow: hidden;
}
.index-n-info{
	padding:25px 20px;
}
a.index-n-title{
	display: block;
	font-size: 18px;
	line-height: 1.5em;
	color: #333;
	font-weight: bold;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
	transition: all .4s;
}
a.index-n-title:hover{
	color: #eb3d00;
}
#index-n span{
	font-size: 12px;
	line-height: 1.25em;
	color: #999;
}
#index-n pre{
	margin: 15px 0;
	font-size: 14px;
	line-height: 24px;
	height: 72px;
	color: #666;
	display: block; display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;
}
#index-n .owl-nav [class*=owl-] {
	position: absolute;
	border-radius: 0px;	
	color: #fff;
	background: #0089e1;
	transform: translate(0%, -50%);
}
#index-n .owl-nav [class*=owl-]:hover {
	background: #eb3d00;
}
#index-n .owl-nav [class*=owl-].disabled {
	color: #333;
	background: #fff;
}

#index-n .owl-nav [class*=owl-].owl-prev {
	top: 50%;
	left: -80px;
}
#index-n .owl-nav [class*=owl-].owl-next {
	top: 50%;
	right: -80px;
}
#index-n .owl-dots {
	text-align: center;
}
@media screen and (max-width:1439.8px) {
#index-n{
		overflow: hidden;
}
#index-n .owl-nav{
		float: right;
	width: auto;
}
#index-n .owl-nav [class*=owl-] {
	position: static;
	box-shadow: none;
	top: auto!important;
	bottom: auto!important;
	left: auto!important;
	right: auto!important;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin: 0 10px !important;
	transform: translate(0%, 0%);
}

#index-n .owl-dots{
	margin-top: 10px;
	margin-right: 20px;
	float: right;
}
}
@media screen and (max-width:565.8px) {
#index-n .owl-dots{
	display: none;
}	
}



/*页脚*/
#foot {
	position: relative;
	background: #131922;
	width: 100%;
}
#foot>.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 6vh 15px 0vh;
}
.foot-logo {
	width: 265px;
}
.foot-logo img {
	height: 80px;
	margin-bottom: 25px;
}
.foot-logo strong {
	margin: 0 0 5px;
	font-size: 18px;
	line-height: 24px;
	color: #0089e1;
}
p.icon:before {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	color: #999;
	font-family: "iconfont" !important;
	font-size: 18px;
	line-height: 24px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.foot-nav {
	flex-grow: 1;
}
.foot-nav ul {
	padding: 0 12%;
	display: flex;
	justify-content: space-between;
}
#foot .foot-nav ul li {
	display: inline-block;
}
#foot .foot-nav ul li>a {
	display: block;
	margin-bottom: 0.5em;
	font-size: 15px;
	line-height: 2em;
	font-weight: bold;
	color: #0089e1;
	transition: all .4s;
}
#foot .foot-nav ul li a:hover {
	color: #eb3d00;
}
#foot .foot-nav ul li a:hover {
	color: #eb3d00;
}
#foot .foot-nav ul li div a {
	display: block;
	font-size: 14px;
	line-height: 2em;
	color: #999;
	transition: all .4s;
}
#foot .foot-nav ul li .div a:hover {
	color: #eb3d00;
}
.foot-contact {
	max-width: 320px;
	margin-bottom: 8vh;
	font-size: 14px;
	color: #666;
}
.foot-contact .font-c-link {
	display: block;
	margin-bottom: 0.5em;
	font-size: 15px;
	line-height: 2em;
	font-weight: bold;
	color: #0089e1;
	transition: all .4s;
}
.foot-contact .font-c-link:hover {
	color: #eb3d00;
}
.foot-contact p {
	display: block;
	margin-bottom: 0.5em;
	font-size: 14px;
	line-height: 1.5em;
	color: #999;
}
.foot-link{
	margin: 10px 0;
	width: 100%;
}
.foot-link strong{
    font-size: 15px;
    line-height: 2em;
    font-weight: bold;
    color: #0089e1;
	transition: all .4s;
}
.foot-link a {
	display: inline-block;
	margin: 3px;
	font-size: 14px;
	line-height: 2em;
	color: #999;
	transition: all .4s;
}
.foot-link a:hover {
	color: #eb3d00;
}


.foot-copyright {
	border-top: 1px solid rgba(255,255,255,0.1);
}



@media screen and (max-width: 1199.8px) {
.foot-nav ul {
	display: none;
	flex-grow: 0;
}
.foot-code img {
	max-width: 120px;
}
.foot-contact {
	margin-top: 30px;
	width: 100%;
	max-width:none;
	font-size: 14px;
	color: #666;
}
.foot-contact .font-c-link {
	display: none;
}
}

@media screen and (max-width: 991.8px) {
#foot .container {
	display: flex;
	flex-wrap: wrap;
}

}

@media screen and (max-width: 575.8px) {
.foot-code {
	display: none;
}
}
.foot-copyright {
	padding: 15px 0;
	width: 100%;
	overflow: hidden;
}
.foot-copyright p, .foot-copyright span, .foot-copyright a {
	display: inline-block;
	margin: 0px;
	font-size: 13px;
	line-height: 20px;
	color: #999;
	transition: all ease .4s;
}
.foot-copyright a {
	margin: 0px 4px;
}
.foot-copyright a:hover {
	color: #e60012;
}
/*============ 首页end ============*/

/*内页公共*/
/*banner*/
.inside-banner{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 450px;
	overflow: hidden;
}
.inside-banner img{
	max-width: none;
	height: 100%;
}
@media screen and (max-width:1199.8px) {
.inside-banner{
	height: 350px;
}	
}
@media screen and (max-width:991.8px) {
.inside-banner{
	height: 300px;
}	
}
@media screen and (max-width:565.8px) {
.inside-banner{
	height: 180px;
}	
}

/*面包屑*/
.breadcrumb {
	padding: 0px;
	margin: 4vh 0 0;
	background: none;
}
.breadcrumb>div {
	font-size: 0px;
}
.breadcrumb a {
	display: inline-block;
	font-size: 15px;
	line-height: 1.2em;
	color: #333;
	transition: all .4s;
}
.breadcrumb a:hover {
	color: #eb3d00;
}
.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;
}
}
/*左右框架*/
.content-box{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 8vh;
}
.content-sub{
	width: 320px;
}
.sub-nav2{
	border-right: 1px solid #ebebeb;
}
#sub-title{
	display: inline-block;
	width: 100%;
	font-size: 24px;
	line-height: 1em;
	font-weight: bold;
	color: #333;
	padding-bottom: 20px;
	padding-right:60px;
}
#sub-list{
	width: 100%;
}
#sub-list li{
	position: relative;
	padding-right: 60px;
}
#sub-list li.on:after{ 
	content:""; 
	position: absolute; 
	z-index:1;
	top: 50%;
	right: 0%;
	margin-top: -12px;
	width: 3px;
	height: 24px;
	background-color:#0089e1;
}
#sub-list li>a{
	display: inline-block;
	width: 100%;
	font-size: 16px;
	line-height: 56px;
	color: #666;
	border-bottom: 1px solid #ebebeb;
}
#sub-list li:first-child>a{
	border-top: 1px solid #ebebeb;
}
#sub-list li>a:hover{
	color: #eb3d00;
	transition:all .4s;
}
#sub-list li.on>a{
	color: #0089e1;
	transition:all .4s;
}
.sub-sticky{
	margin-top: 30px;
	position: sticky;
	top:120px;
	left: 0;
	z-index: 1;
}
.sub-sticky img{
	border-radius: 12px;
}
.content{
	padding-left: 60px;
	width:calc(100% - 360px);
	color: #666;
	overflow: hidden;
}

.content-title h1{
	margin-bottom: 6vh;
	font-size:24px;
	line-height: 1em;
	font-weight: bold;
	color: #333;
}
.content-title h2{
	margin-bottom: 6vh;
	font-size:24px;
	line-height: 1em;
	font-weight: bold;
	color: #333;
}
.content-title span{
	font-size: 17px;
	line-height: 1em;
	font-weight: normal;
	color: #eb3d00;
}
a.video-link {
	display: block;
	position: relative;
	z-index: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
a.video-link:before {
	content: "\e66a";
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-family: "iconfont" !important;
	font-size: 22px;
	text-align: center;
	color: #fff;
	transform: translate(-50%, -50%);
	background: rgba(0, 137, 225, 0.8);
	border-radius: 50%;
	transition:all .4s;
}
a.video-link:hover:before {
	background: rgba(235, 61, 0, 0.8);
}

@media(min-width:767.8px) {
	#sub-title span{ display: none;}
}	
@media(max-width:1439.8px) {
.content-sub{
	width: 300px;
}
#sub-title{
	padding-right:40px;
}
#sub-list li{
	position: relative;
	padding-right: 40px;
}
.content{
	padding-left: 40px;
	width:calc(100% - 300px);
}
}
@media screen and (max-width:991.8px) {
.content-sub{
	width: 100%;
	margin-top: 5vh;
}
.sub-nav2{
	border: none;
}
#sub-list li{
	display: inline-block;
	width: auto;
	border:none;
	padding:0;
	padding-right: 0px;
	margin-right: 15px;
}
#sub-list li>a,#sub-list li:first-child>a{
	border:none;
}
#sub-list li.on:after{
	position: absolute; 
	z-index:1;
	top:auto;
	left: 0;
	right: 0%;
	bottom: 0px;
	margin-top: 0;
	width: 100%;
	height: 2px;
}
.sub-sticky{
	display: none;
}	
.content{
	padding-left: 0;
	padding-top: 5vh;
	width:100%;
}
.content-title h1{
	font-size: 20px;
}
.content-title h2{
	font-size:20px;
}
.content-title span{
	font-size: 14px;
}
}
@media screen and (max-width:767.8px) {
.sub-nav2{
	border-radius: 0px;
	background: #f7f7f7;
}
#sub-title{
	font-size:15px;
	line-height: 3.6em;
	color: #0089e1;
	font-weight: bold;
	padding-left: 15px;
	padding-right:15px;
	padding-bottom: 0px;
}
#sub-title.collapsed{
	color: #333;	
}
#sub-title span{
	 margin-left: 10px;
}
#sub-list{
	width: 100%;
	padding: 20px 5% 5%;
	border-top: 1px solid #ebebeb;
}
#sub-list li{
	position: relative;
	width: 100%;
}
#sub-list li.on:after{ 
	position: absolute; 
	z-index:1;
	top:auto;
	left: 0;
	right:auto;
	bottom: 50%;
	width: 0.5em;
	height:1px;
}
#sub-list li>a{
	display: inline-block;
	width: 100%;
	font-size: 14px;
	line-height: 50px;
	color: #666;
	border-bottom: 1px solid #ebebeb;
}
#sub-list li:first-child>a{
	border-bottom: 1px solid #ebebeb;
}
#sub-list li>a:hover{
	color: #eb3d00;
	transition:all .4s;
}
#sub-list li.on>a{
	text-indent: 1em;
	color: #0089e1;
	transition:all .4s;
}	
}


/*边距盒子*/
.padding-box {
	padding-top:12vh;
	padding-bottom: 12vh;
}
.padding-top {
	padding-top: 12vh;
}
.padding-bottom {
	padding-bottom: 12vh;
}
.main {
	position: relative;
	z-index: 2;
	background: #fff;
}
.gray-box {
	background: #f4f6fc;
}
.clear-box:after {
	content: "";
	display: block;
	width: 100%;
	height: 0;
}
@media screen and (max-width:991.8px) {
.padding-box {
	padding-top: 8vh;
	padding-bottom: 8vh;
}
.padding-top {
	padding-top: 8vh;
}
.padding-bottom {
	padding-bottom: 8vh;
}
}
@media screen and (max-width:767.8px) {
.padding-box {
	padding-top: 6vh;
	padding-bottom: 6vh;
}
.padding-top {
	padding-top: 6vh;
}
.padding-bottom {
	padding-bottom: 6vh;
}
}
/*信息盒子*/
.info {
	font-size: 16px;
	color: #555;
	line-height: 1.75em;
}
.info p {
	margin: 0 0 0.75em;
}

@media screen and (max-width:1200px) {
.info{font-size: 15px;}
}
/*横线*/
.line {
	display: inline-block;
	width: 30px;
	height: 3px;
	line-height: 3px;
	font-size: 0px;
	background: #eb3d00;
}
/*内页翻页*/
.page-box {
	padding-top: 30px;
}
.page {
	font-size: 0;
	color: #666;
}
.page span {
	display: inline-block;
	padding: 0 14px;
	margin: 0 4px;
	font-size: 14px;
	line-height: 3em;
	background: #f7f7f7;
}
.page span strong {
	font-size: 17px;
	color: #333;
}
.page a {
	display: inline-block;
	padding: 0 18px;
	font-size: 14px;
	line-height: 3em;
	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;
	font-size: 14px;
	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 18px;
	margin: 0px;
	border: none;
	border-radius: 0 4px 4px 0;
	font-size: 14px;
	line-height: 3em;
	color: #666;
	background: #f7f7f7;
	cursor: pointer;
	transition: all .4s;
}
.page a:hover, .page button:hover {
	color: #fff;
	background: #0089e1;
}

@media(max-width:767.8px) {
.page {
	font-size: 13px;
	line-height: 2.5em;
}
.page a,.page span {
	padding: 0 14px;
	font-size: 13px;
	line-height: 2.5em;
}
.page input {
	margin-left: 5px;
	font-size: 13px;
	line-height: 2.5em;
}
.page button {
	padding: 0 14px;
	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 {
	font-size: 15px;
	line-height: 1.5em;
	color: #666;
}
.data{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 6vh;
}
.data li{
	padding-right: 10%;
}
.data li strong{
	display: block;
	font-size:56px;
	font-weight: bold;
	line-height: 1em;
	color: #0089e1;
}
.data li strong span{
	font-size:18px;
}
@media(max-width:991.8px) {
.data li strong{
	font-size:48px;
}
.data li strong span{
	font-size:16px;
}
}
@media(max-width:767.8px) {
.data li strong{
	font-size:36px;
}
.data li strong span{
	font-size:14px;
}
}
/*图文3分展示1*/
.text-top-list{
	display: flex;
	width: 100%;
}
.text-top-list li{
	width: 33.33%;
	padding: 0 3.5%;
	border-left: 1px solid #ebebeb;
}
.text-top-list li:first-child{
	border:none;
}
.text-top-list li p{
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}
.text-top-list li p:after{ content:"";display:block;width: 20px;height: 3px;margin-top: 15px; background-color:#0089e1;}
.text-top-list li pre{
	margin:0 0 5px;
	font-size: 15px;
	line-height: 1.75em;
	max-height: 3.5em;
	color: #666;
	white-space: pre-wrap;
	font-family: Arial, "微软雅黑", Microsoft YaHei;
	display: block; display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;
}
.text-top-list li  a{
	display: inline-block;
	margin-bottom: 20px;
	font-size: 13px;
	color: #0089e1;
}
.text-top-list li img{
	margin-top: 20px;
	width: 100%;
	transition:all .4s;
}
@media(min-width:992px) {
.text-top-list{
	margin-left: -3.5%;
	margin-right: -3.5%;
}
	
}
@media(max-width:991.8px) {
.text-top-list{
	flex-wrap: wrap;
}
.text-top-list li{
	display: flex;
	width: 100%;
	padding: 5% 0%;
	border-left:none;
	border-top: 1px solid #ebebeb;
}
.text-top-list li div:first-child{
	order: 1;
	width:calc(100% - 240px);
	padding-left: 5%;
}
.text-top-list li div:last-child{
	order: 0;
	width:240px;
}
.text-top-list li p{
	font-size: 18px;
}
.text-top-list li  a{
	margin-bottom: 0px;	
}
}
@media(max-width:575.8px) {
.text-top-list li{
	padding: 8% 0;
	flex-wrap: wrap;
}
.text-top-list li div:first-child{
	order: 0;
	width:100%;
	padding-left: 0%;
	padding-bottom: 20px;
}
.text-top-list li div:last-child{
	width:100%;
}	
}


/*荣誉*/
.img-roll{
	display: flex;
	flex-wrap: wrap;
}
.img-roll-list .owl-stage{
	display: flex;
}
.img-roll-list .item{
	position: relative;
	height: 100%;
	padding-bottom: 30px;
}
.img-roll-list .item a{
	display: flex;
	align-items: center;
	height: 100%;
}
.roll-img{
	overflow: hidden;
}
.roll-name {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	text-align: center;
	font-size: 14px;
	color: #666;
}
.owl-carousel.img-roll-list .owl-nav{
	margin-top: 3vh;
	text-align: left;
}
.owl-carousel.img-roll-list .owl-nav button{
	display: inline-block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	font-size: 24px;
	text-align: center;
	color: #fff;
	background: #0089e1;
	border-radius: 0px;
	transition:all .4s;
}
.owl-carousel.img-roll-list .owl-nav button:hover{
	color: #fff;
	background: #eb3d00;
}
.owl-carousel.img-roll-list .owl-nav button.disabled{
	background: #666;
}
.owl-carousel.img-roll-list .owl-nav button.disabled:hover{
	color: #fff;
	background: #999;
}
.owl-carousel.img-roll-list .owl-nav button i{
	display: inline-block;
	line-height: 48px;
	font-size: 24px;
}


/*工程能力*/
.ability-info{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ability1-l{
	width: 40%;
}
.ability1-r{
	width: 50%;
}
@media(max-width:1199.8px) {
.ability1-l{
	width: 90%;
}
.ability1-r{
	width: 100%;
}	
}
/*流程*/
.process-left{
	float: left;
}
.process{
	border-left: 1px solid #ebebeb;
}
.process li{
	position: relative;
	display: flex;
	padding-left: 5%;
	margin: 3vh 0;
}
.process li:before{ content:""; position: absolute;  z-index:2;top:10px;left: -4px;width:7px;height:7px;border-radius: 50%; background-color:#eb3d00;}
.process li:after{ content:""; position: absolute;  z-index:-1;top: 0px;left: 0%;width: 0%;height: 0%;background-color:#fff;transition:all .4s;}

.process li div:first-child{
	width:240px;
}
.process li div:last-of-type{
	width: calc(100% - 240px);
	padding-left: 5%;
}
.process li p{
	color: #666;
	font-size: 14px;
}

.process li strong{
	display: inline-block;
	margin-top: 10px;
	color: #333;
	font-size: 16px;
}
@media(max-width:992.8px) {
.process{
	margin-left:  3px;
}	
}
@media(max-width:565.8px) {
.process-left{
	width: 100%;
	text-align: center;
}
.process li{
	flex-wrap: wrap;
	margin: 4vh 0;
}
.process li div:first-child{
	width:180px;
}
.process li div:last-of-type{
	width: 100%;
	padding-top: 3%;
	padding-left: 0%;
}
}
/*产品列表*/
.product-list{
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.5%;
	margin-right: -1.5%;
	margin-top: -1.5%;
}
.product-list li{
	width: 25%;
	padding:1.5%;
}
.product-list li a{
	display: block;
}
.product-list-img {
    background: #ccc;
	overflow: hidden;
	transition: all .4s;
}
.product-list-img img{
    opacity: 0.9;
}
.product-list-txt {
	padding: 15px 0 5px;
}
.product-list-txt p {
	display: block;
	margin-bottom: 5px;
	font-size: 15px;
	line-height: 20px;
	max-height: 40px;
	color: #333;
	font-weight: bold;
	text-transform: Uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.product-list a:hover .product-list-txt p {
	color: #eb3d00;
}
.product-list-txt span {
	font-size: 15px;
	color: #999;
	transition: all .4s;
}
.product-list a:hover .product-list-txt span {
	color: #ebebeb;
}
@media(max-width:1599.8px) {
.product-list li{
	width: 33.33%;
	padding:1.5%;
}	
}
@media(max-width:1439.8px) {
.product-list li{
	width: 50%;
	padding:2%;
}	
}
@media(max-width:565.8px) {
.product-list li{
	width: 100%;
	padding:4%;
}	
}

/*产品详情*/
.product {
	overflow: hidden;
}
.product>div {
	display: flex;
	flex-wrap: wrap;
}
.product-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 5%;
	background: #f7f7f7;
}
#product{
	width: 100%;
}
#product .owl-nav {
	margin: 0;
	padding: 0px;
}
.owl-carousel.owl1 .owl-nav [class*=owl-] {
	position: absolute;
	top: 25vh;
	margin-top: -28px;
}
#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: #333;
	background: #fff;
	transition: all .4s;
}
#product .owl-nav [class*=owl-]:hover i {
	color: #fff;
	background: #eb3d00;
}
#product .owl-nav [class*=owl-] i {
	color: #333;
}
#product .item{
	text-align: center;
}
#product .item img{
	display: inline-block;
	width: auto !important;
	height: auto!important;
	max-width: 100%;
	max-height: 61.8vh;
}

#product .owl-nav #counter {
	margin: 15px 0;
	font-weight: bold;
	font-size: 15px;
	color: #999;
}
#product .owl-nav #counter span {
	font-size: 24px;
	color: #0089e1;
}
.product-info pre {
	margin-bottom: 25px;
	font-size: 15px;
	line-height: 2em;
	color: #666;
}
.product-info pre::-webkit-scrollbar-track {
background:#fafafa;
}
.product-info pre::-webkit-scrollbar {
width: 3px;
}
.product-info pre::-webkit-scrollbar-thumb {
background:#333;
}
.product-info hr {
	margin: 25px 0;
}
.product-info a.product-btn {
	display: inline-block;
	font-size: 15px;
	line-height: 36px;
	font-weight: bold;
	color: #fff;
	padding: 0 20px;
	margin: 2px 0;
	background: #0089e1;
	transition: all .4s;
}
.product-info a.product-btn:hover {
	color: #fff;
	background: #eb3d00;
}
.product-info a.product-btn span {
	display: inline-block;
	margin-right: 8px;
	font-size: 18px;
	font-weight: normal;
	color: inherit;
	vertical-align: top;
}
.tips {
	font-size: 13px;
	line-height: 1.5em;
	color: #999;
}
.product-details>div {
	display: flex;
	flex-wrap: wrap;
}
.product-d {
	width: 100%;
}
.product-d>div {
	width: 100%;
	padding: 6vh 0;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.product-d>div:after {
	content: "";
	display: block;
	clear: both
}
.p-d-title {
	margin-bottom: 20px;
	font-size: 17px;
	font-weight: bold;
	text-transform: Uppercase;
	color: #0089e1;
}
.product-details table {
	width: auto;
}
.product-page{
	display: flex;
	flex-wrap: wrap;
	padding: 30px 0 0;
	border-top: 1px solid #ebebeb;
}
.product-page a{
	display: inline-block;
	width: 100%;
}
.product-page a span{
	display: inline-block;
	margin-bottom: 18px;
	font-size: 15px;
	line-height: 1em;
	color: #999;
}
.product-page a p{
	font-size: 18px;
	line-height: 1em;
	margin-bottom: 10px;
	color: #666;
	transition:all .4s;
}
.product-page a:hover p{
	color: #eb3d00;
}
.product-page a small{
	display: inline-block;
	max-width: 100%;
	font-size: 14px;
	line-height: 1em;
	color: #999;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
	transition:all .4s;
}
.product-page a:hover:not([href]):not([tabindex]) p{
	color: #666;
}

@media(min-width:992px) {
#product {
	position: relative;
}
#product .owl-dots{
}
#product .owl-dot{
	display: inline-block;
	width: 80px;
	border:1px solid #ebebeb;
}
#product .owl-dot.active{
	border:1px solid #eb3d00;
}
#product .owl-dots img{
	width: 80px;
}
.product-info {
	padding:5vh 0;
}
.product-subnav {
	width: 230px;
	padding-right: 40px;
	padding-top: 6vh;
}
.product-subnav ul {
	position: sticky;
	z-index: 3;
	left: 0px;
	top: 150px;
}
.product-subnav ul li {
	margin-bottom: 5px;
}
.product-subnav ul li a {
	display: inline-block;
	padding: 0 15px;
	width: 100%;
	font-size: 15px;
	line-height: 36px;
	color: #666;
	background: #f7f7f7;
}
.product-subnav ul li.active a {
	color: #fff;
	font-weight: bold;
	background: #0089e1;
}
.product-d {
	width: calc(100% - 230px);
	padding-left: 60px;
	border-left: 1px solid #ebebeb;
}
.product-page a{
	display:block;
	width: 50%;
	padding: 10px 7%;
}
.product-page a:first-of-type {
	text-align: right;
	border-right: 1px solid #ccc;
}
}

@media(min-width:1200px) {
.product-subnav ul {
	position: sticky;
	z-index: 3;
	left: 0px;
	top: 90px;
}
}

@media screen and (max-width:991.8px) {
.product-img {
	width: 100%;
}
#product {
	position: relative;
	width: 100%;
	padding: 0%;
}
#product .item {
	text-align: center;
}
#product img {
	display: inline-block;
	width: 100%;
	max-width: 500px;
}
.owl-carousel.owl1 .owl-nav [class*=owl-] {
	position: absolute;
	top: 25vh;
	width: 48px;
	height: 48px;
	line-height: 48px;
	margin-top: -24px;
}
#product .owl-nav [class*=owl-].owl-prev {
	left: 0px;
}
#product .owl-nav [class*=owl-].owl-next {
	right: 0px;
}
	
	
	
.product-info {
	width: 100%;
	padding: 2vh 0%;
}
.product-page a:first-child{
		padding-bottom: 20px;
		border-bottom: 1px solid #ccc;
}
.product-page a:last-child{
		padding-top: 24px;
}
.product-page a span{
	display: none;
}
}



/*视频列表*/
.video-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -2%;
	margin-right: -2%;
	margin-top: -2%;
}
.video-list li {
	width: 50%;
	padding: 2%;
}
.video-list li:nth-of-type(3n) {
	margin-right: 0;
}
.video-list a div {
	position: relative;
	z-index: 1;
	background: #000;
}
.video-list a div:before {
	content: "\e66a";
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	width: 80px;
	height: 40px;
	line-height: 40px;
	font-family: "iconfont" !important;
	font-size: 18px;
	text-align: center;
	color: #fff;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.4);
	border-radius: 8%;
}
.video-list a:hover div:before {
	background: rgba(235, 61, 0, 0.9);
}
.video-list a img {
	opacity: 1;
	transition: all .4s;
}
.video-list a:hover img {
	opacity: 0.5;
}
.video-list a span {
	display: block;
	margin: 10px 0;
	text-align: center;
	font-size: 16px;
	line-height: 1.2em;
	color: #333;
	transition: all .4s;
}
.video-list a:hover span {
	color: #e60012;
}
@-webkit-keyframes changeright {
 0% {
 -webkit-transform: rotate(0deg);
}
 50% {
 -webkit-transform: rotate(180deg);
}
 100% {
 -webkit-transform: rotate(360deg);
}
}
@media(max-width:565.8px) {
.video-list li {
	width: 100%;
	padding: 2% 0;
}	
}

/*视频弹出*/
#video-modal {
}
#video-modal .video-box {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
#video-modal .modal-dialog {
	position: absolute;
	z-index: 1001;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -80%);
}
#video-modal.show .modal-dialog {
	transform: translate(-50%, -50%);
}
#video-modal .modal-content {
	padding: 0px;
	border: none;
	border-radius: 0px;
}
#video-modal .modal-header {
	border: none;
	padding: 0;
}
#video-modal #video-close {
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
	opacity: 0.7;
	transition: all .3s;
}
#video-modal #video-close:hover {
	opacity: 1;
}
#video-modal #video-close span {
	display: inline-block;
	width: 90px;
	height: 90px;
	line-height: 90px;
	font-size: 30px;
	font-weight: normal;
	color: #fff;
	text-align: center;
}
#video-modal .modal-body {
	font-size: 0;
	padding: 0;
	border: nono;
	border-radius: 0;
}
#video-modal .modal-body #video {
	width: 100%;
}
#video-modal .modal-dialog {
	width: 900px;
	max-width: 92%;
}


/*新闻列表*/
.news-list{
	display: flex;
	flex-wrap: wrap;
	margin-top: -2%;
	margin-left: -2%;
	margin-right: -2%;
}
.news-list li{
	width: 33.33%;
	padding: 2%;
	margin-bottom: 8px;
}
.news-list li:after{ content:""; display: block;margin-top: 30px; width: 100%;height: 0%;border-bottom: 1px dashed #ebebeb;}
a.news-img{
	display: block;
	overflow: hidden;
}
a.news-title{
	display: block;
	margin-top: 25px;
	font-size: 16px;
	line-height: 1.5em;
	color: #333;
	font-weight: bold;
	white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
	transition: all .4s;
}
a.news-title:hover{
	color: #eb3d00;
}
.news-list span{
	font-size: 12px;
	line-height: 1.25em;
	color: #999;
}
.news-list pre{
	margin: 15px 0;
	font-size: 14px;
	line-height: 24px;
	height: 72px;
	color: #666;
	display: block; display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;
}

@media(max-width:1439.98px) {
.news-list li{
	width: 50%;
}
}


@media(max-width:767.8px) {
.news-list li {
	width: 100%;
}
}
/*文章详情*/
.news-page{
	margin-top: 6vh;
	padding-top: 3vh;
	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 15px;
	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.85rem;
	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: #0089e1;
}

}	
@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: 14px;
}	
.news-page a:hover h4, .news-page a:hover em{
		color:#0089e1; 
}
.news-page a.nomore:hover h4, .news-page a.nomore:hover em{
		color:#0089e1; 
}
}


/*制造能力*/
.left-info{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.left-info-l{
	width: 70%;
}

@media(max-width:1199.8px) {
.left-info-l{
	width: 90%;
}
}


.parameter{
	padding: 5% 0;
}
.parameter table{
	width: 100%;
}
.parameter tr{
	background: #fff;
}

.parameter tr:first-child{
	background: #0089e1;
	border-bottom: 1px solid #fff;
}
.parameter tr:first-child td{
	font-size: 18px;
	line-height: 3em;
	font-weight: bold;
	color: #fff;
}

/*联系方式*/
.contact-box {
}
.contact-box>div {
	padding-left: 15px;
	padding-right: 15px;
	margin: auto;
}
.contact>div{
}
@media(max-width:767.8px) {
.contact-box {
}
}
.contact>div {
	font-size: 15px;
	line-height: 1.5em;
}
.contact>div .title-en-hv {
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
}
.contact>div p {
	margin-bottom: 15px;
}
.contact>div span.icon {
	display: inline-block;
	margin-right: 5px;
	font-size: 18px;
	color: #0089e1;
}
.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: #eb3d00;
}
a.map-link {
	display: inline-block;
	padding-left: 12px;
	padding-right: 15px;
	font-size: 13px;
	line-height: 32px!important;
	color: #fff!important;
	background: #25263b;
	text-decoration: none!important;
	transition: all .4s;
}
a.map-link:hover {
	background: #eb3d00;
}
a.map-link span {
	display: inline-block;
	font-size: 18px;
	line-height: 32px;
	color: #fff!important;
	vertical-align: bottom;
}
.contact .contact-feedback {
	padding-top: 20px;
}
.feedback input {
	outline: none;
	margin-bottom: 18px;
	width: 100%;
	padding: 0px 15px;
	font-size: 15px;
	line-height: 46px;
	color: #666;
	border: none;
	background: #f7f8fa;
	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 textarea {
	border: none;
	font-size: 15px;
	line-height: 22px;
	width: 100%;
	height: 160px;
	padding: 15px;
	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: #25263b;
	font-size: 14px;
	line-height: 36px;
	color: #fff;
	margin: 15px 0px;
	transition: all .3s;
}
.feedback .submit:hover {
	background: #eb3d00;
}
.feedback .submit span {
	display: inline-block;
	font-size: 20px;
	line-height: 36px;
	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;
	max-height: 60vh;
	width: 100%;
	margin: 0px;
	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: 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;
}
/*地图*/


/*2021-05-13 页面左侧栏*/
.sideBar {
	position: fixed;
	z-index: 99;
	right: 0;
	bottom: 100px;
}
.sideBar-icon {
	position: relative;
	margin: 1px 0px;
	background: #0089e1;
	transition: all .6s;
}
.sideBar-icon:hover {
	background: #eb3d00;
}
.sideBar-icon>a span {
	display: inline-block;
	width: 46px;
	height: 46px;
	line-height: 46px;
	font-size: 24px;
	text-align: center;
	color: #fff;
}
.sideBar-icon>ul {
	display: inline-block;
	width: 46px;
	height: 46px;
	line-height: 46px;
	font-size: 24px;
	text-align: center;
	color: #fff;
}
.sideBar-item {
	position: absolute;
	z-index: 1;
	right: 100%;
	top: 50%;
	transform: translate(0%, -50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	-ms-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
	transition: all 0.4s linear;
}
.sideBar-icon:hover .sideBar-item {
	opacity: 1;
	visibility: visible;
}
.sideBar-contact {
	background: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.sideBar-title {
	padding: 0 20px;
	font-size: 18px;
	line-height: 50px;
	color: #fff;
	font-weight: bold;
	background: #eb3d00;
}
.sideBar-info {
	padding: 20px;
	font-size: 13px;
	letter-spacing: 0.05rem;
	line-height: 24px;
	color: #666;
}
.sideBar-info a {
	color: #666;
	text-decoration: underline;
}
.sideBar-info a:hover {
	color: #eb3d00;
}
.sideBar-info p {
	margin: 0 0 8px;
	white-space: nowrap;
}
.sideBar-info p span {
	display: inline-block;
	margin-right: 4px;
	vertical-align: bottom;
	width: 20px;
	height: 24px;
	line-height: 24px;
	font-size: 18px;
	text-align: center;
}
.sideBar-info p:last-of-type {
	margin: 0px;
}
.sideBar-icon ul li a {
	display: inline-block;
	min-width: 100%;
	padding: 0 15px;
	font-size: 15px;
	line-height: 46px;
	white-space: nowrap;
	color: #333;
	background: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	transition: all 0.4s;
}
.sideBar-icon ul li a:hover {
	color: #fff;
	background: #eb3d00;
}
.sideBar-icon ul li a span {
	font-size: 20px;
	margin-right: 8px;
	vertical-align: bottom;
}

@media screen and (max-width:767.8px) {
.sideBar {
	bottom: 60px;
}
.sideBar-icon {
	display: none;
}
.sideBar-icon:last-of-type {
	display: block;
}
.sideBar-icon>a span {
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 18px;
}
}
/*分部*/
.add1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f7f8fa;
	padding: 35px;
}
.office-name {
	display: flex;
	font-size: 20px;
	line-height: 24px;
	color: #0089e1;
	font-weight: bold;
}
.add1 .office-name {
	min-width: 200px;
	text-transform: uppercase;
}
.office-info {
	font-size: 15px;
	line-height: 22px;
	color: #999;
}
.add1 .office-info p {
	margin: 0px;
}
.add1 .office-btn {
	min-width: 130px;
}
.office-btn a.map-link {
	margin: 5px 0;
	background: #0089e1;
}
.office-btn a.map-link:hover {
	background: #eb3d00;
}
.office-btn a.map-link span {
	font: 18px;
}
.add1-map {
	height: 320px;
	background-position: center;
	background-size: cover;
}
.map-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.map-list li {
	width: 33.33%;
	padding: 15px;
}
.add {
	min-height: 100%;
	padding: 30px;
	background: #f7f8fa;
}
.add .office-info {
	margin: 20px 0 30px;
}
.add .office-info p {
	margin-bottom: 5px;
	font-size: 13px;
	line-height: 20px;
	color: #666;
}

@media screen and (max-width:1199.8px) {
.map-list {
	margin-left: -10px;
	margin-right: -10px;
}
.map-list li {
	width: 33.33%;
	padding: 10px;
}
}

@media screen and (max-width:991.8px) {
.map-list li {
	width: 50%;
	padding: 10px;
}
.add1 {
	flex-wrap: wrap;
}
.add1 .office-name {
	min-width: 100%;
	text-transform: uppercase;
}
.add1 .office-info {
	margin: 20px 0;
}
.office-btn {
	width: 100%;
}
}

@media screen and (max-width:575.8px) {
.map-list li {
	width: 100%;
	padding: 10px;
}
}
/*其他页面*/
/*网站地图*/
.other-title {
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 2.6em;
	font-weight: bold;
	color: #333;
	text-transform: Uppercase;
}
.other-title:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #333;
}
.sitemap-list li {
	padding: 15px 0 18px;
	border-bottom: 1px dashed #ccc;
}
.sitemap-list div a {
	font-size: 18px;
	line-height: 2.25em;
	color: #0089e1;
	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: #eb3d00;
	text-decoration: underline;
}
/*隐私政策*/
.privacy {
	font-size: 17px;
	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 15px;
	font-size: 15px;
	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: 15px;
	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: 17px;
	color: #999;
}
.submit-nav li.on a {
	font-size: 17px;
	color: #333;
}
.submit-nav span {
	font-size: 15px;
	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: 17px;
	line-height: 1.25em;
	color: #333;
	transition: all .4s;
}
.search-list li a:hover p {
	color: #eb3d00;
}

@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: 15px;
	line-height: 1.25em;
	color: #333;
}
}