
/*============ 首页/公共 ============*/
body {
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow-x: hidden;
}
body.menu-open {
	overflow-y: hidden;
}

@media(min-width:992px) {
body {
	padding-top: 80px;
}
}

@media(min-width:1200px) {
body {
	padding-top: 90px;
}
}

@media(max-width:992px) {
body {
	padding-top: 70px;
}
}

@media(max-width:768px) {
body {
	padding-top: 52px;
}
}
body, html {
	font-family: Arial, "微软雅黑", Microsoft YaHei;
}
dd, dl, dt, ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
input {
	margin: 0;
	outline: none
}
a {
	text-decoration: none;
}
a:link {
	color: inherit;
}/*未访问样式*/
a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
a:hover, a:focus, input:hover, input:focus, button:focus, button:hover {
	outline: none;
}
h1 {
	margin: 0px;
}
i {
	font-weight: normal;
}
hr {
	border: none;
	border-top: 1px solid #f0f0f0;
	margin: 10px 0px;
}
img {
	max-width: 100%;
}
pre {
	display: block;
	border: none;
	background: none;
	padding: 0px;
	white-space: pre-wrap;
	font-family: Arial, "微软雅黑", Microsoft YaHei;
}
.red {
	color: #cc0011;
}
::-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: 14px;
	line-height: 20px;
	padding: 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:1200px) {
.container {
	width: 84%;
}
}

@media(max-width:768px) {
.container {
	width: 100%;
	padding: 0px 15px;
}
}
/*页面haed*/
	
/*导航设置*/	
#haed-nav {
	position: fixed;
	z-index: 999;
	left: 0;
	right: 0;
	padding: 0;
	height: 90px;
	line-height: 90px;
	background: #fff;
	box-shadow: none;
	border-bottom: 1px solid #ebebeb;
	transition: all .3s;
}
#haed-nav .container {
	width: 100%;
	padding: 0 60px;
}
.navbar-header {
	height: inherit;
	overflow: hidden;
}
/*logo设置*/
.navbar-brand {
	position: relative;
	z-index: 9;
	display: flex;
	align-items: center;
	height: inherit;
	padding: 0px 25px!important;
	margin: 0px;
}
.navbar-brand h1 {
	height: auto;
	font-size: 0px;
}
.navbar-brand img {
	transition: all .3s;
}
.navbar-slogan {
	display: flex;
	align-items: center;
	height: inherit;
	margin: 0px;
	line-height: 0em;
}
.navbar-slogan img {
	width: auto;
	height: 22px;
}
.navbar-slogan b {
	display: inline-block;
	width: 100%;
	line-height: 1em;
	font-size:20px;
	letter-spacing:1px;
	color: #333;
	white-space: nowrap;
}
.navbar-slogan strong {
	display: inline-block;
	width: 100%;
	margin-top: 5px;
	line-height: 1em;
	font-size: 14px;
	letter-spacing: 3px;
	color: #0f8b4c;
	white-space: nowrap;
}
/*菜单按钮*/
.menu-button {
	position: fixed;
	z-index: 1002;
	top: 0;
	right: 10px;
	width: 90px;
	height: 90px;
	border: none;
	padding: 0;
	font-size: 0;
	background: none;
}
.menu-button:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 20%;
	bottom: 20%;
	left: 20%;
	right: 20%;
	background: #cc0011;
	transition: all 0.3s ease-in-out;
}
.menu-open .menu-button:before {
	content: "";
	background: #F7F7F7;
}
.menu-open .menu-button:hover:before {
	content: "";
	background: #cc0011;
}
.menu-button span {
	width: 22px;
	height: 2px;
	background-color: #fff;
	display: block;
	margin: 7px 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: #333;
}
.menu-open .menu-button:hover 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(9px) rotate(45deg);
	-ms-transform: translateY(9px) rotate(45deg);
	-o-transform: translateY(9px) rotate(45deg);
	transform: translateY(9px) rotate(45deg);
}
.menu-open .menu-button span:nth-child(3) {
	-webkit-transform: translateY(-9px) rotate(-45deg);
	-ms-transform: translateY(-9px) rotate(-45deg);
	-o-transform: translateY(-9px) rotate(-45deg);
	transform: translateY(-9px) rotate(-45deg);
}

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

@media(max-width:992px) {
.menu-button {
	width: 70px;
	height: 70px;
}
.menu-button:before {
	content: "";
	top: 15%;
	bottom: 15%;
	left: 15%;
	right: 15%;
}
.menu-button span {
	width: 20px;
	height: 2px;
	margin: 5px auto;
}
.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);
}
}

@media (max-width: 768px) {
.menu-button {
	width: 52px;
	height: 52px;
}
.menu-button span {
	width: 18px;
	height: 2px;
	margin: 5px auto;
}
}
/*导航设置*/
.navbar-nav {
	height: inherit;
	padding-right: 90px;
	margin-right: 0!important;
}
.navbar-nav .dropdown-menu {
	position: absolute;
	z-index: 1;
	background: none;
	box-shadow: none;
	border: none;
}
.navbar-nav>li {
	position: relative;
	z-index: 1;
	height: inherit;
	line-height: inherit;
	display: flex;
	align-items: center;
	margin: 0px 22px;
}
.navbar-nav>li>a {
	display: inline-block;
	color: #333;
	font-size: 15px;
	font-weight: bold;
	text-transform: Capitalize;
	line-height: 24px;
	padding: 0px;
	text-align: center;
	overflow: hidden;
}
.navbar-nav>li:hover>a {
	color: #cc0011;
	background: none;
}
.navbar-nav>li.on>a {
	color: #cc0011;
	text-transform: Uppercase;
}
.navbar-nav>li.language a {
	padding-right: 20px;
	line-height: 44px;
}
.navbar-nav>li.language a span {
	font-size: 20px;
	vertical-align: bottom;
}
.navbar-nav>li:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0px;
	left: 0%;
	width: 0%;
	height: 2px;
	background-color: #cc0011;
	transition: all .3s;
}
.navbar-nav>li.on:after, .navbar-nav>li:hover:after {
	content: "";
	width: 100%;
}
.navbar-nav >li.language:after, .navbar-nav >li.language:hover:after {
	display: none;
}
.navbar-nav .dropdown-menu {
	top: 100%;
	left: 0%;
	right: auto;
	padding: 10px 0;
	border: none;
	background: rgba(255,255,255,0.95);
}
.navbar-nav>li:last-of-type .dropdown-menu {
	left: auto;
	right: 0;
}
.navbar-nav .dropdown-menu li {
	display: block;
	width: auto;
	height: auto;
	line-height: normal;
}
.navbar-nav .dropdown-menu li a {
	position: relative;
	z-index: 3;
	display: block;
	box-sizing: border-box;
	vertical-align: middle;
	min-width: 100%;
	padding: 0px 15px;
	font-size: 15px;
	line-height: 38px;
	height: 36px;
	color: #333;
	white-space: nowrap;
	transition: all ease .3s;
}
.navbar-nav .dropdown-menu li a:hover {
	color: #fff;
	background: none;
}
.navbar-nav .dropdown-menu li a:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0%;
	width: 0%;
	height: 100%;
	background-color: #cc0011;
	transition: all ease .3s;
}
.navbar-nav .dropdown-menu li a:hover:after {
	content: "";
	width: 100%;
}

@media (max-width: 1400px) {
.navbar-slogan {
	display: none;
}
.navbar-nav>li {
	margin: 0 18px;
}
}

@media(min-width:1200px) {
.navbar-brand img {
	max-width: auto;
	height: 72px;
	transition: all .3s;
}
}

@media (max-width: 1200px) {
#haed-nav {
	height: 80px;
	line-height: 80px;
}
.navbar-nav>li {
	margin: 0px 12px;
}
.navbar-nav>li.language a {
	padding-right: 10px;
}
.navbar-brand img {
	max-width: auto;
	height: 30px;
	transition: all .3s;
}
}

@media(max-width:992px) {
#haed-nav {
	height: 70px;
	line-height: 70px;
}
#haed-nav .navbar-brand {
	padding: 0px 20px!important;
}
#haed-nav .navbar-brand img {
	height: 26px;
}
.navbar-slogan {
	display: flex;
}
#haed-nav .navbar-nav {
	display: none;
}
}

