﻿
/* 
* 基础
* Header头部 tt-header
* Section主体 tt-section
* 菜单导航 tt-main-menu
* 菜单导航PC tt-overlay-menu
* 页面 header page-header
* Portfolio slider (banner)
* 背景视频 tt-bg-video-wrap
* 翻页 tt-pagination
* 滑动侧边栏 tt-sliding-sidebar-wrap
* 底部 tt-footer
* 关于我们 about
* 产品中心 product
* 案例 cases
* 联系方式 contact
* 经销商 sistributor
* 质保 warranty
* 详情页 tt-details
* 门店 Store
* 技术认证 technical
* 加盟政策 joining
* 产品列表详情 details-product
* 产品报价 quoted
*/
/* ------------------------------------------------------------- *
 * 基础
/* --------------*/
* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

hr {
	width: 100%;
	height: 0;
	border: none;
	border-bottom: 1px solid rgb(144 144 144 / 30%);
}

.tt-images {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	transition: 0.5s all;
}

.tt-images-hover:hover .tt-images {
	transform: scale(1.1);
}
/*topto*/
.scroll-to-top {
	position: fixed;
	right: -20px;
	bottom: 80px;
	transform: rotate(90deg);
	z-index: 99;
}

.scroll-to-top .visible {
	visibility: visible !important;
	opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
	-o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
	transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}

.scroll-to-top .scroll-bar {
	width: 50px;
	height: 2px;
	margin-right: 10px;
	position: relative;
}

.scroll-to-top .scroll-bar:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #e8092e;
}

.scroll-to-top .scroll-bar .bar-inner {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}

.scroll-to-top .scroll-bar-text {
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 500ms ease;
	color: #fff;
}

.scroll-to-top .scroll-bar-text:hover {
	transform: scale(1.1);
}

.back-user {
	position: fixed;
	word-wrap: break-word;
	z-index: 100;
	right: 1.5rem;
	text-align: center;
	color: #fff;
	width: 45px;
	height: 45px;
	font-weight: 400;
	background: #99312f;
	transition: 0.5s all;
	bottom: 80px;
	font-size: 1.5rem;
	line-height: 48px;
}

.back-user:hover {
	color: #fff;
}

i {
	position: relative;
	top: 2px;
}

.table {
	color: rgba(255, 255, 255, .8);
}
/*SVG*/
.svg-icon svg {
	height: 1.2rem;
	width: 1.2rem;
}

.svg-icon svg g [fill] {
	-webkit-transition: fill .3s ease;
	transition: fill .3s ease;
	fill: #b5b5c3;
}

.svg-icon svg:hover g [fill] {
	-webkit-transition: fill .3s ease;
	transition: fill .3s ease;
}

.svg-icon.svg-icon-white svg g [fill] {
	-webkit-transition: fill .3s ease;
	transition: fill .3s ease;
	fill: #fff !important;
}

.svg-icon.svg-icon-white svg:hover g [fill] {
	-webkit-transition: fill .3s ease;
	transition: fill .3s ease;
}

@media (min-width: 1201px) {
  /* btn */
	.btn:hover svg [fill] {
		-webkit-transition: fill .3s ease;
		transition: fill .3s ease;
		fill: #21252c;
	}
}

.svg-icon .btn-group-lg > .btn svg, .svg-icon .btn-lg svg {
	height: 2rem;
	width: 2rem;
}

@media (max-width: 561px) {
	.back-user {
		bottom: 1rem;
		right: 1rem;
		width: 40px;
		height: 40px;
		line-height: 35px;
	}

	.back-user {
		bottom: 4rem;
		line-height: 42px;
	}

	.scroll-to-top {
		right: -40px;
		bottom: 70px;
	}
}
/* 列表 */
.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}

.list-inline > li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}
/* ------------------------------------------------------------- *
 * Header头部
/* ------------------------------------------------------------- */
#tt-header {
	left: 0;
	top: 0;
	height: 110px;
	width: 100%;
	color: #fff;
	z-index: 999;
	background: #141313;
	padding: 0 2rem;
	transition: .3s all;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5);
	pointer-events: initial;
	position: fixed;
}

#tt-header > .row, #tt-footer > div {
	max-width: 1920px;
	margin: 0 auto;
}

body.header-scrolling #tt-header {
	-webkit-transform: translate3d(0, -100%, 0);
	-moz-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

body.header-scrolled #tt-header {
	position: fixed;
	z-index: 1000;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.tt-header-col {
	display: flex;
	height: 100%;
	align-items: center;
}

.tt-header-col:first-child {
	margin-right: 4rem;
}

.tt-header-col:last-child {
	margin-left: auto;
}
/* Header logo 
=============== */
.tt-logo {
	margin-right: auto;
	line-height: 1;
	position: relative;
	z-index: 999;
}

#tt-footer {
	padding: 0 3rem;
}

@media (max-width: 1200px) {
	#tt-header {
		height: 100px;
	}

	#tt-header {
		padding: 0 .5rem;
	}

	#tt-footer {
		padding: 0 1rem 0 1.5rem;
	}

	.tt-header-col:first-child {
		margin-right: 0;
	}
}

@media (max-width: 561px) {
	.tt-logo img {
		max-height: 28px;
	}

	#tt-header {
		height: 80px;
	}

	#tt-footer, #tt-header {
		padding: 0;
	}
}
/* ------------------------------------------------------------- *
 * Section主体
/* ------------------------------------------------------------- */
.tt-section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}

.tt-section-sub {
	padding-top: 0;
}

@media (max-width: 1200px) {
	.tt-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.tt-section-sub {
		padding-top: 0;
	}
}

@media (max-width: 561px) {
	.tt-section {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.tt-section-sub {
		padding-top: 20px;
	}
}
/* ------------------------------------------------------------- *
 * 菜单导航
/* ------------------------------------------------------------- */
/* Classic menu (desktop)
========================== */
@media (min-width: 1201px) {
	.tt-main-menu {
		width: 100%;
		min-width: 600px;
		max-width: 700px;
	}

	.tt-main-menu-list {
		display: flex;
		margin: 0;
		padding: 0;
		list-style: none;
		font-size: 0;
	}

	.tt-main-menu-list > li {
		display: inline-block;
		font-size: inherit;
		transition: opacity 0.2s;
	}

	.tt-main-menu-list > li:last-child {
		padding-right: 0;
	}

	.tt-main-menu-list > li > a, .tt-main-menu-list > li > .tt-submenu-trigger > a {
		display: block;
		padding: 43px 1px;
		font-size: 18px;
		font-weight: 500;
		color: #fff;
		transition: 0.3s;
		position: relative;
	}
  /* Main menu hover */
	.tt-main-menu-list.tt-mm-hover > li > a:hover, .tt-main-menu-list.tt-mm-hover > li > .tt-submenu-trigger > a:hover {
		opacity: 1;
		color: #a22626;
	}
  /* Submenu 
	============ */
	.tt-submenu-wrap {
		position: relative;
	}

	.tt-submenu {
		position: absolute;
		display: block !important;
		top: 90%;
		left: -20px;
		width: 180px;
		background: #1c1c1c;
		text-align: left;
		visibility: hidden;
		opacity: 0;
		z-index: 99999;
		box-shadow: 0 0 30px 0 rgb(0 0 0 / 60%);
		border-radius: 8px;
		transform: translate3d(0, 5px, 0);
		transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
	}

	.tt-submenu-master-other > .tt-submenu {
		width: 900px;
		left: -20px;
		background: #1c1c1c url("../image/menu.png") center no-repeat;
		background-size: cover;
	}

	.tt-submenu-master-other > .tt-submenu .tt-submenu {
		width: auto;
		left: 0;
		top: 0;
		border-radius: 0;
		box-shadow: none;
		background-color: transparent;
		position: absolute;
	}
  /* Open submenu on hover */
	.tt-submenu-wrap.tt-submenu-open > .tt-submenu, .tt-submenu-master-other.tt-submenu-open > .tt-submenu {
		visibility: visible;
		opacity: 1;
		transform: translate3d(0, 0, 0);
		transition-delay: 0.1s;
	}
  /* submenu links */
	.tt-submenu-list {
		margin: 0;
		padding: 15px 0;
		list-style: none;
		transition: .5s;
	}

	.tt-submenu-master-other .tt-submenu-list {
		width: 240px;
		position: relative;
	}

	.tt-submenu-master-other .tt-submenu-list .tt-submenu-list {
		width: 280px;
	}

	.tt-submenu-master-other .tt-submenu-list::after {
		display: flex;
		content: '';
		width: 2px;
		height: 100%;
		background-image: linear-gradient(to top, rgba(135, 135, 135, 0), rgba(135, 135, 135, 1), rgba(135, 135, 135, 0));
		position: absolute;
		right: 0;
		top: 0;
	}

	.tt-submenu-master-other .tt-submenu .tt-submenu .tt-submenu-list::after {
		display: none;
	}

	.tt-submenu-list li {
		width: 100%;
	}

	.tt-submenu-list li a {
		position: relative;
		display: block;
		padding: 10px 30px;
		text-decoration: none;
		font-size: 15px;
		font-weight: 500;
		line-height: 1.4;
		transition: 0.5s;
		color: #fff;
	}

	.tt-submenu-master-other .tt-submenu-list li a {
		padding: 12px 25px;
	}

	.tt-submenu-list li a:hover {
		color: #a22626;
		background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0));
		transition-delay: 0.2s;
		transition-duration: 0s;
	}

	.tt-submenu-list li a::before {
		color: #a22626;
		content: attr(data-hover);
		position: absolute;
		opacity: 0;
		-webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(12deg);
		-moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(12deg);
		transform: scale(1.1) translateX(10px) translateY(-10px) rotate(12deg);
		-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
		-moz-transition: -moz-transform 0.3s, opacity 0.3s;
		transition: transform 0.3s, opacity 0.3s;
		pointer-events: none;
	}

	.tt-submenu-list li a:hover::before, .tt-submenu-list li a:focus::before {
		-webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
		-moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
		transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
		opacity: 1;
	}

	.tt-submenu-master-other .tt-submenu-list li a:hover, .other-submenubg a {
		background: #a22626;
		color: #fff;
	}
  /* Submenu toggle */
	.tt-m-caret {
		display: none;
	}
  /* Sub-submenu */
	.tt-submenu .tt-submenu-wrap > .tt-submenu {
		width: 365px;
		left: 200px;
		padding-left: 40px;
		right: inherit;
		margin-left: 0;
		position: fixed;
	}

	.tt-submenu .tt-submenu-wrap > .tt-submenu ul, .tt-submenu .tt-submenu-wrap > .tt-submenu ul li {
		width: 100%;
		height: 100%;
	}
  /* Caret (requires FontAwesome: https://fontawesome.com/) */
	.tt-submenu-trigger > a::after {
		margin-left: 4px;
		font-size: 18px;
		line-height: 0;
		font-family: "boxicons";
		content: "\ea4a";
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		position: relative;
		top: 3px;
		transition: 0.2s all;
	}

	.tt-submenu-trigger > a:hover::after {
		transform: rotate(180deg);
	}

	.tt-submenu-master-other .tt-submenu .tt-submenu-trigger > a::after {
		position: absolute;
		content: "\ed91";
		font-size: 10px;
		color: #a8a8a8;
		top: 50%;
		right: 20px;
	}

	.tt-submenu-master-other .tt-submenu .tt-submenu-trigger > a:hover::after, .tt-submenu-trigger.other-submenubg > a:after {
		transform: rotate(-90deg);
		color: #fff;
	}

	.tt-submenu-img, .tt-submenu-img01 {
		width: 340px;
		min-height: 345px;
		position: fixed;
		left: 360px;
		top: 0;
		border-radius: 0 8px 8px 0;
		overflow: hidden;
		opacity: 0;
		transition: 0.5s all;
	}

	.tt-submenu-img01 {
		width: 662px;
		left: 238px;
	}

	.tt-submenu-img img, .tt-submenu-img01 img {
		width: auto;
		height: 100%;
	}

	.tt-submenu-img-hover {
		opacity: 1;
	}
  /* Hide ".tt-submenu-trigger-m" on desktop */
	.tt-submenu-trigger .tt-submenu-trigger-m {
		display: none;
	}
}
/* Mobile menu (for classic menu) 
================================== */
@media (min-width: 1201px) {
	#tt-m-menu-toggle-btn-wrap {
 /* Hide on desktop */
		display: none;
	}
}
/* Show mobile menu on small screens only */
@media (max-width: 1200px) {
	.tt-submenu-img, .tt-submenu-img01 {
		display: none;
	}

	.tt-main-menu {
		pointer-events: initial;
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background-color: rgba(0, 0, 0, .9);
		overflow: hidden;
		visibility: hidden;
		opacity: 0;
		z-index: 998;
	}

	.tt-main-menu-holder {
		position: relative;
		height: 100%;
		width: 100%;
		overflow-y: scroll;
		z-index: 2;
	}

	.tt-main-menu-inner {
		display: table;
		width: 100%;
		height: 100%;
		padding: 15% 4%;
	}

	.tt-main-menu-content {
		height: 100%;
		padding-bottom: 3rem;
	}
  /* Mobile menu list */
	.tt-main-menu-list {
		display: inline-block;
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.tt-main-menu-list > li {
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.tt-main-menu-list > li:first-child {
		margin-top: 0;
	}

	.tt-main-menu-list > li:last-child {
		margin-bottom: 0;
	}

	.tt-main-menu-list > li a {
		position: relative;
		width: 100%;
		display: inline-block;
		font-size: 24px;
		font-weight: 600;
		line-height: 1.8;
		color: #eaeaea;
	}

@media (max-width: 767px) {
    .tt-main-menu-inner {
      padding: 30% 5% 0;
	}

	.tt-main-menu-list > li a {
		font-size: 20px;
		line-height: 1.5;
	}
}

@media (max-width: 541px) {
	.tt-main-menu-list > li a {
		font-size: 18px;
		line-height: 1.5;
	}
}
  /* Mobile menu list hover/active (master parent) */
.tt-main-menu-list > li a:hover, .tt-main-menu-list > li > .tt-submenu-trigger:hover a, .tt-main-menu-list > li > .tt-submenu-trigger:hover .tt-m-caret, .tt-main-menu-list > li.active > a, .tt-main-menu-list > li.active > .tt-submenu-trigger a, .tt-main-menu-list > li.active > .tt-submenu-trigger .tt-m-caret {
	color: #FFF;
}
  /* Mobile submenu */
.tt-submenu-wrap {
	position: relative;
}

.tt-submenu-trigger {
	position: relative;
}

.tt-submenu-trigger > a {
	position: relative;
	z-index: 1;
}

.tt-submenu-trigger .tt-submenu-trigger-m {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
}

.tt-submenu {
	display: none;
	position: relative;
	top: auto;
	left: 0 !important;
	min-width: 100%;
	background-color: transparent;
	margin-top: 20px;
	margin-bottom: 20px;
	color: #a9a9a9;
}

.tt-submenu-list {
	margin: 0 0 0 20px;
	padding: 0;
	list-style: none;
}

.tt-submenu-list .tt-submenu {
	margin-top: 10px;
}

.tt-submenu-list > li a {
	display: inline-block;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-left: 20px;
	font-size: 17px;
	font-weight: normal;
	color: #e1e1e1;
	-webkit-text-stroke: 0;
}
  /* Mobile submenu list hover/active */
.tt-submenu-list > li a:hover, .tt-submenu-list > li > .tt-submenu-trigger:hover a, .tt-submenu-list > li > .tt-submenu-trigger:hover .tt-m-caret, .tt-submenu-list > li > .tt-submenu-trigger.tt-m-submenu-open a, .tt-submenu-list > li > .tt-submenu-trigger.tt-m-submenu-open .tt-m-caret, .tt-submenu-list > li.active > a, .tt-submenu-list > li.active > .tt-submenu-trigger a, .tt-submenu-list > li.active > .tt-submenu-trigger .tt-m-caret {
	color: #FFF;
}

.tt-submenu-list > li a {
	margin-left: 15px;
}

.tt-submenu-list .tt-submenu-list > li a {
	margin-left: 30px;
}
  /* Mobile submenu caret (requires FontAwesome: https://fontawesome.com/) */
.tt-m-caret {
	position: absolute;
	top: 50%;
	right: 0;
	width: auto;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	color: #eaeaea;
	cursor: pointer;
	z-index: 9;
	transform: translate3d(0, -50%, 0);
}

.tt-m-caret::after {
	font-family: "boxicons";
	content: "\ea4a";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transition: all 0.2s ease-in-out;
}

.tt-submenu-trigger.tt-m-submenu-open .tt-m-caret::after {
	transform: rotate(180deg);
}
  /* Mobile sub-submenu caret */
.tt-submenu-list > li > .tt-submenu-trigger .tt-m-caret {
	color: #8a8a8a;
}
  /* Mobile menu toggle button */
#tt-m-menu-toggle-btn-wrap {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	cursor: pointer;
	z-index: 999;
}

.tt-m-menu-toggle-btn-holder {
	float: left;
}

.tt-m-menu-toggle-btn {
	position: relative;
	display: block;
	width: 30px;
	height: 50px;
}

.tt-m-menu-toggle-btn span {
	position: absolute;
	display: block;
	top: 52%;
	left: 50%;
	height: 2px;
	width: 28px;
	background-color: #fff;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-in-out;
}

.tt-m-menu-toggle-btn span::before, .tt-m-menu-toggle-btn span::after {
	position: absolute;
	right: 0;
	display: block;
	content: '';
	height: 2px;
	width: 22px;
	background-color: #FFF;
	transition: all 0.3s ease-in-out;
}

.tt-m-menu-toggle-btn span::before {
	top: -7px;
	width: 22px;
}

.tt-m-menu-toggle-btn span::after {
	top: auto;
	bottom: -7px;
	width: 18px;
}
  /* Toggle button text */
.tt-m-menu-toggle-btn-text {
	float: left;
	padding-right: 5px;
	overflow: hidden;
	text-align: right;
	font-size: 16px;
}

body.tt-m-menu-open .tt-m-menu-toggle-btn-text .tt-m-menu-text-menu {
	display: none;
}
  /* Toggle button close */
body.tt-m-menu-open .tt-m-menu-toggle-btn span {
	width: 20px;
	background-color: transparent;
}

body.tt-m-menu-open .tt-m-menu-toggle-btn span::before {
	top: 0;
	width: 20px;
	transform: rotate(45deg);
}

body.tt-m-menu-open .tt-m-menu-toggle-btn span::after {
	bottom: 0;
	width: 20px;
	transform: rotate(-45deg);
}

.tt-m-menu-toggle-btn-text .tt-m-menu-text-close {
	display: none;
}

body.tt-m-menu-open .tt-m-menu-toggle-btn-text .tt-m-menu-text-close {
	display: block;
}
  /* Disable menu toggle button click until the animations last */
body.tt-m-menu-toggle-no-click #tt-m-menu-toggle-btn-wrap {
	pointer-events: none;
}

.tt-main-menu.tt-m-menu-center .tt-submenu-list {
	margin: 0;
}
}

