﻿@charset "utf-8";
/* CSS Document */
body {
	margin: 0px;
	padding: 0px;
	position: relative;
}
body.modal-open {
	width: 100vw;
	height: 100vh;
	overflow: hidden!important;
}
body.menu-open {
	width: 100vw;
	height: 100vh;
	overflow-y: hidden!important;
}
body, html {
	font-family: Arial, "微软雅黑", Microsoft YaHei;
	font-size: 1rem;
}

.font-en {
	font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
}
@font-face {
	font-family: 'en';
	src: local('☺'), url(../font/HelveticaNeueLTPro-HvCn.otf);
	font-weight: normal;
	font-style: normal;
}
dd, dl, dt, ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
input {
	margin: 0;
	outline: none
}
a {
	text-decoration: none;
}
a:link {
	color: inherit;
}/*未访问样式*/
a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
a:hover, a:focus, input:hover, input:focus, button:focus, button:hover {
	outline: none;
}
a.txt-link {
	text-decoration: underline;
}
a.txt-link:hover {
	color: #e41418;
}
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: dodgerblue;
}
.green {
	color: green;
}
.yellow {
	color: yellow;
}
.red {
	color: #e41418;
}
::-webkit-scrollbar-track {
background:#CCC;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background:#333;
}
/*滚动条设置*/

/*表格边框样式*/
table, tbody, tr, td {
	border: none;
}
table tr {
	border-right: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}
table td {
	font-size: 1.125rem;
	line-height: 1.5em;
	padding: 8px 1.125rem;
	border-left: 1px solid #e6e6e6;
	border-top: 1px solid #e6e6e6;
}
table td p {
	margin: 0px;
}
/*boostrap遮罩层导致页面抖动*/
.modal-open {
	overflow: scroll !important;
}
/*页面内容宽度*/
.container {
	max-width: 100%;
}

@media(min-width:768px) {
.container {
	max-width: 96%;
}
}

@media(min-width:992px) {
.container {
	max-width: 90%;
}
}

@media(min-width:1430px) {
.container {
	max-width: 80%;
}
}
/*图片放大*/
.zoom-img {
	overflow: hidden;
}
.zoom-img img {
	width: 100%;
	transform: scale(1);
	transition: all ease 0.6s;
}
.zoom-img:hover img {
	transform: scale(1.1);
}
/*点状背景*/
.point-bg {
	background-image: url(../images/point.png);
	background-repeat: repeat;
}
/*页面haed*/
/*头部*/	
#head {
	position: relative;
	z-index: 4;
	display: flex;
	flex-wrap: wrap;
	padding-top: 0;
	padding-bottom: 0;
	background: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
/*头部标志*/
.head-conent {
	height: 70px;
}
.navbar-brand {
	height: 100%;
	display: flex;
	align-items: center;
	white-space: normal;
}
.navbar-brand img {
	height: 61.8%;
	;
}
/*头部导航*/
.navbar-expand-lg .navbar-collapse {
	display: flex;
	justify-content: flex-end;
	height: inherit;
}
#head .navbar-nav {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	height: inherit;
	padding: 0 1%;
}
#head .navbar-nav li {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: inherit;
	font-size: 1rem;
	line-height: 38px;
	margin: 0 1.5rem;
}
#head .navbar-nav li a {
	display: block;
	width: 100%;
	padding: 0px;
	color: #333;
	text-align: center;
	transition: all .4s;
}
#head .navbar-nav li:hover a {
	color: #e41418;
}
#head .navbar-nav li.on>a {
	text-transform: Uppercase;
	color: #e41418;
}
#head .navbar-nav li.on>a:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0%;
	width: 100%;
	height: 2px;
	background-color: #e41418;
}
#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 #e41418;
	transition: box-shadow .4s;
}
#head .navbar-nav li:hover .dropdown-menu {
	box-shadow: 0 0 1.125rem rgba(29,32,136,0.2);
}
#head .navbar-nav li .dropdown-menu a {
	display: inline-block;
	width: 100%;
	padding: 0 1rem;
	font-size: 1rem;
	line-height: 50px;
	color: #333;
	text-align: left;
	white-space: nowrap;
	border-bottom: 1px solid #ebebeb;
}
#head .navbar-nav li .dropdown-menu a:hover {
	color: #fff;
	background: #e41418;
}
#head .navbar-nav li .dropdown-menu a:last-of-type {
	border-bottom: none;
}
#head .head-shop {
	height: inherit;
	display: flex;
}
#head .head-shop>div {
	display: flex;
	align-items: center;
	height: inherit;
	margin-left: 10px;
	color: #999;
}
#head .head-shop>div span{
	display: inline-block;
	margin-right: 4px;
	vertical-align: bottom;
	font-size: 20px;
	line-height: 20px;
}
#head .head-shop>div>a {
	display: inline-block;
	padding: 5px 10px;
	font-size: 1rem;
	line-height: 20px;
	border: 1px solid #ebebeb;
	color: #999;
	transition: all .4s;
}
#head .head-shop>div>a:hover {
	color: #fff;
	border: 1px solid #e41418;
	background: #e41418;
}
@media(max-width:1399.8px) {
	#head .navbar-nav li{
		margin: 0 1.125rem;
	}	
}
@media(max-width:1199.8px) {
#head .navbar-nav {
	display: none;
}
.head-conent {
	height: 70px;
	width: 100%;
	max-width: 100%;
	padding-right: 110px;
}
.navbar-brand img {
	height: 32px;
}
}

@media( min-width: 992px) {
#head {
	padding: 0px;
}
}

@media screen and ( max-width:991.8px) {
.head-conent {
	height: 70px;
}
.navbar-expand-lg>.head-conent {
	padding-right: 80px;
}
.navbar-brand img {
	height: 32px;
}
.navbar-expand-lg .navbar-collapse {
	display: none;
}
}

@media screen and ( max-width:767.8px) {
.head-conent {
	height: 56px;
}
.navbar-brand img {
	height: 28px;
}
}

@media( max-width:565.8px) {
.navbar-expand-lg>.head-conent {
	padding-right: 56px;
}
}
/*--手机菜单--*/
/*头部菜单按钮*/
.menu-button {
	display: block;
	position: fixed;
	z-index: 1039;
	top: 0;
	right: 0px;
	width: 70px;
	height: 70px;
	border: none;
	padding: 0;
	font-size: 0;
	background: #e41418;
	transition: all 0.3s ease-in-out;
}
.menu-open .menu-button {
	color: #333;
	background: #e41418;
}

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

@media (max-width: 997.8px) {
.menu-button {
	display: block;
	width: 70px;
	height: 70px;
}
}