@media (max-width: 768px) {
#haed-nav {
	height: 52px;
	line-height: 52px;
}
#haed-nav .navbar-brand {
	padding: 0px 15px!important;
}
#haed-nav .navbar-brand img {
	height: 22px;
}
.navbar-slogan img {
	height: 18px;
}
.navbar-slogan strong {
	display: none;
}
.navbar-header {
	margin-left: 0px!important;
	margin-right: 0px!important;
	display: inline-block;
	padding: 0px;
	width: auto;
}
}
/*移动端菜单2*/
#menu {
	position: fixed;
	z-index: 1001;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #030513 url(http://www.szhuc.com.cn/Data/mcjs304/template/cn/images/common_header_bg01.jpg) no-repeat right top;
	background-size: auto 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	overflow-y: scroll;
}
#menu.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.35s linear;
	-moz-transition: all 0.35s linear;
	-ms-transition: all 0.35s linear;
	-o-transition: all 0.35s linear;
	transition: all 0.35s linear;
}
#menu:after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: #b3000f;
	transition: 0.85s 0.3s transform cubic-bezier(0.23, 1, 0.32, 1);
	transform-origin: right;
}
#menu.open:after {
	transform: scaleX(0);
}
#menuNav-logo {
	position: absolute;
	z-index: 3;
	left: 0px;
	top: 0;
	padding: 0px 25px;
	height: 90px;
	display: flex;
	align-items: center;
}
#menuNav-logo img {
case-nav	height: 32px;
}
.menu-body {
	position: relative;
	z-index: 1;
	float: left;
	min-width: 960px;
	padding: 120px 30px 0 260px;
	background: #030513;
}
.menu-body:before {
	content: "";
	position: absolute;
	top: 0;
	left: 210px;
	z-index: 2;
	width: 1px;
	height: 100%;
	background: rgba(0,0,0,0.1);
}
.menu-nav {
	overflow: hidden;
}
.menu-nav>p {
	float: left;
	width: 170px;
	font-size: 36px;
	line-height: 1em;
	color: #fff;
	font-weight: bold;
}
.menu-nav>ul {
	float: left;
	padding-top: 10px;
	font-size: 36px;
	color: #333;
	font-weight: bold;
}
.menu-nav>ul>li {
	margin-bottom: 35px;
	overflow: hidden;
}
.menu-nav>ul>li>a {
	float: left;
	position: relative;
	z-index: 1;
	display: block;
	width: 190px;
	padding-left: 45px;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	text-transform: Uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
.menu-nav>ul>li>a:hover {
	text-decoration: underline;
}
.menu-nav>ul>li>a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 0%;
	margin-top: -2px;
	width: 20px;
	height: 2px;
	background: #cc0011;
	transition: all .4s;
}
.menu-nav>ul>li>ul {
	float: left;
}
.menu-nav>ul>li>ul li {
	font-size: 0px;
	margin-bottom: 15px;
}
.menu-nav>ul>li>ul a {
	display: inline-block;
	max-width: 190px;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	text-transform: Capitalize;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
.menu-nav>ul>li>ul a:hover {
	text-decoration: underline;
	color: #ebebeb;
}
.menu-contact {
	display: flex;
	max-width: 660px;
	padding: 60px 0 40px;
	font-size: 15px;
	line-height: 1.2em;
	color: #fff;
}
.menu-contact-text {
	padding-right: 30px;
}
.menu-contact-text h4, .menu-contact-text p {
	display: block;
	margin-bottom: 10px;
}
.menu-contact-text strong {
	display: block;
	margin-bottom: 15px;
	font-size: 22px;
	line-height: 24px;
	color: #fff;
	text-transform: Uppercase;
}
.menu-contact-text a {
	display: inline-block;
	margin-right: 10px;
	font-size: 13px;
	letter-spacing: 1px;
	color: #fff;
}
.menu-contact-text a:hover {
	text-decoration: underline;
}
.menu-contact-code {
	width: 40%;
	line-height: 30px;
}
.menu-contact-code img {
	max-width: 140px;
}

@media(max-width:1200px) {
#menuNav-logo {
	height: 80px;
}
#menuNav-logo img {
	height: 30px;
}
}

@media(max-width:992px) {
#menu {
	background: #b3000f;
}
#menu:after {
	content: "";
	display: none;
}
#menuNav-logo {
	padding: 0 20px;
	height: 70px;
}
#menuNav-logo img {
	height: 26px;
}
.menu-body {
	position: relative;
	z-index: 1;
	float: none;
	min-width: 100%;
	padding: 110px 30px 0 30px;
}
.menu-body:before {
	content: "";
	position: absolute;
	top: 70px;
	left: 0px;
	z-index: 2;
	width: 100%;
	height: 1px;
	background: rgba(0,0,0,0.1);
}
.menu-nav>p {
	float: none;
	width: 100%;
	font-size: 24px;
	margin-bottom: 20px;
}
.menu-nav>ul {
	float: left;
	padding-top: 10px;
	font-size: 36px;
	color: #333;
	font-weight: bold;
}
}

@media(max-width:768px) {
#menuNav-logo {
	padding: 0px 15px;
	height: 52px;
}
#menuNav-logo img {
	height: 22px;
}
.menu-body {
	padding: 100px 30px 0 30px;
}
.menu-body:before {
	content: "";
	top: 52px;
}
.menu-contact {
	flex-wrap: wrap;
}
.menu-nav>ul>li {
	margin-bottom: 20px;
}
.menu-nav>ul>li>a {
	width: 120px;
	padding-left: 25px;
	font-size: 14px;
	font-weight: bold;
}
.menu-nav>ul>li>a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 0%;
	margin-top: -2px;
	width: 10px;
	height: 1px;
	background: #b3000f;
	transition: all .4s;
}
.menu-nav>ul>li>ul a {
	max-width: 160px;
	font-size: 14px;
}
.menu-contact-text strong {
	margin-bottom: 12px;
	font-size: 20px;
}
.menu-contact-code {
	display: none;
}
}
/*手机菜单 end*/

/*首页标题*/
.index-title {
	float: left;
	display: inline-block;
	padding-bottom: 20px;
}
.index-title h3 {
	position: relative;
	z-index: 1;
	margin: 0px;
	font-size: 20px;
	line-height: 1.5em;
	font-weight: bold;
	color: #333;
}
.index-title h3:before {
	content: "\e65e";
	font-family: "iconfont" !important;
	font-size: 12px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	left: -25px;
	color: #cc0011;
}
.index-title span {
	position: relative;
	margin: 0px;
	font-size: 13px;
	line-height: 1.5em;
	color: #999;
	padding-left: 18px;
}
.index-title span:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 48%;
	left: 0%;
	width: 12px;
	height: 1px;
	background-color: #999;
}
.index-p-nav {
	text-align: right;
	margin-top: 20px;
}
.index-p-nav li {
	display: inline-block;
}
.index-p-nav li a {
	display: inline-block;
	padding: 0 5px;
	font-size: 14px;
	line-height: 30px;
	color: #999;
	transition: all .3s;
}
.index-p-nav li a:hover {
	color: #cc0011;
}

@media(max-width:992px) {
.index-title {
	float: none;
	display: block;
	text-align: center;
}
.index-title h3:before {
	display: none;
}
.index-title span {
	padding-left: 0;
}
.index-title span:before {
	display: none;
}
.index-p-nav {
	display: none;
}
}

@media(max-width:768px) {
}
/*图片放大*/
.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(../image/point.png);
	background-repeat: repeat;
}
/*首页关于*/
.index-a>div{
	display: flex;
	flex-wrap: wrap;
	padding-top: 10vh;
	padding-bottom: 10vh;
}
.index-a .index-a-left {
	width: 50%;
	background-position: center;
	background-size: cover;
}
.index-a .index-a-right {
	width: 50%;
	padding:3% 5%;
}
.index-a-info {
	font-size: 15px;
	line-height: 24px;
	color: #666;
}
.index-a-data {
	margin: 50px 0 40px;
}
.index-a-data div {
	display: inline-block;
	margin-right: 50px;
}
.index-a-data div p {
	font-size: 56px;
	line-height: 1em;
	color: #cc0011;
}
.index-a-data div span {
	font-size: 14px;
	line-height: 1em;
	color: #999;
}
.index-a .index-a-right a.more {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0px 25px;
	font-size: 13px;
	line-height: 36px;
	vertical-align: bottom;
	color: #333;
	background: #f7f7f7;
	transition: all .4s;
}
.index-a .index-a-right a.more:hover {
	color: #fff;
}
.index-a .index-a-right a.more:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0%;
	width: 2px;
	height: 100%;
	background-color: #cc0011;
	transition: all .4s;
}
.index-a .index-a-right a.more:hover:before {
	content: "";
	width: 100%;
	transition: all .4s;
}

@media(max-width:992px) {


.index-a .index-a-left {
	width: 100%;
	padding-bottom: 56.25%;
	background-position: center;
	background-size: cover;
}
.index-a .index-a-right {
	width: 100%;
	padding: 7% 5%;
}
.index-a-data div {
	display: inline-block;
	margin-right: 30px;
}
.index-a-data div p {
	font-size: 36px;
	margin-bottom: 0px;
}
.index-a-data div span {
	font-size: 12px;
}
}

@media(max-width:768px) {
.index-a .index-a-right {
	padding: 7% 5%;
}
.index-a-data div {
	display: inline-block;
	margin-right: 15px;
}
}
/*首页新闻*/
.index-n {
	display: flex;
	flex-wrap: wrap;
}
a.title-more {
	float: right;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #999;
	transition: all .4s;
}
a.title-more:hover {
	color: #cc0011;
	transition: all .4s;
}
a.title-more span {
	display: inline-block;
	margin-left: 4px;
	vertical-align: middle;
}
.index-n-l {
	float: right;
	width: 56%;
	padding-left: 8%;
	padding-right: 5%;
}
.index-n ul {
	padding-top: 30px;
	border-top: 1px solid #ebebeb;
}
.index-n ul li {
	overflow: hidden;
	font-size: 0px;
}
.index-n ul li span {
	display: inline-block;
	margin-right: 8px;
	float: right;
	font-size: 14px;
	line-height: 36px;
	color: #ccc;
}
.index-n ul li a {
	position: relative;
	padding-left: 20px;
	display: inline-block;
	max-width:calc(100% - 86px);
	font-size: 14px;
	line-height: 36px;
	color: #666;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.index-n ul li a:before{
	content:"";
	position: absolute;  
	z-index:-1;
	top: 50%;
	left: 0;
	margin-top: -4px;
	border-left: 5px solid  #ccc ;
	border-top: 5px solid transparent ;
	border-bottom: 5px solid transparent ;
	transition: all .4s;
}
.index-n ul li a:hover:before{
	content:"";
	border-left: 5px solid  #cc0011;
}
.index-n ul li a:hover {
	color: #cc0011;
	text-decoration: underline;
}
.index-n-r {
	position: relative;
	z-index: 1;
	width: 44%;
	padding-left: 5%;
	padding-right: 8%;
	background: url(../image/img-newsbg.jpg) bottom left no-repeat, #f7f7f7;
}
.index-n-r:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0%;
	width: 100%;
	height: 8px;
	background-color: #cc0011;
}