.topuser {
	position: relative;
	cursor: pointer;
	padding-left: 2rem !important;
	padding-right: 2rem !important;
	font-size: .913rem;
}

.topuser i {
	font-size: 16px;
	text-align: center;
	font-weight: 500;
	position: relative;
	top: 2px;
}

.topuser .usericon {
	font-size: 1.1rem;
	position: relative;
	top: 4px;
}

@media (max-width: 1201px) {
	.topuser {
		width: 100%;
	}

	.topuser i {
		font-size: 24px;
		top: 4px;
	}

	.topuser.bg-danger:focus, a.topuser.bg-danger:hover {
		background-color: #a22626 !important;
		color: #fff;
	}
}
/* ------------------------------------------------------------- *
 * 页面 header
/* ------------------------------------------------------------- */
#page-header {
	position: relative;
	z-index: 1;
}

.page-header-inner {
	width: 100%;
	z-index: 2;
}

#page-header:not(.ph-full) .page-header-inner {
	height: 100vh;
	max-height: 1000px;
}
/* Position center */
#page-header.ph-center {
	text-align: center;
}

#page-header.ph-center .page-header-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 1201px) {
	#page-header.ph-center .page-header-inner {
		max-width: 100%;
		padding-left: 4% !important;
		padding-right: 4% !important;
		padding-top: 110px;
	}
}

#page-header.ph-center .ph-caption, #page-header.ph-center .ph-caption-subtitle, #page-header.ph-center .ph-caption-description, #page-header.ph-center .ph-caption > p {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1200px) {
	#page-header:not(.ph-full) .page-header-inner {
		max-height: 500px;
		padding-bottom: 0;
		padding-top: 10%;
	}
}

@media (max-width: 961px) {
	#page-header:not(.ph-full) .page-header-inner {
		max-height: 400px;
	}
}

@media (max-width: 561px) {
	#page-header:not(.ph-full) .page-header-inner {
		max-height: 300px;
		padding-top: 20%;
	}
}
/* Page header image 
===================== */
.ph-image-inner {
	position: relative;
	width: 100%;
}
/* Video */
#page-header:not(.ph-image-cropped) .ph-video-wrap {
	position: relative;
	padding-bottom: 140%;
}

.ph-video {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

#page-header.ph-bg-image .ph-video-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
/* if class "ph-image-cropped" enabled (not for background image!) */
#page-header:not(.ph-bg-image).ph-image-cropped .ph-image-inner {
	position: relative;
	padding-bottom: 130%;
}

#page-header:not(.ph-bg-image).ph-image-cropped .ph-image-inner img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
/* Make image to background image */
#page-header.ph-bg-image .ph-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0;
	z-index: -1;
	transform: none;
	overflow: hidden;
}

#page-header.ph-bg-image.ph-image-shadow:after {
	position: absolute;
	content: '';
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 35vh;
	z-index: 2;
	pointer-events: none;
	background: rgb(19, 19, 19);
	background: -moz-linear-gradient(0deg, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 0) 100%);
	background: linear-gradient(0deg, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#131313", endColorstr="#131313", GradientType=1);
}

#page-header.ph-bg-image.ph-product.ph-image-shadow:after {
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111", endColorstr="#111", GradientType=1);
}
#page-header.ph-bg-image.ph-image-shadow-1::after, #page-header.ph-bg-image.ph-image-shadow-1::before {
	position: absolute;
	content: '';
	top: 0;
	left: 3rem;
	width: 50%;
	height: 100%;
	background: rgb(0, 0, 0, .5);
}
#page-header.ph-bg-image.ph-image-shadow-1::before{
    width: 35%;
    background: rgb(0, 0, 0, .65);
}
@media (min-width: 2560px) {
    #page-header.ph-bg-image.ph-image-shadow-1:after, #page-header.ph-bg-image.ph-image-shadow-1::before {
        left: 13%;  
    }
    #page-header.ph-bg-image.ph-image-shadow-1:after{
       width: 900px; 
    }
     #page-header.ph-bg-image.ph-image-shadow-1:before{
       width: 600px; 
    }
    #page-header.ph-bg-image.ph-image-shadow-1 .justify-content-start{
       padding-left: 3rem
    }
}
#page-header.ph-bg-image .ph-image-inner {
	width: 100%;
	height: 100%;
}

#page-header.ph-bg-image .ph-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

#page-header.ph-bg-image .ph-video-wrap {
	padding-bottom: 0;
}

.ph-caption {
	position: relative;
	text-shadow: 2px 2px 5px rgb(0 0 0 / 50%);
}

.ph-caption-title {
	margin: 1.5rem 0;
	font-size: 55px;
	font-weight: 400;
	color: #FFF;
	line-height: 1.3;
	letter-spacing: 8px;
}

.ph-caption-subtitle {
	font-size: 25px;
	color: #e4e4e4;
	letter-spacing: 5px;
	text-transform: capitalize;
}

.ph-caption-info {
	font-size: 17px;
	margin: 4rem 0 2rem;
	line-height: 1.6;
	letter-spacing: 1px;
	text-transform: capitalize;
}

.ph-caption-position hr {
	width: 40%;
	border-bottom: 5px solid #9d2525;
	margin: 0 auto;
}

@media (max-width: 1200px) {
	.ph-caption-title {
		font-size: 40px;
		margin: 1rem 0 1.5rem;
	}

	.ph-caption-subtitle {
		letter-spacing: 0;
	}
    #page-header.ph-bg-image.ph-image-shadow-1:after, #page-header.ph-bg-image.ph-image-shadow-1::before {
        left: 1.5rem;  
    }
    #page-header.ph-bg-image.ph-image-shadow-1:after{
       width: 600px; 
    }
     #page-header.ph-bg-image.ph-image-shadow-1:before{
       width: 450px; 
    }
}

@media (max-width: 992px) {
	.ph-caption-title {
		margin: .6rem 0;
	}

	.ph-caption-subtitle.mb-4 {
		font-size: 20px;
	}

	.ph-caption-info {
		margin-top: 2rem;
		font-size: 14px;
	}
     #page-header.ph-bg-image.ph-image-shadow-1:after{
       width: 500px; 
    }
     #page-header.ph-bg-image.ph-image-shadow-1:before{
       width: 350px; 
    }
}

@media (max-width: 561px) {
	.ph-caption-title {
		font-size: 28px;
		margin: .8rem 0!important;
		letter-spacing: 3px;
		line-height: 1;
	}

	.ph-caption-subtitle, .ph-caption-subtitle.mb-4 {
		font-size: 1rem;
	}

	.ph-caption-position hr {
		border-bottom: 2px solid #9d2525;
	}
	.ph-caption-info {
		margin-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
    #page-header.ph-bg-image.ph-image-shadow-1:after, #page-header.ph-bg-image.ph-image-shadow-1::before {
        left: 0;  
    }
    #page-header.ph-bg-image.ph-image-shadow-1:after{
       width: 300px; 
    }
     #page-header.ph-bg-image.ph-image-shadow-1:before{
       width: 200px; 
    }
}
/* Page header full screen */
#page-header.ph-full {
	height: 100vh;
	max-height: 1200px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

#page-header.ph-full.page-header-warranty {
	height: 100vh;
	max-height: 100vh;
}

@media (max-width: 992px) {
	#page-header.ph-full {
		height: 50vh;
		min-height: 500px;
	}
}

@media (max-width: 561px) {
	#page-header.ph-full {
		height: 75vh;
	}
}

#page-header.ph-left.ph-full {
	text-align: left;
	align-items: flex-end;
	justify-content: space-between;
	min-height: inherit;
	padding-bottom: 8%;
}

@media (max-width: 561px) {
	#page-header.ph-left.ph-full {
		padding-bottom: 10%;
	}
}

#page-header.ph-full .ph-image {
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	bottom: 0;
	height: 100%;
}
/* Page header image cover opasity */
[class*="ph-image-cover-"] .ph-image-inner::before, [class*="cover-opacity-"]::before {
	position: absolute;
	display: block;
	content: "";
	top: -1px;
	left: -1px;
	bottom: -1px;
	right: -1px;
	background-color: #040404;
	z-index: 1;
	opacity: 0;
}

.ph-image-cover-2 .ph-image-inner::before, .cover-opacity-2::before {
	opacity: .2;
}

.ph-image-cover-4 .ph-image-inner::before, .cover-opacity-4::before {
	opacity: .4;
}

.ph-image-cover-6 .ph-image-inner::before, .cover-opacity-6::before {
	opacity: .6;
}
/* ------------------------------------------------------------- *
 * Portfolio slider (项目banner滚动)
/* ------------------------------------------------------------- */
.tt-portfolio-slider {
	position: relative;
	width: 100%;
	background-color: #21252c;
}

.tt-portfolio-slider .swiper-container {
	height: 100vh;
	max-height: 1200px;
}
@media (max-width: 1200px) {
	.tt-portfolio-slider .swiper-container {
	}
}
@media (max-width: 992px) {
	.tt-portfolio-slider .swiper-container {
		height: 50vh;
		min-height: 500px;
	}
}
@media (max-width: 561px) {
	.tt-portfolio-slider .swiper-container {
		height: 75vh;
	}
}
/* Portfolio slider slide */
.tt-portfolio-slider .swiper-slide {
	position: relative;
	overflow: hidden;
	background-color: #000;
}
/* Portfolio slider item 
========================= */
.tt-portfolio-slider-item {
	position: relative;
	height: 100%;
}

img.tt-psi-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
/* Slide opasity cover (for prev/next slides) */
.tt-portfolio-slider-item::after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	background-color: #000;
	transition: 0.5s ease-in-out;
}