@media (max-width: 767.8px) {
.menu-button {
	display: block;
	width: 56px;
	height: 56px;
}
}
.menu-button span {
	width: 24px;
	height: 2px;
	border-radius: 6px;
	background-color: #f7f7f7;
	display: block;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.menu-open .menu-button span {
	background-color: #fff;
}
.menu-button:hover {
	cursor: pointer;
}
.menu-open .menu-button span:nth-child(2) {
	opacity: 0;
}
.menu-open .menu-button span:nth-child(1) {
	-webkit-transform: translateY(7px) rotate(45deg);
	-ms-transform: translateY(7px) rotate(45deg);
	-o-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
}
.menu-open .menu-button span:nth-child(3) {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	-ms-transform: translateY(-7px) rotate(-45deg);
	-o-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
}
/*菜单设置*/
.menu-content {
	display: flex;
	align-items: center;
}
.menu-inner {
	height: 100vh;
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 1038;
	width: 100%;
	left: 100%;
	top: 0;
	color: #fff;
	background: #25263b;
	transition: all .8s ease;
	transition-delay: 0.8s;
}

@media screen and (max-width: 991px) {
.menu-inner {
	height: 0;
	min-height: 100vh;
}
}
.menu-open .menu-inner {
	left: 0;
	transition: all 1.2s ease;
}
/*右侧一级菜单*/
.nav-menu {
	height: 100vh;
	width: 33.333%;
	background: #f7f7f7;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: -37%;
	top: 0;
	transition: all 1.2s ease;
	transition-delay: 0.8s;
	z-index: 2;
}

@media screen and (max-width: 991.8px) {
.menu-open .nav-menu {
	width: 100%;
	justify-content: center;
	right: -100%;
	overflow: auto;
}
}
.menu-open .nav-menu {
	right: 0;
	transition: all .5s ease;
}
.nav-menu .nav-menu-item>a, .nav-menu .nav-menu-item .sub-nav li a, .menu-content p {
	position: relative;
}
.nav-menu .nav-menu-item>a {
	font-size: 20px;
	line-height: 2.5em;
	font-weight: bold;
	text-transform: Uppercase;
	color: #333;
	overflow: hidden;
}
.nav-menu .nav-menu-item>a:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0px;
	left: 0%;
	width: 0%;
	height: 3px;
	background-color: #e41418;
	transition: all .4s;
}
.nav-menu .nav-menu-item>a:hover:after {
	content: "";
	width: 100%;
}
.nav-menu .nav-menu-item>a:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #f7f7f7;
	transition: all .75s ease;
}
.menu-open .nav-menu .nav-menu-item>a:before {
	content: "";
	height: 0%;
	transition-delay: 1.3s;
}
/*二级菜单*/
.sub-content {
	width: 66.6%;
	height: 100vh;
	background: #25263b;
	display: none;
	position: fixed;
	left: 0%;
	top: 0;
	transition: all 1.2s ease;
	transition-delay: 0.8s;
	z-index: 2;
}
.sub-content.sub-content-open {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.sub-content .sub-nav {
	padding: 0 1rem;
}
.sub-content .sub-nav li {
	width: 100%;
}
.sub-content .sub-nav li a {
	display: block;
	padding: 0.5em 0;
	font-size: 1.5rem;
	line-height: 1em;
	color: #fff;
	white-space: nowrap;
	transition: all .4s;
}
.sub-content .sub-nav li a:hover {
	color: #e41418;
}
.sub-content .sub-nav li a:before {
	content: "";
	background-color: #25263b;
	display: inline-block;
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	z-index: 1;
}
.sub-content.sub-content-open .sub-nav li a:before {
	height: 0;
	animation: anime-sub 1s;
}
.sub-content .sub-nav li a svg {
	display: inline-block;
	margin-right: 10px;
	font-size: 22px;
	width: 22px;
	height: 22px;
	line-height: 1.5rem;
	vertical-align: bottom;
}
 @keyframes anime-sub {
0% {
height:calc(100% + 20px)
}
to {
height:0
}
}

@media screen and (max-width: 991.8px) {
.nav-menu .nav-menu-item>a {
	font-size: 1.5rem;
	line-height: 2em;
}
.sub-content {
	display: flex;
	width: 100%;
	left: -100%;
	padding: 75px 1.125rem 20px;
	transition: all .6s ease;
	z-index: 2;
}
.sub-content.sub-content-open {
	width: 100%;
	justify-content: center;
	left: 0%;
	padding: 75px 1.125rem;
	overflow: auto;
}
.sub-content .sub-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	overflow: auto;
	height: 100%;
}
.sub-content .sub-menu::-webkit-scrollbar-track {
background:rgba(255,255,255,0.1);
}
.sub-content .sub-menu::-webkit-scrollbar {
width: 4px;
}
.sub-content .sub-menu::-webkit-scrollbar-thumb {
background:#e41418;
}
.sub-content .sub-nav li {
	width: 100%;
}
.sub-content .sub-nav li a {
	text-align: center;
}
}
/*左侧讯息*/
.menu-content {
	width: 100%;
	display: flex;
}
.menu-content-item {
	width: 66.6%;
	padding-left: 10%;
	padding-right: 10%;
}
.menu-content p {
	margin: 0 0 1em;
	font-size: 1.5rem;
	color: #fff;
}
.menu-content a {
	color: inherit;
}
.menu-content a:hover {
	color: #e41418;
}
.menu-content p:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0px;
	left: -1%;
	width: 102%;
	height: 100%;
	background-color: #25263b;
	transition: all .75s ease;
}
.menu-open .menu-content p:before {
	content: "";
	height: 0%;
	transition-delay: 1.3s;
}
.close-sub-menu {
	position: absolute;
	z-index: 2;
	right: 30px;
	bottom: 5%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	text-align: center;
	color: #fff;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	cursor: pointer;
}
/*-- 手机菜单end --*/


/*首页通用*/
.section {
	background-position: center;
	background-size: cover;
}
#index-menu {
	position: fixed;
	left: 0;
	top: 40%;
	z-index: 2;
	padding: 10px 0px;
	background: #25263b;
}
#index-menu a {
	display: block;
	width: 100%;
	padding: 0 25px;
	font-size: 0.875rem;
	line-height: 2.5em;
	color: #fff;
}
#index-menu .active a {
	background: rgba(255,255,255,0.3)
}

@media screen and (max-width:991.8px) {
#index-menu {
	display: none;
}
}
/* .banner视频背景 */
.video-back {
	position: relative;
	z-index: 2;
	width: 100%;
	font-size: 1.5rem;
	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: 80%;
}
.banner-text strong {
	display: block;
	margin: 1em 0px 0.5em;
	font-size: 2.5rem;
	line-height: 1.25em;
	text-shadow: 0 0 20px rgba(0,0,0,0.3) ;
}
.banner-text pre {
	font-size: 1.5rem;
	line-height: 1.5em;
	color: #fff;
	text-shadow: 0 0 20px rgba(0,0,0,0.3) ;
}
.banner-text a {
	margin-top: 6vh;
	display: inline-block;
	padding: 0 2.5em;
	font-size: 0.9375rem;
	line-height: 3em;
	color: #fff;
	border: 1px solid #fff;
	transition: all .4s;
	text-shadow: 0 0 20px rgba(0,0,0,0.3) ;
}
.banner-text a:hover {
	border: 1px solid #e41418;
	background: #e41418;
}

@media (max-width: 1199.8px) {
.banner-text strong {
	font-size: 2.25rem;
}
.banner-text pre {
	font-size: 1.25rem;
}
.banner-text a {
	font-size: 1rem;
}
}

@media (max-width: 991.8px) {
.banner-text strong {
	font-size: 1.75rem;
}
.banner-text pre {
	font-size: 1.125rem;
}
}
/*首页视频*/
/* .banner背景 */

/*首页标题*/
.index-title .title {
	margin-bottom: 0.5rem;
	font-size: 2.5rem;
	line-height: 1em;
	font-weight: bold;
	color: #333;
}
.index-title .subtitle {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: 1em;
	font-weight: bold;
	color: #333;
}
.index-title pre {
	font-size: 1rem;
	line-height: 1.75em;
	color: #666;
}
.index-title.index-title-w .title, .index-title.index-title-w .subtitle {
	color: #fff;
}
.index-title.index-title-w pre {
	color: #ccc;
}

@media (max-width: 991.8px) {
.index-title .title {
	font-size: 2rem;
}
.index-title .subtitle {
	font-size: 1.25rem;
}
.index-title pre {
	font-size: 0.9375rem;
}
}