@media(max-width:992px) {
.index-n>div {
	width: 100%;
	max-width: 750px;
	padding-left: 15px;
	padding-right: 15px;
	margin: auto;
}
a.title-more {
	display: none;
}
.index-n-r {
	display: none;
}
}
/*友情链接*/
.link {
	padding-top: 30px;
	padding-bottom: 10px;
	overflow: hidden;
}
.link .index-title {
	margin-right: 40px;
}
.lin-list {
	padding-bottom: 20px;
}
.lin-list a {
	display: inline-block;
	padding-right: 10px;
	font-size: 13px;
	line-height: 24px;
	color: #999;
	transition: all .4s;
}
.lin-list a:hover {
	color: #cc0011;
}

@media(max-width:992px) {
.link {
	display: none;
}
}
/*页脚*/
#foot {
	position: relative;
	background: #030513;
	color: #999;
}
#foot a {
	color: #999;
	transition: all .4s;
}
#foot a:hover {
	color: #cc0011;
}
.foot-box {
	display: flex;
}
.foot-box>div, .foot-box>ul {
	padding: 5vh 4% 3vh;
	border-left: 1px solid rgba(255,255,255,0.1);
}
.foot-box>div:first-child {
	padding-left: 0%;
	border-left: none;
}
.foot-box .foot-logo {
}
.foot-box .foot-nav {
	width: calc(8% + 201px);
	font-size: 0px;
}
.foot-box .foot-nav li {
	display: inline-block;
	width: 50%;
	height: 30px;
}
.foot-box .foot-nav a {
	font-size: 14px;
	line-height: 30px;
	display: inline-block;
	min-width: 100px;
}
.foot-box .foot-contact {
	flex-grow: 1;
}
.foot-box .foot-code {
	text-align: center;
}
.foot-box .foot-code img {
	max-width: 120px;
	margin-bottom: 10px;
}

@media(max-width:1200px) {
.foot-nav ol {
	font-size: 16px;
}
.foot-nav li a, .foot-nav p {
	font-size: 13px;
}
}

@media(max-width:992px) {
.foot-nav {
	display: none;
}
}
.foot-copyright {
	border-top: 1px solid rgba(255,255,255,0.2);
	padding: 18px 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: #cc0011;
}

@media(max-width:992px) {
.foot-copyright .pull-right {
	float: none;
}
}
/* 定时弹出广告 */
.ad {
	position: fixed;
	z-index: 999;
	left: 50%;
	top: 50%;
	margin: -90px -200px;
	display: none;
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
.ad-img {
	position: absolute;
	z-index: 9;
	right: 100%;
	top: 50%;
	margin-right: -90px;
	transform: translate(0%, -50%);
	display: flex;
	align-items: center;
	width: 180px;
	height: 180px;
	background: #fff;
	border: 10px solid #cc0011;
	border-radius: 50%;
	overflow: hidden;
}
.ad-img img {
	width: 160px !important;
}
.ad-content {
	padding: 20px 20px 20px 100px;
	width: 400px;
	min-height: 140px;
	background: #cc0011;
	color: #fff;
	border-radius: 8px
}
.ad-content h4 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: bold;
}
.ad-content a {
	display: inline-block;
	margin-top: 6px;
	padding: 0 12px;
	font-size: 14px;
	line-height: 30px;
	color: #333;
	background: rgba(255,255,255,1);
	border-radius: 4px;
	transition: all .4s;
}
.ad-content a:hover {
	color: #cc0011;
	background: rgba(255,255,255,0.8);
}
.ad-content a svg {
	display: inline-block;
	margin-left: -2px;
	width: 20px;
	height: 20px;
	line-height: 30px;
	vertical-align: middle;
}
.ad-content p {
	margin: 0 0 5px;
}
.ad .close-ad {
	position: absolute;
	z-index: 1;
	top: 4px;
	right: 4px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	color: #fff;
	text-align: center;
	background: #cc0011;
	transition: all .4s;
}
.ad .close-ad:hover {
	color: #cc0011;
	background: #fff;
}
/*页面左侧栏*/
.sideBar {
	position: fixed;
	z-index: 99;
	right: 0;
	bottom: 20%;
	font-size: 14px;
	border-radius: 6px 0 0 6px;
}
.sideBar>div {
	z-index: 1;
	width: 42px;
	height: 42px;
	line-height: 42px;
}
.sideBar>div>a {
	display: inline-block;
	width: 100%;
	height: 100%;
	line-height: inherit;
	text-align: center;
	background: #fff;
	border: 1px solid #ebebeb;
	border-bottom: 0px;
	border-right: 0px;
	cursor: pointer;
	transition: all .4s;
}
.sideBar>div:last-child>a {
	border-bottom: 1px solid #ebebeb;
}
.sideBar>div>a:hover, .sideBar>div.open>a {
	border: 1px solid #cc0011;
	border-bottom: 0px;
	border-right: 0px;
	background: #cc0011;
}
.sideBar>div:last-child>a:hover, .sideBar>div.open:last-child>a {
	border-bottom: 1px solid #cc0011;
}
.sideBar>div>a span {
	display: inline-block;
	width: 100%;
	height: 100%;
	line-height: inherit;
	font-size: 20px;
	color: #333;
	transition: all .4s;
}
.sideBar>div>a:hover span, .sideBar>div.open>a span {
	color: #fff;
}
.sideBar>div>div {
	position: absolute;
	z-index: 1;
	right: calc(100% + 1px);
	bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition:all 0.3s linear;
  -moz-transition:all 0.3s linear;
  -ms-transition:all 0.3s linear;
  -o-transition:all 0.3s linear;
  transition:all 0.3s linear;
	width: 140px;
	background: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	transition: all .4s;
}
.sideBar>div.open>div {
	z-index: 2;
	opacity: 1;
  visibility: visible;
}
.sideBar>div.servicelink>div {
	width: 180px;
}
.sideBar-hide>div {
	padding: 10px 26px;
	line-height: 22px;
}
.sideBar-hide>div.sideBar-title {
	padding: 10px 20px;
	font-weight: bold;
	color: #fff;
	background: #cc0011;
}
.sideBar-hide>ul li a {
	display: block;
	width: 100%;
	padding: 0 26px;
	border-bottom: 1px solid #ebebeb;
	background: #fff;
	transition: all .4s;
}
.sideBar-hide>ul li a:hover {
	color: #cc0011;
	background: #f7f7f7;
}
.sideBar-hide>div p {
	margin: 0 0 5px;
}
.sideBar-hide>div font {
	font-size: 18px;
	color: #cc0011;
}
/*============ 首页/公共end ============*/



/*内页公共*/
/*内页banner*/
.inside-banner {
	position: relative;
	z-index: 1;
	width: 100%;
	transition: all .3s;
}
.banner-pc {
	display: block;
	width: 100%;
}
.banner-mobile {
	display: none;
	width: 100%;
}
.column-info {
	position: absolute;
	z-index: 2;
	bottom: 0px;
	left: 0;
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
	line-height: 1.2;
	color: #fff;
	background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7));
}
.column-info span {
	font-size: 18px;
}
.column-info strong {
	display: block;
	font-size: 36px;
}

@media(max-width:1200px) {
.column-info {
	padding-top: 50px;
	padding-bottom: 40px;
}
.column-info span {
	font-size: 18px;
}
.column-info strong {
	display: block;
	font-size: 28px;
}
}

@media(max-width:992px) {
.column-info {
	padding-top: 40px;
	padding-bottom: 30px;
}
.column-info span {
	font-size: 16px;
}
.column-info strong {
	display: block;
	font-size: 24px;
}
}

@media(max-width:768px) {
.banner-pc {
	display: none;
}
.banner-mobile {
	display: block;
}
.column-info span {
	font-size: 14px;
}
.column-info strong {
	display: block;
	font-size: 20px;
}
}
/*面包屑*/


.inside-nav {
	background: #f2f2f2;
}
#subnav {
	margin: 0;
}
#subnav .panel {
	margin: 0;
	box-shadow: none;
}

@media(min-width:992px) {
#subnav {
	margin: 0;
	padding-top: 2px;
}
#subnav .panel-default {
	background: none;
	border: none;
	box-shadow: none;
}
#subnav .panel-heading {
	display: none;
}
#subnav .collapse {
	display: block;
}
#subnav .panel-body {
	border: none;
	background: none;
	padding: 0px;
	font-size: 0px;
}
#subnav .panel-body li {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0 1px;
}
#subnav .panel-body li:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 0%;
	width: 1px;
	height: 20px;
	margin-top: -10px;
	background-color: #000;
	opacity: 0.1;
}
#subnav .panel-body li a {
	display: inline-block;
	width: 100%;
	padding: 15px 30px;
	font-size: 14px;
	line-height: 24px;
	color: #333;
	transition: all .3s;
}
#subnav .panel-body li a:hover, #subnav .panel-body li.on a {
	color: #cc0011;
}
}

@media(max-width:992px) {
.inside-nav .container {
	padding: 0px;
	width: 96%;
	margin: auto;
}
#subnav .panel-default {
	background: none;
	border: none;
}
#subnav .panel-heading {
	padding: 0px 15px;
	border: none;
	background: none;
	color: #cc0011;
}
#subnav .panel-heading a {
	display: block;
	width: 100%;
	padding: 15px 0px;
	font-size: 14px;
	line-height: 20px;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