.swiper-slide-prev .tt-portfolio-slider-item::after, .swiper-slide-next .tt-portfolio-slider-item::after {
	opacity: .7;
	visibility: visible;
}
/* Portfolio slider caption 
============================ */
.tt-portfolio-slider-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1200px;
	margin: 0 auto;
	color: #FFF;
	z-index: 998;
	pointer-events: initial;
	transform: translate3d(0, -50%, 0) translateX(-50%);
}

@media (max-width: 1200px) {
	.tt-portfolio-slider-caption {
		width: 100%;
		padding: 0 4%;
	}
}

.tt-ps-caption-inner {
	text-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
}
/* Portfolio slider caption title */
.tt-ps-caption-title {
	margin: 0;
	font-size: 60px;
	font-weight: 400;
	letter-spacing: 5px;
	line-height: 1.2;
	margin-bottom: 4%;
}

.tt-ps-caption-title a {
	display: inline;
	color: #FFF;
}

.tt-ps-caption-category {
	margin-bottom: 4%;
	font-size: 28px;
	font-family: "Gill Sans", "Gill Sans MT";
	font-weight: 400;
	letter-spacing: 4px;
}
/* Portfolio slider caption position 
===================================== */
/* Position center */
.tt-portfolio-slider-caption.psc-center {
	top: calc(50% + 110px);
	left: 8%;
	width: 45%;
	margin: 0;
	padding-left: 15px;
	padding-right: 15px;
	text-align: left;
	z-index: 10;
	transform: translateY(-65%);
}

.tt-ps-caption-category {
	font-size: 24px;
	line-height: 200%;
	font-style: italic;
}

@media (min-width: 1920px) {
	.tt-ps-caption-category {
		font-size: 30px;
	}

	.tt-ps-caption-title {
		font-size: 60px;
	}
}

@media (max-width: 1200px) {
	.tt-portfolio-slider-caption.psc-center {
		width: 65%;
	}

	.tt-portfolio-slider-caption.psc-left {
		text-align: center;
	}

	.tt-ps-caption-category {
		font-size: 22px;
	}

	.tt-ps-caption-title {
		font-size: 45px;
		letter-spacing: 3px;
	}
}

@media (max-width: 561px) {
	.tt-portfolio-slider-caption.psc-center {
		width: 84%;
		top: calc(50% + 50px);
	}

	.tt-ps-caption-category {
		font-size: 18px;
		letter-spacing: 1px;
		line-height: 160%;
	}

	.tt-ps-caption-title {
		font-size: 28px;
		letter-spacing: 1px;
		margin-bottom: 6%;
	}
}
/* Portfolio slider navigation 
=============================== */
.tt-portfolio-slider-navigation {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 1rem;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 20;
  /*  transform: translate3d(-50%, 0, 0);*/
	;
}

.tt-ps-nav-prev, .tt-ps-nav-next {
	position: absolute;
	top: -50vh;
	margin-top: 90px;
	z-index: 20;
}

.tt-ps-nav-prev {
	left: 0;
}

.tt-ps-nav-next {
	right: 0;
}

.tt-ps-nav-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	font-size: 30px;
	color: #FFF;
	cursor: pointer;
	outline: none;
}

.tt-ps-nav-arrow-prev::after, .tt-ps-nav-arrow-next::after {
	line-height: 0;
	font-family: "boxicons";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.tt-ps-nav-arrow-prev::after {
	content: "\ed38";
}

.tt-ps-nav-arrow-next::after {
	content: "\ed3b";
}

.tt-ps-nav-arrow.tt-ps-nav-arrow-disabled {
  /* opacity: .5; */
	cursor: auto;
	pointer-events: none;
}

.tt-portfolio-slider .swiper-button-lock {
	display: none;
}
/* Portfolio slider pagination 
=============================== */
.tt-portfolio-slider .swiper-pagination-lock {
	display: none;
}
/* Portfolio slider pagination bullets */
.tt-ps-nav-pagination-bullets {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tt-ps-nav-pagination-bullets .swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: transparent;
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: 2px solid #fff;
}

.tt-ps-nav-pagination-bullets .swiper-pagination-bullet-active {
	background: #FFF;
	opacity: 1;
}

.tt-portfolio-slider .tt-ps-nav-pagination-bullets .swiper-pagination-bullet {
	width: 60px;
	height: 4px;
	background-color: rgba(255, 255, 255, .8);
	margin: 8px 5px;
	border-radius: 0;
	border: 0;
}

.tt-portfolio-slider .tt-ps-nav-pagination-bullets .swiper-pagination-bullet-active {
	background-color: #a22626;
}

@media (max-width: 1200px) {

	.tt-portfolio-slider .tt-ps-nav-pagination-bullets {
		padding-left: 2%;
	}

	.tt-portfolio-slider-navigation {
		bottom: 0;
	}
	
}
@media (max-width: 992px) {
    .tt-ps-nav-prev, .tt-ps-nav-next {
	    top: -28vh;
    }
}
@media (max-width: 561px) {
	.tt-portfolio-slider .tt-ps-nav-pagination-bullets {
		padding-left: 5%;
	}

	.tt-portfolio-slider .tt-ps-nav-pagination-bullets .swiper-pagination-bullet {
		width: 20px;
	}

	.tt-ps-nav-arrow {
		width: 60px;
		height: 60px;
		font-size: 25px;
	}

	.tt-ps-nav-prev, .tt-ps-nav-next {
		top: 0;
		margin-top: 0;
	}
}
/* Portfolio slider pagination fraction */
.tt-ps-nav-pagination-fraction {
	position: absolute;
	font-size: 14px;
	font-weight: 600;
	color: #FFF;
	line-height: 1;
	left: 1rem;
}

.tt-ps-nav-pagination-fraction .swiper-pagination-current {
	position: relative;
	top: -4px;
}

.tt-ps-nav-pagination-fraction .swiper-pagination-total {
	position: relative;
	bottom: -4px;
}
/* Portfolio slider pagination progressbar */
.tt-ps-nav-pagination-progressbar {
	position: absolute;
	left: 70px;
	right: 70px;
	width: auto;
	max-width: 100%;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.3);
}

.tt-ps-nav-pagination-progressbar .swiper-pagination-progressbar-fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	transform: scale(0);
	transform-origin: left top;
}
/* ------------------------------------------------------------- *
 * 区块标题
/* ------------------------------------------------------------- */
.tt-heading {
	margin-bottom: 60px;
}

.tt-heading .tt-heading-title {
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 6px;
	padding-left: 6px;
}

.tt-heading .tt-heading-subtitle {
	width: 100%;
	color: #822020;
	font-size: 2rem;
}

@media (max-width: 1200px) {
	.tt-heading {
		margin-bottom: 40px;
		padding: 0 1rem;
	}

	.tt-heading .tt-heading-title {
		font-size: 2.2rem;
	}

	.tt-heading .tt-heading-subtitle {
		font-size: 1.4rem;
	}
}

@media (max-width: 561px) {
	.tt-heading .tt-heading-title {
		font-size: 1.6rem;
		margin-top: 0 !important;
		letter-spacing: 2px;
		padding-left: 0;
	}

	.tt-heading .tt-heading-subtitle {
		font-size: 1.1rem;
	}

	.tt-heading p {
		font-size: .875rem;
	}
}
/* -------------------------------------------------------------------- *
 * 背景视频
 * Note: position "relative" or "absolute" required on parent element!
/* -------------------------------------------------------------------- */
.tt-video {
	height: 550px;
	position: relative;
}

.tt-bg-video-wrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

video.tt-bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1200px) {
	.tt-video {
		height: 280px;
	}
}
/* ------------------------------------------------------------- *
 *翻页
/* ------------------------------------------------------------- */
.tt-pagination {
	display: flex;
	padding: 2rem 0 1rem;
}

.pagination-wrap {
	padding: 0;
	margin: 0;
}

.pagination-wrap li {
	display: inline-block;
	margin: 0 5px;
}

.pagination-wrap li a, .pagination-wrap li span {
	background: #fff;
	display: inline-block;
	min-width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #101010;
	font-weight: 400;
	border: 1px solid #fff;
	border-radius: 5px;
	transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
	transform-style: preserve-3d;
}

.pagination-wrap li a i {
	font-size: 16px;
}

.pagination-wrap li a:hover {
	opacity: 1;
	text-decoration: none;
	background: #9e2525;
	border: 1px solid #9e2525;
	color: #fff;
	transform: translate3d(0px, -6px, 0.01px);
}

.pagination-wrap li a.active, .pagination-wrap li.active span {
	background-color: #9e2525;
	border: 1px solid #9e2525;
	color: #fff;
}

.pagination-wrap li.disabled span {
	color: #999;
}
/* Align center */
.tt-pagination.tt-pagin-center {
	justify-content: center;
	text-align: center;
}
/* Align left */
.tt-pagination.tt-pagin-left {
	justify-content: left;
	text-align: center;
}

@media (max-width: 1200px) {
	.tt-pagination {
		padding: 0;
	}
}

@media (max-width: 561px) {
	.pagination-wrap {
		padding-top: 1rem;
	}

	.pagination-wrap li {
		display: none;
	}

	.pagination-wrap li:first-child, .pagination-wrap li:last-child {
		display: inline-block;
	}
}
/* ------------------------------------------------------------- *
 * 滑动侧边栏
/* ------------------------------------------------------------- */
/* Sliding sidebar */
/* Sliding sidebar */
.tt-sliding-sidebar-wrap {
	position: relative;
}

.tt-sliding-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 400px;
	height: 100vh;
	z-index: 21;
	background-color: #a22626;
	overflow: hidden;
	transform: translate3d(-100%, 0, 0);
	transition: all 0.4s ease-in-out;
	z-index: 9999;
}

@media (max-width: 768px) {
	.tt-sliding-sidebar {
		width: 75%;
	}
}

body.tt-sliding-sidebar-open .tt-sliding-sidebar {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

.tt-sliding-sidebar-inner {
	height: 100%;
	overflow-y: auto;
	padding: 10% 8%;
}

.tt-sliding-sidebar-close {
	position: fixed;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 65%);
	z-index: 20;
	opacity: 0;
	z-index: 1000;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

body.tt-sliding-sidebar-open .tt-sliding-sidebar-close, .tt-sliding-sidebar-close.cursor-close {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 768px) {
	.tt-sliding-sidebar-inner {
		padding-bottom: 25%;
	}
}
/* Sliding sidebar trigger 
=========================== */
.tt-sliding-sidebar-trigger {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 50%;
	right: 0;
	width: 50px;
	height: auto;
	padding: 1.5rem 0;
	line-height: 1.25;
	text-align: center;
	background-color: #a22626;
	font-size: 20px;
	border-radius: 15px 0 0 15px;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 3px 10px 0 rgb(0 0 0 / 30%);
	transform: translateY(-45%);
	transition: background-color 0.3s, color 0.3s, width 0.3s;
	z-index: 997;
}

.tt-sliding-sidebar-trigger:hover {
	width: 60px;
	background-color: #26274e;
	color: #FFF;
}

.tt-sliding-sidebar-trigger.choicebut:hover {
	background-color: #26274e;
}

.tt-sliding-sidebar-trigger .tt-ss-icon p {
	margin: 0 auto;
	font-size: 1rem;
	padding: 0 30%;
}

.tt-sliding-sidebar-trigger .tt-ss-icon-close {
	display: none;
}
/* Sliding sidebar trigger on mobile devices and small screens */
@media (max-width: 768px) {
	.tt-sliding-sidebar-trigger {
		font-size: 1rem;
		width: 40px;
		padding: 1rem 0;
	}
}
/* Sliding sidebar position right 
================================== */
.tt-ss-right .tt-sliding-sidebar {
	left: auto;
	right: 0;
	transform: translate3d(100%, 0, 0);
}

.tt-ss-right .tt-sliding-sidebar-trigger {
	left: auto;
	right: 0;
}

.sidebar-widget {
	margin-bottom: 60px;
}
/* Sidebar headings */
.sidebar-heading {
	position: relative;
	margin-bottom: 40px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}

.sidebar-heading:after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	bottom: -15px;
	width: 35px;
	height: 2px;
	background-color: rgba(255, 255, 255, .5);
}

@media (max-width: 768px) {
	.sidebar-heading {
		font-size: 20px;
	}

	.sidebar-widget {
		margin-bottom: 40px;
	}
}
/* Sidebar search 
================== */
.sidebar-search {
	padding-right: 20px;
}

.sidebar-search .form-control, .sidebar-search .btn, .brandstyle .form-control, .brandstyle .btn {
	border-radius: 0;
	background-color: transparent;
	height: calc(1.5em + 1rem + 2px);
	color: rgba(255, 255, 255, .8);
	border: 1px solid rgba(255, 255, 255, .8);
}

.sidebar-search .btn:hover {
	color: #fff !important;
}

.sidebar-search .btn::before {
	display: none;
}
/* Sidebar categories 
====================== */
.sidebar-categories > ul > li {
	padding: 0;
}

.sidebar-categories > ul > li > a {
	display: block;
	text-decoration: none;
	font-size: 16px;
	font-weight: normal;
	color: rgba(255, 255, 255, .7);
	line-height: 1;
	padding: 10px 0px;
	transition: all 0.2s ease-in-out 0s;
}

.sidebar-categories > ul > li > a:hover, .sidebar-categories > ul > li.active > a {
	color: rgba(255, 255, 255, 1);
}

.sidebar-categories > ul > li.active > a {
	font-weight: 700;
}

.sidebar-categories > ul > li > a span {
	float: right;
	padding: 0 9px;
	text-align: center;
	font-size: 22px;
	font-weight: normal;
	color: #CCC;
	overflow: hidden;
	z-index: 1;
	border-radius: 100px;
	transition: all .2s ease-in-out;
}

@media (max-width: 768px) {
	.sidebar-categories > ul > li > a {
		font-size: 16px;
		padding: 8px 0px;
	}

	.sidebar-categories > ul > li > a span {
		font-size: 18px;
		padding-right: 0;
	}

	.sidebar-search {
		padding-right: 10px;
	}
}
/* ------------------------------------------------------------- *
 * 关于我们
/* ------------------------------------------------------------- */
/*关于品牌*/
.about-banner {
	position: relative;
	height: 680px;
	overflow: hidden;
	background: #000;
	transition: all 0.5s;
}

.about-banner .title {
	position: absolute;
	z-index: 1;
	bottom: 0;
	padding: 3rem 3rem 4rem;
	text-transform: capitalize;
	transition: all 0.5s;
}

.about-banner .title hr {
	width: 50%;
	margin-left: 0;
	border-top: 4px solid rgba(255, 255, 255, 1);
}