@media (max-width: 767.8px) {
.index-title .title {
	font-size: 1.5rem;
}
.index-title .subtitle {
	font-size: 1rem;
}
.index-title pre {
	font-size: 1rem;
}
}
/*首页产品*/
.index-product-nav {
	background: #fff;
	box-shadow: 0 0 10px rgba(228,20,24,0.2);
}
.index-product-nav .nav {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
}
.index-product-nav .nav li {
	width: 100%;
}
.index-product-nav .nav a {
	display: block;
	font-size: 1.125rem;
	line-height: 6rem;
	text-align: center;
	color: #333;
	border-right: 1px solid #ebebeb;
	background: #fff;
	transition: all .4s;
}
.index-product-nav .nav a:hover {
	color: #e41418;
}
.index-product-nav .nav a:first-child {
	border-left: 1px solid #ebebeb;
}
.index-product-nav .nav a.active {
	color: #fff;
	background: #e41418;
	border-left: 1px solid #e41418;
	border-right: 1px solid #e41418;
}
.index-product-nav .nav a span {
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
	font-size: 2.5rem;
}
.index-product {
	background: #f1f1f1;
}
.index-product>.container {
	padding-top: 8vh;
	padding-bottom: 8vh;
}
.index-products {
	margin-left: -1.125rem;
	margin-right: -1.125rem;
	overflow: hidden;
}
.index-products .item {
	position: relative;
	float: left;
	width: calc(28% - 2.25rem);
	height: 19rem;
	margin: 1.125rem;
	text-align: center;
	background: #fff;
	transition: all .4s;
}
.index-products .item:nth-of-type(1n) {
	animation-delay: 0.2s;
}
.index-products .item:nth-of-type(2n) {
	animation-delay: 0.4s;
}
.index-products .item:nth-of-type(3n) {
	animation-delay: 0.6s;
}
.index-products .item:nth-of-type(4n) {
	animation-delay: 0.8s;
}
.index-products .item:nth-of-type(5n) {
	animation-delay: 1s;
}
.index-products .item:hover {
	box-shadow: 0 0 1.125rem rgba(228,20,24,0.2);
	transition: all .4s;
}
.index-products .item:first-child {
	width: calc(44% - 2.25rem);
	height: calc(38rem + 2.25rem);
}
.index-products .item:before {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #e41418;
	position: absolute;
	left: 0;
	bottom: -2px;
	transform-origin: 100%;
	transition: transform .4s cubic-bezier(.4, 0, .2, 1);
	transform: scaleX(0);
}
.index-products .item:hover:before {
	transform: scaleX(1);
	transform-origin: 0;
}
.index-products .item .index-product-img {
    display: block;
    margin: 0px;
	width: 100%;
	height: calc(100% - 4rem);
	overflow: hidden;
}
.index-products .item img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.index-products .item p {
	width: 100%;
	padding: 0 10px;
	font-size: 1rem;
	line-height: 1em;
	margin-bottom: 0.5rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
.index-products .item a {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-size: 1rem;
	line-height: 2rem;
	color: #999;
	transition: all .4s;
}
.index-products .item a:hover {
	color: #e41418;
}
.index-products .item a span {
	display: inline-block;
	margin-left: 0.5rem;
	font-size: 1.125rem;
	vertical-align: middle;
	transition: margin .4s;
}
.index-products .item a:hover span {
	margin-left: 1rem;
}

@media (max-width:991.8px) {
.index-product-nav .nav a {
	font-size: 1rem;
	line-height: 3.6rem;
}
.index-product-nav .nav a span {
	font-size: 2rem;
}
.index-products {
	margin-left: -10px;
	margin-right: -10px;
	overflow: hidden;
}
.index-products .item {
	position: relative;
	float: left;
	width: calc(50% - 20px);
	height: auto;
	margin: 10px;
	text-align: center;
	background: #fff;
	transition: all .4s;
}
.index-products .item:first-child {
	width: calc(50% - 20px);
	height: auto;
}
.index-products .item:last-of-type {
	display: none;
}
}

@media (max-width:575.8px) {
.index-product-nav .container {
	max-width: 100%;
}
.index-product-nav .nav {
	width: auto;
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
.index-product-nav .nav a {
	border-right: none;
	border-bottom: 1px solid #ebebeb;
}
.index-product-nav .nav a:first-child {
	border-left: none;
	border-top: 1px solid #ebebeb;
}
.index-product-nav .nav a.active {
	color: #fff;
	background: #e41418;
	border-right: none;
	border-left: none;
	border-top: 1px solid #e41418;
	border-bottom: 1px solid #e41418;
}
}
/*首页技术*/
.index-technology {
	height: 700px;
	background: url(../images/index-t-bg.jpg) center no-repeat;
	background-size: cover;
	color: #fff;
}
.index-technology .container {
	display: flex;
	min-height: 100%;
}
.index-t-info {
	width: 32%;
	min-height: 100%;
	padding: 8vh 5% 8vh 0;
}
.index-t-info .tab-content {
	margin-top: 4vh;
}
.index-t-info .index-t-title {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: 2em;
}
.index-t-info pre {
	margin-bottom: 3vh;
	font-size: 1rem;
	line-height: 1.75em;
	color: #fff;
	height: 8.75em;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.index-t-info a.more {
    color: #fff;
	font-size: 1rem;
	line-height: 2.5rem;
}
.index-t-info a.more:hover {
	color: #e41418;
	transition: all .4s;
}
.index-t-info a.more span {
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.5rem;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	font-size: 1.125rem;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.6);
	transition: border .4s, background .4s;
}
.index-t-info a.more:hover span {
	border: 1px solid rgba(228,20,24,0.8);
	background: rgba(228,20,24,0.8);
}
.index-t-nav {
	width: 68%;
}
.index-t-nav .nav {
	min-height: 100%;
	flex-wrap: nowrap;
}
.index-t-nav .nav li {
	width: 100%;
}
.index-t-nav .nav li a {
	display: block;
	height: 100%;
	padding: 12vh 2rem;
	border-right: 1px solid rgba(255,255,255,0.2);
}
.index-t-nav .nav li:first-child a {
	border-left: 1px solid rgba(255,255,255,0.2);
}
.index-t-nav .nav li a.active {
	border-right: 1px solid rgba(228,20,24,0.8);
	background: rgba(228,20,24,0.8);
}
.index-t-nav .nav li span {
	display: block;
	margin-bottom: 1rem;
	font-size: 3.5rem;
}
.index-t-nav .nav li p {
	font-size: 1.25rem;
}

@media (max-width:991.8px) {
.index-technology {
	height: auto;
}
.index-technology .container {
	display: flex;
	flex-wrap: wrap;
}
.index-t-info {
	width: 80%;
	min-height: 100%;
	padding: 8vh 5% 8vh 0;
}
.index-t-info .index-t-title {
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	line-height: 2em;
}
.index-t-info pre {
	font-size: 0.975rem;
	line-height: 1.75em;
	color: #fff;
	height: 8.53em;
}
.index-t-nav {
	width: 100%;
}
.index-t-nav .nav {
	border-top: 1px solid rgba(255,255,255,0.2);
}
.index-t-nav .nav li a {
	display: block;
	height: 100%;
	padding: 2rem;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	border-right: 1px solid rgba(255,255,255,0.2);
}
.index-t-nav .nav li span {
	font-size: 2.5rem;
}
.index-t-nav .nav li p {
	font-size: 1rem;
	margin: 0px;
}
}

@media (max-width:767.8px) {
.index-t-nav {
}
.index-t-nav .nav {
	flex-wrap: wrap;
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
.index-t-nav .nav li {
	width: 33.33%;
}
.index-t-nav .nav li a {
	border-top: none;
	padding: 1.25rem;
}
}
/*首页客户*/
.index-case {
	background: url(../images/index-c-bg.jpg) center no-repeat;
	background-size: cover;
}
.logo-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 3vh;
}
.logo-list li {
	position: relative;
	z-index: 1;
	background: #fff;
	border: 1px solid #ebebeb;
	margin-top: -1px;
	margin-left: -1px;
}
.logo-list li .logo-img, .logo-list li .logo-name {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.logo-list li .logo-img {
	z-index: 2;
}
.logo-list li .logo-name {
	z-index: 3;
	background: rgba(228,20,24,0.9);
	opacity: 0;
	transition: all .4s;
}
.logo-list li:hover .logo-name {
	opacity: 1;
}
.logo-list li div img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.logo-list li .logo-name div {
	text-align: center;
	color: #fff;
}
.logo-list li .logo-name div p {
	position: relative;
	margin-bottom: 0px;
	font-weight: bold;
	font-size: 16px;
}

@media(min-width:1200px) {
.logo-list li {
	width: 16.66%;
	height: 0px;
	padding-bottom: 10%;
}
}

@media (min-width:768px) and (max-width:1199.8px) {
.logo-list li {
	width: 25%;
	height: 0px;
	padding-bottom: 15%;
}
}

@media(max-width:767.8px) {
.logo-list li {
	width: 33.33%;
	height: 0px;
	padding-bottom: 20%;
}
}
/*首页关于*/
.index-about {
	padding: 8vh 0 15vh;
	background: url(../images/index-a-bg.jpg) center;
	background-size: cover;
	color: #fff;
}
.index-about .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-a-img {
	width: 40%;
}
.index-a-info {
	padding-top: 4vh;
	width: 45%;
	line-height: 1.75rem;
}
.index-a-info a {
	margin-top: 3vh;
	display: inline-block;
	padding: 0 1.5rem;
	font-size: 1rem;
	line-height: 2.6em;
	color: #fff;
	background: #e41418;
	transition: all .4s;
}
.index-a-info a:hover {
	padding: 0 2.2rem;
}

@media(max-width:1429.8px) {
.index-a-img {
	width: 45%;
}
}

@media(max-width:1199.8px) {
.index-a-img {
	width: 50%;
}
.index-a-info {
	padding-top: 2vh;
	width: 42%;
}
}

@media(max-width:767.8px) {
.index-about {
	padding: 0vh 0 6vh;
}
.index-a-img {
	width: auto;
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
.index-a-info {
	padding-top: 6vh;
	width: 100%;
}
}
/*数据*/
.index-data {
	transform: translate(0%, -50%);
}
.index-data ul {
	display: flex;
	background: #fff;
	box-shadow: 0 0 1.5rem rgba(228,20,24,0.2);
}
.index-data ul li {
	position: relative;
	padding: 2rem 1rem;
	width: 100%;
	text-align: center;
}
.index-data ul li:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0%;
	width: 1px;
	height: 40%;
	background-color: #ccc;
	transform: translate(0%, -50%);
	transition: all .4s;
}
.index-data span {
	display: block;
	width: 100%;
	font-size: 4rem;
	line-height: 4rem;
	color: #e41418;
}
.index-data .data {
	display: inline-block;
	margin-bottom: 1rem;
	margin-right: 0.5rem;
	font-size: 3rem;
	line-height: 3rem;
	color: #e41418;
}
.index-data small {
	font-size: 1.125rem;
	font-weight: bold;
	color: #e41418;
}
.index-data p {
	margin-bottom: 0px;
	color: #666;
}

@media(max-width:1199.8px) {
.index-data span {
	margin-bottom: 0.75rem;
	font-size: 3.5rem;
	line-height: 3rem;
}
.index-data .data {
	font-size: 2.25rem;
	line-height: 2rem;
}
.index-data small {
	font-size: 1rem;
	font-weight: bold;
	color: #e41418;
}
}

@media(max-width:767.8px) {
.index-data {
	transform: translate(0%, 0%);
	margin-bottom: 6vh;
}
.index-data ul {
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
.index-data span {
	margin-bottom: 0.5rem;
	font-size: 3rem;
	line-height: 3rem;
}
.index-data .data {
	margin-right: 0.25rem;
	font-size: 1.75rem;
	line-height: 2rem;
}
}
/*首页新闻*/
.index-news .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-news .index-title {
	width: 100%;
	margin-bottom: 3vh;
}
.index-n-first {
	width: 48%;
}
.index-n-img {
	position: relative;
	margin-bottom: 2rem;
	overflow: hidden;
}
.index-n-img .time {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	padding: 0.5rem 1rem;
	color: #fff;
	background: #e41418;
}
.index-n-img .time .font-en {
	margin-right: 0.5rem;
	font-size: 2.75rem;
	line-height: 1em;
}
.index-n-img .time span {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 1rem;
	line-height: 1em;
	color: #fff;
}
.index-n-img .time small {
	display: block;
	font-size: 1rem;
	line-height: 1em;
	color: rgba(255,255,255,0.8)
}
.index-n-list {
	width: 48%;
}
.index-n-title {
	display: block;
	margin-bottom: 0.8rem;
	font-size: 1.5rem;
	line-height: 1em;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.index-n-title:hover {
	color: #e41418;
}
.index-n-msg {
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.5em;
	color: #666;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all .4s;
}
.index-n-list {
	overflow: hidden;
}
.index-n-list li {
	padding: 1.5rem;
	background: #fff;
	overflow: hidden;
	transition: all .4s;
}
.index-n-list li:hover {
	background: #e41418;
}
.index-n-list li .time {
	float: left;
	min-height: 100%;
	margin-right: 1.25rem;
	padding-right: 1.25rem;
	text-align: center;
	color: #333;
	border-right: 1px solid #ebebeb;
	transition: all .4s;
}
.index-n-list li .time div {
	font-size: 2.75rem;
	line-height: 1.2em;
	font-family: 'en';
	font-weight: bold;
}
.index-n-list li:hover .time, .index-n-list li:hover .index-n-title {
	color: #fff;
}
.index-n-list li .time:hover {
	border-right: 1px solid #fff;
}
.index-n-list li .index-n-title:hover {
	text-decoration: underline;
}
.index-n-list li:hover .index-n-msg {
	color: #ebebeb;
}
.index-n-list .index-n-more {
	text-align: right;
}
.index-n-list .index-n-more a {
	display: inline-block;
	padding: 0 1.5rem;
	font-size: 1rem;
	line-height: 2.5rem;
	color: #fff;
	text-align: center;
	background: #e41418;
	margin-top: 5vh;
	transition: all .4s;
}
.index-n-list .index-n-more a:hover {
	padding: 0 2.2rem;
}

@media(max-width:991.8px) {
.index-n-title {
	font-size: 1.25rem;
}
.index-n-msg {
	font-size: 1rem;
}
.index-n-list li {
	padding: 1rem;
}
.index-n-list li .time div {
	font-size: 2rem;
}
}

@media(max-width:767.8px) {
.index-n-first {
	width: 100%;
}
.index-n-list {
	margin-top: 3rem;
	width: 100%;
}
.index-n-list li {
	padding: 1.5rem 1rem;
	border-bottom: 1px solid #ebebeb;
}
.index-n-list li:first-child {
	border-top: 1px solid #ebebeb;
}
.index-n-list .index-n-more {
	text-align: center;
}
}
/*首页分部*/
.index-branch ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.index-branch ul li {
	display: flex;
	justify-content: flex-end;
	width: 32%;
	padding: 1.5rem;
	color: #fff;
	background-color: #171921;
	transition: all .4s;
}
.index-branch ul li:hover {
	background-color: #e41418;
}
.index-branch ul li div {
	width: 75%;
}
.index-branch ul li .p {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}
.index-branch ul li div {
	margin: 0px;
	font-size: 1rem;
	color: #ccc;
	line-height: 1.5em;
	transition: all .4s;
}
.index-branch ul li:hover pre {
	margin: 0px;
	font-size: 1rem;
	color: #ebebeb;
	line-height: 1.5em;
}
.index-branch ul li {
	background-image: url(../images/map-c.svg);
	background-repeat: no-repeat;
	background-position: left -260% bottom 0%;
	background-size: 90% auto;
}
.index-branch ul li:first-child {
	background-image: url(../images/map-k.svg);
}


@media(max-width:991.8px) {
.index-branch ul li {
	margin-bottom: 1rem;
	width: 100%;
}
}
/*页脚*/
#foot {
	padding-top: 6vh;
	position: relative;
	width: 100%;
	color: #fff;
	background: #171921;
}
#foot .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.foot-nav {
	width: 50%;
	padding-right: 5%;
}
.foot-nav ul {
	display: flex;
	justify-content: space-between;
}
.foot-nav ul li>a {
	display: inline-block;
	margin-bottom: 1rem;
	font-size: 1rem;
	font-weight: bold;
	color: #fff;
	transition: all .4s;
}
.foot-nav ul div a {
	display: block;
	font-size: 1rem;
	line-height: 2em;
	color: #ccc;
	transition: all .4s;
}
.foot-nav ul li>a:hover, .foot-nav ul div a:hover {
	color: #e41418;
}
.foot-content {
	width: calc(40% - 140px);
	padding-right: 5%;
	font-size: 1rem;
	line-height: 1.5em;
	color: #ccc;
}
.foot-content div {
	margin-bottom: 1.25rem;
	font-size: 1rem;
	font-weight: bold;
	color: #fff;
}
.foot-content p {
	margin-bottom: 0.5rem;
}
.foot-logo {
	flex: 0;
	width: 140px;
	text-align: center;
	font-size: 1rem;
}
.foot-logo img {
	max-width: 140px;
	margin-bottom: 0.5rem;
}
.foot-logo img.foot-logo {
	width: 140px;
}
.foot-social {
	width: 100%;
	margin-top: 6vh;
	padding: 1rem 0;
}
.foot-social a {
	display: inline-block;
	margin-right: 0.25rem;
	width: 2.25rem;
	height: 2.25rem;
	line-height: 2.25rem;
	font-size: 1.125rem;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	transition: all .4s;
}
.foot-social a.icon-youtube {
	background: #e32626;
}
.foot-social a.icon-icon-douyin {
	background: #ff1953;
}
.foot-social a.icon-weibo {
	background: #d12e30;
}
.foot-social a.icon-twitter {
	background: #01a0ea;
}
.foot-social a.icon-socialmediaiconwhitefb {
	background: #006599;
}
.foot-social a:hover {
	opacity: 0.6;
}
.foot-copyright {
	width: 100%;
	padding: 1rem 0;
	font-size: 1rem;
	line-height: 1.5em;
	color: #999;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.foot-copyright a {
	display: inline-block;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	font-size: 1rem;
	line-height: 1.5em;
	color: #999;
	transition: all .4s;
}
.foot-copyright a:first-child {
	padding-left: 0rem;
}
.foot-copyright a:hover {
	color: #e41418;
}

@media(max-width:1199.8px) {
.foot-nav {
	display: none;
}
.foot-content {
	width: calc(100% - 140px);
	padding-right: 5%;
}
}

@media(max-width:767.8px) {
.foot-logo, .foot-social, .foot-copyright {
	width: 100%;
}
.foot-content {
	width: 100%;
	margin-bottom: 1rem;
}
.foot-logo img.foot-logo {
	display: none;
}
}
/*============ 首页end ============*/

/*内页公共*/
/*banner*/
.inside-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 450px;
	overflow: hidden;
}
.inside-banner img {
	max-width: none;
	height: 100%;
}
.inside-banner-info {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 1.5em;
	color: #fff;
	overflow: hidden;
}
.inside-banner-info>div:after {
	content: "";
	display: block;
	margin-top: 30px;
	width: 30px;
	height: 3px;
	background-color: #e41418;
}
.inside-banner-title {
	margin-bottom: 25px;
	font-size: 36px;
	font-weight: bold;
}
.inside-banner-info p {
	width: 100%;
	max-width: 80%;
	font-size:30px;
	line-height: 1.5em;
}

@media screen and (max-width:1199.8px) {
.inside-banner {
	height: 350px;
}
}

@media screen and (max-width:991.8px) {
.inside-banner {
	height: 300px;
}
.inside-banner-info {
	font-size: 1rem;
}
.inside-banner-title {
	font-size: 24px;
}
}

@media screen and (max-width:565.8px) {
.inside-banner {
	height: 180px;
}
.inside-banner-title {
	font-size: 1.5rem;
}
}
/*面包屑*/
.breadcrumb {
	padding: 0px;
	margin: 4vh 0 0;
	background: none;
}
.breadcrumb>div {
	font-size: 0px;
}
.breadcrumb a {
	display: inline-block;
	font-size: 1.125rem;
	line-height: 1.2em;
	color: #333;
	transition: all .4s;
}
.breadcrumb a:hover {
	color: #e41418;
}
.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 {
	position: relative;
	z-index: 1;
	background: #f2f2f2;
	overflow: hidden;
}
.content:before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0%;
	width: 80%;
	height: 100%;
	background: url(../images/content-bg.png) no-repeat;
	background-size: 100% auto;
}
.content:after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	bottom: 0px;
	right: 0%;
	width: 80%;
	height: 100%;
	background: url(../images/content-bg.png) no-repeat;
	background-size: 100% auto;
	transform: rotate(180deg);
}
/**/
.sub-nav2 {
	padding-top: 6vh;
	padding-bottom: 6vh;
}
#sub-title {
	display: inline-block;
	width: 100%;
	font-size: 36px;
	line-height: 1em;
	font-weight: bold;
	color: #333;
	text-align: center;
}
#sub-list {
	padding-top: 4vh;
	width: 100%;
	text-align: center;
}
#sub-list li {
	position: relative;
	display: inline-block;
	width: auto;
	margin: 0 1.125rem;
}
#sub-list li>a {
	display: inline-block;
	width: 100%;
	padding: 0 2em;
	font-size: 1.5rem;
	line-height: 50px;
	color: #333;
	font-weight: bold;
	border: 1px solid #ccc;
}
#sub-list li>a:hover {
	color: #e41418;
	border: 1px solid #e41418;
	background: #fff;
	transition: all .4s;
}
#sub-list li.on>a {
	color: #fff;
	background: #e41418;
	border: 1px solid #e41418;
	transition: all .4s;
}
#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;
}

