@charset "UTF-8";

/* CSS Document */
* {
	word-wrap: break-word;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html:root {
	--swiper-theme-color: #ffffff;
}

ul,
ol,
dl {
	list-style-type: none;
}

html,
body {
	*position: static;
	position: relative;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: 400;
}

input,
button,
textarea,
select,
optgroup,
option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
}

input,
textarea,
button {
	overflow: visible;
	vertical-align: middle;
	outline: 0;
}

button {
	background: 0;
	border: 0;
	outline: 0;
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: 400;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #000;
}

a:hover {
	color: #E0AC66;
}

a.ie6:hover {
	zoom: 1;
}

a:focus {}

sub,
sup {
	vertical-align: baseline;
}

button,
input[type="button"],
input[type="submit"] {
	line-height: normal !important;
}

i {
	display: inline-block;
	font-style: normal;
}

img {
	border: 0;
	display: block;
}

a img,
img {
	-ms-interpolation-mode: bicubic;
}

/**/
/*header*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transition: height .3s, background-color .3s, box-shadow .3s;
	z-index: 2001;
}

.header-wrap {
	position: relative;
}

/*
.header-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .2);
  transition: background-color .3s;
}
*/
.header.floating .header-wrap::after {
	display: none;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 30px;
	margin: 0 auto;
	transition: height .3s;
	height: 80px;
}

.header.floating .header-inner {
	height: 60px;
	background-color: #fff;
	box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
}

.header-inner .logo-fot {
	display: none;
}

.header.floating .logo-fot {
	display: block;
}

.header.floating .logo-g {
	display: none;
}

.header.floating .header-nav ul li a {
	color: #000000;
}

.header.floating .header-nav ul li a:hover {
	color: #47A1DD;
}

.header.floating .header-quick .weixin .icon {
	background-image: url("img/weixin-g.png");
}

.header.floating .header-quick .menu .icon {
	background-image: url("img/caidan-g.png");
}

/*header-inner*/
.header-inner h1 img {
	width: 198px;
	height: 38px;
	display: block;
}

.header-nav {
	flex: 1;
}

.header-nav ul {
	display: flex;
	padding-left: 100px;
	height: 100%;
}

.header-nav ul li {
	margin-right: 50px;
}

.header-nav ul li a {
	color: #ffffff;
	font-size: 16px;
}

.header-nav ul li a:hover {
	color: #FFEFD5;
}

/*header-quick*/
.header-quick {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 10;
}

.header-quick .blind {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.header-quick .icon {
	display: block;
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	transition: all 0.3s ease;
	cursor: pointer;
}

.header-quick .weixin .icon {
	background-image: url("img/weixin-w.png");
}

.header-quick .menu .icon {
	background-image: url("img/caidan-w.png");
}

.header-quick .icon:hover {
	background-position: center bottom;
}

.header-quick .weixin {
	position: relative;
	display: flex;
	align-items: center;
}

.header-quick .weixin .weixin_l {
	position: absolute;
	top: 0px;
	right: -32px;
	display: none;
	text-align: center;
	padding-top: 30px;
}

.header-quick .weixin:hover .weixin_l {
	display: block;
}

.header-quick .weixin:hover .icon {
	background-position: center bottom;
}

.weixin_l li {
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(0, 0, 0, 0.8);
}

.weixin_l img {
	width: 150px;
	height: 150px;
	display: block;
}

.weixin_l p {
	font-size: 12px;
	color: #ffffff;
	padding: 6px 0px;
}

@media screen and (max-width: 1279px) {

	/*	*/
	.header-nav {
		display: none;
	}

	.header-inner {
		padding: 0px 10px;
		height: 60px;
	}

	.header-inner h1 img {
		width: 120px;
		height: 23px;
	}

	.header-quick .weixin {
		display: none;
	}

	/*	*/
}

/*移动端菜单*/
/* Header : Mobile Button */
.btn-mobile {
	display: none;
	flex-shrink: 0;
	position: relative;
	width: 30px;
	height: 30px;
	overflow: hidden;
	color: transparent;
	text-indent: -99px;
	border: 0;
	background-color: transparent;
}

.header-lines {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 2px;
	margin: 0 auto;
	background-color: #fff;
	transform: translate(-50%, -50%);
	transition: visibility .3s, opacity .3s, background-color .3s
}

.header-lines::before,
.header-lines::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: background-color .3s, transform .3s
}

.header-lines::before {
	top: -7px
}