#subnav .panel-heading a b {
	float: right;
	display: inline-block;
	margin-top: 8px;
}
#subnav .panel-body {
	padding: 5px 0px;
	margin-bottom: 15px;
	border: none;
	background: rgba(255,255,255,0.1);
}
#subnav .panel-body li a {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0px 15px;
	font-size: 14px;
	line-height: 42px;
	color: #333;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	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: #cc0011;
	background: #fff;
}
#subnav .panel-body li a:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 15px;
	width: 7px;
	height: 7px;
	margin-top: -3px;
	background-color: #cc0011;
	opacity: 0;
	transform: rotate(45deg);
	transition: all .4s;
}
#subnav .panel-body li.on a:before {
	content: "";
	opacity: 1;
}
}
/*导航*/


.breadcrumb-box {
	padding: 15px 0;
	border-bottom: 1px solid #ebebeb;
	background: #f7f7f7;
}
.breadcrumb {
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0px auto;
	border: nonr;
	border-radius: 0;
	text-align: right;
	background: none;
}
.breadcrumb a {
	color: #4d4d4d;
	transition: all .4s;
}
.breadcrumb a:hover {
	color: #cc0011;
}

@media(max-width:992px) {
.breadcrumb {
	padding: 0px;
	margin: 0px auto;
	border: nonr;
	border-radius: 0;
	text-align: right;
	background: none;
}
}
/*盒子*/

.padding-box {
	padding-top: 9vh;
	padding-bottom: 9vh;
}
.padding-top {
	padding-top: 9vh;
}
.padding-bottom {
	padding-bottom: 9vh;
}
.gray-box {
	background-color: #f7f7f7;
}

@media(max-width:992px) {
.padding-box {
	padding-top: 7vh;
	padding-bottom: 7vh;
}
.padding-top {
	padding-top: 7vh;
}
.padding-bottom {
	padding-bottom: 7vh;
}
}

@media(max-width:768px) {
.padding-box {
	padding-top: 5vh;
	padding-bottom: 5vh;
}
.padding-top {
	padding-top: 5vh;
}
.padding-bottom {
	padding-bottom: 5vh;
}
}
/*信息盒子*/
.info {
	margin: 0 0 15px;
	font-size: 17px;
	color: #333;
	line-height: 1.5em;
}
.info p {
	margin: 0 0 15px;
}

@media(max-width:1200px) {
.info {
	font-size: 15px;
}
.info p {
	margin: 0 0 10px;
}
}

@media(max-width:992px) {
.info {
	font-size: 15px;
}
}
/*横线*/
.line {
	display: inline-block;
	width: 60px;
	height: 3px;
	background: #cc0011;
}
.line-bicolor {
	background-image: repeating-linear-gradient(90deg, #cc0011 0%, #cc0011 50%, #262626 50%, #262626 100%);
}

@media(max-width:1200px) {
.line {
	width: 40px;
	height: 2px;
}
}
/*内页翻页*/



.pagination>li>a {
	margin: 1px;
	padding: 8px 14px;
	border: none;
	font-size: 15px;
	color: #666;
	background: #f5f5f5;
	border-radius: 0!important;
	transition: all .4s;
}
.gray-box .pagination>li>a {
	background: #fff;
}
.pagination>li>a:hover {
	color: #cc0011;
}
.pagination>li.on>a {
	color: #fff;
	font-weight: bold;
	background: #cc0011;
}

@media(max-width:992px) {
.pagination>li>a {
	font-size: 13px;
}
}
/*子导航*/
.subnav {
	padding: 18px 0;
	background: #fff;
	border-bottom: 1px solid #ebebeb;/*box-shadow: 0 0 20px rgba(0,0,0,0.1);*/
}
.subnav-title {
	display: inline-block;
	padding-left: 20px;
	margin: 6px 0;
	font-size: 24px;
	line-height: 26px;
	color: #cc0011;
	border-left: 3px solid #cc0011;
}
#inside-subnav {
	float: right;
}
#inside-subnav .dropdown {
	border: 1px solid rgba(0,0,0,0.15);
	background: #f7f7f7;
	transition: all .4s;
}
#inside-subnav .dropdown.open {
	border: 1px solid rgba(0,0,0,0.15);
	background: #cc0011;
}
#inside-subnav .dropdown>a {
	display: inline-block;
	width: 100%;
	min-width: 300px;
	padding: 0px 20px;
	line-height: 36px;
	color: #333;
	transition: all .4s;
}
#inside-subnav .dropdown.open>a {
	color: #fff;
}
#inside-subnav .dropdown>.dropdown-menu {
	left: 0;
	right: 0;
	margin-top: 10px;
	padding: 10px 0;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	border-radius: 0;
	background: #f7f7f7;
}
#inside-subnav .dropdown>.dropdown-menu a {
	display: inline-block;
	width: 100%;
	line-height: 26px;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
#inside-subnav .dropdown>.dropdown-menu a:hover {
	color: #fff;
	background: #cc0011;
}

@media(max-width:992px) {
.subnav-title {
	display: none;
}
#inside-subnav {
	float: none;
	width: 100%;
}
}
/*关于我们*/
#about-info {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#about-info:after {
	content: "ABOUT US";
	position: absolute;
	z-index: -1;
	bottom: 0px;
	left: 50%;
	font-size: 200px;
	line-height: 0.6em;
	color: #fafafa;
	font-weight: bold;
	white-space: nowrap;
	transform: translate(-50%, 0%);
	transition: all .4s;
}
.about-box {
	display: flex;
	flex-wrap: wrap;
}
.about-img{
	width: 40%;margin-right: 5%; float: left;
}
.about-text{
	width: 55%;float: right;
}
.about-info {
/*
	-webkit-column-count:3;
	column-count:3;
	-webkit-column-gap:30px;
	column-gap:30px;*/
}
.about-info p {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.75em;
	color: #666;
}

@media(max-width:1200px) {
#about-info:after {
	content: "ABOUT US";
	font-size: 160px;
}
}

@media(max-width:992px) {
#about-info:after {
	content: "ABOUT US";
	font-size: 120px;
	letter-spacing: 0;
}
.about-img{
	width: 100%;margin-right: 0;margin-bottom: 25px;;
}
.about-text{
	width: 100%;
}
}

@media(max-width:768px) {
#about-info:after {
	content: "ABOUT US";
	font-size: 120px;
	left: 0%;
	transform: translate(0%, 0%);
}

}
/*关于数量递增*/
.countup-box {
	padding-top: 30px;
	margin-bottom: -20px;
}
.countup-box div {
	display: inline-block;
	padding-right: 50px;
	padding-bottom: 20px;
}
.countup-box span {
	display: inline-block;
	margin-bottom: 5px;
	font-size: 48px;
	line-height: 1em;
	color: #cc0011;
}
.countup-box p {
	display: inline-block;
	font-size: 13px;
	line-height: 1em;
	color: #333;
	text-align: left;
}

@media(max-width:1200px) {
.countup-box span {
	font-size: 42px;
}
}

@media(max-width:992px) {
.countup-box div {
	display: inline-block;
	padding-right: 30px;
}
.countup-box span {
	font-size: 36px;
}
}
/*组织架构*/
#about-structure {
	background: #f5f5f5;
}
.about-l a.lightbox {
	display: inline-block;
	padding: 0px 20px;
	font-size: 14px;
	line-height: 36px;
	color: #fff;
	background: #cc0011;
	transition: all .4s;
}
.about-l a.lightbox:hover {
	padding-right: 35px;
}
.about-l a.lightbox span {
	display: inline-block;
	margin-right: 6px;
}

@media(max-width:992px) {
.about-l a.lightbox {
	margin-top: -20px;
	margin-bottom: 30px;
}
}
/*关于业务板块*/
#about-b-sort {
	padding: 0 75px;
	text-align: right;
	font-size: 32px;
	color: #333;
}
#about-b-sort small {
	font-size: 16px;
	color: #999;
}
.about-b-l {
	float: left;
	width: 15%;
}
.about-b-r {
	float: left;
	width: 85%;
}
#about-b {
	margin-top: 30px;
	padding-left: 280px;
}
#about-b .owl-stage {
	padding-left: 0px!important;/*内边距JS设定值为50%*/
}
#about-b .owl-item {
	opacity: 0.5;
	transition: all .3s;
}
#about-b .owl-item.active {
	opacity: 1;
}
#about-b .item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
#about-b .item .about-b-img {
	width: 100%;
}
#about-b .item .about-b-img img {
	max-width: 100%;
}
#about-b .item .about-b-info {
	position: relative;
	z-index: 2;
	width: 70%;
	margin-top: -20%;
	margin-left: 15%;
	margin-right: 15%;
	padding: 5%;
	background: #f7f7f7;
}
#about-b .item .about-b-info:after{ content:""; position: absolute;  z-index:-1;bottom: 0px;left: 0%;width: 0%;height: 2px;background-color:#cc0011;transition:all .4s;}
#about-b .item:hover .about-b-info:after{ content:"";width: 100%;}
#about-b .item .about-b-info h4 {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: bold;
	color: #cc0011;
}
#about-b .item .about-b-info p {
	font-size: 15px;
	color: #666;
}
#about-b .owl-dots {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	margin-top: 50px;
	text-align: left;
}
#about-b .owl-dot {
	position: relative;
	z-index: 1;
	display: block;
	height: 70px;
	font-size: 16px;
	color: #666;
	margin: 0px;
	padding: 0px 75px 0 75px!important;
	background: none;
}
#about-b .owl-dot.active {
	color: #fff;
	background: #cc0011;
}
#about-b .owl-dot:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 45px;
	width: 13px;
	height: 13px;
	margin-top: -7px;
	background-color: #ccc;
	border-radius: 50%;
	transition: all .4s;
}
#about-b .owl-dot.active:after {
	content: "";
	background-color: #fff;
}
#about-b .owl-dots {
	counter-reset: compteListe;
}
#about-b .owl-dots .owl-dot:before {
	counter-increment: compteListe 1;
	content: "0" counter(compteListe);
	position: absolute;
	z-index: -2;
	top: 50%;
	left: 15px;
	font-size: 72px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0;
	transform: translateY(-50%);
	transition: all .4s;
	opacity: 0;
}
#about-b .owl-dots .owl-dot.active:before {
	opacity: 0.2;
}