@media(min-width:767.8px) {
#sub-title span {
	display: none;
}
}

@media screen and (max-width:767.8px) {
.sub-nav2 {
	padding-top: 0;
	border-radius: 6px;
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
#sub-title {
	font-size: 16px;
	line-height: 4em;
	color: #e41418;
	font-weight: bold;
	padding-left: 1.125rem;
	padding-right: 1.125rem;
	padding-bottom: 0px;
	background: #f7f7f7;
}
#sub-list {
	width: 100%;
	padding: 0px 1.125rem 10px;
	background: #f7f7f7;
}
#sub-list li {
	position: relative;
	width: 100%;
	margin: 0px;
}
#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: 1rem;
	line-height: 46px;
	color: #666;
	border: none;
	border-bottom: 1px solid #ebebeb;
}
#sub-list li:first-child>a {
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}
#sub-list li>a:hover {
	color: #e41418;
	border: none;
	border-bottom: 1px solid #ebebeb;
	transition: all .4s;
}
#sub-list li.on>a {
	text-indent: 1em;
	color: #fff;
	border: none;
	border-bottom: 1px solid #ebebeb;
	transition: all .4s;
}
}
/*边距盒子*/
.padding-box {
	padding-top: 8vh;
	padding-bottom: 8vh;
}
.padding-top {
	padding-top: 8vh;
}
.padding-bottom {
	padding-bottom: 8vh;
}
.main {
	position: relative;
	z-index: 2;
	background: #fff;
}
.gray-box {
	background: #f7f8fa;
}
.clear-box:after {
	content: "";
	display: block;
	width: 100%;
	height: 0;
}