@media (min-width: 1201px) {
	.about-banner:hover {
		background: #761e1d;
	}

	.about-banner:hover .title {
		padding-bottom: 5rem;
	}

	.about-banner:hover img {
		opacity: .8;
	}
}

@media (max-width: 1680px) {
	.about-banner {
		height: 580px;
	}

	.about-banner .title {
		padding-bottom: 3rem;
	}
}

@media (max-width: 1200px) {
	.about-banner {
		height: 480px;
	}
}

@media (max-width: 992px) {
	.about-banner {
		height: 350px;
	}

	.about-banner .title {
		padding: 2rem 2rem 1rem;
	}

	.about-banner .title h5 {
		font-size: 100%;
	}

	.about-banner .title hr {
		width: 80%;
	}
}

@media (max-width: 561px) {
	.col-6.col-sm-4:nth-child(1) {
		padding-right: 10px;
	}

	.col-6.col-sm-4:nth-child(2) {
		padding-left: 10px;
	}

	.col-6.col-sm-4 .about-banner {
		margin-bottom: 1rem;
		height: 280px;
	}

	.col-12.col-sm-4 .about-banner {
		height: 160px;
	}

	.about-banner .title {
		padding: 1.5rem 1.5rem .5rem;
	}

	.about-banner .title h4 {
		font-size: 130%;
	}

	.about-banner .title h5 {
		font-size: 80%;
	}

	.about-banner .title .mb-3, .about-banner .title .mb-4 {
		margin-bottom: .6rem !important;
	}

	.about-banner .title hr {
		border-top: 2px solid rgba(255, 255, 255, 1);
	}

	.col-6.col-sm-4:nth-child(2) .about-banner .title hr {
		width: 102%;
	}
}
/*关于我们栏目页*/
.aboutinfo {
	width: 100%;
	max-width: 1000px;
	padding: 0 8%;
	font-size: 1.1rem;
	line-height: 2.2;
}

.about-history {
	padding: 0 1rem;
}

.aboutinfo h6, .about-video h6, .about-history h6 {
	font-size: 1.1rem;
	position: relative;
	letter-spacing: 1px;
	padding-left: 25px;
	text-transform: capitalize;
}

.about-history h6 {
	padding-left: 0;
	color: #822020 !important;
}

.aboutinfo h1, .about-video h1, .about-history h1 {
	letter-spacing: 2px;
	line-height: 1.6;
}

.aboutinfo h6:before, .about-video h6:before {
	position: absolute;
	content: '';
	width: 20px;
	height: 2px;
	background-color: #a22626;
	left: 0;
	top: 10px;
}

.about-video {
	height: 500px;
	background: url("../image/about-3.jpg") center no-repeat;
	background-size: cover;
}

.overlay-link {
	position: relative;
	height: 72px;
	width: 72px;
	line-height: 78px;
	border-radius: 50%;
	color: rgb(232, 9, 46);
	text-align: center;
	font-size: 28px;
	display: inline-block;
	background-color: #fff;
	transition: .5s;
}

.overlay-link:hover {
	background: rgb(232, 9, 46);
	color: #fff;
}

.overlay-link:before {
	position: absolute;
	content: '';
	top: -7.5px;
	left: -7.5px;
	width: 87px;
	height: 87px;
	border-radius: 43px;
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid #ffffff;
}

.overlay-link:after {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	border-radius: 50%;
}

.overlay-link.ripple:after {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
	-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
	-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
	-webkit-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.overlay-link.ripple:after {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}

@-webkit-keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
		box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
	}
}

@keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
		box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
	}
}

.modal-video .modal-content {
	border-radius: 0;
	box-shadow: 0 0 8px rgb(0 0 0 / 60%);
}

.modal-video .modal-header {
	width: 100%;
	border-bottom: 0;
	position: absolute;
	top: -50px;
}

.modal-video .close {
	color: #fff;
	padding: 0;
	margin: 0 -1rem 0 auto;
	opacity: 1;
}

.modal-video .modal-body {
	padding: 0;
}
/*历程*/
.history-list {
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.history-year .rounded-circle {
	font-size: 1.4rem;
	border: 3px solid #a22626;
	width: 110px;
	height: 110px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.history-line::after, .history-list::after, .history-year::after {
	content: '';
	display: inline-block;
	width: 3px;
	height: 100%;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 0;
}

.history-list::after {
	height: 98%;
}

.history-list::after, .history-year::after {
	left: 35px;
	width: 2px;
	display: none;
}

@media (max-width: 1200px) {
	.aboutinfo {
		padding: 0 1.5rem 2rem;
	}

	.about-video {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.history-list {
		padding: 0 1.2rem;
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.aboutinfo h1, .about-video h1, .about-history h1 {
		font-size: 2rem;
	}

	.aboutinfo h1 {
		margin-bottom: 1.5rem !important;
	}

	.about-video {
		height: auto;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}

@media (max-width: 561px) {
	.aboutinfo {
		padding: 0 .5rem 1rem;
		font-size: 1.05rem;
		line-height: 1.85;
	}

	.history-list {
		padding: 0 1.2rem;
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.aboutinfo h1, .about-video h1, .about-history h1 {
		font-size: 1.5rem;
	}

	.aboutinfo h6, .about-video h6, .about-history h6 {
		margin-bottom: 0.5rem;
	}

	.aboutinfo h1 {
		margin-bottom: 1rem !important;
	}

	.about-video {
		padding: 2rem .5rem;
	}

	.video-btn {
		margin-top: 2rem !important;
	}

	.video-btn .btn {
		font-size: 1rem;
		line-height: 1.4;
		height: auto;
	}

	.about-history {
		padding: 0;
	}

	.about-history h1.mb-5 {
		margin-bottom: 2rem !important;
	}

	.history-img {
		height: 100px;
		width: 100%;
		margin-bottom: .5rem;
	}

	.history-list {
		padding: 0 1.5rem 0 4.2rem;
		position: relative;
		font-size: .913rem;
		line-height: 1.5;
		margin-top: 0;
		margin-bottom: 1rem;
		display: none;
	}

	.history-list::after, .history-year::after {
		display: inline-block;
	}

	.history-year.hide::after {
		display: none;
	}

	.history-year {
		position: relative;
		margin-bottom: 20px;
	}

	.history-year::before {
		position: absolute;
		display: inline-block;
		content: "\ea4a";
		font-family: boxicons;
		width: 22px;
		height: 22px;
		background: #282828;
		right: 5px;
		top: 10px;
		text-align: center;
		line-height: 22px;
		border-radius: 50%;
	}

	.history-year::after {
		height: 10px;
		left: 20px;
		top: 47px;
	}

	.history-year .rounded-circle {
		font-size: .875rem;
		border: 2px solid #a22626;
		width: 42px;
		height: 42px;
		margin: 0;
	}

	.history-year {
		display: flex;
	}

	.history-year h4 {
		font-size: 1.1rem;
		line-height: 42px;
		padding-left: 10px;
		margin-bottom: 0 !important;
	}
}
/* ------------------------------------------------------------- *
 * 产品中心+新闻 product
/* ------------------------------------------------------------- */
.swiperproduct, .gallery-top {
	height: 100vh;
	max-height: 1200px;
}

.swiperproduct .swiper-container-vertical > .swiper-pagination-bullets {
	left: 2rem;
	right: 0;
}

.swiperproduct .swiper-pagination-bullet {
	width: 4px;
	height: 26px;
	border-radius: 0;
}

.swiperproduct .swiper-pagination-bullet {
	background: rgba(255, 255, 255, .8);
}

.swiperproduct .swiper-pagination-bullet-active {
	background: #fff;
}

.prodswiper {
	height: 100%;
	overflow: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	padding: 0 10%;
}

.prod-sw-caption-title {
	letter-spacing: 5px;
}

h1.prod-sw-caption-title {
	font-size: 55px;
}

.prod-sw-caption-category {
	letter-spacing: 2px;
}

.prodswiper .prod-sw-caption-category.mt-10 {
	margin-top: 6rem;
	line-height: 1.8;
	font-weight: initial;
}

.gallery-thumbs {
	position: absolute;
	width: 20%;
	max-width: 320px;
	min-width: 220px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.gallery-thumbs .swiper-slide {
	width: 100%;
	display: inline-block;
	line-height: 65px;
	height: 65px;
	max-height: 65px;
	overflow: hidden;
	background: rgba(0, 0, 0, .4);
	color: rgba(255, 255, 255, .6);
	padding: 0 25px;
	margin-bottom: 5px;
	font-size: 1.2rem;
}

.gallery-thumbs .swiper-slide::before {
	display: inline-block;
	content: '';
	width: 40px;
	height: 3px;
	background: #fff;
	position: relative;
	top: -5px;
	margin-right: 20px;
}

.gallery-thumbs .swiper-slide-thumb-active {
	background: rgba(0, 0, 0, .8);
	color: #fff;
}

.gallery-thumbs .swiper-slide-thumb-active::before {
	background: #a22626;
}

@media (max-width: 1200px) {
	.swiperproduct, .gallery-top {
		height: 550px;
	}

	.prodswiper {
		padding: 0 7%;
	}

	.prodswiper .prod-sw-caption-category.mt-10 {
		margin-top: 2rem !important;
	}

	h1.prod-sw-caption-title {
		font-size: 42px;
		margin-bottom: 2rem !important;
	}

	.prodswiper .mt-10 {
		margin-top: 2rem;
	}

	.gallery-thumbs .swiper-slide {
		line-height: 60px;
		height: 70px;
		font-size: 1.1rem;
	}
}

@media (max-width: 992px) {
	h1.prod-sw-caption-title {
		font-size: 40px;
		margin-bottom: 1.5rem !important;
	}

	.prodswiper .btn {
		width: 40% !important;
		margin: 0 auto;
	}
}

@media (max-width: 561px) {
	.gallery-top {
		height: 400px;
	}

	.swiperproduct .swiper-container-vertical > .swiper-pagination-bullets {
		right: 1.2rem;
		left: inherit;
	}

	.prodswiper {
		padding: 0 3%;
	}

	h1.prod-sw-caption-title {
		font-size: 1.65rem;
		margin: 1rem 0 !important;
	}

	.prod-sw-caption-category {
		font-size: 1rem;
	}

	.prod-sw-caption-category.mt-10 {
		font-size: .875rem;
		line-height: 140%;
	}

	.prodswiper .prod-sw-caption-category.mt-10 {
		margin-top: 1.2rem;
		line-height: 1.6;
		font-size: .875rem;
	}

	.prodswiper .btn {
		width: 60% !important;
	}

	.swiperproduct {
		height: auto;
	}

	.gallery-thumbs {
		position: inherit;
		width: 100%;
		height: 210px;
		max-width: inherit;
		min-width: inherit;
		right: inherit;
		top: inherit;
		transform: none;
	}

	.gallery-thumbs .swiper-slide {
		margin-bottom: 1px;
		font-size: 1rem;
		text-align: center;
		background: #373737;
		line-height: 50px;
	}

	.gallery-thumbs .swiper-slide-thumb-active {
		background: #171717;
	}

	.gallery-thumbs .swiper-slide::before {
		height: 1px;
		width: 20px;
		position: absolute;
		left: 20px;
		top: 50%;
	}
}
/*新闻*/
.newslist {
	height: 460px;
	background: #222222;
	transition: all 0.5s;
	position: relative;
}

.newslist:hover, .storelist:hover {
	box-shadow: 1px 1.732px 15px 0px rgba(0, 0, 0, 0.1);
}

.newslist-img {
	height: 45%;
	position: relative;
	overflow: hidden;
}

.newslist-caption {
	height: calc(55% - 76px);
	width: 100%;
	padding: 20px 35px 0;
}

.newslist-caption i {
	position: relative;
	top: 2px;
}

.newslist-caption svg path {
	fill: #777181;
}

.newslist-caption h4, .newslist-caption h5 {
	line-height: 1.6;
}

.newslist-details {
	overflow: hidden;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.newslist-more {
	padding: 0 32px;
}

.newslist-more .btn-outline-light:hover {
	color: #fff;
	background-color: #9d2424;
	border-color: #9d2424;
}

.subnews .newslist {
	margin-bottom: 2rem;
}

@media (max-width: 1200px) {
	.news {
		padding-bottom: 0;
	}

	.newslist {
		height: 360px;
		margin: 0 0 1.2rem 0;
	}

	.newslist-caption {
		padding: 20px 25px 0;
	}

	.newslist-more {
		padding: 0 25px 25px;
	}

	.newslist-caption h4 {
		font-size: 20px;
	}

	.newslist-caption p {
		margin-bottom: .2rem;
	}

	.news .col-lg-4:last-child {
		display: none;
	}

	.subnews .col-lg-4:last-child {
		display: inline-block;
	}
}

@media (max-width: 561px) {
	.news .col-lg-4:last-child {
		display: inline-block;
	}

	.news .col-lg-4:last-child .newslist {
		margin-bottom: 0;
	}

	.newslist-caption h4 {
		font-size: 18px;
	}

	.subnews .newslist {
		margin-bottom: 1rem !important;
	}
}
/* ------------------------------------------------------------- *
 *案例
/* ------------------------------------------------------------- */
.caseslist {
	position: relative;
	height: 400px;
	overflow: hidden;
}

.caseslist .caseslist-img::after, .caseslist .caseslist-img::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	content: '';
	background: rgba(0, 0, 0, .4);
	transition: 0.5s all;
	z-index: 1;
}

.caseslist .caseslist-title {
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 10;
	padding: 5% 6%;
}

.caseslist .caseslist-title {
	transition: 0.5s all;
}

.caseslist .caseslist-title hr {
	width: 80px;
	border-bottom: 5px solid #9f2525;
	margin-left: 0;
	transition: 0.5s all;
	position: relative;
	bottom: 0;
}

.caseslist .caseslist-model {
	transition: 0.5s all;
	overflow: hidden;
	margin-bottom: .5rem;
}

.caseslist .caseslist-more {
	text-align: center;
	line-height: 45px;
	position: absolute;
	right: 4rem;
	top: 2rem;
	width: 50px;
	height: 50px;
	border: 2px solid #fff;
	z-index: 10;
	border-radius: 50%;
	transition: 0.5s all;
	opacity: 0;
}

@media (min-width: 1201px) {
	.caseslist:hover .caseslist-title {
		padding-bottom: 8%;
	}

	.caseslist .caseslist-img::before {
		width: 0;
		background: rgba(158, 37, 37, 0);
	}

	.caseslist:hover .caseslist-img::before {
		width: 100%;
		background: rgba(158, 37, 37, .9);
	}

	.caseslist .caseslist-model {
		height: 1px;
		margin-bottom: 0;
	}

	.caseslist:hover .caseslist-model {
		height: 20px;
		margin-bottom: 1rem;
	}

	.caseslist:hover .caseslist-more {
		right: 2rem;
		opacity: 1;
	}
}

@media (max-width: 1200px) {
	.caseslist {
		height: 320px;
	}

	.caseslist .caseslist-img::before {
		background: rgba(0, 0, 0, .2);
	}
}

@media (max-width: 992px) {
	.caseslist {
		height: 260px;
	}
}

@media (max-width: 561px) {
	.caseslist {
		height: 220px;
		margin-bottom: 1rem !important;
	}

	.caseslist .caseslist-title {
		padding-bottom: 2%;
	}

	.caseslist .caseslist-title h4 {
		font-size: 20px;
	}

	.caseslist .caseslist-title hr {
		width: 60px;
		border-bottom: 2px solid #9f2525;
	}
}
/* ------------------------------------------------------------- *
 * 质保+
/* ------------------------------------------------------------- */
.warrantys {
	text-shadow: 0 0 0 rgb(0 0 0 / 0%);
}

.warrantys .input-group {
	margin: 2rem 0;
}

.ph-caption-Wsubtitle {
	line-height: 2;
}

.warrantys .input-group i {
	position: absolute;
	left: 15px;
	top: 15px;
	font-size: 1.1rem;
	color: #666;
	z-index: 10;
}

.warrantys .form-control {
	padding-left: 2.5rem;
	border: 0;
	background: rgba(255, 255, 255, .95);
}

.modal-warrantys {
	max-width: 500px;
}

.modal-warrantys.modal-dialog-scrollable .modal-body {
	max-height: 550px;
}

.modal-warrantys.modal-dialog-scrollable .modal-body .form-control {
	color: #666;
}

.modal-warrantys.modal-dialog-scrollable .modal-body .form-control:focus {
	color: #666;
	border: 1px solid rgba(0, 0, 0, .8);
	outline: 0;
}

.modal-warrantys-info {
	border: 1px solid #dee2e6;
	font-size: .85rem;
	margin-bottom: 1.2rem;
}

.modal-warrantys-info:last-child {
	margin-bottom: 0;
}

.modal-warrantys-info ul li {
	padding: .2rem 0;
}

.modal-warrantys-info .infoimg {
	height: 100%;
	position: relative;
}

@media (min-width: 1201px) {
	.warrantys .input-group i {
		top: 20px;
	}

	.warrantys .btn, .warrantys .form-control {
		height: 3.5rem;
	}
}

@media (max-width: 561px) {
	.warrantys {
		padding-left: 25px;
		padding-right: 25px;
	}

	.warrantys .input-group {
		margin: 1.5rem 0;
	}

	.warranty .justify-content-center h3 {
		font-size: 1.45rem;
	}

	.warranty .btn {
		height: auto;
	}

	.ph-caption-Wtitle {
		font-size: 1.8rem;
	}

	.ph-caption-Wsubtitle {
		line-height: 1.6;
		font-size: 1rem;
	}

	.modal-warrantys-info .col-md-5 {
		padding-right: 15px !important;
	}

	.modal-warrantys-info .col-md-5 .infoimg {
		height: 140px;
		overflow: hidden;
	}

	.modal-warrantys-info .col-md-5 .infoimg img {
		object-position: 50% 50%;
	}

	.modal-warrantys-info .col-md-7 {
		padding: 1rem 2rem !important;
	}

	.modal-warrantys.modal-dialog-scrollable .modal-body {
		max-height: 450px;
	}
}
/* ------------------------------------------------------------- *
 * 底部 tt-footer
/* ------------------------------------------------------------- */
#tt-footer {
	color: #fff;
	background: #000;
	overflow-x: hidden;
}

#tt-footer a {
	color: #fff;
}

#tt-footer a:hover {
	color: #a22626;
}

#tt-footer .tt-logo {
	z-index: 1;
}

#tt-footer .tt-logo h6 {
	text-align: justify;
	text-align-last: justify;
	text-transform: uppercase;
}

#tt-footer .tt-logo-font h5 {
	text-transform: capitalize;
	line-height: 140%;
	letter-spacing: 2px;
	font-weight: inherit;
}

#tt-footer .svg-icon svg {
	width: 220px;
	height: 45px;
}