@media(max-width:1200px) {
#about-b .owl-dots {
	margin-top: 50px;
}
#about-b .owl-dot {
	margin-left: 50px;
	font-size: 14px;
	padding: 0px 25px 0 60px!important;
}
#about-b .owl-dot:after {
	content: "";
	left: 35px;
}
#about-b .owl-dots .owl-dot:before {
	top: 50%;
	left: 15px;
	font-size: 60px;
}
}

@media(max-width:992px) {
.about-b-l {
	float: none;
	width: 100%;
}
.about-b-r {
	float: none;
	width: 100%;
}
#about-b {
	margin-top: 10px;
	padding: 0px;
}
#about-b-sort {
	display: none;
}
#about-b .owl-dots {
	position: sticky;
	margin-top: 40px;
}
#about-b .owl-dot {
	display: inline-block;
	width: auto;
	margin-left: 40px;
	font-size: 14px;
	padding: 0px 20px 0 55px!important;
}
#about-b .owl-dot:after {
	content: "";
	left: 30px;
	width: 11px;
	height: 11px;
	margin-top: -6px;
}
#about-b .owl-dots .owl-dot:before {
	top: 50%;
	left: 15px;
	font-size: 48px;
}
}

@media(max-width:768px) {
#about-b {
	margin-top: 0px;
}
#about-b .item .about-b-info {
	position: relative;
	z-index: 2;
	width: 100%;
	margin-top: -20%;
	margin-left: 20px;
	margin-right: 20px;
	padding: 5%;
	background: #cc0011;
}
#about-b .owl-dots {
	margin-top: 25px;
}
#about-b .owl-dot {
	width: 100%;
	margin: 0;
	font-size: 14px;
	height: 50px;
	text-align: left;
	padding: 0px 10px 0 40px!important;
}
#about-b .owl-dot:after {
	content: "";
	left: 15px;
	width: 11px;
	height: 11px;
	margin-top: -6px;
}
#about-b .owl-dots .owl-dot:before {
	top: auto;
	bottom: 10%;
	left: 10px;
	font-size: 48px;
	line-height: 0.8em;
	transform: translateY(0%);
}
}



#about-business{
	background-image: url(../image/img-culture-bg.png);
	background-position:left bottom;
	background-repeat: no-repeat;
	background-size: 50vw;
}

.culture-list {
	width: 92%;
	max-width: 1000px;
	max-height: 410px;
	margin:20px auto;
	transition:all ease 1.2s;
	overflow: hidden;
}
.culture-list.show {
	max-height:1200px;
}
.culture-list li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 2em;
}
.culture-list li p{
	margin: 0px;
}
.culture-list .culture-title{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20%;
	font-size: 17px;
	font-weight: bold;
	color: #cc0011;
	border-bottom: 1px solid #cc0011;
}
.culture-list .culture-text{
	width: 75%;
	padding: 20px 0%;
	font-size: 15px;
	color: #333;
	text-align: left;
	border-bottom: 1px solid #ccc;
}
.culture-list li:nth-of-type(1) .culture-title{
	border-top:2px solid #cc0011;
}
.culture-list li:nth-of-type(1) .culture-text{
	border-top: 2px solid #ccc;
}
.culture-list li:last-of-type  .culture-title{
	border-bottom:2px solid #cc0011;
}
.culture-list li:last-of-type  .culture-text{
	border-bottom: 2px solid #ccc;
}

a.culture-more{
	display: inline-block;
	padding: 0 25px;
	font-size: 14px;
	line-height: 3em;
	color: #333;
	background: #ccc;
	transition:all .4s;
}
a.culture-more:hover{
	color: #fff;
	background: #cc0011;
}

@media(max-width:992px) {
.culture-list {
	max-height: 385px;
}
.culture-list .culture-title{
	width: 30%;
	font-size: 14px;
}
.culture-list .culture-text{
	width: 65%;
	padding: 15px 0%;
	font-size: 14px;
	color: #333;
}
}


/*企业文化*/
.about-b{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
}


/*关于-风采*/
#photo-box .container {
	max-width: 1400px;
}
.style-list {
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
}
.style-list li {
	width: 25%;
	padding: 10px;
	transition: all .4s;
}
.style-list li a {
	position: relative;
	z-index: 1;
	display: block;
}
.style-list li div {
	overflow: hidden;
}
.style-list li p {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0 20px;
	margin: 0;
	font-size: 14px;
	line-height: 42px;
	color: #fff;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.7) 100%);
}
.style-list li:hover p {
	color: #cc0011;
}

@media(max-width:992px) {
.style-list li {
	width: 50%;
}
}
/*荣誉*/
#honor-box {
	background-size: cover;
}
#honor-box .container {
	max-width: 1400px;
}

@media(min-width:768px) {
#honor-box {
	background-image: url(../image/img-honorbg1.jpg);
}
}

@media(max-width:768px) {
#honor-box {
	background-image: url(../image/img-honorbg2.jpg);
}
}
/*应用领域*/
.app-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.app-list li {
	width: 50%;
	min-height: 310px;
	padding: 15px;
}
.app-list li a {
	position: relative;
	z-index: 1;
	display: block;
	padding: 40px;
	height: 100%;
	background: #f7f7f7;
	transition: all .4s;
}
.app-list li a:hover {
	transition-delay: 0.3s;
	background: #000;
}
.app-list-text {
	position: relative;
	z-index: 3;
	width: 60%;
}
.app-list li a .app-list-text h4 {
	font-size: 17px;
	line-height: 1.5em;
	text-transform: Uppercase;
	transition: all .4s;
}
.app-list li a .app-list-text p {
	font-size: 15px;
	line-height: 1.5em;
	color: #333;
}
.app-list li a:hover .app-list-text h4, .app-list li a:hover .app-list-text p {
	color: #fff;
}
.app-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;
}
.app-list li a:hover .app-list-img {
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
	opacity: 0.6;
	transition: all .4s;
}
/*应用内页*/
.info-box {
	max-width: 1000px;
	margin: auto;
}
.info-head {
	padding-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
}
.info-head h3 {
	font-size: 30px;
	text-transform: Uppercase;
	margin: 0 0 6px;
}
.info-head span {
	font-size: 13px;
	color: #999;
}
.info-head span strong {
	text-transform: Uppercase;
}
.info-content {
	padding: 30px 0;
	font-size: 15px;
	line-height: 1.75em;
}
.info-page {
	display: flex;
	padding-top: 20px;
	border-top: 1px solid #ebebeb;
}
.info-page>div {
	position: relative;
	z-index: 1;
	width: 50%;
}
.info-page p {
	margin-bottom: 5px;
	font-size: 13px;
	color: #999;
	transition: all .4s;
}
.info-page a {
	display: inline-block;
	max-width: 100%;
	font-size: 15px;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.info-page a:hover {
	color: #cc0011;
}
.info-page a.nomore {
	color: #999;
	cursor: default;
}

@media(min-width:992px) {
.info-next {
	text-align: right;
}
}

@media(max-width:992px) {
.info-head h3 {
	font-size: 24px;
	margin: 0 0 0px;
}
}

@media(max-width:768px) {
.info-head h3 {
	font-size: 20px;
}
}
/* 使命 */
.vision {
	position: relative;
	z-index: 1;
}
.vision-slogan {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 40%;
	padding: 40px;
	background: #f7f7f7;
}
.vision-slogan .index-title {
	margin-bottom: 20px;
}
.vision-slogan p {
	font-size: 17px;
	line-height: 1.75em;
}
#init {
	padding-left: 20%;
	padding-top: 60px;
}
#init .wrapper {
	width: 100%;
	height: 400px;
	border: 1px solid #ebebeb;
	cursor: move;
	overflow: hidden;
}
#init .wrapper img {
	width: 1400px;
	max-width: none;
}

@media(max-width:992px) {
.vision-slogan {
	position: relative;
	z-index: 2;
	left: auto;
	top: auto;
	width: 80%;
	padding: 15px 30px 30px;
	background: #f7f7f7;
}
#init {
	position: relative;
	z-index: 1;
	padding-left: 0%;
	padding-top: 0px;
	margin-top: -40px;
}
}

@media(max-width:768px) {
.vision-slogan {
	width: 100%;
}
#init {
	margin-top: 0px;
}
#init .wrapper {
	height: 300px;
}
#init .wrapper img {
	width: 1000px;
	max-width: none;
}
}
/*vision-mission*/
.mission-title {
	padding-bottom: 30px;
}
.mission li {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 0px;
}
.mission li .mission-info strong {
	margin-bottom: 20px;
	display: block;
	font-size: 13px;
	color: #999;
	line-height: 1em;
}
.mission li .mission-info .mission-number {
	margin: 0;
	font-size: 48px;
	color: #cc0011;
}
.mission li .mission-info p {
	font-size: 17px;
	line-height: 1.75em;
}