@media screen and (max-width:991.8px) {
.padding-box {
	padding-top: 6vh;
	padding-bottom: 6vh;
}
.padding-top {
	padding-top: 6vh;
}
.padding-bottom {
	padding-bottom: 6vh;
}
}
/*信息盒子*/
.info {
	font-size: 1.125rem;
	color: #333;
	line-height: 1.75em;
}
.info p {
	margin: 0 0 0.75em;
}

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

@media(max-width:767.8px) {
.page {
	font-size: 13px;
	line-height: 2.5em;
}
.page a, .page span {
	padding: 0 1rem;
	font-size: 13px;
	line-height: 2.5em;
}
.page input {
	margin-left: 5px;
	font-size: 13px;
	line-height: 2.5em;
	height: 2.5em;
}
.page button {
	padding: 0 1rem;
	font-size: 13px;
	line-height: 2.5em;
}
}
/*内页大标题*/
.bigTitle {
	margin-bottom: 0.6em;
	font-size: 48px;
	line-height: 1em;
	font-weight: 900;
	text-transform: Uppercase;
}

@media(max-width:1199.8px) {
.bigTitle {
	font-size: 36px;
}
}
/*关于*/
.about {
	font-size: 1.25rem;
	line-height: 1.75em;
	color: #333;
	overflow: hidden;
}
.about-logo {
	width: 30%;
	float: left;
}
.about-logo img {
	width: auto;
	height: 50px;
}
.about-logo p {
	margin: 20px 0;
	font-size: 24px;
	line-height: 1.25em;
}
.about-data {
	margin-top: 10vh;
	width: 30%;
	float: left;
}
.about-data li {
	display: inline-block;
	margin-left: 40px;
}
.about-data li:first-of-type {
	margin-left: 0px;
}
.about-data li .data {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 5px;
	font-size: 48px;
	line-height: 1em;
	color: #e41418;
}
.about-data li span {
	font-size: 1rem;
	color: #e41418;
}
.about-info {
	width: 65%;
	float: right;
}
.about-info p {
	font-size: 1.25rem;
	text-indent: 2em;
}
#about-img {
	margin-top: 4vh;
}
#about-img .item{background: #333; transition: all .4s;}
#about-img .item:hover{box-shadow: 0 0 1.125rem rgba(228,20,24,0.2);}
@media(max-width:1199.8px) {
.about-logo {
	width: 100%;
	margin-bottom: 20px;
}
.about-logo img {
	height: 36px;
}
.about-logo p {
	font-size: 1.5rem;
}
.about-info {
	width: 100%;
}
.about-data {
	width: 100%;
	margin-top: 40px;
}
.about-data li .data {
	margin-right: 6px;
	font-size: 42px;
}
}
/*企业文化*/
.culture {
	margin-top: 6vh;
}
.culture-title {
	margin-bottom: 40px;
	font-size: 30px;
	color: #999;
}
.culture-title strong {
	color: #333;
}
.culture ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.culture ul li {
	width: 23%;
	padding: 5vh 20px;
	min-height: 300px;
	text-align: center;
	color: #333;
	background: #fff;
	transition: all .4s;
}
.culture ul li:hover {
	color: #fff;
	background: #e41418;
	box-shadow: 0 0 1.125rem rgba(228,20,24,0.2);
	transition: all .4s;
}
.culture ul li .culture-subtitle {
	font-size: 24px;
	font-weight: bold;
}
.culture ul li .culture-subtitle:after {
	content: "";
	display: block;
	margin: 10px auto 20px;
	width: 20px;
	height: 3px;
	background-color: #333;
	transition: all .4s;
}
.culture ul li:hover .culture-subtitle:after {
	content: "";
	background-color: #fff;
}