#tt-footer .tt-footer-ul {
	padding-top: 1rem;
}

#tt-footer .tt-footer-ul h5 {
	display: inline-flex;
	padding-bottom: .8rem;
	border-bottom: 1px solid rgba(255, 255, 255, .4);
}

#tt-footer .tt-footer-ul ul li {
	line-height: 1.4;
	padding: .4rem 0;
}

#tt-footer .copyright {
	line-height: 60px;
	color: #666;
}

#tt-footer .copyright a {
	color: #666;
}

@media (min-width: 1201px) {
	.tt-footer-ul a {
		background-repeat: no-repeat;
		background-image: -o-linear-gradient(transparent calc(100% - 1px), currentColor 1px);
		background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
		background-image: -ms-linear-gradient(transparent 96%, currentColor 1px);
		transition: 0.6s cubic-bezier(.215, .61, .355, 1);
		background-size: 0 100%;
	}

	.tt-footer-ul a:hover {
		background-size: 100% 100%;
	}
}

@media (max-width: 1200px) {
	#tt-footer .tt-footer-ul {
		padding-left: 2rem;
	}

	#tt-footer .svg-icon svg {
		width: 150px;
		height: auto;
	}
}

@media (max-width: 992px) {
	.tt-logo {
		width: 100%;
	}

	#tt-footer .tt-logo h6 {
		text-align: center;
		text-align-last: center;
	}
}

@media (max-width: 561px) {
	#tt-footer {
		font-size: 1rem;
		padding-top: 1rem;
	}

	#tt-footer .copyright {
		line-height: 1.4;
		padding: 1rem .5rem;
	}

	#tt-footer .tt-logo-font h5 {
		font-size: 1.1rem;
	}

	#tt-footer .tt-logo {
		margin-top: 0 !important;
	}
}
/* ------------------------------------------------------------- *
 * 联系方式 contact
/* ------------------------------------------------------------- */
.contact-box {
	margin-top: -100px;
}

.contact-box .item {
	background: #000;
	padding: 60px 40px;
	-webkit-transition: .5s;
	transition: .5s;
	position: relative;
	z-index: 1;
	margin-bottom: 1.5rem;
	line-height: 1;
	text-align: left;
	overflow: hidden;
	-webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
	transition: background-color 300ms ease, transform 300ms ease, color 300ms ease;
	transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
	transform-style: preserve-3d;
	border-radius: 15px;
}

.contact-box .item h5 {
	font-size: 28px;
	color: #fff;
	margin-bottom: .5rem;
}

.contact-box .item .itemdata {
	color: rgba(255, 255, 255, .8);
	font-size: 18px;
	font-weight: 400;
}

.contact-box .item.active .itemdata {
	color: #fff;
}

.contact-box .item .svg-icon svg {
	height: 60px;
	width: 60px;
	margin-bottom: 15px;
}

.contact-box .item .svg-icon svg path {
	fill: #d30920;
}

.contact-box .item .numb {
	font-size: 120px;
	position: absolute;
	bottom: -25px;
	right: -10px;
	opacity: .2;
}

.contact-box .item .numb.svg-icon svg {
	width: 100px;
	height: 100px;
}

.contact-box .item .numb.svg-icon svg path {
	fill: rgba(255, 255, 255, .6);
}

.contact-box .item.active .numb.svg-icon svg path {
	fill: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1201px) {
	.contact-box .item.active {
		background: #a22626;
		-webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
		box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.05);
	}

	.contact-box .item.active h5 {
		color: #fff;
	}

	.contact-box .item.active .svg-icon svg path {
		fill: #fff;
	}

	.contact-box .item:hover {
		background: #a22626;
		-webkit-box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
		box-shadow: 0 10px 50px 1px rgba(0, 0, 0, 0.3);
		transform: translate3d(0px, -15px, 0.01px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
		transform-style: preserve-3d;
	}

	.contact-box .item:hover h5, .contact-box .item:hover .itemdata {
		color: #fff;
	}

	.contact-box .item:hover .numb.svg-icon svg path {
		fill: rgba(255, 255, 255, 0.5);
	}

	.contact-box .item:hover .svg-icon svg path {
		fill: #fff;
	}
}

@media (max-width: 1200px) {
	.contact-box {
		margin-top: -10px;
	}

	.contact-box .item {
		padding: 40px 30px;
	}
}

@media (max-width: 561px) {
	.contact-box .item {
		text-align: center;
		padding: 30px 20px;
		margin-bottom: 1rem;
	}

	.contact-box .item h5 {
		font-size: 24px;
	}

	.contact-box .item .numb.svg-icon svg {
		width: 90px;
		height: 90px;
	}
}
/* ------------------------------------------------------------- *
 * 经销商 sistributor
/* ------------------------------------------------------------- */
.sistributor {
	height: 100vh;
	position: relative;
}

.sistributor::after {
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: url("../image/bg-2.jpeg") center no-repeat;
	background-size: cover;
	z-index: -1;
	opacity: .6;
}

.sistributorbg {
	background: url("../image/menu-8.jpeg") center no-repeat;
	background-size: cover;
}

.sistributor-login {
	width: 90%;
	max-width: 800px;
	padding: 0 2rem 0 15%;
	margin-top: 50px;
}

.sistributor-login .form-group {
	margin-bottom: 2rem;
}

.sistributor-login .form-control {
	height: calc(2.5em + 0.75rem + 2px);
}

@media (max-width:1200px) {
	.sistributor-login {
		width: 100%;
		padding: 0 3rem 0 4rem;
	}
}

@media (max-width:992px) {
	.sistributor {
		height: 70vh;
	}

	.sistributor-login {
		padding: 0 3rem;
	}

	.sistributor-mod {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.sistributorbg::after {
		display: inline-block;
		width: 100%;
		height: 100%;
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, .8);
	}

	.sistributor-login {
		padding: 2.5rem;
	}

	.sistributor-login h1 {
		font-size: 2rem;
	}

	.sistributor-login .form-group {
		margin-bottom: 1rem;
	}
}

@media (max-width:540px) {
	.sistributor {
		height: 100vh;
	}

	.sistributor-login {
		padding: 1rem;
		margin-top: 0;
	}

	.sistributor-login h1 {
		font-size: 1.7rem;
		margin-bottom: 2rem !important;
	}

	.sistributor-login .form-check-input {
		margin-top: 0.18rem;
	}

	.sistributor-login .form-control {
		height: calc(2em + 0.75rem + 2px);
	}

	.sistributor-login .btn-lg {
		height: calc(1.6em + 0.75rem + 2px);
		line-height: 1.3;
	}
}
/* ------------------------------------------------------------- *
 * 详情页 tt-details
/* ------------------------------------------------------------- */
.page-details {
	margin-top: 140px;
}

.page-details .justify-content-center {
	font-size: 1.2rem;
}

.page-details .justify-content-center i {
	position: relative;
	top: 2px;
}

.page-details .content {
	font-size: 1.2rem;
	line-height: 220%;
	color: rgba(255, 255, 255, .8);
}

.page-details .content img {
	width: 80%;
	max-width: 100%;
}
/*案例详情页*/
.swiper-cases .swiper-wrapper {
	padding-bottom: 40px;
	margin-top: 40px;
}

.swiper-cases .swiper-slide {
	width: 978px;
	height: 650px;
	text-align: center;
	transition-timing-function: linear;
}

.swiper-cases .swiper-slide img {
	width: auto;
	height: 100%;
	border-radius: 4px;
}

.swiper-cases .swiper-slide .title {
	position: absolute;
	transform: rotate(90deg);
	transform-origin: left top;
	left: -3px;
	font-size: 11px;
	color: rgb(102, 102, 102);
}

.swiper-cases .swiper-button-next {
	right: 30px;
}

.swiper-cases .swiper-button-prev {
	left: 30px;
}

.swiper-cases .swiper-pagination-bullet {
	background: none;
	opacity: 1;
	margin: 0 6px !important;
	width: 9px;
	height: 9px;
	position: relative;
	outline: none;
	vertical-align: middle;
}

.swiper-cases.swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 0px;
}

.swiper-cases .swiper-pagination-bullet span {
	width: 3px;
	height: 3px;
	background: #fff;
	display: block;
	border-radius: 50%;
	margin-top: 3px;
	margin-left: 3px;
}

.swiper-cases .swiper-button-next:after, .swiper-cases .swiper-button-prev:after {
	font-size: 5rem;
	color: #fff;
}

@media only screen and (max-width:1200px) {
	.swiper-cases .swiper-slide {
		width: 770px;
		height: 450px;
	}

	.swiper-cases .swiper-wrapper {
		margin-top: 20px;
	}
}

@media only screen and (max-width:991px) {
	.swiper-cases .swiper-slide {
		width: 460px;
		height: 300px;
	}

	.swiper-cases .swiper-button-next:after, .swiper-cases .swiper-button-prev:after {
		font-size: 2.5rem;
	}

	.swiper-cases .swiper-button-next {
		right: 15px;
	}

	.swiper-cases .swiper-button-prev {
		left: 15px;
	}

	.page-details .justify-content-center {
		font-size: 1rem;
	}
}

@media only screen and (max-height:480px) {
	.swiper-cases .swiper-slide {
		width: 460px;
	}
}

@media only screen and (max-width:561px) {
	.swiper-cases .swiper-wrapper {
		padding-bottom: 40px;
		margin-top: 0;
	}

	.swiper-cases {
		margin-bottom: 10px;
	}
}

.swiper-cases .swiper-pagination-bullet i {
	background: #9e2525;
	height: 1px;
	width: 20px;
	position: absolute;
	top: 4px;
	transform: scaleX(0);
	transform-origin: left;
	z-index: 3;
	transition-timing-function: linear;
}

.swiper-cases .swiper-pagination-bullet-active span, .swiper-pagination-bullet:hover span {
	width: 9px;
	height: 9px;
	margin-top: 0;
	margin-left: 0;
	background: #9e2525;
	position: relative;
	z-index: 1;
}

.swiper-cases .swiper-pagination-bullet-active i {
	animation: middle 6s;
}