@media(min-width:992px) {
.mission li .mission-img {
	position: relative;
	width: 40%;
}
.mission li .mission-info {
	display: flex;
	align-items: center;
	width: 60%;
	padding: 0px 8%;
}
.mission li .mission-info>div {
	position: relative;
	z-index: 1;
	padding: 30px;
}
.mission li:nth-of-type(Odd) .mission-img, .mission li:nth-of-type(even) .mission-info {
	order: 0
}
.mission li:nth-of-type(even) .mission-img, .mission li:nth-of-type(Odd) .mission-info {
	order: 1
}
.mission li .mission-info div::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background-color: #f7f7f7;
}
.mission li .mission-info div:after {
	content: "";
	position: absolute;
	z-index: -2;
	bottom: -20px;
	right: -30px;
	width: 80%;
	height: 80%;
	background-color: #fcf5d1;
}
.mission li:nth-of-type(even) .mission-info div:after {
	content: "";
	left: -30px;
	right: auto;
}
}

@media(max-width:992px) {
.mission-title {
	padding-bottom: 20px;
}
.mission li {
	max-width: 600px;
	margin: auto;
	padding: 30px 0px;
}
.mission li .mission-img {
	position: relative;
	z-index: 1;
	width: 100%;
}
.mission li .mission-info {
	position: relative;
	z-index: 2;
	width: 90%;
	padding: 20px 40px;
	margin: -30px auto 0;
	background: #f7f7f7;
}
}

@media(max-width:768px) {
.mission-title {
	padding-bottom: 10px;
}
.mission li .mission-info {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 20px 30px;
	margin: 0;
}
.mission li .mission-info p {
	font-size: 15px;
	line-height: 1.5em;
}
}
/*内页标题*/
.inside-title {
	padding-bottom: 40px;
}
.inside-title h3 {
	margin: 10px 0;
	position: relative;
	font-size: 24px;
	font-weight: bold;
	color: #333;
}
.inside-title.inside-title-w h3 {
	color: #fff;
}
.inside-title h3:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -18px;
	left: 0%;
	width: 46px;
	height: 3px;
	background: #cc0011;
}
.text-center .inside-title h3:after {
	left: 50%;
	margin-left: -23px;
}
.inside-title p {
	font-size: 15px;
	line-height: 1em;
	color: #999;
	text-transform: Uppercase;
}

@media(max-width:992px) {
.inside-title h3 {
	padding-bottom: 10px;
	font-size: 20px;
}
.inside-title h3:after {
	content: "";
	bottom: -14px;
	width: 38px;
	height: 2px;
}
.text-center .inside-title h3:after {
	margin-left: -19px;
}
.inside-title p {
	font-size: 13px;
}
}
/*发展历程*/

.course-box{
	max-width: 1300px;
	position: relative;
}
.course-nav{
	position: sticky;
	z-index: 3;
	top: 90px;
	left: 0%;
	width: 100%;
	background: #fff;
}
.course-nav ul{
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid #ebebeb;
}
.course-nav ul li{
	display: inline-block;
	margin-right: 15px;
}
.course-nav ul li a{
	position: relative;
	z-index: 1;
	display: inline-block;
	width: 100%;
	padding-left: 20px;
	font-size: 15px;
	color: #333;
	font-weight: bold;
	line-height: 32px;
	transition:all .4s;    
}
.course-nav ul li.active a{
	color: #da251c;
}
.course-nav ul li a:before{ content:""; position: absolute;  z-index:-1;top: 50%;left: 0px;width: 10px;height: 10px; margin-top: -5px; border-top: 3px solid #da251c;border-right: 3px solid #da251c; transform:rotate(45deg); opacity: 0; transition:all .4s;}
.course-nav ul li.active a:before{ content:""; opacity:1; }


.course-list{
	padding-left:80px;
}
.course {
	margin: 0px;
	padding-left: 40px;
	font-size: 15px;
	border-left: 1px solid #ebebeb;
}
.course:before, .course:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
}
.course li {
	position: relative;
	padding: 40px 0;
	border-bottom: 1px dashed #ebebeb;
}
.course li p{
	margin-bottom: 15px;
}
.course-title {
	display: block;
	position: absolute;
	top: 20px;
	left: -120px;
	z-index: 1;
	font-size: 18px;
	margin: 20px 0 20px;
	color: #cc0011;
}
.course-title:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 5px;
	left:73px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #cc0011;
}
.course-title:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 68px;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background-color: #cc0011;
	opacity: 0.1;
}
@media(max-width:1200px) {
.course-nav{
	top: 80px;
}
}
@media(max-width:992px) {
.course-nav{
	top: 70px;
}
}
@media(max-width:768px) {
.course-nav{
	top: 50px;
}
}
/*加入我们*/
#join {
	margin: auto;
}
#join .panel {
	position: relative;
	margin: 10px 0px;
	border: none;
	box-shadow: none;
	background: #f7f7f7;
	transition: all ease .4s;
}
#join .panel .panel-heading {
	width: 100%;
	margin: auto;
	padding: 0px;
	border: none;
	background: none;
}
#join .panel .panel-heading a {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	padding: 20px 80px 20px 25px;
}
#join .panel .panel-heading a h4 {
	display: inline-block;
	width: 100%;
	margin: 0px;
	font-size: 20px;
	line-height: 30px;
	text-transform: Uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
#join .panel .panel-heading a span {
	display: inline-block;
	max-width: 100%;
	font-size: 14px;
	line-height: 20px;
	color: #999;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
#join .panel .panel-heading a.accordion-toggle h4 {
	color: #cc0011;
}
#join .panel .panel-heading a.accordion-toggle.collapsed h4 {
	color: #333;
	background: none;
}
#join .panel .panel-heading a.accordion-toggle .join-close {
	width: 18px;
	height: 18px;
	position: absolute;
	z-index: 2;
	top: 50%;
	margin-top: -9px;
	right: 25px;
	cursor: pointer;
	-webkit-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
}
#join .panel .panel-heading a.accordion-toggle .join-close:before, #join .panel .panel-heading a.accordion-toggle .join-close:after {
	content: "";
	position: absolute;
	background: #cc0011;
}
#join .panel .panel-heading a.accordion-toggle .join-close:before {
	width: 2px;
	height: 100%;
	left: 50%;
	margin-left: -1px;
	top: 0;
}
#join .panel .panel-heading a.accordion-toggle .join-close:after {
	width: 100%;
	height: 2px;
	top: 50%;
	margin-top: -1px;
	left: 0;
}
#join .panel .panel-heading a.accordion-toggle .join-close {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#join .panel .panel-heading a.accordion-toggle.collapsed .join-close {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
#join .panel .panel-heading a.accordion-toggle.collapsed .join-close:before, #join .panel .panel-heading a.accordion-toggle.collapsed .join-close:after {
	background: #5b5b5b;
}
#join p {
	font-size: 14px;
	line-height: 1.75em;
	color: #4d4d4d;
}
#join .panel-collapse {
	padding: 0px 30px 30px;
	width: 100%;
	margin: auto;
	transition: all .3s;
}
#join .panel-body {
	padding: 30px 0px 0px;
	border: none;
	border-top: 1px dashed #ccc;
}
#join .panel-body hr {
	margin: 25px 0px;
	border-color: #ccc;
}
.join-hr {
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px dashed #ccc;
}
.join-hr a {
	display: inline-block;
	padding: 0px 35px;
	font-size: 15px;
	line-height: 42px;
	font-weight: bold;
	color: #fff;
	border-radius: 21px;
	background: #333;
	transition: all .4s;
}
.join-hr a:hover {
	background: #cc0011;
}
/*图片展示*/
.photos {
	padding: 15px;
}
.photos p {
	display: block;
	padding: 10px;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 20px;
	background: #f7f7f7;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.photos a:hover p {
	background: #cc0011;
	color: #fff;
}
/*产品导航*/
.p-nav-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.p-nav-list ol {
	display: block;
	width: 100%;
	padding: 0px;
	margin-left: 12px;
	margin-right: 12px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
}
.p-nav-list ol h3 {
	display: inline-block;
	margin: 0 0 -1px;
	padding: 0px 0 10px;
	font-size: 24px;
	line-height: 1.2em;
	font-weight: 900;
	color: #cc0011;
	border-bottom: 2px solid #cc0011;
	text-transform: Uppercase;
}
.p-nav-list li {
	width: 20%;
	padding: 12px;
}
.p-nav-list li a {
	display: block;
	height: 100%;
	padding: 15px;
	background: #f7f7f7;
	font-size: 15px;
	line-height: 1.4em;
	color: #333;
	text-align: center;
	box-shadow: 0 0 0 rgba(0,82,196,0);
	transition: all .4s;
}
.p-nav-list li a:hover {
	background: #cc0011;
	color: #fff;
	box-shadow: 0 0 20px rgba(0,82,196,0.2);
}
.p-nav-list li a div {
	margin-bottom: 15px;
	overflow: hidden;
}

@media(max-width:1200px) {
.p-nav-list li {
	width: 25%;
}
}

@media(max-width:992px) {
.p-nav-list li {
	width: 33.3333%;
}
}