@media(max-width:991.8px) {
.culture-title {
	font-size: 24px;
	margin-bottom: 20px;
}
.culture ul li {
	width: 48%;
	margin: 2% 0;
	min-height: 240px;
}
}

@media(max-width:565.8px) {
.culture ul li {
	width: 100%;
	margin: 2% 0;
	min-height: 200px;
}
}

.about-culture2{
    margin-top: 6vh;
    padding: 3%;
    background: #fff;
}
@media(max-width:767.8px) {
.about-culture2{
    padding: 20px;
}   
}


/*组织架构*/
.structure {
	max-width: 1200px;
	margin: auto;
}
.structure a {
	display: inline-block;
	padding: 0 2em;
	margin: 20px auto;
	font-size: 1rem;
	line-height: 36px;
	color: #fff;
	background: #e41418;
	transition: all .4s;
}
.structure a:hover {
	background: #666;
}
.structure a span {
	line-height: 36px;
}
/*企业风采*/
.style-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
.style-list li {
	width: 25%;
	padding: 1.125rem;
	transition: all .4s;
}
.style-list li:hover {
	box-shadow: 0 0 1.125rem rgab(0, 0, 0, 0.1);
}
.style-list li div {
	overflow: hidden;
}
.style-list li p {
	margin: 0px;
	padding: 0 1.125rem;
	font-size: 1rem;
	line-height: 3em;
	background: #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
.style-list li:hover p {
	color: #fff;
	background: #e41418;
}

@media(max-width:1199.8px) {
.style-list li {
	width: 33.33%;
}
}

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

@media(max-width:565.8px) {
.style-list {
	margin-left: -10px;
	margin-right: -10px;
}
.style-list li {
	width: 50%;
	padding: 10px;
}
}
/*产品列表*/
.product-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1%;
	margin-right: -1%;
	margin-top: -1%;
}
.product-list li {
	width: 25%;
	padding: 1%;
	transition: all .4s;
	
}
.product-list li a {
	display: block;
	background: #fff;
}
.product-list li a:hover {
	box-shadow: 0 0 1.125rem rgba(228,20,24,0.2);
}
.product-list-img {
	height: 240px;
	text-align: center;
	overflow: hidden;
	transition: all .4s;
}
.product-list-img img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.product-list-txt {
}
.product-list-txt p {
	display: block;
	margin-bottom: 0px;
	padding: 0 1.125rem;
	font-size: 1rem;
	line-height: 3rem;
	color: #333;
	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: #fff;
	background: #e41418;
}