.header-lines::after {
	bottom: -7px
}

.btn-mobile.close .header-lines {
	background-color: transparent !important
}

.btn-mobile.close .header-lines:before,
.btn-mobile.close .header-lines:after {
	top: 100%;
	bottom: auto;
}

.btn-mobile.close .header-lines:before {
	transform: rotate(45deg);
}

.btn-mobile.close .header-lines:after {
	transform: rotate(-45deg);
}

/* 菜单导航 */
.body-mobile {
	overflow: hidden;
}

.header.mobile-open {
	background-color: #fff;
	box-shadow: none;
}

.header.mobile-open .logo-g {
	display: none;
}

.header.mobile-open .logo-fot {
	display: block;
}

.header.mobile-open .header-lines,
.header.mobile-open .header-lines::before,
.header.mobile-open .header-lines::after {
	background-color: #222;
}

.mobile-menu {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	height: 100vh;
	visibility: hidden;
	opacity: 0;
	transform: translateX(100%);
	background-color: #fff;
	transition: visibility .3s, opacity .3s, transform .3s;
	z-index: 2000
}

.mobile-menu.show {
	visibility: visible;
	opacity: 1;
	transform: translateX(0)
}

.wrapper {
	display: flex;
	flex-direction: column;
	height: calc(100% - 70px)
}

.mobile-menu-content {
	height: calc(100% - 100px);
	padding-bottom: 40px;
	margin-top: 30px
}

.mobile-nav {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto
}

.mobile-nav .main-nav-item {
	position: relative
}

.main-nav-child {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e5e5e5;
	font-size: 24px;
	font-weight: 500;
	padding: 10px 30px;
}

.main-nav-child .main-nav-text {
	flex: 1;
	font-size: 20px;
}

.main-nav-child .main-nav-child-button {
	width: 30px;
	height: 30px;
	overflow: hidden;
	text-indent: -99px;
	background-image: url("img/open.png");
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: center center;
	z-index: 50
}

.mobile-nav .main-nav-item.open .main-nav-child-button {
	transform: rotate(180deg)
}

.mobile-nav .main-nav-item .main-nav-sub {
	display: none;
	position: relative;
	padding: 10px 30px;
	margin-top: -1px;
	background-color: #f8f8f8;
	z-index: 50
}

.mobile-nav .main-nav-sub .main-nav-item {
	padding: 10px 0
}

.mobile-nav .main-nav-sub .main-nav-item:last-child {
	padding-bottom: 0
}

.mobile-nav .main-nav-sub .main-nav-text {
	font-size: 18px;
	color: #555
}

@media screen and (max-width: 1279px) {

	/**/
	.btn-mobile {
		display: block;
	}

	.header.floating .header-lines,
	.header.floating .header-lines::before,
	.header.floating .header-lines::after {
		background-color: #222;
	}

	/**/
}