@media(max-width:768px) {
.p-nav-list ol {
	margin-left: 5px;
	margin-right: 5px;
}
.p-nav-list ol h3 {
	font-size: 18px;
}
.p-nav-list li {
	width: 50%;
	padding: 5px;
}
.p-nav-list li a {
	font-size: 13px;
}
}
/*产品*/
#product-box .container {
	max-width: 1400px;
}
.product-list {
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0 30px;
}
.product-list li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 32%;
	padding: 20px;
	margin-left: -1px;
	margin-top: -1px;
	font-size: 0;
	background: #fff;
	border: 1px solid #ebebeb;
	box-shadow: 0 0 0 rgba(0,0,0,0);
	transition: all .4s;
}
.product-list li:hover {
	position: relative;
	z-index: 1;
	border: 1px solid #cc0011;
	box-shadow: 0 0 20px rgba(230,0,18,0.1);
	background: #fff;
}
.product-list li .product-list-img {
	display: block;
	width:100%;
	overflow: hidden;
}
.product-list li .product-list-text {
	width:100%;
	padding-top: 20px;
	padding-bottom: 10px;
}
.product-list li .product-list-title {
	position: relative;
	z-index: 1;
	display: inline-block;
	max-width: 100%;
	margin: 15px 0 10px;
	font-size: 18px;
	line-height: 1em;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.product-list li:hover .product-list-title {
	color: #cc0011;
}
.product-list li span {
	display: block;
	width: 100%;
	font-size: 13px;
	line-height: 1em;
	color: #999;
}
.product-list li pre {
	margin: 20px 0;
	font-size: 15px;
	line-height: 22px;
	color: #333;
	max-height: 66px;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.product-list li a.more {
	display: inline-block;
	padding: 0 25px;
	margin-top: 10px;
	font-size: 13px;
	line-height: 28px;
	color: #fff;
	background: #999999;
	transition: all .4s;
}
.product-list li a.more:hover {
	background: #cc0011;
}

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

@media(max-width:768px) {
.product-list li {
	width: 100%;
}
	
.product-list li .product-list-img {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}
.product-list li .product-list-text {
	width: 100%;
	padding-left: 0px;
	padding-bottom: 15px;
}
}
/*产品详情*/
#product-content .container {
	max-width: 1400px;
	background: #fff;
	padding: 4%;
}
.product-content {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.product-title {
	position: relative;
	width: 260px;
	padding-right: 40px;
	padding-bottom: 30px;
}
.product-title h2 {
	position: relative;
	z-index: 1;
	margin: 10px 0;
	font-size: 24px;
	line-height: 1.5em;
	color: #333;
}
.product-title span {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding-bottom: 15px;
	font-size: 14px;
	color: #999;
}
.product-title span:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0px;
	left: 0%;
	width: 22px;
	height: 3px;
	background-color: #cc0011;
}
.product-text {
	width: calc(100% - 260px);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 40px;
	border-left: 1px solid #ebebeb;
}
.product-text p {
	font-size: 15px;
	line-height: 1.75em;
}
.product-img {
	width: 100%;
	padding: 0 0 60px;
	overflow: hidden;
}
#product-img1 {
	width: 100%;
}
#product-img1 a {
	display: block;
	overflow: hidden;
}
#product-img1 img {
	width: auto;
	max-width: auto;
	height: 240px;
}
#product-img1 .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	margin: 0px;
	padding: 15px;
	display: inline-block;
	cursor: pointer;
	border-radius: 0px;
	outline: none;
	background: rgba(0,0,0,0.4);
	transition: all .4s;
	transform: translate(0%, -50%);
}
#product-img1 .owl-nav [class*=owl-].owl-prev {
	left: 0;
}
#product-img1 .owl-nav [class*=owl-].owl-next {
	right: 0;
}
#product-img1 .owl-nav [class*=owl-]:hover {
	color: #cc0011;
	text-decoration: none;
	background: rgba(239,30,34,0.8);
	opacity: 1;
}
#product-img1 .owl-nav [class*=owl-].disabled:hover {
	background: rgba(0,0,0,0.2);
	opacity: 0.3;
}
#product-img1 .owl-nav [class*=owl-] i {
	display: inline-block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	color: #fff;
	font-size: 24px;
}