@media(max-width:1199.8px) {
.product-list li {
	width: 33.33%;
	padding: 2%;
}
}
@media(max-width:767.8px) {
.product-list li {
	width: 50%;
	padding: 2%;
}
}
@media(max-width:565.8px) {
.product-list li {
	width: 100%;
	padding:3% 0;
}
}
/*产品详情*/
.product-box{
	display: flex;
	flex-wrap: wrap;
	padding: 5%;
	background: #fff;
}
.product-d{
	width: 100%;
}
.product-info{
	width:35%;
	margin-right: 5%;
	padding-right: 5%;
	border-right: 1px solid #ebebeb;
}
.product-info h1{
	margin: 0px 0 4vh;
	font-size: 36px;
	line-height: 1.2em;
	color: #333;
}
.product-info p {
	margin-bottom: 8px;
	font-size: 1.125rem;
	line-height: 1.75em;
	color: #666;
}
.product-info p .red{
	font-size: 30px; line-height: 1.25em;
}
.product-info hr {
	margin: 40px 0;
	border-top: 1px solid #ebebeb;
}
.product-info .product-btn{
	margin-top: 20px;
}
.product-info .product-btn a {
	display: block;
	font-size: 1.125rem;
	line-height: 42px;
	font-weight: bold;
	color: #fff;
	padding: 0 20px;
	margin: 2px 0;
	text-align: center;
	background: #e41418;
	transition: all .4s;
}
.product-info a.product-btn:hover {
	color: #fff;
	background: #e41418;
}
.product-info a.product-btn span {
	display: inline-block;
	margin-right: 8px;
	font-size: 1.5rem;
	font-weight: normal;
	color: inherit;
	vertical-align: top;
}




.product-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%;
}
#product {
	width: 100%;
}
#product .item{
	text-align: center;
}
#product .item img{
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 50vh;
}
#product .owl-nav {
	margin: 0;
	padding: 0px;
}
.owl-carousel.owl1 .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	margin-top: -23px;
}
#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: #f7f7f7;
	transition: all .4s;
}
#product .owl-nav [class*=owl-]:hover i {
	color: #fff;
	background: #e41418;
}
#product .owl-nav [class*=owl-] i {
	color: #333;
}
#product .owl-nav #counter {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 1;
	font-weight: bold;
	font-size: 1.125rem;
	color: #999;
}
#product .owl-nav #counter span {
	font-size: 24px;
	color: #e41418;
}
#product .owl-dots {
	width: 100%;
	padding-left: 100px;
	text-align: left;
}
#product .owl-dot {
	display: inline-block;
	border: 1px solid #ebebeb;
}
#product .owl-dot.active {
	border: 1px solid #e41418;
}
#product .owl-dots img {
	width: auto;
	height: auto;
	max-height: 80px;
}







@media screen and (max-width:991.8px) {
.product-box{
	padding: 40px;
	border-top: 5px;
}
.product-info h1{
	font-size: 24px;
}
.product-info p .red{
	font-size: 28px; 
}

.product-img {
	width: 100%;
}
#product {
	position: relative;
	width: 100%;
	padding: 6%;
}
#product .item {
	text-align: center;
}
#product img {
	display: inline-block;
	width: 100%;
	max-width: 500px;
}
.product-info {
	width: 100%;
	padding: 2vh 0% 6vh;
	margin: 0px;
	border-right: none;
}
}
@media screen and (max-width:767.8px) {
.product-box{
	padding: 20px;	
}
#product {
	position: relative;
	width: 100%;
	padding: 6% 0;
}
#product .owl-nav #counter {
	position: static;
	bottom: auto;
	left: auto;
}
#product .owl-dots {
	width: 100%;
	padding-left: 0;
	text-align: center;
}
#product .owl-dots img {
	width: auto;
	height: auto;
	max-height: 48px;
}
#product.owl1 .owl-nav [class*=owl-]{
	width: 48px;
	height: 48px;
	line-height: 48px;
}
#product .owl-nav [class*=owl-].owl-prev {
	left: -20px;
}
#product .owl-nav [class*=owl-].owl-next {
	right: -20px;
}

}

/*视频列表*/
.video-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	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: 1.5rem;
	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(228, 20, 24, 0.9);
}
.video-list a img {
	width: 100%;
	opacity: 1;
	transition: all .4s;
}
.video-list a:hover img {
	opacity: 0.5;
}
.video-list a span {
	display: block;
	margin: 0;
	padding:0 1.125rem;
	font-size: 1rem;
	line-height:3em;
	color: #333;
	background: #fff;
	transition: all .4s;
}
.video-list a:hover span {
	color: #fff;
	background: #e60012;
}
@-webkit-keyframes changeright {
 0% {
 -webkit-transform: rotate(0deg);
}
 50% {
 -webkit-transform: rotate(180deg);
}
 100% {
 -webkit-transform: rotate(360deg);
}
}

@media screen and (max-width:991.8px) {
a.video-link:before {
	content: "\e66a";
	width: 56px;
	height: 56px;
	line-height: 56px;
	font-size: 20px;
}
.video-list li {
	width: 50%;
	padding: 2%;
}
}
/*视频弹出*/
#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%;
}