.swiper-cases .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active i {
	animation: first 6s;
}

.swiper-cases .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active i {
	animation: last 6s;
}

@keyframes first {
	0% {
		transform: scaleX(0.5);
		left: 0px;
	} /*091*/
	100% {
		transform: scaleX(1);
		left: 2px;
	} /*0915*/;
}

@keyframes last {
	0% {
		transform: scaleX(0.7);
		left: -10px;
	} /*1090*/
	20% {
		transform: scaleX(0.3);
		left: 2px;
	} /*090*/
	100% {
		transform: scaleX(0.3);
		left: 0px;
	} /*090*/;
}

@keyframes middle {
	0% {
		transform: scaleX(0.7);
		left: -10px;
	} /*1091*/
	20% {
		transform: scaleX(0.45);
		left: 2px;
	} /*092*/
	100% {
		transform: scaleX(1);
		left: 2px;
	} /*0913*/;
}

@media (max-width:1200px) {
	.page-details .h1, .page-details h1 {
		font-size: 2rem;
	}

	.page-details .d-flex.text-muted {
		margin-bottom: 2rem !important;
	}

	.page-details .content {
		margin-bottom: 2rem !important;
		margin-top: .5rem !important;
	}
}

@media (max-width:996px) {
	.page-details {
		margin-top: 120px;
	}

	.page-details h1 {
		margin: .5rem 0 1rem 0 !important;
		font-size: 1.8rem;
		line-height: 1.6;
	}
}