@media(max-width:992px) {
.product-title {
	width: 100%;
	padding-right: 0px;
	padding-bottom: 20px;
}
.product-title h2 {
	font-size: 22px;
}
.product-text {
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
	border-left: none;
}
#product-img1 img {
	height: 180px;
}
}
/*案例*/
#case .container {
	max-width: 1300px;
}
.case-nav {font-size: 0;}
.case-nav li{display: inline-block;}
.case-nav li a{ display: inline-block; margin-right: 10px; margin-bottom: 10px; padding: 10px 20px; font-size: 14px; text-align: center; color: #333; background: #ebebeb; cursor: pointer;transition:all .4s; }
.case-nav li:hover a{ background: #fff; color: #cc0011; box-shadow: 0 0 15px rgba(204,0,17,0.1);}
.case-nav li.active a{ color: #fff; background-color: #cc0011;box-shadow:none;}


.case-list {
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-left: -10px;
}
.case-list li {
	width: 33.33%;
	padding: 10px;
	transition: all .4s;
}
.case-list li a {
	position: relative;
	z-index: 1;
	display: block;
	transition: all .4s;
}
.case-list li a:hover{
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.case-list li div {
	overflow: hidden;
}
.case-list li p {
	width: 100%;
	padding: 12px 15px;
	margin: 0;
	font-size: 14px;
	line-height: 20px;
	color: #4d4d4d;
	background:#f5f5f5;
	transition: all .4s;
}
.case-list li:hover p {
	background:#fff;
	color: #cc0011;
}
@media(max-width:992px) {
.case-list li {
	width: 50%;
}	
}




/*案例详情*/
.case-info {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.case-video {
	order: 1;
	width: 220px;
}
.case-video li {
	margin-bottom: 10px;
}
.case-video a div {
	position: relative;
	z-index: 1;
	background: #000;
}
.case-video a div:before {
	content: "\e624";
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-family: "iconfont" !important;
	font-size: 24px;
	text-align: center;
	color: #fff;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,0.4);
	border-radius: 50%;
}
.case-video a div:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	margin-top: -30px;
	border-radius: 50%;
	border: 1.2px dashed #fff;
}
.case-video a:hover div:after {
	-webkit-animation: changeright 10s linear infinite;
}
 @-webkit-keyframes changeright {
 0% {
-webkit-transform:rotate(0deg);
}
 50% {
-webkit-transform:rotate(180deg);
}
 100% {
-webkit-transform:rotate(360deg);
}
}
.case-video a img {
	opacity: 1;
	transition: all .4s;
}
.case-video a:hover img {
	opacity: 0.5;
}
.case-video a span {
	display: inline-block;
	width: 100%;
	margin: 5px 0;
	font-size: 14px;
	color: #666;
	text-align: center;
	transition: all .4s;
}
.case-video a:hover span {
	color: #cc0011;
}
.case-text {
	order: 0;
	width: 50%;
}
.case-text p {
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	color: #666;
}
/*logo列表*/
.logo-list {
	display: flex;
	flex-wrap: wrap;
	padding: 5% 0;
	border-bottom: 1px solid #ebebeb;
}
.logo-list ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
}
.logo-list ul li {
	width: 20%;
	margin-top: -1px;
	margin-left: -1px;
	border: 1px solid #ebebeb;
	transition: all .4s;
}
.logo-list ul li:hover {
	position: relative;
	border: 1px solid #cc0011;
	box-shadow: 0 0 15px rgba(204,0,17,0.4);
}
.logo-list ul li a {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 0%;
	padding-bottom: 60%;
}
.logo-list ul li a>div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo-list ul li a div img {
	max-width: 100%;
	max-height: 100%;
}
.logo-list .logo-text {
	position: absolute;
	top: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	flex-wrap: wrap;
	text-align: center;
	color: #fff;
	opacity: 0;
	background: rgba(204,0,17,0.9);
	overflow: hidden;
	transition: all .4s;
}
.logo-list a:hover .logo-text {
	top: 0;
	opacity: 1;
}
.logo-list .logo-text p, .logo-list .logo-text span {
	display: block;
	font-size: 14px;
	transform: translate(0%, 20px);
	opacity: 0;
	transition-delay: 0s;
	transition: all .4s;
}
.logo-list a:hover .logo-text p, .logo-list a:hover .logo-text span {
	transform: translate(0%, 0px);
	opacity: 1;
}
.logo-list .logo-text p {
	width: 100%;
	margin: 0px;
	font-size: 20px;
}
.logo-list a:hover .logo-text p {
	transition-delay: 0.55s;
}
.logo-list a:hover .logo-text span {
	transition-delay: 0.62s;
}

@media(max-width:992px) {
.logo-list {
	padding: 30px 0 40px;
}
.logo-list .inside-title {
	width: 100%;
}
.logo-list ul {
	width: 100%;
}
.logo-list .logo-text p, .logo-list .logo-text span {
	font-size: 13px;
	color: #ebebeb;
}
.logo-list .logo-text p {
	font-size: 16px;
	color: #fff;
}
}

@media(max-width:768px) {
.logo-list ul li {
	width: 33.33%;
}
}
/*信息图片*/
.info-bg {
	padding: 10vh 0px;
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
}
.info-bg>div {
	width: 92%;
	max-width: 1200px;
	margin: auto;
	padding: 50px;
	background: rgba(255,255,255,0.6);
	font-size: 16px;
	line-height: 1.75em;
}
/*新闻列表*/
#news-list {max-width: 1200px;}
.news-list {
	margin:0 auto 30px;
}
.news-list li {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	box-shadow: 0 0 0px rgba(0,0,0,0);
	border-bottom: 1px solid #ebebeb;
	transition: all ease .4s;
}
.news-list li:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.05);
	border-bottom: 1px solid #cc0011;
}
.news-list li>a {
	width: 260px;
	overflow: hidden;
}
.news-list li .news-c {
	width: calc(100% - 260px);
	padding-left: 40px;
}
.news-list li .news-title {
	display: inline-block;
	max-width: 100%;
	margin: 12px 0;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	color: #333;
	transition: all .4s;
}
.news-list li:hover .news-title {
	color: #cc0011;
}
.news-list li .news-title:hover {
	text-decoration: underline;
}
.news-list li pre {
	width: 100%;
	font-size: 14px;
	line-height: 24px;
	color: #666;
	max-height: 72px;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-list li span {
	display: block;
	margin-top: 20px;
	font-size: 12px;
	line-height: 24px;
	color: #999;
}
@media(min-width:992px) {
.news-list li {
	padding: 25px 180px 25px 0px;
}
.news-list li:hover {
	padding: 25px 150px 25px 30px;
}
.news-list li:after {
	content: "\e602";
	position: absolute;
	z-index: 1;
	bottom: 30px;
	right: 80px;
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 24px;
	line-height: 30px;
	color: #333;
	opacity: 0;
	transition: all .4s;
}
.news-list li:hover:after {
	right: 40px;
	opacity: 1;
	color: #cc0011;
	transition-delay: 0.2s;
}
	
}
@media(max-width:992px) {
.news-list li {
	padding: 25px 25px 25px 0px;
}
.news-list li:hover {
	box-shadow: none;
}
}
@media(max-width:768px) {
.news-list li {
	padding: 25px 0px;
}
.news-list li>a {
	width: 100%;
}
.news-list li .news-c {
	width: 100%;
	padding-top: 20px;
	padding-left: 0px;
}

}
/*新闻详情*/
.news .container {
	max-width: 1200px;
}
.news-head {
	margin-bottom: 40px;
}
.news-head span {
	display: inline-block;
	font-size: 12px;
	color: #999;
}
.news-head h3 {
	margin-bottom: 10px;
}
.news-head hr {
	border-top: 1px dashed #ebebeb;
}
.news-body p {
	font-size: 14px;
	line-height: 2em;
}
.news-right {
	border-top: 2px solid #cc0011;
	float: right;
	width: 300px;
	padding-bottom: 5px;
	background: #fafafa;
}
.news-right h4 {
	position: relative;
	margin: 0;
	padding: 25px 30px 15px;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: bold;
	color: #cc0011;
}
.news-right h4:after {
	position: absolute;
	content: "";
	width: 30px;
	height: 2px;
	left: 30px;
	bottom: 0;
	background: #cc0011;
}
.news-right li {
	border-bottom: 1px solid #ebebeb;
}
.news-right li:last-child {
	border-bottom: none;
}
.news-right li a {
	display: block;
	padding: 20px 30px;
}
.news-right li a h6 {
	margin: 0px 0px 15px;
	font-size: 15px;
	line-height: 1.4em;
	color: #333;
	transition: all .4s;
}
.news-right li a:hover h6 {
	color: #cc0011;
}
.news-right li a span {
	margin: 0px 0px 15px;
	font-size: 12px;
	line-height: 1.2em;
	color: #999;
}

@media(min-width:992px) {
.news-info {
	float: left;
	width: calc(100% - 370px);
}
}

@media(max-width:992px) {
.news-right {
	display: none;
}
}

@media(max-width:768px) {
.news {
	padding: 20px;
	background: #fff;
}
.news-head span {
	margin-left: 0px;
	margin: 10px 0px;
}
}
.news-page {
	padding-top: 20px;
	margin-top: 40px;
	border-top: 1px solid #ebebeb;
}
.news-page a {
	display: inline-block;
	width: 100%;
	font-size: 14px;
	line-height: 26px;
	color: #4d4d4d;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .3s;
}
.news-page a:hover {
	color: #cc0011;
}
.news-page a.no-more {
	color: #999;
}
.news-page a.news-return {
	display: inline-block;
	width: auto;
	padding: 0px 30px;
	margin-top: 10px;
	line-height: 30px;
	color: #fff;
	background: #cc0011;
}

@media(min-width:768px) {
.news-page {
	position: relative;
	padding-right: 140px;
	padding-bottom: 20px;
}
.news-page a.news-return {
	position: absolute;
	z-index: 1;
	right: 0px;
	top: 50%;
	transform: translate(0px, -50%);
	display: inline-block;
	margin-top: 0px;
}
.news-page a.news-return:hover {
	right: 10px;
	top: 50%;
	transform: translate(0px, -50%);
}
.news-page a.news-return:hover {
	right: 10px;
	top: 50%;
	transform: translate(0px, -50%);
}
}
/*新闻详情*/

/*优势*/
.supplier {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
}
.supplier li {
	width: 25%;
	padding: 15px;
}
.supplier li div {
	height: 100%;
	padding: 25px;
	background: #f7f7f7;
}
.supplier span {
	font-size: 48px;
	color: #cc0011;
}
.supplier strong {
	display: inline-block;
	margin: 5px 0 10px;
	width: 100%;
	font-size: 18px;
	line-height: 22px;
	text-transform: Uppercase;
	font-weight: 900;
	color: #333;
}
.supplier p {
	font-size: 13px;
	line-height: 20px;
	color: #999;
}

@media(max-width:1200px) {
.supplier li {
	width: 50%;
	padding: 15px;
}
}

@media(max-width:768px) {
.supplier li {
	width: 100%;
	padding: 6px 0px;
}
}
.nenetwork {
	display: flex;
	flex-wrap: wrap;
}
.network-img, .network-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 50%;
	padding: 3%;
}

@media(max-width:998px) {
.nenetwork {
	display: flex;
	justify-content: center;
}
.network-img, .network-text {
	width: 100%;
	padding: 3%;
}
.network-img {
	width: 80%;
}
}
/*下载*/
.download-title {
	position: relative;
	display: inline-block;
	font-size: 36px;
	line-height: 1em;
	font-weight: 900;
	color: #cc0011;
	text-transform: Uppercase;
}
.download-title:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 4px;
	right: -20px;
	width: 8px;
	height: 8px;
	background-color: #cc0011;
	opacity: 0.3;
}
.download-list li {
	display: block;
	padding: 25px;
	margin-bottom: 20px;
	border: 1px solid #f0f0f0;
	border-left: 3px solid #cc0011;
	background: #fafafa;
	transition: all .4s;
}
.download-list li:hover {
	background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.download-list .down-title {
	display: inline-block;
	margin: 0px 0px 8px;
	font-size: 18px;
	color: #333;
	line-height: 1em;
	transition: all .4s;
}
.download-list li:hover .down-title {
	color: #cc0011;
}
.download-time {
	margin-bottom: 15px;
	font-size: 13px;
	color: #999;
}
.download-time span {
	display: inline-block;
	margin-right: 4px;
	font-size: 16px;
	color: #999;
	vertical-align: bottom;
}
.download-list p {
	margin-bottom: 20px;
	font-size: 15px;
	color: #333;
}
.download-list a.down-btn {
	display: inline-block;
	padding: 0px 20px;
	margin-right: 15px;
	font-size: 13px;
	line-height: 2.4em;
	color: #f0f0f0;
	background: #cc0011;
	transition: all .4s;
}
.download-list li a.down-btn:hover {
	opacity: 0.8;
}
.download-list li a.down-btn:last-of-type {
	margin-right: 0px;
}
.download-list a.down-btn span {
	display: inline-block;
	margin-right: 4px;
	vertical-align: bottom;
}
/*联系我们*/
.contact {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: auto;
}
#map-canvas {
	width: 100%;
	height: 320px;
	margin: 0px;
	padding: 0px;
}

@media(max-width:992px) {
#map-canvas {
	height: 280px;
	width: 100%;
}
}

@media(max-width:768px) {
#map-canvas {
	height: 240px;
	width: 100%;
}
}



.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 {
	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 6px;
	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;
}




.contact-info {
	padding: 6vh 4vh;
	background: #f7f7f7;
}
.contact-info>div{
	width: 100%;
	display: flex;
	padding: 4vh 0;
	border-bottom: 1px solid #ebebeb;
}
.contact-info>div:first-child{
	border-top: 2px solid #666;
}
.contact-info>div>div{
	width: 15%;
}
.contact-info>div>div:nth-child(2){
	width: 60%;
	padding: 0 12%;
}
.contact-info p {
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 15px;
}
.contact-info p.icon {
	position: relative;
	padding-left: 30px;
}
.contact-info p:before {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	font-size: 20px;
	width: 22px;
	height: 224px;
	line-height: 22px;
	text-align: center;
	color: #cc0011;
}
.contact-info strong{
	font-size: 18px;
	font-weight: normal;
}
a.contact-map-link{
	display: inline-block;
	padding: 0 15px;
	font-size: 14px;;
	line-height: 36px;
	color: #fff;
	background: #ccc;
	transition:all .4s;    
}
a.contact-map-link:hover{
	background: #cc0011;
}


@media(max-width:992px) {
.contact-info {
	position: static;
	z-index: 2;
	top: auto;
	right: auto;
	width: 100%;
	padding: 30px;
	background: #f7f7f7;
	overflow-y: inherit;
}
.contact-info p {
	margin-bottom: 10px;
}
}

@media(max-width:768px) {
.contact-info {
	padding:30px  20px;
}
.contact-info>div{
	flex-wrap: wrap;
}
.contact-info>div:first-child{
	border-top: 2px solid #666;
}
.contact-info>div>div{
	width: 100%;
	margin-bottom: 15px;
}
.contact-info>div>div:nth-child(2){
	width: 100%;
	padding:  0;
}
}
/*联系我们*/



/*2021-05-22 logo*/
.screen { width: 90%;margin: 30px 0 -3%; font-size: 0;}
.screen li { display: inline-block; margin-right: 10px; margin-bottom: 10px; padding: 10px 20px; font-size: 14px; text-align: center; color: #333; background: #ebebeb; cursor: pointer;transition:all .4s; }
.screen li:hover { background: #fff; color: #cc0011; box-shadow: 0 0 15px rgba(204,0,17,0.1);}
.screen li.active { color: #fff; background-color: #cc0011;box-shadow:none;}