/*轮播图*/
/**/
.visual-slide {
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.visual-item {
	overflow: hidden;
}

/**/
.visual-txt {
	width: 100%;
	max-width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	flex-direction: column;
	font-weight: 200;
}

.visual-txt .copy-tit-1 {
	font-size: 48px;
	text-transform: uppercase;
}

.visual-txt .copy-tit-2 {
	font-size: 36px;
}

.visual-txt h2,
.visual-txt p {
	transform: translate3d(0px, 50px, 0px);
	opacity: 0;
}

.visual-txt .copy-tit-1 {
	transition: all ease 0.5s 0.6s;
}

.visual-txt .copy-tit-2 {
	transition: all ease 0.5s 1s;
}

.visual-txt .copy-tit-3 {
	transition: all ease 0.5s 1.4s;
}

.swiper-slide-active .visual-txt h2,
.swiper-slide-active .visual-txt p {
	transform: translate3d(0px, 0px, 0px);
	opacity: 1;
}

/*more-link*/
.more-link {
	border: #ffffff solid 1px;
	padding: 8px 15px;
	color: #ffffff;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.more-link i {
	transition: transform .3s;
	width: 20px;
	height: 20px;
	background-image: url("img/more.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 10px 10px;
}

.more-link:hover {
	color: #FFFFFF;
}

.more-link:hover i {
	transform: rotate(-180deg);
}

/*轮播图移动样式*/
@media screen and (max-width: 1279px) {
	.visual-slide {
		height: 50vh;
	}

	.visual-txt .copy-tit-1 {
		font-size: 24px;
	}

	.visual-txt .copy-tit-2 {
		font-size: 16px;
	}

	.main-visual .visual_next,
	.main-visual .visual_prev {
		display: none;
	}

	.more-link {
		padding: 3px 10px;
		margin-top: 10px;
	}
}

/**/
.visual-img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: scale(1.2);
	margin: 0 !important;
	transition: transform 4s linear;
	transition-delay: 1s;
}

.swiper-slide-active .visual-img {
	transform: scale(1);
}

.visual-img video {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.visual-img img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.main-visual .visual_next {
	right: 30px;
}

.main-visual .visual_prev {
	left: 30px;
}

.main-visual .visual_pagination {
	bottom: 20px !important;
}

.main-visual .visual_pagination .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	border: #ffffff solid 2px;
	opacity: 1;
	background-color: transparent;
}

.main-visual .visual_pagination .swiper-pagination-bullet-active {
	background-color: #ffffff
}

/*页面结构*/
/**/
.section-plane {
	padding-top: 20px;
}

/**/
.plane-head {
	text-align: center;
	padding: 20px 0px;
}

.plane-head h4 {
	color: #222222;
	font-size: 30px;
	text-transform: uppercase;
}

.plane-head p {
	font-size: 26px;
	font-weight: 100;
}

/*section-inner*/
.section-inner {
	padding: 0px 30px;
	max-width: 1400px;
	margin: 0px auto;
}

@media screen and (max-width: 1279px) {
	.section-inner {
		padding: 0px 5px;
	}

	.plane-head {
		padding: 10px 0px;
	}

	.plane-head h4 {
		font-size: 20px;
	}

	.plane-head p {
		font-size: 20px;
	}
}

/*页面底部*/
.footer-txt p {
	padding: 8px 0px 8px 25px;
	background-image: url("img/fot-001.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	display: block;
	line-height: 1;
	font-size: 14px;
}

.footer-txt p:nth-child(1) {
	background-image: url("img/fot-001.png");
}

.footer-txt p:nth-child(2) {
	background-image: url("img/fot-002.png");
}

.footer-txt p:nth-child(3) {
	background-image: url("img/fot-003.png");
}

.footer-txt p:nth-child(4) {
	background-image: url("img/fot-004.png");
}

.footer-logo {
	margin-bottom: 10px;
}

.footer-logo img {
	width: 160px;
	height: auto !important;
	display: block;
}

/**/
/*footer-wrap*/
.footer-wrap {
	display: flex;
	justify-content: space-between;
}

.footer-weixin img {
	width: 125px;
	height: 125px;
	display: block;
	margin: 0px auto;
}

.footer-weixin {
	display: flex;
	text-align: center;
	font-size: 14px;
}

.footer-weixin .fot-wx-item {
	margin-left: 20px;
}

.fot-wx-item p {
	line-height: 30px;
	color: #3E3E3E;
}

/*footer-menu*/
/**/
.footer-plane {
	background-color: #F3F3F3;
	padding: 40px 0px 60px 0px;
}

.footer-menu {
	display: flex;
}

.footer-menu dl {
	margin-left: 40px;
}

.footer-menu dt {
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-menu dd {
	font-size: 14px;
	margin-bottom: 10px;
}

.footer-menu dd a {
	color: #3E3E3E
}

.footer-menu dd a:hover {
	color: #E0AC66
}

/*底部-产品中心-菜单*/
.fot-cpzx-nav {
	display: flex;
}

.fot-cpzx-nav .fot-cpzx-item {
	width: 60px;
}

.fot-cpzx-nav .fot-cpzx-item div {
	font-size: 14px;
	margin-bottom: 10px;
}

.fot-cpzx-nav a {
	color: #3E3E3E
}

.fot-cpzx-nav a:hover {
	color: #47A1DD
}

/**/
.footer-section {
	background-color: #000000;
	font-size: 12px;
	text-align: center;
	padding: 10px 0px;
	color: #D8D8D8
}

.footer-section a {
	color: #D8D8D8;
}

@media screen and (max-width: 1279px) {

	/**/
	.footer-wrap {
		display: block;
	}

	.footer-logo {
		display: none;
	}

	.footer-menu {
		display: none;
	}

	.footer-plane {
		padding: 10px 0px 20px 0px;
	}

	.footer-weixin .fot-wx-item:nth-child(2) {
		display: none;
	}

	/**/
}

/*返回顶部*/
.side_quick {
	position: fixed;
	bottom: -100px;
	right: 20px;
	z-index: 10;
	opacity: 0;
	transform: scale(0);
	transition: background-color .4s, bottom .4s ease-in-out, opacity .4s ease-in-out, transform .4s ease-in-out;
}

.side_quick.show {
	bottom: 20px;
	opacity: 1;
	transform: scale(1);
}

.side_quick .up-btn {
	width: 50px;
	height: 50px;
	box-shadow: -4px -4px 8px rgb(0 0 0 / 20%);
	background-color: #E0AC66;
	display: flex;
	align-items: center;
	justify-content: center;
}

.side_quick .up-btn:hover {
	background-color: #F5C789;
}

.side_quick .up-btn img {
	width: 20px;
	height: auto;
}

/*返回顶部*/
/* 首页新闻资讯 */
.home-news-plane {
	background-color: #F1F1F1;
	background-image: url(img/home-news-bg.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	padding: 30px 0px 80px 0px;
}

.home-news-box {
	display: flex;
}

.home-news-list {
	background-color: rgba(255, 255, 255, 0.9);
	flex: 2;
	padding: 30px;
}

.home-news-item {
	margin-bottom: 30px;
}

.home-news-item:last-child {
	margin-bottom: 0px;
}

.home-news-item a {
	display: flex;
	align-items: center;
}

.home-news-item .home-news-pic {
	margin-right: 20px;
	overflow: hidden;
	width: 218px;
	height: 123px;
}

.home-news-item .home-news-pic img {
	width: 100%;
	height: 100%;
	display: block;
	transform: scale(1);
	transition: 1s;
}

.home-news-item a:hover .home-news-pic img {
	transform: scale(1.2);
}

.home-news-info {
	flex: 1;
}

.home-news-info h2 {
	font-size: 20px;
	margin-bottom: 10px;
}

.home-news-info p {
	font-size: 16px;
	color: #6A6A6A;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-wrap: break-word;
}

/* 查找门店 */
.home-news-md {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-md-box {
	text-align: center;
}

.news-md-box b {
	text-transform: uppercase;
	font-size: 30px;
}

.news-md-box p {
	font-size: 26px;
	margin-bottom: 30px;
}

.news-md-box .md-icon img {
	width: 60px;
	height: 60px;
	display: block;
	margin: 0px auto;
}

@media screen and (max-width: 1279px) {

	/**/
	.home-news-box {
		display: block;
	}

	.home-news-list {
		background-color: rgba(255, 255, 255, 0.9);
		flex: 1;
		padding: 10px;
	}

	.home-news-item a {
		display: block;
	}

	.home-news-info h2 {
		font-size: 16px;
		margin-bottom: 10px;
		padding-top: 10px;
	}

	.home-news-info p {
		font-size: 12px;
	}

	.home-news-item .home-news-pic {
		margin-right: 0px;
		width: 100%;
		height: 100%;
	}

	.news-md-box {
		padding-top: 20px;
	}

	.news-md-box b {
		font-size: 16px;
	}

	.news-md-box p {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.news-md-box .md-icon img {
		width: 30px;
		height: 30px;
	}

	/**/
}

/* 查找门店 */
/* 首页新闻资讯 */
/* 品牌优势 */
.ppys-list {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 0px;
}

.ppys-list .ppys-item {
	width: 25%;
}

.ppys-con {
	position: relative;
	margin: 5px;
}

.ppys-con .ppys-img img {
	width: 100%;
	height: auto;
}

.ppys-con .ppys-info {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	color: #ffffff;
	text-align: center;
}

.ppys-con .ppys-info h5 {
	font-size: 30px;
	margin-bottom: 10px;
}

.ppys-con .ppys-info .jjfa-over {
	padding-bottom: 50px;
	font-size: 14px;
	transition: 0.5s;
}

.ppys-con .ppys-info::before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 300px;
	background-image: linear-gradient(180deg, rgb(0 0 0 / 0%) 30%, #000000);
	z-index: -1;
	transition: 0.5s;
}

.ppys-con:hover .ppys-info .jjfa-over {
	padding-bottom: 100px;
}

.ppys-con:hover .ppys-info::before {
	height: 100%;
}

@media screen and (max-width: 1279px) {

	/**/
	.ppys-list .ppys-item {
		width: 50%;
	}

	.ppys-con .ppys-info {
		justify-content: center;
	}

	.ppys-con .ppys-info h5 {
		font-size: 20px;
	}

	.ppys-con .ppys-info .jjfa-over {
		padding-bottom: 40px;
		font-size: 12px;
		display: none;
	}

	/**/
}

/* 品牌优势 */
/* 品牌介绍 */
.ppjs-plane {
	background-color: #F8F8F8;
}

.ppjs-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ppjs-info {
	flex: 1;
}

.ppjs-info-box {
	padding: 0px 20px;
}

/**/
.ppjs-info-head {
	text-align: center;
	margin-bottom: 20px;
}

.ppjs-info-head p {
	color: #222222;
	font-size: 30px;
	text-transform: uppercase;
}

.ppjs-info-head h3 {
	font-size: 26px;
	font-weight: 100;
}

.ppjs-info-con {
	color: #6A6A6A;
	font-size: 16px;
}

.ppjs-info-con h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.ppjs-info-con p {
	line-height: 2;
}

.ppjs-video {
	flex: 1;
}

.ppjs-video-con {
	padding: 10px;
	background-color: #000000;
}

.ppjs-video-con video {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (max-width: 1279px) {

	/**/
	.ppjs-wrap {
		display: block;
	}

	.ppjs-info-head {
		margin-bottom: 10px;
	}

	.ppjs-info-box {
		padding: 10px;

	}

	.ppjs-info-con {
		font-size: 14px;
	}

	.ppjs-info-con h4 {
		text-align: center;
	}

	/**/
}

/* 品牌介绍 */
/* 品牌介绍图片 */
.ppjstp-plane {
	margin: 0 auto;
	background-image: url(img/sfzj-001.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 200px 0px;
	position: relative;
}

.ppjstp-plane::before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.35);
}

.ppjstp-wrap {
	text-align: center;
	color: #ffffff;
	font-size: 20px;
	position: relative;
	z-index: 1;
}


.ppjstp-logo img {
	width: 198px;
	height: 38px;
	display: block;
	margin: 0px auto;
}

.ppjstp-wrap h3 {
	margin: 20px 0px 3px 0px;
}

.ppjstp-wrap h3,
.ppjstp-wrap p,
.ppjstp-wrap .ppjstp-logo {
	transform: translate3d(0px, 50px, 0px);
	opacity: 0;
}

.ppjstp-plane::before {
	opacity: 0;
}

.ppjstp-plane::before {
	transition: all ease 0.5s 0.6s;
}

.ppjstp-wrap .ppjstp-logo {
	transition: all ease 0.5s 0.6s;
}

.ppjstp-wrap h3 {
	transition: all ease 0.5s 1s;
}

.ppjstp-wrap p {
	transition: all ease 0.5s 1.4s;
}

.ppjstp-show .ppjstp-wrap .ppjstp-logo,
.ppjstp-show .ppjstp-wrap h3,
.ppjstp-show .ppjstp-wrap p {
	transform: translate3d(0px, 0px, 0px);
	opacity: 1;
}

.ppjstp-show::before {
	opacity: 1;
}

@media screen and (max-width: 1279px) {

	/**/
	.ppjstp-plane {
		padding: 60px 0px;
	}

	/**/
}

/* 品牌介绍图片 */
/*首页产品*/
.sycp-slide {
	overflow: hidden;
	position: relative;
	padding: 30px 0px 40px 0px;
}

.hzhb-plane .plane-head {
	color: #ffffff;
}

.sycp-plane .plane-head h4 {
	color: #ffffff;
}

.sycp-slide .sycp-pagination {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 0px;
}

.sycp-slide .sycp-pagination .swiper-pagination-bullet {
	width: auto;
	height: inherit;
	opacity: 1;
	background-color: #ffffff;
	padding: 5px 20px;
	border-radius: 20px;
	margin: 0px 10px;
	cursor: pointer;
}

.sycp-slide .sycp-pagination .swiper-pagination-bullet-active {
	background-color: #E0AC66;
	color: #ffffff;
}

/**/
.sycp-item h2 {
	display: none;
}

.sycp-list {
	display: flex;
	flex-wrap: wrap;
}

.sycp-list-item {
	width: 25%;
	margin: 20px 0px;
}

.sycp-list-item a {
	display: block;
	margin: 0px 10px;
}

.sycp-list-img img {
	width: 100%;
	height: auto;
	margin: 0px auto;
	display: block;
}

.sycp-list-info {
	text-align: center;
	font-size: 18px;
	padding-top: 5px;
}

.sycp-list-info h3 {
	font-size: 16px;
	color: #6A6A6A;
	margin-top: 5px;
}

.sycp-more {
	padding-top: 20px;
}

.sycp-more a {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #3E3E3E;
}

.sycp-more a:hover {
	color: #E0AC66;
}

.sycp-more i {
	margin-left: 10px;
}

.sycp-more img {
	display: block;
	width: 20px;
	height: 20px;
}

/* 产品动画 */
.sycp-list-item .sycp-list-img {
	overflow: hidden;
	background-color: #f8f8f8;
}

.sycp-list-item .sycp-list-img img {
	display: block;
	height: 100%;
	width: 100%;
	transform: translateY(0px);
	transition: 1s;
}

.sycp-list-item:hover .sycp-list-img img {
	transform: translateY(-20px);
}

/* 产品动画 */
@media screen and (max-width: 1279px) {

	/**/
	.sycp-plane {
		padding: 10px 0px;
	}

	.sycp-slide {
		padding: 20px 0px 20px 0px;
	}

	.sycp-list-item {
		width: 50%;
		margin-bottom: 10px;
	}

	.sycp-list-item a {
		margin: 0px 3px;
	}

	.sycp-slide .sycp-pagination .swiper-pagination-bullet {
		padding: 5px 10px;
		margin: 0px 5px;
	}

	.sycp-list-info {
		font-size: 14px;
	}

	.sycp-list-info h3 {
		font-size: 12px;
	}

	/**/
}

/* 产品推荐 */
.cptj-plane {
	padding-bottom: 20px;
}

.cptj-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cptj-pics {
	flex: 1;
}

.cptj-info {
	width: 500px;
}

.cptj-pics img {
	display: block;
	margin: 0px auto;
	width: 100%;
	height: 100%;
}

.cptj-info-box {
	padding: 30px;
}

.cptj-info-head {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.cptj-info-head::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #222222;
	transition: background-color .3s;
}

.cptj-info-head h3 {
	font-size: 32px;
}

.cptj-info-head h2 {
	font-size: 32px;
}

.cptj-info-con {
	height: 150px;
}

.cptj-info-con p {
	line-height: 1.7;
	font-size: 14px;
	color: #6A6A6A;
}


.cptj-slide {
	position: relative;
	overflow: hidden;
}

.cptj-slide .cptj-info-but {
	display: flex;
	position: absolute;
	right: 370px;
	bottom: 100px;
	z-index: 2;
}

.cptj-slide .cptj-info-but .cptj-but-001,
.cptj-slide .cptj-info-but .cptj-but-002 {
	width: 40px;
	height: 40px;
	overflow: hidden;
	text-indent: -9999px;
	background-image: url('img/tjcp-but-001.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px 40px;
	cursor: pointer;
}

.cptj-slide .cptj-info-but .cptj-but-001 {
	margin-right: 20px;
}

.cptj-slide .cptj-info-but .cptj-but-002 {
	background-image: url('img/tjcp-but-002.png');
}

@media screen and (max-width: 1279px) {

	/**/
	.cptj-box {
		display: block;
	}

	.cptj-pics {
		width: 100%;
	}

	.cptj-info {
		width: 100%;
	}

	.cptj-slide .cptj-info-but {
		display: none;
	}

	.cptj-info-box {
		padding: 10px;
	}

	.cptj-info-head {
		text-align: center;
	}

	.cptj-info-head::after {
		left: 50%;
		margin-left: -50px;
	}

	.cptj-info-head h3 {
		font-size: 20px;
	}

	.cptj-info-head h2 {
		font-size: 20px;
	}

	.cptj-info-head {
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	/**/
}

/* 成品定制 */
.cpdz-plane {
	margin: 0 auto;
	background-image: url('img/cpdz-bg-001.png');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.cpdz-slide {
	position: relative;
	overflow: hidden;
	width: 880px;
	margin: 0px auto;
}

.cpdz-slide .cpdz-info-but {
	display: flex;
	position: absolute;
	width: 100%;
	bottom: 50%;
	z-index: 2;
}

.cpdz-slide .cpdz-info-but .cpdz-but-001,
.cpdz-slide .cpdz-info-but .cpdz-but-002 {
	width: 40px;
	height: 40px;
	overflow: hidden;
	text-indent: -9999px;
	background-image: url('img/cpdz-but-001.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 40px 40px;
	cursor: pointer;
	position: absolute;
}

.cpdz-slide .cpdz-info-but .cpdz-but-001 {
	left: -80px;
}

.cpdz-slide .cpdz-info-but .cpdz-but-002 {
	background-image: url('img/cpdz-but-002.png');
	right: -80px;
}

.cpdz-plane .plane-head h4 {
	color: #ffffff;
}

.cpdz-plane .plane-head h4 {
	color: #ffffff;
}

.cpdz-plane .plane-head p {
	color: #ffffff;
}

.cpdz-plane .plane-fot {
	text-align: center;
	color: #ffffff;
	font-size: 20px;
	padding: 20px 0px 40px 0px;
}

.cpdz-plane .cpdz-item img {
	display: block;
	height: 450px;
	width: auto;
	margin: 0px auto;
}

@media screen and (max-width: 1279px) {

	/**/
	.cpdz-plane .plane-fot {
		font-size: 14px;
		padding: 10px 0px 20px 0px;
	}

	.cpdz-slide {
		width: 100%;
	}

	.cpdz-slide .cpdz-info-but {
		display: none;
	}

	.cptj-plane {
		padding-bottom: 0px;
	}

	.cpdz-plane .cpdz-item img {
		height: auto;
		width: 100%;
	}

	/**/
}

/* 成品定制 */
/* 子页面头部 */
.sub-visual {
	width: 100%;
	height: 390px;
	position: relative;
	text-align: center;
	color: #fff;
	overflow: hidden;
}

.sub-visual-img {
	position: relative;
	width: 100%;
	height: 100%;
}

.sub-visual-img img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	max-width: initial;
}

.sub-visual-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -40%);
	width: 100%;
}

.sub-visual-txt h2 {
	font-size: 32px;
	text-transform: uppercase;
}

.sub-visual-txt .pcbr {
	display: inline-block;
	margin: 0px 5px;
}

@media screen and (max-width: 1279px) {

	/**/
	.sub-visual {
		height: 200px;
	}

	.sub-visual-txt {
		transform: translate(-50%, 0%);
	}

	.sub-visual-txt h2 {
		font-size: 20px;
	}

	.sub-visual-txt .pcbr {
		display: block;
	}

	/**/
}

/* 子页面头部 */
/*当前位置*/
.current-plane {
	border-bottom: #E7E7E7 solid 1px;
}

.current-plane .current-txt {
	display: flex;
	align-items: center;
	font-size: 14px;
	padding: 15px 0px 15px 20px;
	background-image: url("img/dang001@2x.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 15px 15px;
}

/*当前位置*/
/* splitting文字动效 */
.splitting .char {
	-webkit-animation: text-active-animation 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
	animation: text-active-animation 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
	animation-delay: calc(0.3s + var(--char-index) * 80ms);
}

@keyframes text-active-animation {
	from {
		opacity: 0;
		filter: Alpha(opacity=0);
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}

	to {
		opacity: 1.0;
		filter: Alpha(opacity=100);
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/* splitting文字动效 */
/* 关于意斯特 */
.gyyst-pages {
	padding-bottom: 20px;
}

.gyyst-pages-tit {
	padding: 20px 0px;
	text-align: center;
}

.gyyst-pages-tit h2 {
	color: #222222;
	font-size: 28px;
	text-transform: uppercase;
}

.gyyst-pages-text {
	padding: 0px 20px 20px 20px;
	line-height: 2;
}

.gyyst-pages-text p {
	margin-bottom: 1em;
}

/* ppjs-pages-plane */
.ppjs-pages-plane {
	padding-bottom: 20px;
}

.ppjs-pages-plane .ppjs-info-head {
	text-align: left;
}

/* gyyst-pages-img */
.gyyst-pages-img img {
	display: block;
	width: 100%;
	height: auto;
}

/* plane-body */
.gyyst-pages-img {
	padding: 0px 20px;
}

.ppjs-pages-plane .ppjs-wrap {
	padding: 0px 20px;
}

/*  */
.gyyst-pages-img .gyyst-m-img {
	display: none;
}

@media screen and (max-width: 1279px) {

	/**/
	.gyyst-pages-tit h2 {
		font-size: 24px;
		font-weight: bold;
	}

	.gyyst-pages-img .gyyst-m-img {
		display: block;
	}

	.gyyst-pages-img .gyyst-pc-img {
		display: none;
	}

	/**/
}

/* 关于意斯特 */
/* 产品当前位置 */
.cpzx-current-plane .current {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cpzx-nav-box ul {
	display: flex;
	align-items:
}

.cpzx-nav-box ul li {
	margin: 0px 10px;
}

.cpzx-nav-box ul li a {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 20px;
	background-color: #ffffff;
	color: #000000;
}

.cpzx-nav-box ul li.cur a {
	background-color: #E0AC66;
	color: #ffffff;
}

/* 新闻资讯 */
.news-pages-plane .home-news-item {
	padding-bottom: 30px;
	border-bottom: #ececec 1px solid;
}

/*新闻详情页*/
.detail-title {
	padding: 40px 0px 20px 0px;
	text-align: center;
	border-bottom: #EAEAEA solid 1px;
}

.detail-title h1 {
	font-size: 26px;
	font-weight: 700;
	padding-top: 10px;
	padding-bottom: 10px;
}

.detail-title p {
	color: #999;
}

.detail-title p span {
	display: inline-block;
	margin: 0px 10px 0px 0px;
}

/*.detail-edit*/
.detail-edit {
	padding: 20px;
	overflow: hidden;
}

.detail-edit p {
	line-height: 1.7em;
	margin-bottom: 1em;
}

.detail-edit img {
	max-width: 100%;
	display: inline-block;
	margin: 0px auto;
	height: auto !important;
}

.detail-edit iframe {
	max-width: 100%;
	margin: 0px auto;
}

.detail-edit table {
	max-width: 100%;
}

.detail-edit table {
	font-size: 14px;
}

.detail-edit table tr {
	border-top: #A7A7A7 solid 1px;
	border-right: #A7A7A7 solid 1px;
}

.detail-edit table td {
	padding: 5px;
	border-bottom: #A7A7A7 solid 1px;
	border-left: #A7A7A7 solid 1px;
}

.detail-edit ol {
	padding: 20px;
}

.detail-edit li {
	list-style: decimal;
	margin-bottom: 15px;
}

.detail-edit video {
	max-width: 100% !important;
	display: block;
	margin: 0px auto;
}

/*上下信息*/
.shang-xia {
	padding: 30px;
	display: flex;
	justify-content: space-between;
	border-top: #EAEAEA solid 1px;
}

@media screen and (max-width: 1279px) {

	/**/
	.section-plane {
		padding-top: 5px;
	}

	.detail-title {
		padding: 20px 0px 20px 0px;
	}

	.shang-xia {
		padding: 10px;
		display: block;
	}

	.detail-edit {
		padding: 0px;
	}

	/**/
}

.floating-no {
	position: relative;
}

/* 新闻详情页 */
/* 联系我们 */
.lxwm-pages-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0px;
}

.lxwm-pages-info {
	width: 500px;
	line-height: 2;
}

/*  */
.lxwm-pages-weixin img {
	width: 125px;
	height: 125px;
	display: block;
	margin: 0px auto;
}

.lxwm-pages-weixin {
	display: flex;
	text-align: center;
	font-size: 14px;
}

.lxwm-pages-weixin .fot-wx-item {
	margin-left: 20px;
}

.lxwm-pages-weixin p {
	line-height: 30px;
	color: #3E3E3E;
}

/* 联系我们 */
/* ystmd-list */
.ystmd-list {
	display: flex;
	padding-bottom: 30px;
}

.ystmd-list .ystmd-item {
	flex: 1;
}

.ystmd-list .ystmd-item .ystmd-pic {
	padding: 0px 20px;
}

.ystmd-list .ystmd-item .ystmd-info {
	padding: 0px 20px;
}

.ystmd-list .ystmd-item .ystmd-pic img {
	display: block;
	width: 100%;
	height: auto;
}

.ystmd-list .ystmd-item .ystmd-info h5 {
	font-size: 20px;
	font-weight: bold;
}

.ystmd-list .ystmd-item .ystmd-info h5,
.ystmd-list .ystmd-item .ystmd-info p {
	padding: 10px 0px;
	border-bottom: #ececec 1px solid;
}
/**/
/*门店*/
.xuan-diqu-plane .section-inner {display: flex;align-items: center;justify-content: space-between}
.mendian-list {padding-bottom: 30px;}
.mendian-list dl {border: #ededed solid 1px;border-radius:2px;}
.mendian-list dt {display: flex;background-color: #ededed;color: #666666;border-radius:2px 2px 0px 0px;}
.mendian-list dd {display: flex;border-top: #ededed solid 1px}
.mendian-list span {flex: 1; text-align: center;padding:20px 10px}