@media (max-width:540px) {
	.page-details {
		margin-top: 100px;
	}

	.page-details .content {
		font-size: 1.05rem;
		line-height: 1.65;
		margin-bottom: 2rem !important;
		margin-top: 0 !important;
	}

	.page-details .h1 {
		margin: 0 0 1rem 0 !important;
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.page-details .content img {
		width: 100%;
	}

	.page-details .content h3 {
		font-size: 1.2rem;
	}


}
/*子页导航*/
.subnsv {
	margin-bottom: 4rem;
}

.subnsv ul li {
	margin: 0 .5rem 0 .5rem;
}

.subnsv ul li.active .btn-outline-danger {
	background: #9e2525;
	color: #fff;
}

@media (max-width: 1200px) {
	.subnsv {
		margin-top: -1rem;
		margin-bottom: 2rem;
	}
}

@media (max-width: 561px) {
	.subnsv {
		margin-top: -1rem;
		margin-bottom: 2rem;
	}

	.subnsv ul li {
		margin: 0 .3rem;
	}

	.subnsv ul li .btn {
		font-size: .913rem;
		height: auto;
		line-height: 1.2rem;
		padding-left: 2rem !important;
		padding-right: 2rem !important;
	}
}
/* ------------------------------------------------------------- *
 * 门店 store
/* ------------------------------------------------------------- */
.storelist {
	background: #222222;
	transition: all 0.5s;
	box-shadow: 1px 1.732px 10px 0px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.storesearch {
	background: #222222;
	box-shadow: 1px 1.732px 10px 0px rgba(0, 0, 0, 0.05);
}

.storesearch .searchfont a {
	margin: 0 1rem 0 0;
	padding: 5px 10px;
	line-height: calc(2em + 0.75rem + 2px);
}

.storesearch .searchfont a:hover, .storesearch .searchfont a.active {
	color: #fff;
	background: #a22626;
}

.storesearch .form-control {
	border: 1px solid #131313;
	background: #131313;
}

.storelist .store-img {
	height: 290px;
	overflow: hidden;
	position: relative;
}

.storelist .store-img::after {
	display: inline-block;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .5);
	position: absolute;
}

.storelist .store-img div:not(.tag), .storelist .store-img figure {
	height: 100%;
}

.storelist .store-img .tag {
	position: absolute;
	z-index: 10;
	top: 30px;
	left: 0;
	background-color: #9e2525;
	font-size: .913rem;
	line-height: 1.7;
	display: block;
	padding: 5px 15px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 0 3px 3px 0;
	color: #fff;
}

.storelist .storefont-caption {
	line-height: 1.8;
	position: relative;
}

.storelist i {
	position: relative;
	top: 2px;
}

.storelist .infofont {
	width: 100%;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (min-width: 1201px) {
	.storelist:hover {
		background: #1c1c1c;
	}
}

@media (min-width: 562px) and (max-width: 992px) {
	.storesearch .searchfont {
		margin-bottom: 1rem;
	}

	.storelist .storefont-caption {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.storelist .store-img .tag {
		top: 20px;
	}
}

@media (max-width: 561px) {
	.storesearch {
		padding: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.storesearch .searchfont {
		margin-bottom: .5rem;
	}

	.storesearch .searchfont a {
		line-height: 2.2;
		font-size: .913rem;
		margin-right: .3rem;
		background: #131313;
	}

	.storelist {
		margin-bottom: 1rem;
	}

	.storelist .store-img .tag {
		top: 20px;
	}

	.storelist .store-img {
		height: 220px;
	}

	.storelist .storefont-caption h5 {
		margin-bottom: 1rem !important;
	}

	.storelist .storefont-caption .pr-4 {
		padding: 1.5rem;
	}
}
/* ------------------------------------------------------------- *
 * 技术认证 technical
/* ------------------------------------------------------------- */
.technical {
	background: #222;
	position: relative;
}

.technical .media-img {
	width: 45%;
	height: 260px;
}

.technical ul li {
	padding: 5px 0;
}

.technical .type {
	position: absolute;
	top: 0;
	right: 2.5rem;
	z-index: 10;
}

.technical .type img {
	width: 35px;
}

@media (min-width: 1440px) {
	.technical .media-img {
		height: 210px;
	}
}

@media (min-width: 1800px) {
	.technical .media-img {
		height: 260px;
	}
}

@media (min-width: 1920px) {
	.technical .media-img {
		height: 280px;
	}
}

@media (min-width: 2560px) {
	.technical .media-img {
		height: 295px;
	}
}

@media (max-width: 1200px) {
	.technical .media-img {
		height: 170px;
	}

	.technical .media-body {
		padding: 1rem !important;
	}

	.technical h4 {
		font-size: 1.3rem;
		margin-bottom: .8rem !important;
	}

	.technical ul li {
		padding: 1px 0;
	}

	.technical .type {
		right: inherit;
		left: 1rem;
	}
}

@media (max-width: 1024px) {
	.technical .media-img {
		height: 150px;
	}
}

@media (max-width: 992px) {
	.technical .media-img {
		width: 40%;
		height: 200px;
	}

	.technical .media-body {
		padding: 1rem 2.5rem !important;
	}

	.technical ul li {
		padding: 3px 0;
	}

	.technical .type {
		right: 2rem;
		left: inherit;
	}
}

@media (max-width: 768px) {
	.technical .media-img {
		height: 210px;
	}
}

@media (max-width: 561px) {
	.technical.media {
		width: 100%;
		display: inline-block;
		margin-bottom: 1rem !important;
	}

	.technical .media-img {
		width: 100%;
		height: auto;
	}

	.technical .media-img .tt-images {
		position: inherit;
	}

	.technical .media-body {
		width: 100%;
		padding: 1.5rem !important;
		position: relative;
	}

	.technical .type {
		right: 1.5rem;
	}

	.technical h4 {
		font-size: 1.25rem;
		margin-bottom: 1 !important;
	}

	.technical ul li {
		padding: 3px 0;
	}
}
/* ------------------------------------------------------------- *
 * 加盟政策 joining
/* ------------------------------------------------------------- */
.ppolicy-list {
	padding: 2rem 3rem;
	margin-bottom: 2rem;
}

.policy-svg svg {
	width: auto;
	height: 80px;
	margin: 0 auto;
}

.ppolicy-list h6 {
	line-height: 1.6;
}

.franchiserbg {
	background: url(../images/bg-1.jpeg) center no-repeat;
	background-size: cover;
}

.franchiserbg .table td:first-child, .franchiserbg .table th:first-child {
	border-left: 1px solid #343434;
}

.franchiserbg .table, .franchiserbg .table td, .franchiserbg .table th {
	border-bottom: 1px solid #343434;
	border-right: 1px solid #343434;
}

.franchiserbg .table td, .franchiserbg .table th {
	border-top: 1px solid #343434;
}

.franchiserbg .table thead th {
	color: #fff;
	border-bottom: 2px solid #782824;
}

.franchiserbg .table thead th, .franchiserbg .table tr {
	vertical-align: middle;
	text-align: center;
}

.process .ppolicy-list {
	position: relative;
	height: 350px;
	overflow: hidden;
	padding: 2rem 2rem;
}

.process .ppolicy-list svg {
	height: 60px;
}

.process .numb {
	font-size: 75px;
	font-weight: 700;
	position: absolute;
	bottom: -12px;
	line-height: 75px;
	right: -8px;
	color: transparent;
	-webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
	opacity: .2;
}

@media (max-width: 1200px) {
	.ppolicy .col-lg-4:nth-last-child(1) .ppolicy-list, .ppolicy .col-lg-4:nth-last-child(2) .ppolicy-list, .ppolicy .col-lg-4:nth-last-child(3) .ppolicy-list {
		margin-bottom: 0;
	}

	.process .ppolicy-list {
		height: 300px;
	}

	.process .col-xl:nth-last-child(1) .ppolicy-list, .process .col-xl:nth-last-child(2) .ppolicy-list {
		height: 220px;
		margin-bottom: 0;
	}
}

@media (max-width: 992px) {
	.ppolicy-list, .ppolicy .col-lg-4:nth-last-child(3) .ppolicy-list, .process .col-xl:nth-last-child(2) .ppolicy-list {
		margin-bottom: 1rem;
	}

	.ppolicy-list h5, .process .ppolicy-list h4 {
		margin: 1rem 0 !important;
	}

	.process .ppolicy-list h4 {
		font-size: 1.25rem;
	}
}

@media (max-width: 561px) {
	.ppolicy-list {
		padding: 1.5rem 2.5rem;
	}

	.policy-svg svg, .process .ppolicy-list svg {
		height: 50px;
	}

	.ppolicy-list h5, .process .ppolicy-list h4 {
		margin: 1rem 0 .5rem !important;
		font-size: 1.2rem;
	}

	.ppolicy-list h6 {
		font-size: .913rem;
		line-height: 1.6;
		margin-bottom: 0 !important;
	}

	.process .ppolicy-list {
		height: auto;
	}

	.franchiserbg .table td, .franchiserbg .table th {
		padding: 8px 10px;
		line-height: 1.4;
		font-size: .913rem;
	}
}
/* ------------------------------------------------------------- *
 * 产品列表详情 details-product
/* ------------------------------------------------------------- */
.details-prod {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	letter-spacing: 1px;
}

.details-prod-01 {
	height: 100vh;
}

.details-prod-02 {
	height: 75vh;
}

.details-prod-04 {
	height: auto;
	padding-bottom: 100px;
}
.details-prod-06::after{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    content: '';
    position: absolute;
    left: 0;
    top:0;
    z-index: 1
}
.details-prod h1 {
	font-size: 55px;
}

.details-prod h2 {
	font-size: 45px;
}

.details-prod h5 {
	line-height: 1.8;
	color: rgba(255, 255, 255, .8);
}

.details-prod h6 {
	font-size: 1.05rem;
	line-height: 1.8;
}

.details-prod .iconbox-top {
	margin-top: 120px;
}

.details-prod-01 .iconbox {
	width: 220px;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/product_bg_1.svg);
	background-position: center;
	background-size: cover;
	padding: 40px;
	margin: 0 auto;
}

.details-prod-01 .iconbox-01 {
	width: 70%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
	margin: 0 auto;
}
.details-prod-01 .iconbox-02 {
	height: auto;
    border-radius: 0.375rem;
    text-align: center;
	padding: 30px 20px;
	margin: 0 auto;
    border: 1px solid #fff
}
.details-prod-01 .iconbox-02 > div{
    font-size: .913rem;
    padding-top: .5rem
}
.details-prod-01 .iconbox-01 img {
	width: 115px;
	margin: 1.5rem auto;
}
.details-prod-01 .iconbox-02 img {
	width: 90px;
	margin:0 auto 1.2rem ;
}

.iconbox-2 {
	width: 140px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: 2px solid #a22626;
	padding: 30px 10px;
	margin-top: 50px;
}

.iconbox-2 h5 {
	font-size: 18px;
	color: rgba(255,255,255,.8);
}

.iconbox-2 img {
	width: 70px;
}
.details-prod-01 .iconbox-03{
    width: 70%;
    padding: 2rem;
    margin: 0 auto;
    color: #383838;
    box-shadow: 8px 10px 15px 1px rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.89) 32.89%, rgba(255, 255, 255, 0.92) 100%); 
}
.details-prod-01 .iconbox-03 h4{
    font-weight: 700;
    color: #000
}
.details-prod-01 .iconbox-03 img{
    height: 120px;
}
.details-prod-01 .iconbox-04 img{
    width: 64px;
}
.built {
	width: 100%;
	height: 100%;
	padding: 0 10%;
	background: rgba(0, 0, 0, .8);
}

.built hr, .details-prod-font hr {
	width: 100px;
	border-bottom: 5px solid #a22626;
	margin: 2rem 0 4rem 0;
}

.builtlist {
	width: 80%;
	border: 2px solid #fff;
	padding: 0 10px;
	margin-top: 2rem;
}

.builtlist .bg-danger {
	max-width: 4rem;
	height: 80px;
	line-height: 75px;
}

.builtlist .leading-none a {
	padding-top: 2px;
	color: #fff;
}

.other-product {
	overflow: hidden;
	height: 680px;
	background-size: cover;
	background-position: center;
	padding: 3rem 2.5rem;
	color: #fff;
}

.other-product h2, .other-product h6 {
	position: relative;
	z-index: 10;
}

.other-product a.btn {
	width: 60%;
	position: absolute;
	bottom: 3rem;
}

.other-product::after {
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(180.64deg, #161616 0.55%, rgba(26, 26, 26, 0.587388) 47.37%, rgba(31, 31, 31, 0.35) 50.6%, rgba(29, 29, 29, 0.25) 56.08%, rgba(25, 25, 25, 0.48) 85.05%, rgba(23, 23, 23, 0) 94.47%);
	position: absolute;
	left: 0;
	top: 0;
}

.details-prod-font {
	padding: 4rem 3rem;
	background: rgba(0,0,0,.8);
	position: relative;
}

.imgbox-1 {
	height: 90%;
	margin: 2rem 0;
	overflow: hidden;
}

.imgbox-1 img {
	float: right;
	width: auto;
	height: 100%;
	max-width: none;
}

.details-prod-06 .table td, .details-prod-06 .table th{
    padding: 1.5rem 1rem;
    border-top-color: rgba(255,255,255,.5);
    background:rgba(0,0,0,.3) 
}
.details-prod-06 .table thead td, .details-prod-06 .table thead th{
    border-bottom-color: #fff;
     border-top:0;
    background:rgba(0,0,0,.3);
    color: #fff;
    vertical-align:middle;
}
.details-prod .details-prod-bg{
    width: 60%;
    height: 200%;
    left: 0;
    top:0;
    transform: rotate(20deg);
    transform-origin: top right;
    background-color: rgba(5,5,5,.6);
    position: absolute;
    z-index: 2;
}
.series1title{
    width: 75%;
    margin-left:auto;
    margin-right:auto;
}
@media (max-width: 2559px){
.details-prod.details-prod-07 .container-fluid{
    padding-right:15px;
    padding-left: 15px;
}
}
.details-prod-07 .nav-link{
    height: 240px;
    padding: 1rem 2rem;
    background: #1c1c1c;
    border-radius: 0;
    color: rgba(255,255,255,.8);
    border-bottom: 1px solid #232323
}
.details-prod-07 .nav-link:last-child{
    border-bottom: 0;
}
.details-prod-07 .nav-pills .nav-link.active, .details-prod-07 .nav-pills .show > .nav-link {
    color: #fff;
    background: rgb(88, 34, 34);
    background: -moz-linear-gradient(0deg, rgba(88, 34, 34, 1) 10%, rgba(88, 34, 34, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(88, 34, 34, 1) 10%, rgba(88, 34, 34, 0) 100%);
    background: linear-gradient(0deg, rgba(88, 34, 34, 1) 10%, rgba(88, 34, 34, 0) 100%);
    border-bottom: 3px solid rgb(162, 38, 38);
}
.details-prod-07 .tab-content, .details-prod-07 .tab-pane, .details-prod-07 .tab-pane .imgbg{
    height: 100%;
}
.swiper-product {
	overflow: hidden;
    cursor: none;
}
#producthover {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #b92e2e;
    border-radius: 50%;
    pointer-events: none;
    color: #fff;
    transform: scale(0);
    transition: transform .33s;
    z-index: 99;
}
.channel-product {
    overflow: hidden;
    height: 740px;
    padding-left:5% ;
    padding-bottom:8% ;
	background-size:cover;
	background-position: bottom center;
}
@media (min-width: 2560px) {
    .channel-product {
        height: 900px;
    }
}
.channel-product h5{
    line-height: 1.6;
}
.swiper-product .swiper-button-prev, .swiper-product .swiper-button-next{
    color: #fff;
    width: 60px;
    top: 40%;
}
.swiper-product .swiper-button-prev{
    left:1.5rem;
}
.swiper-product .swiper-button-prev svg{
    transform: rotate(180deg);
}
.swiper-product .swiper-button-next{
    right:1.5rem;
}
.swiper-product .swiper-button-prev::after, .swiper-product  .swiper-button-next:after{
    display: none;
}
@media (max-width: 1200px) {
	.details-prod-01 {
		height: 75vh;
	}
	.details-prod-02 {
		height: 45vh;
		padding: 0 4%;
	}
    .details-prod-04 {
		padding-bottom: 50px;
	}
    .details-prod-05{
        height: auto;
        padding:60px 4% 60px
    }
	.details-prod-01 .iconbox-top {
		margin-top: 80px;
	}

	.details-prod h1, .details-prod h2 {
		font-size: 40px;
	}

	.built hr, .details-prod-font hr {
		margin-bottom: 2rem;
	}

	.other-product {
		height: 500px;
		padding: 2rem 2rem;
	}

	.other-product a.btn {
		bottom: 2rem;
	}

	.details-prod-01 .iconbox-01 {
		width: 90%;
		padding: 30px 0;
	}

	.details-prod-01 .iconbox-01 img {
		width: 80px;
		margin: 1.5rem auto;
	}
	.iconbox-2 img {
		width: 60px;
	}
    .details-prod-01 .iconbox-02{
        margin-bottom: 1.5rem;
        padding: 20px;
    }
    .details-prod-01 .iconbox-02 img {
        width: 70px;
    }
    .details-prod-06 .table{
        font-size: .913rem
    }
    .details-prod-06 .table td, .details-prod-06 .table th{
        padding: 1rem
    }
    .details-prod-01 .iconbox-03{
        width: 95%;
    }
    .imgbox-1 {
	    height: 80%;;
	}
	.channel-product {
        height: 550px;
        padding-left: 8%;
    }
    .channel-product h5{
        font-size: 1rem;
    }
    .swiper-product .swiper-button-prev, .swiper-product .swiper-button-next {
        width: 45px;
        top:45%;
    }
    .swiper-product .swiper-button-prev{
        left: 1rem;
    }
    .swiper-product .swiper-button-next {
        right: 1rem;
    }
    .details-prod-07 .nav-link{
        font-size: .913rem;
        height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}

@media (max-width: 992px) {
	.details-prod-01 {
		height: 80vh;
	}
    .details-prod-05{
        height: auto;
    }
	.details-prod-01 .iconbox-top {
		padding-left: 8%;
		padding-right: 8%;
	}

	.details-prod h1, .details-prod h2 {
		font-size: 32px;
		margin-top: 1rem !important;
	}

	.other-product {
		height: 400px;
		padding: 2rem 2rem;
	}

	.other-product h2 {
		font-size: 1.4rem;
	}

	.other-product a.btn {
		width: calc(100% - 4rem);
		bottom: 2rem;
	}

	.details-prod-04 img {
		height: 50px;
	}

	.details-prod h2.prod-h-01 {
		font-size: 30px;
	}

	.iconbox-2 {
		width: 100%;
		padding: 20px 10px;
		margin-top: 0;
	}

	.iconbox-2 h5 {
		font-size: 16px;
	}

	.iconbox-2 img {
		width: 45px;
	}
    .details-prod-06 .table{
        font-size: .875rem
    }
    .details-prod-01 .iconbox-03{
        padding: 2rem 1.5rem 1.5rem
    }
    .details-prod-01 .iconbox-03 img{
        height: 80px;
    }
    .series1title{
        width: 100%;
    }
    .channel-product {
        height: 500px;
    }
    .channel-product h1{
        font-size: 32px;
    }
}

@media (max-width: 561px) {
	.details-prod-01 {
		height: auto;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.details-prod-02 {
		height: auto;
		padding: 60px 2%;
	}
    .details-prod-05{
        background-size: 500%;
        padding: 60px 2% 50px;
    }
	.details-prod h1, .details-prod h2 {
		font-size: 25px;
		margin-top: .5rem !important;
	}

	.details-prod h5 {
	    line-height: 1.5;
		font-size: 1.05rem;
	}

	.built h6, .details-prod h6 {
		font-size: .913rem;
		line-height: 1.5;
		color: rgba(255,255,255,8);
	}

	.details-prod-01 .iconbox-top {
		margin-top: 50px;
		padding-left: 5%;
		padding-right: 5%;
	}

	.details-prod-01 .iconbox {
		width: 100%;
		height: auto;
		padding: 40px 0;
	}

	.details-prod-01 .iconbox img {
		height: 65px;
	}

	.details-prod-01 .iconbox h4 {
		font-size: 18px;
		margin-top: 2rem !important;
	}

	.details-prod h4 {
		font-size: 1.05rem;
		line-height: 1.5;
		margin: 1rem 0 0 0 !important;
	}

	.details-prod-03 {
		padding: 0;
	}

	.built {
		padding: 3rem 2rem;
	}

	.built hr, .details-prod-font hr {
		margin: 1rem 0;
	}

	.built .pl-3.pr-3 {
		padding-right: 0 !important;
	}

	.builtlist {
		width: 100%;
		margin-top: 1rem;
		padding-right: 0;
	}

	.builtlist .bg-danger {
		height: 70px;
		line-height: 65px;
	}

	.other-product {
		height: 320px;
		padding: 1.5rem 1rem;
	}

	.other-product h2 {
		font-size: 1.2rem;
	}

	.other-product a.btn {
		width: calc(100% - 2rem);
		bottom: 1.5rem;
		padding: 0;
		font-size: .913rem;
		height: auto;
		line-height: 2.2rem;
	}

	.details-prod h2.prod-h-01 {
		font-size: 18px;
	}

	.details-prod-01 .iconbox-01 {
		width: 100%;
		padding: 0;
	}

	.details-prod-01 .iconbox-01 img {
		width: 60px;
		margin: 1.5rem auto 0;
	}

	.details-prod-01 .iconbox-01 div div {
		font-size: .875rem;
		line-height: 1.4;
		color: rgba(255,255,255,.8);
		margin-top: .5rem;
	}

	.details-prod-04 {
		padding-bottom: 30px;
	}

	.iconbox-2 {
		margin-top: -20px;
		margin-bottom: 50px;
	}

	.details-prod-font {
		padding: 2.5rem;
	}

	.imgbox-1 {
	    margin:1rem 0 0 0;
	}

	.imgbox-1 img {
		height: auto;
		width: 100%;
		max-width: none;
	}
    .details-prod-01 .iconbox-02 {
        margin-bottom: 1.5rem;
        padding: 10px;
    }
    .details-prod-01 .iconbox-02 img {
        width: 60px;
        margin-bottom: 0
    }
    .details-prod-06 .table{
        line-height: 1.5
    }
    .details-prod-06 .table td, .details-prod-06 .table th{
        padding: .5rem .4rem
    }
     .details-prod-01 .iconbox-03{
        width: 95%;
        padding: 1.5rem 1.2rem 1rem;
        margin-bottom: 1.5rem
    }
    .details-prod-01 .iconbox-03 img{
        height: 65px;
    }
    .details-prod-01 .row .col-12.col-sm-4:last-child .iconbox-03{
        margin-bottom: 0;
    }
    .details-prod-01 .iconbox-03 h6 {
        margin-top: 1rem;
        color: #383838;
    }
    .details-prod-01 .iconbox-04 img{
        width: 45px;
    }
    .details-prod .details-prod-bg{
        width: 90%;
    }
    .channel-product {
        height: 450px;
        padding-top: 50px;
        padding-left:5px ;
        padding-right:5px ;
    }
    .channel-product h1{
        font-size: 25px;
    }
    .channel-product h4{
        font-size: 20px;
    }
    .channel-product h5 {
        font-size: .913rem;
    }
    .swiper-product .swiper-button-prev, .swiper-product .swiper-button-next{
        top:inherit;
        bottom:2rem;
        width: 35px;
    }
    .swiper-product .swiper-button-prev{
        left:1rem;
    }
    .swiper-product .swiper-button-next{
       right:inherit; 
       left:4rem;
    }
    .details-prod-07 .nav-link{
        padding-top: 0rem;
        padding-bottom: 1rem;
        text-align: center;
    }
    .details-prod-07 .nav-pills .nav-link.active, .details-prod-07 .nav-pills .show > .nav-link{
        border-bottom: 1px solid rgb(162, 38, 38);
    }
    .details-prod-07 .nav-link > div{
        width: 100%;
    }
    .details-prod-07 .tab-pane{
        height: 300px;
        overflow: hidden
    }
}
/* ------------------------------------------------------------- *
 * 产品报价 quoted
/* ------------------------------------------------------------- */
.quoted {
	background: url("../images/menu-10.jpeg") bottom right no-repeat;
	background-size: cover;
	padding-top: 150px;
	padding-bottom: 120px;
}

.quoted h2 {
	line-height: 1.6;
}

.carprice {
	height: calc(100vh - 320px);
	min-height: 600px;
	position: relative;
}

.car-part, .car-bg, .car-part-o {
	width: 100%;
	height: 100%;
	background: url("../images/car/car.png") center no-repeat;
	background-size: contain;
	margin: 0 auto;
}

.car-bg {
	display: none;
}

.car-part-o {
	height: 340px;
	margin-bottom: 3rem;
	background: transparent;
}

.car-part-o .car-bg {
	display: block;
}

.car-part > div {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.car-qg {
	background-image: url("../images/car/car-qg.png");
}

.car-qyzb {
	background-image: url("../images/car/car-qyzb.png");
}

.car-qgai {
	background-image: url("../images/car/car-qgai.png");
}

.car-hyzb {
	background-image: url("../images/car/car-hyzb.png");
}

.car-hsj {
	background-image: url("../images/car/car-hsj.png");
}

.car-hgai {
	background-image: url("../images/car/car-hgai.png");
}

.car-hg {
	background-image: url("../images/car/car-hg.png");
}

.car-cd {
	background-image: url("../images/car/car-cd.png");
}

.car-cm {
	background-image: url("../images/car/car-cm.png");
}

.car-cq {
	background-image: url("../images/car/car-cq.png");
}

.car-zheng {
	background-image: url("../images/car/car-zheng.png");
}

.car-hg {
	background-image: url("../images/car/car-hg.png");
}

.car-cd {
	background-image: url("../images/car/car-cd.png");
}

.car-c-hcc {
	background-image: url("../images/car/car-c-hcc.png");
}

.car-c-hd {
	background-image: url("../images/car/car-c-hd.png");
}

.car-c-qcc {
	background-image: url("../images/car/car-c-qcc.png");
}

.car-c-tc {
	background-image: url("../images/car/car-c-tc.png");
}

.car-c-qd {
	background-image: url("../images/car/car-c-qd.png");
}

.car-o-bld {
	background-image: url("../images/car/car-o-bld.png");
}

.car-o-dm {
	background-image: url("../images/car/car-o-dm.png");
}

.area-price {
	width: 250px;
	height: 70px;
	margin: 30px 0;
	font-size: 1.2rem;
	text-align: center;
	line-height: 70px;
	transition: 0.5s all;
	color: rgba(255, 255, 255, .8);
	border: rgba(255, 255, 255, .2) 2px solid;
	background: rgba(255, 255, 255, .2);
	animation: rotate 3s linear infinite;
}

.area-price01 {
	width: 350px;
}

.rotating-border:hover {
	background: rgba(255, 255, 255, .3);
}

.rotating-border.active, .rotating-border.active:hover {
	background: #a22626;
	color: rgba(255, 255, 255, 1);
}

.total-price {
	position: absolute;
	width: 250px;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	height: 50px;
	text-align: center;
	background: rgba(160, 40, 40, .8);
}

.total-price h5 {
	line-height: 50px;
	margin-bottom: 0 !important;
}

@media (max-width:1201px) {
	.quoted {
		padding-top: 140px;
		padding-bottom: 40px;
	}

	.quoted h2 {
		font-size: 1.8rem;
	}

	.carprice {
		height: 600px;
		margin-bottom: 80px;
	}

	.total-price {
		bottom: -80px;
	}

	.area-price {
		width: 100%;
		font-size: 1rem;
		line-height: 1.4;
		padding: 0 10px;
		align-items: center;
		justify-content: center;
		display: flex;
		margin: 10px 0 20px 0;
	}

	.carprice-01 {
		height: auto;
		min-height: inherit;
	}

	.car-part-o {
		margin-bottom: 0;
	}

	.area-price01 {
		width: 300px;
	}
}

@media (max-width: 992px) {
	.area-price01 {
		width: 240px;
	}
}

@media (max-width: 561px) {
	.quoted {
		padding-top: 100px;
		padding-bottom: 20px;
	}

	.quoted h2 {
		font-size: 1.15rem;
		line-height: 1.5;
	}

	.carprice {
		height: inherit;
		position: relative;
		margin-bottom: 0;
	}

	.car-part-mob {
		height: 350px;
		position: absolute;
		top: 20px;
	}

	.carprice .col-6.col-sm-3, .carprice .col-12.col-sm-5 {
		margin-top: 430px;
		padding: 0;
	}

	.carprice .col-6.col-sm-3 > div {
		width: 90%;
	}

	.carprice .col-12.col-sm-5 > div {
		left: 5%;
		width: 90%;
		position: relative;
		top: -40px;
	}

	.area-price {
		font-size: .875rem;
		padding: 0 10px;
		margin: 8px 0 0;
		border-width: 1px;
		height: 40px;
	}

	.total-price {
		width: 90%;
		top: 390px;
		height: 40px;
		bottom: inherit;
		z-index: 100;
		color: rgba(255, 255, 255, .8);
		border: rgba(255, 255, 255, .2) 1px solid;
		background: rgba(255, 255, 255, .2);
	}

	.total-price.active {
		background: #a22626;
		color: rgba(255, 255, 255, 1);
	}

	.total-price h5 {
		font-size: .913rem;
		line-height: 40px;
	}

	.area-price01, .carprice-01 .col-10.col-sm-5 div {
		width: 100%;
	}

	.carprice .col-12.col-sm-5 div .area-price01 {
		float: left;
		width: 50%;
	}

	.carprice .col-12.col-sm-5 div .area-price01:first-child {
		width: 100%;
	}
}
/*侧栏分类*/
.slinky-menu {
	overflow: hidden;
	padding-bottom: 50px;
	transform: translateZ(0);
	transition: all 300ms ease;
	-webkit-transform: translateZ(0);
	-webkit-transition: all 300ms ease;
}

.slinky-menu > ul {
	left: 0;
	position: relative;
	transform: translateZ(0);
	transition: all 300ms ease;
	-webkit-transform: translateZ(0);
	-webkit-transition: all 300ms ease;
}

.slinky-menu li ul {
	display: none;
	left: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}

.slinky-menu h2 {
	font-weight: 500;
	color: #fff;
	font-size: 1.5rem;
}

.slinky-menu h5 {
	font-weight: 500;
	color: #fff;
	font-size: 1.05rem;
	text-align: right;
	line-height: 3.5rem;
	margin-bottom: 0 !important;
}

.slinky-menu h6 {
	font-size: 1.2rem;
	margin-bottom: 0 !important;
}

.slinky-menu hr {
	border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.slinky-menu ul li > a {
	display: block;
	outline: none;
	color: rgba(255, 255, 255, .7);
	padding: 0.4rem 0;
}

.slinky-menu .subslinky a {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 1.00);
}

.slinky-menu .productlist a {
	font-size: 1.05rem;
	padding: 0.5rem 0;
	color: rgba(255, 255, 255, .8);
	display: inline-block;
}

.slinky-menu .productlist::before {
	font-family: boxicons !important;
	font-weight: 400;
}

.slinky-menu .productlist::before {
	display: inline-block;
	content: "- ";
	margin-right: .5rem;
}

.slinky-menu .back {
	position: absolute;
	width: auto;
	display: block;
	outline: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 100%;
	top: 7px;
	left: -5px;
}

.slinky-menu .back::before {
	font-family: boxicons !important;
	font-weight: 400;
	content: '\ea4d';
	font-size: 1.5rem;
	position: relative;
	top: .3rem;
}

.slinky-menu .back:hover {
	color: #fff;
}

.slinky-menu .brandimg {
	height: 70px;
	padding: 0 0 1rem;
	border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.slinky-menu .brandimg > div:first-child {
	width: 70px;
	margin-right: 1.5rem;
	text-align: center;
}

.slinky-menu .brandimg img {
	width: auto;
	height: auto;
	max-width: 70px;
	max-height: 50px;
}

.slinky-menu ul li ul .next::before, .slinky-menu ul li ul .next::after {
	display: none;
}

.slinky-menu .brandlist {
	background: rgb(255 255 255 / 10%);
	margin-top: 1rem;
	line-height: 50px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	font-size: 1.2rem;
}

.slinky-menu .input-group {
	margin: .5rem 0;
}

.slinky-menu .form-control {
	border-radius: 0;
	border: 1px solid rgba(255, 255, 255, .5);
	color: #fff;
}

.slinky-menu .form-control::placeholder {
	color: rgba(255, 255, 255, .8);
}

@media (max-width: 561px) {
	.slinky-menu h2 {
		font-size: 1.2rem;
	}

	.slinky-menu hr {
		margin: .7rem 0 !important;
	}

	.slinky-menu h5 {
		line-height: 2.5rem;
	}

	.slinky-menu .back {
		top: .2rem;
		left: -.5rem;
	}

	.slinky-menu ul li.subslinky a {
		font-size: 1.05rem;
	}

	.slinky-menu ul li > a {
		font-size: 1rem;
		padding: 0.3rem 0;
	}

	.slinky-menu .brandimg {
		height: 60px;
		padding-bottom: .5rem;
	}

	.slinky-menu .brandimg > div:first-child {
		width: 60px;
	}

	.slinky-menu .brandimg img {
		max-width: 60px;
		max-height: 45px;
	}

	.slinky-menu .brandlist {
		padding: 0 1rem;
		line-height: 45px;
	}
}
/* ------------------------------------------------------------- *
 * 积分兑换 redeem
/* ------------------------------------------------------------- */
.redeemlist {
  background: #222222;
  margin-bottom: 2rem
}
.redeemlist .redeem-img {
  height: 300px;
  display: flex;
    align-items: center;
    justify-content: center;
}
.redeemlist .redeem-img img {
  max-width: inherit;
  height: 220px;
  transition: 0.5s all;
}
.redeemlist .tag {
  background: #fff;
  left: 0
}
.redeemlist .redeem-caption {
  padding: 0 2rem 2rem;
}
.redeemlist .redeem-caption h6 {
  line-height: 1.4
}
.redeemlist a {
  color: #111;
  cursor: pointer
}
.redeem-explain {
  line-height: 2
}

/*积分详情页*/
.redeem-details-img, .redeem-details-caption {
  height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.redeem-details-img{
    background-color: #222;
}
.redeem-details-caption {
    justify-content: flex-start;
}
.redeem-details-img img {
  max-height: 400px
}
.redeem-details-caption {
  padding-left: 3rem
}
.redeem-details-caption .content {
  font-size: 1rem;
  line-height: 200%
}

.redeem-details-caption{
    display: flex;
    align-items: center;
}
@media (min-width: 1201px) {
  .redeemlist:hover .redeem-img img {
    transform: scale(1.1);
  }
}
@media (max-width: 992px) {
  .redeemlist {
    margin-bottom: 1.5rem;
  }
  .redeemlist .redeem-img {
    height: 240px;
  }
  .redeemlist .redeem-caption {
    padding: 0 1.5rem 1.5rem;
  }
  .redeemlist .redeem-img img {
    height: 180px;
  }
  .redeem-explain {
    line-height: 1.8
  }
  .redeem-explain .mt-4 {
    margin-top: 1rem !important
  }
  .redeem-details-img, .redeem-details-caption {
    height: 500px;
  }
  .redeem-details-caption{
      padding-left: 0!important;
  }
  .redeem-details-img img {
    max-height: 320px
  }
}
@media (max-width: 561px) {
  .redeem, .redeem .col-6.col-md-4.col-xl-3 {
    padding-left: 6px;
    padding-right: 6px
  }
  .redeemlist {
    margin-bottom: 1rem;
  }
  .redeemlist .tag {
    font-size: .75rem;
    padding: 3px 10px;
  }
  .redeemlist .redeem-img {
    height: 150px;
  }
  .redeemlist .redeem-caption {
    padding: 0 1rem 1rem;
  }
  .redeemlist .redeem-img img {
    height: 100px;
  }
  .redeemlist .redeem-caption h6 {
    font-size: .913rem
  }
  .redeem-explain h4 {
    font-size: 1.2rem;
  }
  
  .redeem-details-caption{
      padding-top: 2rem;
  }
  .redeem-details-caption h2{
      font-size: 1.4rem;
  }
  .redeem-details-caption h5 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .redeem-details-img {
    height: 300px;
  }
  .redeem-details-img img {
    max-height: 220px;
  }
}
/*星级*/
.grade {
	display: flex;
}

.grade-h, .grade-b, .grade-z, .grade-x, .grade-w, .grade-v11, .grade-v12 {
	float: left;
	width: 100%;
	height: 25px;
	overflow: hidden;
	position: relative;
	top: 2px;
	background: url("../images/vip_1.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-b {
	background: url("../images/vip_2.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-z {
	background: url("../images/vip_3.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-x {
	background: url("../images/vip_4.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-w {
	background: url("../images/vip_5.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-v11 {
	background: url("../images/vip_11.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-v12 {
	background: url("../images/vip_12.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-h-1, .grade-b-1, .grade-x-1, .grade-z-1, .grade-v1-1, .grade-v2-1 {
	width: 40px;
}

.grade-h-2, .grade-b-2, .grade-x-2, .grade-z-2, .grade-v1-2, .grade-v2-2 {
	width: 82px;
}

.grade-h-3, .grade-b-3, .grade-x-3, .grade-z-3, .grade-v2-3 {
	width: 125px;
}

.grade-h-4, .grade-b-4, .grade-x-4, .grade-z-4, .grade-v2-4 {
	width: 170px;
}

.grade-v2-5 {
	width: 210px;
}

.grade-w-0 {
	height: 28px;
	width: 115px;
	top: 0px;
}

.grade-xx, .grade-dr, .grade-jy, .grade-ds, .grade-cq {
	float: left;
	overflow: hidden;
	height: 28px;
	top: -1px;
	position: relative;
	background: url("../images/vip_6.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-dr {
	height: 30px;
	background: url("../images/vip_7.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-jy {
	height: 30px;
	background: url("../images/vip_8.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-ds {
	height: 29px;
	background: url("../images/vip_9.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-cq {
	background: url("../images/vip_10.png") left center no-repeat;
	background-size: auto 100%;
}

.grade-xx-1, .grade-dr-1, .grade-jy-1, .grade-ds-1, .grade-cq-1 {
	width: 35px;
}

.grade-xx-2, .grade-dr-2, .grade-jy-2, .grade-ds-2, .grade-cq-2 {
	width: 70px;
}

.grade-xx-3, .grade-dr-3, .grade-jy-3, .grade-ds-3, .grade-cq-3 {
	width: 100px;
}

.grade-xx-4, .grade-dr-4, .grade-jy-4, .grade-ds-4, .grade-cq-4 {
	width: 135px;
}

.grade-cq-0 {
	top: -4px;
	height: 36px;
	width: 115px;
}

.unaudited {
	width: 8px;
	height: 8px;
	position: absolute;
	right: .4rem;
	top: 40%;
	background-color: #dc3545;
}

@media (max-width: 400px) {
	.grade-v11, .grade-v12 {
		height: 22px;
		top: 3px;
	}

	.grade-v1-1, .grade-v2-1 {
		width: 37px;
	}

	.grade-v1-2, .grade-v2-2 {
		width: 74px;
	}

	.grade-v2-3 {
		width: 110px;
	}

	.grade-v2-4 {
		width: 147px;
	}

	.grade-v2-5 {
		width: 180px;
	}
}
/*圆型时度条*/
.panClip {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #111;
	position: relative;
	overflow: hidden;
}

.panClip .percentage {
	width: 85px;
	height: 85px;
	line-height: 60px;
	font-size: 20px;
	color: rgba(255,255,255,.8);
	background-color: #000;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
}

.panClip .title {
	width: 100%;
	height: auto;
	font-size: 18px;
	color: rgba(255,255,255,.6);
	text-align: center;
	position: absolute;
	z-index: 6;
	bottom: 20px;
}

.panClip .clipBox {
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 50%;
	clip-path: polygon(50% 0%, 50% 100%, 100% 100%, 100% 0%);
}

.panClip .clipBox .clipLeft,
.panClip .clipBox .clipRight {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #8a1415;
	position: absolute;
	top: 0px;
	left: 0px;
}

.panClip .clipBox .clipLeft {
	clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0%);
}

.panClip .clipBox .clipRight {
	clip-path: polygon(50% 0%, 50% 100%, 100% 100%, 100% 0%);
}

.width-none {
	width: 0 !important;
}

.clip_none {
	clip-path: none !important;
}

.panClip .circular {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #8a1415;
	transform: translateX(-50%);
	position: absolute;
	top: 0px;
	left: 50%;
	z-index: 3;
}

@media (max-width: 992px) {
	.panClip {
		width: 80px;
		height: 80px;
	}

	.panClip .percentage {
		width: 70px;
		height: 70px;
		line-height: 50px;
		font-size: 18px;
	}

	.panClip .title {
		font-size: 18px;
		bottom: 14px;
	}
}

@media (max-width: 541px) {
	.panClip {
		width: 70px;
		height: 70px;
		margin-top: -30px;
		margin-bottom: 50px;
	}

	.panClip .percentage {
		width: 60px;
		height: 60px;
		line-height: 45px;
	}

	.panClip .percentage,.panClip .title {
		font-size: 14px;
	}

	.panClip .title {
		bottom: 10px;
	}
}