/*技术*/
.technology{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.technology-img{
	width: 43%;
}
.technology-info{
	width: 52%;
}
.technology-info .technology-title{
	margin: 20px 0;
	font-size: 24px;
	font-weight: bold;
}
.technology-list{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 8vh;
}
.technology-list li{
	width: 32%;
	margin-left: 2%;
	margin-bottom:2%;
	background: #fff;
}
.technology-list li:first-child,
.technology-list li:nth-child(3n+1)
{
	margin-left: 0%;
}
.technology-list li img{
	width: 100%;
}
.technology-list li .info{
	padding: 20px;
}
.technology-list li .info strong{
	display: block;
	margin-bottom: 10px;
	font-size: 1.5rem;
		
}
@media screen and (max-width:767.8px) {
.technology-img{
	width: 100%;
	margin-bottom: 10px;
}
.technology-info{
	width: 100%;
}
.technology-list li{
	width:100%;
	margin-left:0%;
	margin-bottom: 20px;
}
}

/*新闻列表*/
.news-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.125rem;
	margin-right: -1.125rem;
}
.news-list li {
	width: 33.33%;
	padding: 1.125rem;
}
a.news-img {
	display: block;
	overflow: hidden;
}
.news-list li div{
	display: block;
	padding: 25px;
	background: #fff;
	overflow: hidden;
	border-bottom: 2px solid #fff;
	transition:all .4s;
}
.news-list li div:hover{
	box-shadow:  0 0 1.125rem rgba(228,20,24,0.2);
	border-bottom: 2px solid #e41418;
}
a.news-list-title {
	margin-top: 20px;
	display: block;
	font-size: 1.125rem;
	line-height: 1.5em;
	color: #333;
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	transition: all .4s;
}
a.news-list-title:hover {
	color: #e41418;
}
.news-list span {
	font-size: 12px;
	line-height: 1.25em;
	color: #ccc;
}
.news-list pre {
	margin: 10px 0 25px;
	font-size: 1rem;
	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:1199.98px) {
.news-list li {
	width: 33.33%;
}
}
@media(max-width:991.98px) {
.news-list li {
	width:50%;
}
.news-list li div{
	padding: 20px;
}
}
@media(max-width:767.8px) {
.news-list li {
	width: 100%;
}
}
/*文章详情*/
.info-box{
	max-width: 1200px;
	margin: auto;
	background: #fff;
}
.news-title{
	padding: 5% 5% 20px;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.news-title h1{
	margin: 0px 0px 5px;
	font-size: 30px;
	line-height: 1.25em;
	color: #333;
}
.news-title span{
	font-size: 1rem;
	line-height: 1.25em;
	color: #999;
	vertical-align: bottom;
}
.news-title a.news-back{
	float: right;
	display: inline-block;
	padding: 0 1.5em;
	font-size: 1rem;
	line-height: 32px;
	color: #666;
	background: #f7f7f7;
	transition:all .4s;
}
.news-title a.news-back:hover{
	color: #fff;
	background: #e41418;
}
.news-content{
	padding: 5%;
}


.news-page {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #ebebeb;
}
.news-page em {
	display: inline-block;
	width: 3.5rem;
	height: 1em;
	line-height: 1em;
	font-size: 1.75rem;
	color: #333;
}
.news-page h4 {
	display: block;
	width: 100%;
	margin: 10px 0 1.125rem;
	font-size: 1rem;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}
.news-page a:hover h4, .news-page a:hover em {
	color: #fff;
}
.news-page a.nomore:hover h4, .news-page a.nomore:hover em {
	color: #fff;
}
.news-page span {
	display: block;
	width: 100%;
	font-size: 0.875rem;
	line-height: 1em;
	height: 2em;
	color: #ccc;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}

@media(min-width:992px) {
.news-page a:first-child {
	border-right: 1px solid #e0e0e0;
	text-align: right;
}
.news-page a {
	display: block;
	width: 50%;
	padding: 2rem 5rem;
	transition: all .4s;
}
.news-page a:hover {
	background: #e41418;
}
}

@media(max-width:991.8px) {
.news-page a {
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
}
.news-page em {
	display: none;
}
.news-page h4 {
	font-size: 16px;
}
.news-page span {
	font-size: 1rem;
}
.news-page a:hover h4, .news-page a:hover em {
	color: #e41418;
}
.news-page a.nomore:hover h4, .news-page a.nomore:hover em {
	color: #e41418;
}
}


/*单页标题*/
.inside-title{
	margin-top: 6vh;
	text-align: center;
	font-size: 36px;
	color: #333;
	font-weight: bold;
}
@media(max-width:991.8px) {
.inside-title{
	margin-top: 6vh;
	text-align: center;
	font-size: 24px;
	color: #333;
	font-weight: bold;
}
}
/*联系方式*/
.contact-box {
	background-image: url(../images/contact-footer.png);
	background-size: 55%;
	background-position: bottom -50vw left -8vw;
	background-repeat: no-repeat;
}
.contact-box>div {
	padding-left: 1.125rem;
	padding-right: 1.125rem;
	margin: auto;
}
.contact>div {
}
.contact-code{
	display: inline-block;
	text-align: center;
	color: #666;
}
.contact-code img{
	margin-bottom: 5px;
}
@media(max-width:767.8px) {
.contact-box {
	background-image: url(../images/contact-footer.png);
	background-size: 90%;
	background-position: bottom -65vw left -8vw;
	background-repeat: no-repeat;
}
}
.contact>div {
	font-size: 1.125rem;
	line-height: 1.5em;
}
.contact>div .title-en-hv {
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
}
.contact>div p {
	margin-bottom: 1.125rem;
}
.contact>div span.icon {
	display: inline-block;
	margin-right: 5px;
	font-size: 1.5rem;
	color: #e41418;
}
.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: #e41418;
}

.contact .contact-feedback {
	padding-top: 20px;
}
.feedback input {
	outline: none;
	margin-bottom: 1.5rem;
	width: 100%;
	padding: 0px 1.125rem;
	font-size: 1.125rem;
	line-height: 46px;
	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 1.125rem;
	margin: 10px 0px;
	border-radius: none;
	box-shadow: 0;
}
.feedback textarea {
	border: none;
	font-size: 1.125rem;
	line-height: 22px;
	width: 100%;
	height: 160px;
	padding: 1.125rem;
	margin: 10px 0px;
	outline: none;
	box-shadow: none;
	overflow-x: hidden;
	background: #f7f8fa;
}
.feedback input:focus, .feedback textarea:focus {
}
.feedback .submit {
	display: inline-block;
	padding: 0px 25px;
	background: #25263b;
	font-size: 1rem;
	line-height: 36px;
	color: #fff;
	margin: 1.125rem 0px;
	transition: all .3s;
}
.feedback .submit:hover {
	background: #e41418;
}
.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;
	width: 100%;
	margin:6vh 0 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: 1rem;
	font-weight: bold;
	line-height: 31px;
	padding: 0 10px;
}
div.info-top img {
	position: absolute;
	top: 10px;
	right: 10px;
	transition-duration: 0.25s;
}
div.info-top img:hover {
	box-shadow: 0px 0px 5px #000;
}
div.info-middle {
	font-size: 12px;
	padding: 10px 1.125rem;
	line-height: 20px;
	overflow: hidden;
}
div.info-bottom {
	height: 0px;
	width: 100%;
	clear: both;
	text-align: center;
}
div.info-bottom img {
	position: relative;
	z-index: 104;
}
.custom-info span {
	margin-left: 5px;
	font-size: 11px;
}
.info-middle img {
	float: left;
	margin-right: 6px;
}
/*地图*/

/*网站地图*/
.sitemap-box{
	padding:1% 5% 5%;
}
.sitemap-list li {
	padding: 1.125rem 0 1.5rem;
	border-bottom: 1px dashed #ccc;
}
.sitemap-list div a {
	font-size: 1.5rem;
	line-height: 2.25em;
	color: #e41418;
	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: #e41418;
	text-decoration: underline;
}

@media screen and (max-width:767.8px) {
.sitemap-box{
	padding:1px 30px 50px;
}
}
/*隐私政策*/
.privacy {
	padding:1% 5% 5%;
	font-size: 1.125rem;
	line-height: 1.75em;
	color: #666;
}
/*搜索界面*/
.inside-search {
	display: block;
	font-size: 0px;
}
.inside-search form {
	text-align: center;
}
.inside-search input {
	display: inline-block;
	width: 400px;
	max-width: calc(100% - 60px);
	padding: 0 1.125rem;
	font-size: 1.125rem;
	line-height: 42px;
	height: 42px;
	border: 1px solid #ebebeb;
	vertical-align: bottom;
}
.inside-search input:last-child {
	margin-left: -1px;
	width: 60px;
	background-image: url(../images/search.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	background-color: #25263b;
	border: 1px solid #25263b;
}
.submit-nav {
	margin: 5vh 0 4vh;
}
.submit-nav ul {
	padding-bottom: 1.125rem;
	margin-bottom: 5px;
	border-bottom: 1px solid #ebebeb;
}
.submit-nav li {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin-right: 20px;
}
.submit-nav li.on:after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -16px;
	left: 0%;
	width: 100%;
	height: 1px;
	background-color: #333;
}
.submit-nav li a {
	font-size: 1.125rem;
	color: #999;
}
.submit-nav li.on a {
	font-size: 1.125rem;
	color: #333;
}
.submit-nav span {
	font-size: 1.125rem;
	color: #999;
}
.search-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1%;
	margin-right: -1%;
}
.search-list li {
	padding: 1%;
	width: 25%;
}
.search-list li div {
	border: 1px solid #ebebeb;
	overflow: hidden;
}
.search-list li p {
	margin: 1em 0 0.5em;
	font-size: 1.125rem;
	line-height: 1.25em;
	color: #333;
	transition: all .4s;
}
.search-list li a:hover p {
	color: #e41418;
}

@media screen and (max-width:991.8px) {
.search-list {
	margin-left: -1.5%;
	margin-right: -1.5%;
}
.search-list li {
	padding: 1.5%;
	width: 33.33%;
}
.search-list li p {
	font-size: 1.125rem;
	line-height: 1.25em;
	color: #333;
}
}


/*3D模型*/
model-viewer{
   width:60vw;
   height:60vh;
   position: relative;
   z-index:3;
   margin: auto;
}
#lazy-load-poster {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#lazy-load .userInput canvas{
    outline:none;
}

#button-load {
    background-color: #e60012;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    display: inline-block;
    padding: 10px 18px 9px 18px;
    font-weight: 500;
    box-shadow: 0 0 8px rgba(0,0,0,.2), 0 0 4px rgba(0,0,0,.25);
	transition:all .4s;
}
#button-load:hover,#button-load:focus {
	background: #333;
	transition:all .4s;
}