/*
 *	Created by Edward on 25/05/22
 *	Copyright (c) 2025 ishutime.com All rights reserved
*/
html {
	/* 1rem = 16px; 2px = 0.125rem; 14px = 0.875rem; 18px = 1.125rem */
	font-size: 16px;
}

@font-face {
	font-family: 'iconfont';
	src: url('iconfont.woff2?t=1663740079843') format('woff2'),
		url('iconfont.woff?t=1663740079843') format('woff'),
		url('iconfont.ttf?t=1663740079843') format('truetype');
}

.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0px;
	-moz-osx-font-smoothing: grayscale;
}

@font-face {
	font-family: din;
	src: url(../fonts/DIN-Condensed-Bold.ttf);
}

@font-face {
	font-family: Poppins;
	src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
	font-family: Figtree;
	src: url(../fonts/Figtree-Light.ttf);
}

body,
html {
	color: #333333;
	font-family: sans-serif, "Microsoft YaHei", '微软雅黑', "Arial";
	font-weight: 400;
	-webkit-tap-highlight-color: transparent;
}

.en .html{
	font-size: 14px;
}

.en .menu li{
	flex: auto;
}

.en body,
html.en {
	font-family: Poppins;
}

.en textarea,
.en input {
	font-family: Poppins;
}

b,
strong {
	font-weight: 400;
}

textarea,
input {
	font-family: "Microsoft YaHei", '微软雅黑', "Arial";
	font-size: 1rem;
}

.scroll_icon {
	width: 23px;
	height: 38px;
	border: 1px solid #fff;
	border-radius: 35px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10%;
	z-index: 10;
}

.scroll_icon::after {
	width: 3px;
	height: 8px;
	position: absolute;
	left: 50%;
	top: 20%;
	background: #fff;
	border-radius: 5px;
	content: '';
	transform: translateX(-50%);
	-webkit-animation: scrollAnimate 2s ease infinite;
}

@-webkit-keyframes scrollAnimate {

	0%,
	100% {
		top: 20%;
		opacity: 1;
		height: 8px;
	}

	50% {
		top: 50%;
		opacity: 0;
		height: 3px;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* 导航样式 */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	transition: all 0.3s ease;
}

.nav:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	transform: translateY(-100%);
	background: #b1916a;
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.nav.scrolled:before {
	transform: translateY(0%);
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .05);
}


.nav .container {
	width: 100%;
	padding: 0px 3%;
	max-width: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	position: relative;
}

.logo {
	display: block;
	width: 194px;
}

.logo img {
	display: block;
}

.logo .logo-white {
	display: block;
}


.menu {
	display: flex;
	list-style: none;
	width: 65%;
	justify-content: space-between;
}

.menu li {
	margin-left: 0;
	flex: 1;
	text-align: center;
	position: relative;
}

.menu a {
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	/* 默认状态稍微透明一点 */
	font-size: 1.2rem;
	transition: all 0.3s ease;
	display: block;
	line-height: 80px;
	position: relative;
}

.menu>li>a::after {
	width: 0px;
	height: 3px;
	position: absolute;
	left: 50%;
	margin-left: 0px;
	top: 60px;
	content: '';
	background: #fff;
	border-radius: 50px;
	transition: all 0.4s ease;
}

.menu li.active>a::after {
	width: 16px;
	margin-left: -8px;
}

/* 未滚动时的hover效果 */
.menu>li>a:hover {
	color: #fff;
	/* hover时变成纯白色 */
}



/* 二级菜单样式 */
.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 10;
	padding: 0.5rem 0;
	border-radius: 4px;
	min-width: 130px;
	backdrop-filter: blur(5px);
}

.submenu::after {
	width: 0px;
	height: 0px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 5px solid rgba(0, 0, 0, .3);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -5px;
	content: '';
}

.submenu li:last-child a {
	border: none;
}

.has-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.submenu li {
	margin: 0;
	padding: 0;
	flex: none;
	width: 100%;
}

.submenu a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	transition: all 0.3s ease;
	line-height: 45px;
	padding: 0 15px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.submenu a:hover {
	color: #ffffff;
}

/* 响应式布局中的二级菜单样式 */
@media screen and (max-width: 768px) {
	.submenu {
		position: static;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 0;
		display: none;
	}

	.has-submenu.active .submenu {
		display: block;
	}

	.submenu a {
		padding: 0.5rem 0;
		font-size: 1rem;
		text-align: center;
	}

	.has-submenu>a::after {
		display: none;
	}
}

/* 语言切换按钮样式 */
.lang-switch {
	display: flex;
	align-items: center;

	position: relative;
	cursor: pointer;
}

.lang-switch .globe-icon {
	width: 16px;
	height: 16px;
	margin-right: 5px;
	fill: #fff;
	position: relative;
	z-index: 2;
}


.nav.scrolled .lang-switch:hover .globe-icon {
	fill: #ffffff;
}

.nav.scrolled .lang-switch:hover .current-lang {
	color: #ffffff;
}

.nav.scrolled .submenu {
	background: rgba(0, 0, 0, 0.5);
}

.nav.scrolled .submenu::after {
	border-bottom: 5px solid rgba(0, 0, 0, .5);
}

.lang-switch .current-lang {
	color: #fff;
	transition: color 0.3s;
	font-family: manrope;
	position: relative;
	z-index: 2;
	font-size: 0.9rem;
	line-height: 16px;
}

.lang-dropdown {
	position: absolute;
	top: -10px;
	border-radius: 4px;
	opacity: 1;
	visibility: visible;
	height: 0;
	transition: all 0.3s ease;
	width: 160%;
	left: -30%;
	overflow: hidden;
	padding-top: 0px;
	background: #b1916a;
	transition: all 0.4s ease;
	box-shadow: 0px 30px 30px rgba(0,0,0,0);
}

.lang-switch:hover .lang-dropdown {
	padding-top: 32px;
	height: 90px;
	box-shadow: 0px 30px 30px rgba(0,0,0,.1);
}

.lang-dropdown a {
	display: block;
	padding: 0;
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
	transition: background-color 0.3s;
	white-space: nowrap;
	text-align: center;
	font-size: 0.875rem;
	line-height: 25px;
	padding-left: 22px;
}

.lang-dropdown a:hover {
	color: rgba(255, 255, 255, 1);
}

/* Banner样式 */
.banner {
	height: 100vh;
	margin-top: 0;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;

	will-change: transform;
}

.banner .swiper-slide {
	position: relative;
	overflow: hidden;
	height: 100vh;
	will-change: transform;
}

/* 自定义分页器样式 */
.banner .swiper-pagination {
	bottom: 5rem !important;
	top: auto !important;
	left: 50% !important;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;
	width: auto !important;
	position: absolute;
	z-index: 10;
	justify-content: center;
	align-items: center;
}

.banner .swiper-pagination-bullet {
	width: 2rem !important;
	height: 2px !important;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.3);
	opacity: 1;
	margin: 0 !important;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.banner .swiper-pagination-bullet-active {
	background: #fff;
	width: 3rem !important;
}

.banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.8s ease;
	will-change: transform;
}

.swiper-slide-active .banner-bg {
	opacity: 1;
}

/* 倒计时圆环样式 */
.progress-ring {
	position: absolute;
	right: 7.5%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.progress-ring-circle {
	stroke-dasharray: 144.51;
	stroke-dashoffset: 144.51;
	transform: rotate(-90deg);
	transform-origin: center;
}

.swiper-slide.active .progress-ring-circle {
	animation: progress 6s linear 1 forwards;
}

@-webkit-keyframes progress {
	0% {
		stroke-dashoffset: 144.51;
	}

	95%,
	100% {
		stroke-dashoffset: 0;

	}
}

/* 确保banner内容在圆环上层 */
.banner-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 2;
	width: 100%;
	padding: 0 2rem;
	will-change: transform;
}



.banner-content h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.banner-content p {
	font-size: 1.5rem;
}

/* 文字动画效果 */
.animate-title {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s ease;
	transition-delay: 0.2s;
}

.animate-text {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s ease;
	transition-delay: 0.4s;
}

.swiper-slide-active .animate-title,
.swiper-slide-active .animate-text {
	opacity: 1;
	transform: translateY(0);
}


.products-text .pt-detail {
	margin-top: 3vw;
}

.duori_title h2 {
	font-size: 2.5vw;
	color: #333;
	font-weight: 400;
	position: relative;
	padding-left: 4vw;
	transition: all 0.5s;
}


.duori_title.is-inview h2::after {
	width: 3vw;
}

.duori_title h2 .char,
.slogans .cn .char {
	transform: translateX(35px);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease;
}

.duori_title h2 .char:nth-child(2),
.slogans .cn .char:nth-child(2) {
	transition: all 1s ease .05s;
}

.duori_title h2 .char:nth-child(3),
.slogans .cn .char:nth-child(3) {
	transition: all 1s ease .1s;
}

.duori_title h2 .char:nth-child(4),
.slogans .cn .char:nth-child(4) {
	transition: all 1s ease .15s;
}

.duori_title h2 .char:nth-child(5),
.slogans .cn .char:nth-child(5) {
	transition: all 1s ease .2s;
}

.duori_title h2 .char:nth-child(6),
.slogans .cn .char:nth-child(6) {
	transition: all 1s ease .25s;
}

.duori_title.is-inview h2 .char,
.slogans.is-inview .cn .char {
	transform: translateX(0px);
	opacity: 1;
	filter: blur(0px);
}


.footer-partners {
	width: 100%;
	display: flex;
}

/* 页脚样式 */
.footer {
	background: #b1916a;
	color: #fff;
	padding: 4rem 0 1rem;
	position: relative;
	z-index: 2;

}

.footer-content {
	width: 50%;
	margin-left: 7.5%;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-left {
	width: 100%;
	margin-top: 3vw;
	display: flex;
	justify-content: space-between;
}

.footer-logo {
	margin-bottom: 3rem;
}

.footer-logo img {
	height: 3.5rem;
	width: auto;
}

.footer-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);

}

.footer-info a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.footer-info p:first-child {
	margin-bottom: 0rem;
}

.footer-nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.footer-nav-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-nav-group h3 {
	font-size: 1.1rem;
	font-weight: 400;
	transform: translateY(25px);
	opacity: 0;
	transition: all 0.6s ease;
}

.is-inview .footer-nav-group h3 {
	transform: translateY(0px);
	opacity: 1;
}

.footer-nav-group h3 a {
	color: #fff;
}

.footer-nav-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	list-style: none;
}

.footer-nav-list li {
	transform: translateY(25px);
	opacity: 0;
	transition: all 1s ease;
}

.footer-nav-list li:nth-child(2) {
	transition: all 1s ease 0.05s;
}

.footer-nav-list li:nth-child(3) {
	transition: all 1s ease 0.1s;
}

.footer-nav-list li:nth-child(4) {
	transition: all 1s ease 0.15s;
}

.footer-nav-list li:nth-child(5) {
	transition: all 1s ease 0.2s;
}

.footer-nav-list li:nth-child(6) {
	transition: all 1s ease 0.25s;
}

.is-inview .footer-nav-list li {
	transform: translateY(0px);
	opacity: 1;
}

.footer-nav-list a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	position: relative;
}

.footer-nav-list a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: #fff;
	transition: width 0.3s ease;
}

.footer-nav-list a:hover::after {
	width: 100%;
}


.footer-partners-title {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.footer-partners-list {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: nowrap;
}

.footer-partners-list img {
	height: 1.5rem;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	width: auto;
}

.footer-partners-list img:hover {
	opacity: 1;
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
	opacity: 0;
	transition: all 0.5s;
}

.footer_img {
	width: 40%;
	height: auto;
	position: absolute;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.footer-bottom.is-inview {
	opacity: 1;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.footer-bottom a:hover {
	color: #fff;
}

.follow {
	width: auto;
	display: flex;
	font-size: 0.875rem;
	align-items: center;
}

.follow .txt {
	margin-right: 10px;
}

.socials {
	width: auto;
	display: flex;
	align-items: center;
	position: relative;
}

.socials .item {
	width: 40px;
	position: relative;
	cursor: pointer;
	background: #ffffff;
	border-radius: 50%;
	height: 40px;
	margin-left: 10px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .2);
	transition: all 0.45s;
}

.socials .item:hover{
	transform: scale(1.1);
}

.socials .item .icon {
	width: 100%;
	height: auto;
	padding: 8px;
}

.socials .item .img {
	width: 110px;
	height: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -145px;
	display: none;
}

.socials .item .img img{
	border-radius: 5px;
}

.socials .item:hover .img {
	display: block;
}

.socials .item .img::after {
	width: 0px;
	height: 0px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -5px;
	bottom: -4px;
}

/* 菜单按钮样式 */
.menu-toggle {
	display: none;
	/* PC端默认隐藏 */
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	position: relative;
	width: 2rem;
	height: 2rem;
}

.menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	margin: 4px 0;
	transition: all 0.3s ease;
}

.nav.scrolled .menu-toggle span {
	background-color: #333;
}


.banner-swiper {
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 0px;
}

.banner-swiper .swiper-slide {
	overflow: hidden;
	position: relative;
	height: 100vh;
}

.banner-swiper .swiper-slide .slide-bg {
	width: 100%;
	height: 100%;

	position: absolute;
	left: 0;
	top: 0;
}

.banner-swiper .swiper-slide .slide-bg img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(1.1);
}



.banner-swiper .swiper-slide.active .slide-bg img {
	-webkit-animation: imgScale 7s linear forwards;
}

@-webkit-keyframes imgScale {
	0% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.banner-swiper.product-swiper .swiper-slide {
	background-image: url(../images/product_bg.jpg);
}

.banner-swiper .swiper-pagination {
	width: 85%;
	text-align: right;
	right: 7.5%;
	bottom: 10%;
	left: auto;
}

.banner-swiper .swiper-pagination-bullet {
	width: 35px;
	height: 35px;
	background: url(../images/dot_icon.png) center center no-repeat;
	background-size: cover;
	opacity: 1;
	margin: 0px 5px !important;
	position: relative;
	transform: scale(0.6);
	opacity: 0.6;
	transition: all 0.35s;
}


.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.banner-swiper .swiper-pagination-bullet:hover {
	transform: scale(1);
	opacity: 1;
}


.parallax {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.back_img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: center center no-repeat;
	background-size: cover;
}

.banner-swiper .slogan {
	width: 40%;
	height: auto;
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.en .banner-swiper .slogan{
	text-align: center;
	color: #fff;
	font-size: 4vw;
	width: 80%;
}


.banner-swiper.product-swiper .slogan {
	top: 35%;
	z-index: 2;
}

.banner-swiper .slogan .des {
	font-size: 4.5vw;
	margin-bottom: 5vw;
	transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) .4s;
	font-weight: 400;
	overflow: hidden;
}

.banner-swiper .slogan .info {
	line-height: 1.7;
	width: 90%;
	margin-bottom: 3.5vw;
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
	opacity: 0;
	transform: translateY(65px);
	display: flex;
	justify-content: space-between;
}


.banner-swiper .swiper-slide.active .slogan .title p,
.banner-swiper .swiper-slide.active .slogan .des p {
	transform: translateY(0px);
}

.banner-swiper .swiper-slide.active .slogan .info {
	transform: translateY(0px);
	opacity: 1;
}

.banner-swiper .swiper-slide.active .more_btn {
	width: 180px;
	opacity: 1;
}

.banner-swiper .swiper-slide.active .more_btn .box p {
	opacity: 1;
	left: 40px;
}

.banner-swiper .swiper-slide.active .more_btn .box .icon {
	opacity: 1;
}

.banner-swiper .slogan .title {
	font-size: 3vw;
	transition: all 1s cubic-bezier(.4, 0, .2, 1);
	font-weight: 100;
	overflow: hidden;
}

.banner-swiper .slogan .title p,
.banner-swiper .slogan .des p {
	transform: translateY(100%);
	transition: all 1s cubic-bezier(.4, 0, .2, 1);
}

.banner-swiper .slogan .des p {
	transition: all 1s cubic-bezier(.4, 0, .2, 1) .3s;
}

.banner-swiper .slogan .info .item {
	width: 47%;
	display: flex;
	align-items: center;
}

.banner-swiper .slogan .des.des2 {
	margin-bottom: 2vw;
}

.banner-swiper .slogan .des.des1 {
	margin-bottom: 0;
}

.banner-swiper .slogan .info .item .i_logo {
	width: 140px;
}

.banner-swiper .slogan .info .item:nth-child(2) .i_logo {
	width: 75px;
}

.banner-swiper .slogan .info .item .txt {
	line-height: 1.5;
	width: auto;
	margin-left: 15px;
	font-weight: 300;
}

.sub_banner {
	width: 100%;
	height: 35vw;
	position: relative;
	background: #000;
	margin-top: 0px;
	overflow: hidden;
	margin-bottom: -1px;
}

.sub_img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: center center no-repeat;
	background-size: cover;
	opacity: 0.8;
	-webkit-transform: scale(1.1);
	-webkit-animation: subAnimate 4s ease 1 forwards;
}

@-webkit-keyframes subAnimate {
	0% {
		-webkit-transform: scale(1.1);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

.pp_list .item .box .xd{
	display:none;
}

.slogans {
	width: 25%;
	height: auto;
	position: absolute;
	left: 50%;
	color: #fff;
	top: 50%;
	transform: translate(-50%, -50%);
}

.slogans .cn {
	font-size: 4vw;
	position: relative;
	font-weight: 100;
}

.slogans .en {
	width: 100%;
	font-size: 1.55rem;
	font-family: monts;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

.en .slogans .img{
	width: 100%;
	height: auto;
	position: relative;
}

.en .slogans .img p{
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff;
	font-size: 1.8vw;
	text-align: center;
}

.maps{
	width: 100%;
	height: auto;
	position: relative;
}

.line_warp,.dot_warp,.line_warp .line{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.line_warp{
	
}

.line_warp .line{
	transition: all 3s ease;
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}

.line_warp .line:nth-child(2){
	transition: all 2s ease 0.2s;
}

.line_warp .line:nth-child(3){
	transition: all 1.5s ease 0.4s;
}

.line_warp .line:nth-child(4){
	transition: all 1.5s ease 0.6s;
}

.line_warp .line:nth-child(5){
	transition: all 1s ease 0.8s;
}

.line_warp.is-inview .line{
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.line_warp.is-inview{
	transform: scale(1);
}

.dot_warp .all_dot{
	width: 8vw;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	text-align: center;
	color: #e3571c;
	font-size: 1.2rem;
	font-weight: bold;
}

.en .dot_warp .all_dot{
	font-size: 1rem;
}

.en .dot_warp .all_dot .txt{
	width: 150%;
	text-align: center;
	position: relative;
	left: -25%;
}

.dot_warp .all_dot:nth-child(1){
	left: 67.5%;
	top: 54%;
}

.dot_warp .all_dot:nth-child(2){
	left: 71.2%;
	top: 45%;
}

.dot_warp .all_dot:nth-child(3){
	left: 66.7%;
	top: 46%;
}

.dot_warp .all_dot:nth-child(4){
	left: 71.7%;
	top: 62%;
}

.dot_warp .all_dot:nth-child(5){
	left: 78.7%;
	top: 79%;
}

.dot_warp .all_dot:nth-child(6){
	left: 74.3%;
	top: 42%;
	display: none;
}

.dot_warp .all_dot:nth-child(7){
	left: 78%;
	top: 37%;
}

.dot_warp .all_dot:nth-child(8){
	left: 77.3%;
	top: 32%;
}

.dot_warp .all_dot:nth-child(9){
	left: 41.3%;
	top: 36%;
}

.dot_warp .all_dot:nth-child(10){
	left: 38%;
	top: 40%;
}

.dot_warp .all_dot:nth-child(11){
	left: 16%;
	top: 32%;
}

.dot_warp .all_dot:nth-child(12){
	left: 11%;
	top: 20.7%;
}

.dot_warp .all_dot:nth-child(13){
	left: 13%;
	top: 49.2%;
}


.ip .dot_warp .all_dot{
	font-size: 1rem;
}

.ip .dot_warp .all_dot:nth-child(1){
	left: 69.5%;
	top: 54%;
}

.ip .dot_warp .all_dot:nth-child(2){
	left: 73.2%;
	top: 45%;
}

.ip .dot_warp .all_dot:nth-child(3){
	left: 68.7%;
	top: 46%;
}

.ip .dot_warp .all_dot:nth-child(4){
	left: 73.7%;
	top: 62%;
}

.ip .dot_warp .all_dot:nth-child(5){
	left: 80.7%;
	top: 79%;
}

.ip .dot_warp .all_dot:nth-child(6){
	left: 76.3%;
	top: 42%;
}

.ip .dot_warp .all_dot:nth-child(7){
	left: 80%;
	top: 37%;
}

.ip .dot_warp .all_dot:nth-child(8){
	left: 79.3%;
	top: 32%;
}

.ip .dot_warp .all_dot:nth-child(9){
	left: 43.3%;
	top: 36%;
}

.ip .dot_warp .all_dot:nth-child(10){
	left: 40%;
	top: 40%;
}

.ip .dot_warp .all_dot:nth-child(11){
	left: 18%;
	top: 32%;
}

.ip .dot_warp .all_dot:nth-child(12){
	left: 13%;
	top: 20.7%;
}

.ip .dot_warp .all_dot:nth-child(13){
	left: 15%;
	top: 49.2%;
}

.dot_warp .all_dot .dot{
	width: 8px;
	height: 8px;
	margin-left: -4px;
	position: absolute;
	left: 50%;
	background: #eb561c;
	/* background-image: radial-gradient(); */
	/* background: radial-gradient(circle at center, #eb561c 0%, rgba(235, 86, 28, 0) 70%); */
	content: '';
	border-radius: 50%;
	/* transform: scale(1, 0.5); */
}

.mobile_banner{
	display: none;
}

.ip .dot_warp .all_dot .dot{
	width: 8px;
	height: 8px;
	margin-left: -4px;
	top: 0px;
}
.dot_warp .all_dot .txt{
	margin-top: 8px;
	font-size: 0.75rem;
}
.ip .dot_warp .all_dot .txt{
	margin-top: 12px;
	font-size: 0.875rem;
}

.dot_warp{
	z-index: 2;
}

.dot_warp .all_dot .dot span{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #eb561c;
	border-radius: 50%;
	opacity: 0;
	animation: scaleAnimate 2s linear infinite;
	/* animation: AboutLabel 2.4s 1.8s linear infinite normal both; */
}

.dot_warp .all_dot .dot span:nth-child(2){
	animation: scaleAnimate 2.4s linear 1.2s infinite;
}

.dot_warp .all_dot .dot span:nth-child(3){
	animation: scaleAnimate 2.4s linear 1.2s infinite;
}

.dot_warp .all_dot .dot span:nth-child(4){
	animation: scaleAnimate 2.4s linear 1.8s infinite;
}

@keyframes scaleAnimate{
	0%{
		opacity: 0.4;
		transform: translate(-50%, -50%) scale(1);
	}
	100%{
		opacity: 0;
		transform: translate(-50%, -50%) scale(6);
	}
}


.intro .right {
	width: 60%;
	margin-left: 40%;
	position: relative;
}

.in_box {
	position: relative;
	width: 90%;
	margin-left: 10%;
}

.en .in_box .singePage,.ppyj_box .singePage{
	text-align: justify;
}

.detail_top .des p:first-child{
	color: #e3571c;
}
.detail_top .des{
	font-size: 0.875rem;
}

.sjj_title {
	width: 210px;
	height: auto;
	position: relative;
	margin-bottom: 3vw;
}
.en .sjj_title{
	width: 100%;
}
.en .sjj_title p{
	font-size: 2.5rem;
	color: #e3571c;
	font-weight: bold;
}

.en .title_top .sjj_title{
	width: auto;
}

.sjj_title.center {
	margin: 0px auto 3vw;
}

.en .sjj_title.center{
	text-align: center;
}

.yj_box {
	background: url(../images/yuanjing_bg.jpg) center center no-repeat;
	background-size: cover;
	padding: 3vw 5vw;
	border-radius: 200px;
	color: #fff;
	line-height: 2;
	position: relative;
	overflow: hidden;
}

.en .yj_box{
	padding: 3vw 10vw;
}

.yj_box:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, .1);
	filter: blur(0px);
    backdrop-filter: blur(5px);
}

.yj_box .p_box {
	position: relative;
	text-align: center;
	line-height: 1.7;
}

.yj_box .p_box p{
	margin-bottom: 5px;
}


.pp_list {
	width: 100%;
	margin-top: 5vw;
	display: flex;
	justify-content: center;
}

.pp_list .item {
	width: 220px;
	height: 238px;
	background: url(../images/zhou_bg.png) center center no-repeat;
	background-size: cover;
	margin: 0px 2vw;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.pp_list .item .box {
	display: flex;
	align-items: center;
}

.pp_list .item .box .dw{
	display: none;
}

.pp_list .item .box .n {
	font-family: Figtree;
	font-size: 80px;
	line-height: 1.2;
}

.pp_list .item .box .r {
	width: auto;
	margin-left: 5px;
	line-height: 1.2;
}

.en .pp_list .item .box .r .t{
	font-size: 0.875rem;
}

.pp_list .item .box .r .y {
	width: 100%;
	margin-bottom: 10px;
}

.pp_list .item .box .r .t span {
	display: block;
	line-height: 1.2;
}

.ln {
	background: url(../images/shuai_bg.jpg) center center no-repeat;
	background-size: cover;
}

.sjj_more {
	display: block;
	width: 140px;
	height: auto;
	position: relative;
	margin-top: 3vw;
	margin-bottom: 5vw;
}

.en .sjj_more{
	height: 38px;
	background: url(../images/more_icon2.png) no-repeat;
	color: #eb561c;
}

.en .sjj_more p{
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sjj_more img{
	transition: all 0.5s;
}

.sjj_more:hover img{
	opacity: 0.6;
}

.in_awards {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.in_awards.ip{
	margin-top: 3vw;
}

.in_awards .item {
	width: 30%;
}

.intro {
	background: url(../images/intro_bg.jpg) center center no-repeat;
	background-size: cover;
}

.ppyj{
	padding: 0;
}

.ppyj_box {
	width: 150vw;
	height: 100vh;
	position: relative;
	display: flex;
	padding: 0 7.5vw;
}

.detail_box{
	border-radius: 5px;
}

.ppyj_box .left {
	width: 42.5vw;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

.ppyj_box .right {
	display: flex;
	width: 85vw;
	position: relative;
	align-items: center;
}

.pot_box {
	width: 50%;
	position: relative;
	margin: 0px;
	padding: 5vw 7vw;
}

.pot_box:before {
	width: 50vw;
	height: 50vw;
	position: absolute;
	left: 50%;
	top: 50%;
	background: url(../images/shuai.png) center center no-repeat;
	background-size: cover;
	content: '';
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.potSwiper {
	width: 100%;
}

.potSwiper .swiper-pagination{
	display: none;
}

.potSwiper .swiper-slide{
	border-radius: 1.5vw;
	overflow: hidden;
}

.potConent {
	width: 50%;
	padding-left: 10%;
}

.ppyj_box .singePage {
	margin-bottom: 3vw;
	width: 85%;
}

.potConent .history-btn{
	justify-content: flex-start;
}

.num {
	width: 85%;
	display: flex;
	justify-content: space-between;
}

.num .item {
	width: 30%;
	height: auto;
	position: relative;
}

.en .num .item .top{
	line-height: 1.3;
}



.num .item .btm {
	width: 100%;
	display: flex;
	color: #c7a275;
	align-items: flex-end;
}

.num .item .btm .n {
	font-family: Figtree;
	font-size: 4.5vw;
	line-height: 0.8;
}

.num .item .btm .p {
	width: auto;
	display: flex;
	position: relative;
}

.num .item:nth-child(2) .btm .p p{
	margin: 0px -5px;
}

.num .item .btm .p p {
	width: 35px;
	height: 35px;
	background: url(../images/txt_bg.png) no-repeat;
	line-height: 35px;
	text-align: center;
	color: #fff;
}

.potInfo {
	width: 100%;
	height: auto;
	position: relative;
}

.potInfo .item {
	width: 100%;
	height: auto;
	position: relative;
	display: none;
}

.potInfo .item.active {
	display: block;
}

.potInfo .item .name {
	width: 100%;
	font-size: 3rem;
	color: #eb561c;
	font-weight: bold;
	margin-bottom: 1vw;
}

.en .potInfo .item .name{
	font-size: 2rem;
}

.potInfo .item .des {
	line-height: 2;
	font-size: 1.1rem;
}

.singePage {
	font-size: 1.1rem;
}

.potBtn {
	width: 100%;
	margin-top: 3vw;
	display: flex;
}

.potBtn .prev,
.potBtn .next {
	width: 100px;
	height: 50px;
	border-radius: 50px;
	border: 1px solid #eb561c;
	line-height: 48px;
	text-align: center;
}

.mscp .w1400{
	margin-top: 5vw;
}

.fruits {
	width: 150vw;
	display: flex;
	gap: 2vw;
	position: relative;
	/* display: grid;
	gap: 1vw;
	grid-template-columns: repeat(5, 1fr); */
}

.fruits .item.lt{
	cursor: pointer;
	background: url(../images/item_bg.jpg) no-repeat;
	background-size: cover;
}

.fruits .item.lt .box{
	width: 60%;
	height: auto;
	position: absolute;
	left: 20%;
	top: 50%;
	transform: translateY(-50%);
}

.fruits .item.lt .box .sjj_more{
	margin: 2vw auto 0;
}


.marquees{
	width: 100%;
	height: 70px;
	position: relative;
	margin-top: 2vw;
}

.marquees .img{
	position: absolute;
	width: 3840px;
	animation: marquee 30s linear infinite;
}

@-webkit-keyframes marquee{
	0%{
		transform: translateX(0%);
	}
	100%{
		transform: translateX(-50%);
	}
}

.mscp .sjj_title{
	margin-bottom: 2vw;
}

.mscp{
	height: 100vh;
	background: #f9f9f9;
	padding: 0px;
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}

.fruits .item{
	width: 50vw;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}


.space_box {
	padding: 0;
	height: 100vh;
}

.space_bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
}

.space_bg .item {
	opacity: 0.9;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	transition: all 2s;
	opacity: 0;
}

.space_bg .item.active{
	opacity: 0.9;
}

.space_bg .item img {
	height: 100%;
}

.space_info {
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	justify-content: space-between;
}

.space_info .item {
	width: 25%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.space_info .item .des {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: -3vw;
	padding: 3vw;
	text-align: center;
	line-height: 2;
	font-size: 1.1rem;
	transition: all 0.5s;
	opacity: 0;
	display: none;
}

.space_info .item:hover .des{
	opacity: 1;
	bottom: 0;
}

.space_info .item::after {
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	background: rgba(255, 255, 255, .1);
}

.space_info .item .box {
	width: 100%;
	padding: 0px 20%;
	text-align: center;
	position: relative;
}

.space_info .item .box .n {
	font-size: 3vw;
	font-family: Figtree;
	line-height: 1;
	position: relative;
	padding-bottom: 1.5vw;
	margin-bottom: 2vw;
	
}

.space_info .item .box .n::after{
	width: 10%;
	height: 3px;
	position: absolute;
	left: 45%;
	bottom: 0;
	content: '';
	background: #fff;
	opacity: 0.3;
	border-radius: 5px;
}

.space_info .item:before{
	width: 100%;
	height: 0%;
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: linear-gradient(0deg, rgba(235,86,28,0.8), rgba(235,86,28,0));
	content: '';
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.space_info .item:hover::before{
	height: 100%;
}

.space_info .item .box .name {
	font-size: 32px;
	font-weight: 400;
}

.en .space_info .item .box .name{
	font-size: 1.5vw;
}

.en .space_info .item .box{
	padding: 0px 4%;
}

.store {
	background: #f3f1e9;
}

.store_top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.store_map {
	width: 70%;
}

.store_num {
	width: 25%;
}

.store_num .sjj_title {
	width: 224px;
}

.en .store_num .sjj_title{
	width: 100%;
}

.en .store_num .sjj_title p{
	font-size: 2rem;
}

.storeNumber {
	width: 100%;
}

.storeNumber .item {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 2vw;
}

.storeNumber .item .top {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.storeNumber .item .btm {
	width: 100%;
	display: flex;
	color: #c7a275;
	align-items: flex-end;
}

.storeNumber .item .btm .n {
	font-family: Figtree;
	font-size: 4.5vw;
	line-height: 1.2;
}

.storeNumber .item .btm .p {
	width: auto;
	display: flex;
	position: relative;
	bottom: 18px;
}

.storeNumber .item .btm .p p {
	width: 35px;
	height: 35px;
	background: url(../images/txt_bg.png) no-repeat;
	line-height: 35px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}

.store_list {
	width: 100%;
	height: auto;
	display: grid;
	gap: 2vw;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 0vw;
	position: relative;
}

.store_list .item {
	width: 100%;
	position: relative;
	display: flex;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.store_list .item .thum {
	width: 100%;
	position: relative;
	border-radius: 5px;
	margin-bottom: 15px;
}

.store_list .item .thum .inner {
	padding-top: 60%;
	height: 0%;
}

.store_list .item .info {
	width: 100%;
}

.store_list .item .info .tp {
	width: 100%;
	height: auto;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.store_list .item .info .tp .n {
	font-size: 1rem;
	color: #666666;
	margin-bottom: 5px;
}

.store_list .item .info .title {
	font-size: 1.5rem;
	color: #eb561c;
}

.store_list .item .info .btm {
	width: 100%;
	height: auto;
	position: relative;
}

.store_list .item .info .btm .it {
	width: 100%;
	display: flex;
	position: relative;
	margin-bottom: 10px;
}

.store_list .item .info .btm .it:nth-child(2){
	display: none;
}


.store_list .item .info .btm .it .icon {
	width: 20px;
	height: 20px;
	position: relative;
}

.store_list .item .info .btm .it .txt {
	width: calc(100% - 25px);
	margin-left: 5px;
	line-height: 20px;
	font-size: 0.875rem;
}

.n_box {
	background: url(../images/news_bg.jpg) center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.title_top {
	width: 100%;
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
}

.title_top {
	margin-bottom: 2vw;
}

.title_top .sjj_title {
	margin-bottom: 0;
}

.title_top .sjj_more {
	margin: 0px;
}

.news_warp {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news_warp .first {
	width: 49%;
	height: auto;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.news_warp .first:hover .inner img{
	transform: scale(1.05);
}

.news_warp .first .inner {
	padding-top: 65%;
}

.news_warp .first .name {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 2vw;
	color: #ffffff;
	font-size: 1.25rem;
}
.news_warp .first .thum::after{
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background-image: linear-gradient(0deg, rgba(0,0,0,0.7), rgba(0,0,0,0.0));
}

.news_warp .list {
	width: 49%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-content: space-between;
}

.news_warp .list a {
	width: 100%;
	height: 47%;
	position: relative;
	
	border: 1px solid rgba(0, 0, 0, .05);
	border-radius: 5px;
	padding: 1.25vw;
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
}

.news_warp .list a:before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 5px;
	background: #fff;
	content: '';
	transition: all 0.45s;
	
}

.news_warp .list a:hover:before{
	background: #b1916a;
}

.news_warp .list a:hover .name,.news_warp .list a:hover .des,.news_warp .list a:hover .date{
	color: #fff;
}

.news_warp .list a:hover .name::after{
	width: 100%;
	background: #ffffff;
}

.news_warp .list a::after{
	width: 20vw;
	height: 20vw;
	position: absolute;
	right: -5vw;
	top: 0vw;
	content: '';
	background: url(../images/shuai2.png) no-repeat;
	background-size: cover;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
}

.news_warp .list a:hover::after{
	opacity: 1;
}

.news_warp .list a .name {
	font-size: 1.3rem;
	position: relative;
	padding-bottom: 15px;
}

.news_warp .list a .name::after {
	width: 50px;
	height: 2px;
	position: absolute;
	transition: all 0.5s;
	left: 0;
	bottom: 0;
	content: '';
	background: #eb561c;
}

.news_warp .list a .des {
	line-height: 1.7;
	-webkit-line-clamp: 3;
	position: relative;
}

.news_warp .list a .date {
	font-size: 0.875rem;
	opacity: 0.7;
}

.ppyj_bg {
	background: url(../images/news_bg.jpg) center center no-repeat;
	background-size: cover;
}

.ln_list {
	width: 100%;
	display: grid;
	gap: 3vw;
	grid-template-columns: repeat(4, 1fr);
}

.ln_list .item {
	width: 100%;
	height: auto;
	position: relative;
	background: #ffffff;
	border-radius: 200px;
	border: 0.5vw solid #ffffff;
}

.ln_list .item .box {
	width: 100%;
	height: 35vw;
	position: relative;
	background: #000000;
	border-radius: 200px;
	overflow: hidden;
}

.ln_list .item .box .img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.ln_list .item .box .img img {
	width: 100%;
	height: 100%;
}

.ln_list .item .box .name {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 5vw;
}

.ln_list .item .box .name .icon {
	width: 50px;
	margin: 0px auto;
	margin-bottom: 1vw;
}

.ln_list .item .box .name .title {
	width: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: #ffffff;
	line-height: 1.5;
}

.ln_list .item .box .name .title span {
	display: block;
}

.in_box.ip {
	width: 100%;
	margin-left: 0;
}

.spaq {
	height: 85vh;
	padding: 0;
	background: url(../images/spaq_bg.jpg) center center no-repeat;
	background-size: cover;
}

.spaq .left {
	width: 45%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 5vw;
	background: #ffffff;
	border-radius: 0vw 1vw 0px 0px;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, .05);
}

.product_swiper .swiper-slide {
	transform: scale(0.6);
	transition: all 0.7s ease;
}

.product_swiper .swiper-slide.swiper-slide-active {
	transform: scale(1);
}

.product_swiper {
	overflow-y: initial;
}

.product_swiper .mark {
	width: 6vw;
	height: 6vw;
	position: absolute;
	right: -3vw;
	top: -3vw;
	background: url(../images/marks.png) center center no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #eb561c;
	opacity: 0;
	transition: all 0.5s;
	transform: scale(0);
}

.en .product_swiper .mark{
	display: none;
}

.product_swiper .swiper-slide-active .mark{
	opacity: 1;
	transform: scale(1);
}

.product_swiper .mark p {
	font-size: 1vw;
}

.history-btn {
	width: 100%;
	margin-top: 3vw;
	justify-content: center;
	display: flex;
	gap: 2vw;
}

.space_bg .item .n,.space_bg .item .name{
	display: none;
}


.history-btn .icon {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 16px;
	color: #eb561c;
	display: flex;
	overflow: hidden;
}

.history-btn .icon .iconfont:nth-child(1) {
	transition: all 0.5s ease;
}

.history-btn .next .icon .iconfont:nth-child(1) {
	margin-left: -16px;
}

.history-btn .next:hover .icon .iconfont:nth-child(1) {
	margin-left: 0px;
}

.history-btn .prev .icon .iconfont:nth-child(1) {
	margin-left: -16px;
}

.history-btn .prev:hover .icon .iconfont:nth-child(1) {
	margin-left: 0px;
}

.history-btn .prev .icon {
	transform: translate(-50%, -50%) rotate(-180deg);
}

.history-btn .prev:hover .icon,
.history-btn .next:hover .icon {
	color: #fff;
}

.history-btn .prev,
.history-btn .next {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	position: relative;
	cursor: pointer;
	border-radius: 50%;
}

.history-btn .prev.swiper-button-disabled, .history-btn .next.swiper-button-disabled{
	opacity: 0.3;
}

.history-btn .prev::before,
.history-btn .next::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #eb561c;
	border-radius: 50%;
	transform: scale(0.5);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0;
}

.history-btn .prev:hover:before,
.history-btn .next:hover:before {
	transform: scale(1);
	border-radius: 50%;
	opacity: 1;
}

.history-btn .prev::after,
.history-btn .next::after {
	width: 100%;
	height: 100%;
	border: 1px solid #eb561c;
	box-sizing: border-box;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	transition: all 0.5s;
}

.history-btn .info {
	width: 50%;

}

.history-btn .info .item {
	display: none;
}

.history-btn .info .item.active {
	display: block;
}

.history-btn .info .item .name {
	font-size: 1.75rem;
	text-align: center;
	margin-bottom: 15px;
	line-height: 60px;
	color: #eb561c;
}

.history-btn .info .item .des {
	font-size: 1.2rem;
	line-height: 1.7;
	text-align: center;
}

.en .history-btn .info .item .des{
	font-size: 1.1rem;
}

.food_swiper {
	padding-bottom: 50px;
	margin-bottom: 5vw;
}

.food_swiper .swiper-pagination-bullet-active {
	background: #eb561c;
}

.food_nav {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 1.5vw;
}

.food_nav .item {
	width: 180px;
	height: 50px;
	position: relative;
	text-align: center;
	line-height: 50px;
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0.5;
}

.en .food_nav .item{
	width: auto;
	padding: 0px 20px;
}

.food_nav .item:before {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px solid #333333;
	border-radius: 50px;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
}

.food_nav .item.active:before {
	border-color: #eb561c;
}

.food_nav .item.active {
	color: #eb561c;
	opacity: 1;
}

.food_swiper .swiper-slide .inner {
	padding-top: 90%;
}

.food_swiper .swiper-slide .thum {
	border-radius: 10px;
	overflow: hidden;
}

.food_swiper .swiper-slide .name {
	margin-top: 15px;
	font-size: 1.1rem;
	text-align: center;
}

.food_swiper .swiper-pagination-bullet {
	width: 5px;
	height: 5px;
}

.foods {
	width: 100%;
	margin-top: 3vw;
	grid-template-columns: repeat(4, 1fr);
	gap: 2vw;
	display: none;
}

.jj_box .foods:nth-child(3) .inner{
	padding-top: 150%;
}

.foods.active{
	display: grid;
}

.foods .item .name {
	text-align: center;
	margin-top: 10px;
}

.space .item {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 3vw;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}

.space .item:nth-child(even) {
	flex-direction: row-reverse;
}

.space .item:nth-child(even) .info {
	padding-left: 0;
	padding-right: 5%;
}

.space .item:before {
	width: 30vw;
	height: 20.01vw;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: '';
	background: url(../images/10.png) center center no-repeat;
	background-size: cover;
}


.space .item .inner {
	padding-top: 60%;
}

.space .item .thum {
	width: 50%;
	border-radius: 10px;
}

.space .item .info {
	width: 50%;
	padding-left: 5%;
}

.space .item .info .name {
	width: 100%;
	font-size: 1.75rem;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.space .item .info .name::after {
	width: 25px;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: #eb561c;
}

.space .item .info .des {
	line-height: 1.7;
}

.store.ip {
	background: #ffffff;
}

.ip .store_map {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5vw;
}

.store.ip .sjj_title {
	width: 310px;
	margin-bottom: 0;
}

.en .store.ip .sjj_title{
	width: 50%;
}

.store.ip .storeNumber {
	width: 35%;
	display: flex;
	justify-content: space-between;
}

.store.ip .storeNumber .item {
	width: auto;
	margin-bottom: 0;
}

.news {
	width: 100%;
	margin-top: 3vw;
}

.news .item {
	width: 100%;
	position: relative;
	display: block;
	margin-bottom: 3vw;
}

.news .item .box {
	display: flex;
	width: 100%;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .05);
	box-shadow: 15px 15px 50px rgba(0, 0, 0, .05);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	transition: all 0.45s;
}

.news .item .thum {
	width: 35%;
}

.news .item .thum .inner {
	padding-top: 65%;
}

.news .item .info {
	width: 65%;
	padding: 50px 35px;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

.news .item .info .name {
	font-size: 1.3rem;
	width: 100%;
	position: relative;
	padding-bottom: 15px;
}

.news .item .info .name::after {
	width: 0px;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	transition: all 0.5s;
	background: #ffffff;
}

.news .item:hover .info .name::after{
	width: 10%;
}

.news .item .info .des {
	color: #666666;
	width: 100%;
}

.news .item .info .date {
	color: #999999;
}

.news .item .box::after {
	width: 40vw;
	height: 40vw;
	position: absolute;
	right: -10vw;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	background: url(../images/shuai2.png) no-repeat;
	background-size: cover;
	opacity: 0;
	transition: all 0.5s;
}

.news .item:hover .box {
	background: #b1916a;
	color: #fff;
}

.news .item:hover .info .des,
.news .item:hover .info .date {
	color: #fff;
	opacity: 0.7;
}

.news .item:hover .box::after {
	opacity: 1;
}

.contact_box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 5vw;
}

.contact_box .left {
	width: 40%;
	box-shadow: 15px 15px 50px rgba(0, 0, 0, .05);
	border: 1px solid rgba(0, 0, 0, .05);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.contact_box .left::after{
	width: 30vw;
	height: 30vw;
	position: absolute;
	right: -10vw;
	bottom: -10vw;
	content:' ';
	background: url(../images/shuai.png) no-repeat;
	background-size: cover;
	pointer-events: none;
}

.contact_box .left .item {
	width: 100%;
	padding: 2vw;
}

.contact_box .left .item .top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
	padding-bottom: 10px;
	margin-bottom: 25px;
}

.contact_box .left .item .top::after {
	width: 50px;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: #eb561c;
}

.contact_box .left .item .top .name {
	font-size: 1.75rem;
}

.contact_box .left .item .top .tips {
	font-size: 1rem;
	color: #999999;
}

.contact_box .left .item .des {
	width: 100%;
	line-height: 1.5;
}

.contact_box .left .item .des p {
	margin-bottom: 5px;
}


.contact_box .left .item .des .it{
	width: 100%;
	display: flex;
	margin-bottom: 10px;
}

.contact_box .left .item .des .it .img{
	width: 25px;
}

.contact_box .left .item .des .it .txt{
	width: calc(100% - 35px);
	margin-left: 5px;
	line-height: 25px;
	padding: 0px 0px;
}


.contact_box .left .item:last-child {
	margin-bottom: 0;
}

.contact_box .right {
	width: 55%;
	padding: 2vw;
	background: #fff;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, .05);
	box-shadow: 15px 15px 50px rgba(0,0,0,.05);
}

.contact_box .right .name {
	font-size: 1.75rem;
	font-weight: 400;
	margin-bottom: 20px;
}

.from_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.from_box input {
	width: 48%;
	border: 1px solid rgba(0, 0, 0, .05);
	outline: none;
	height: 50px;
	padding-left: 15px;
	margin-bottom: 1.5vw;
	border-radius: 5px;
	font-size: 0.875rem;
}

.from_box input::placeholder,.from_box textarea::placeholder{
	color: rgba(0, 0, 0, .3);
}

.from_box textarea {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, .05);
	outline: none;
	border-radius: 5px;
	padding: 15px;
	height: 120px;
	margin-bottom: 1.5vw;
	font-size: 0.875rem;
}

.submit {
	width: 100%;
	height: auto;
	position: relative;
	cursor: pointer;
}

.submit.active{
	opacity: 0.5;
}

.submit .box {
	background: #b1916a;
	line-height: 60px;
	position: relative;
	border-radius: 5px;
	color: #fff;
	text-align: center;
}

.m_box {
	width: 100%;
	height: auto;
	position: relative;
}

.sjj_title.pos {
	position: absolute;
	left: 50%;
	margin-left: -105px;
	top: 5vw;
}

.en .sjj_title.pos{
	left: 0;
	margin-left: 0%;
}

.en .store_list.con .item .thum{
	margin-bottom: 15px;
}

.store_list.con {
	left: 7.5%;
	top: 0%;
	transform: translateY(0%);
	grid-template-columns: repeat(3, 1fr);
	margin-top: 0;
	width: 85%;
	position: relative;
	margin-top: -10vw;
	margin-bottom: 5vw;
}

.m_box .img{
	width: 100%;
	height: auto;
	position: relative;
}

.store_list.con .item .info .title {
	font-size: 1.25rem;
}
.store_list.con .item{
	flex-wrap: wrap;
	box-shadow: 15px 15px 30px rgba(0, 0, 0, .05);
}
.store_list.con .item .thum{
	width: 100%;
}
.store_list.con .item .thum .inner {
    padding-top: 60%;
    height: 0%;
}
.store_list.con .item .info{
	width: 100%;
}

.store_list.con .item .info .tp .n {
	font-size: 0.875rem;
	margin-bottom: 0;
}

.map_dw {
	width: 12px;
	height: 12px;
	position: absolute;
	left: 50%;
	margin-left: -6px;
	top: 48%;
}

.map_dw .dot {
	width: 12px;
	height: 12px;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #eb561c;
	border-radius: 50%;
}

.map_dw .map_logo {
	width: 220px;
	height: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #eb561c;
	border-radius: 5px;
	padding: 20px;
	top: 65px;
}

.en .map_dw .map_logo{
	padding: 10px;
}

.map_dw .map_logo::after {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #eb561c;
	position: absolute;
	left: 50%;
	margin-left: -5px;
	top: -5px;
	content: '';
}

.map_dw .dot span {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #eb561c;
	border-radius: 50%;
}

.map_dw .dot span:nth-child(1) {
	animation: AboutLabel 2.4s linear infinite normal both;
}

.map_dw .dot span:nth-child(2) {
	animation: AboutLabel 2.4s 0.6s linear infinite normal both;
}

.map_dw .dot span:nth-child(3) {
	animation: AboutLabel 2.4s 1.2s linear infinite normal both;
}

.map_dw .dot span:nth-child(4) {
	animation: AboutLabel 2.4s 1.8s linear infinite normal both;
}

@-webkit-keyframes AboutLabel {
	0% {
		width: 100%;
		height: 100%;
		opacity: 0;
	}

	16% {
		width: 512%;
		height: 512%;
		opacity: 0.25;
	}

	32% {
		width: 924%;
		height: 924%;
		opacity: 0.2;
	}

	48% {
		width: 1336%;
		height: 1336%;
		opacity: 0.15;
	}

	64% {
		width: 1748%;
		height: 1748%;
		opacity: 0.1;
	}

	80% {
		width: 2160%;
		height: 2160%;
		opacity: 0;
	}

	100% {
		width: 100%;
		height: 100%;
		opacity: 0;
	}
}

.lxwm {
	padding-bottom: 0;
}

.loadingBox {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	z-index: 999;
	background: #f3f1e9;
	transition: 1s all ease-in-out;
}

.loadingBox .loadingLogo {
	width: 2vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
}

.loadingBox .loadingText {
	color: #e3571c;
	font-size: 1.2vw;
	position: absolute;
	bottom: 3vw;
	left: 3vw;
	z-index: 9;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-family: Figtree;
}

.loadingBox .loadingNum {
	color: #e3571c;
	font-size: 1.2vw;
	position: absolute;
	bottom: 3vw;
	right: 3vw;
	z-index: 9;
	font-family: Figtree;
}

.loadingBox .loadingBg1 {
	width: 100%;
	height: 100vh;
	background-size: cover;
	position: absolute;
}

.loadingBox .loadingBg2 {
	width: 100%;
	height: 100vh;
	background-size: cover;
	position: absolute;
	animation: slideDown 2.2s forwards;
	will-change: clip-path;
}

@keyframes slideDown {
	0% {
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}

	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}

.loadingBox.active {
	opacity: 0;
	pointer-events: none;
}

.photo{
	width: 100vh;
	height: 100vh;
	transition-delay: 1s;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	clip-path: url(#r2Path);
	background-size: cover !important;
	background-repeat: no-repeat;
	transform-origin: 0 -5%;
	animation-fill-mode: both;
	animation-duration: 1.2s;
	transition: 2s all ease-in-out;
	animation-timing-function: cubic-bezier(0.3, 0, 0.24, 1);
}

.photo img:nth-child(2){
	display: none;
}

.maskGo{
	position: absolute;
	width: 100vh;
	height: 100vh;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	pointer-events: none;
}

#r2Path{
	animation-play-state: paused;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
	transform: translate3d(-30vw, 20vw, 0) rotate(-90deg);
	transform-origin: 80% 60%;
	-webkit-transition: transform 1.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	backface-visibility: hidden;
}

.photo img{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.maskGo.active #r2Path{
	transform: translate3d(-30vw, 7vw, 0vw) rotate(0deg);
}




/* 20250526 */

.bouncing-blob {
	width: 32vw;
	aspect-ratio: 1;
	border-radius: 50%;
	will-change: transform;
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 0;
	transform-origin: left top;
  }
  
  .bouncing-blob--blue {
	background: #ffe0d4;
  }
  
  .bouncing-blob--white {
	background: #ffffff;
	z-index: 2;
	width: 15vw;
  }
  
  .bouncing-blob--purple {
	background: #ffd5c5;
  }
  
  .bouncing-blob--pink {
	background: #ffe5c5;
  }
  
  .bouncing-blobs-container {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
  
  .bouncing-blobs-glass {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(140px);
	-webkit-backdrop-filter: blur(140px);
	pointer-events: none;
  }
  
  .bouncing-blobs {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }

  .bouncing-blobs-container {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.in_box.ip .singePage{
	margin-bottom: 7vw;
}

.right_img{
	width: 33%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
}

#video1{
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#video1.active{
	width: auto;
	height: 100%;
}

.en .singePage{
	font-size: 1rem;
	line-height: 1.7;
	text-align: justify;
}

.en .ppyj_box .sjj_title{
	margin-bottom: 1vw;
}

.en .num .item .top{
	font-size: 0.875rem;
	height: 36px;
	line-height: 18px;
	margin-bottom: 5px;
}

.en .num .item .btm .p p{
	background: none;
	color: #c7a275;
	width: auto;
}

.en .num .item:nth-child(2) .btm .p p {
    margin: 0px 0px;
}
.en .num .item .btm .p{
	margin-left: 5px;
}

.en .ppyj_box .singePage{
	margin-bottom: 2vw;
}

.en .ppyj_box .singePage{
	width: 100%;
}

.en .menu a{
	font-size: 1.1rem;
}

.en .spaq .sjj_title{
	margin-bottom: 1vw;
}

.en .spaq .left{
	width: 50%;
	padding: 3vw;
}

.en .footer-nav-group h3{
	font-size: 0.875rem;
}

@media screen and (max-width: 1700px) {
	.maskGo.active #r2Path{
		transform: translate3d(-40vw, 7vw, 0vw) rotate(0deg);
	}
	.photo img{
		left: -5vh;
	}
}

@media screen and (max-width: 1550px) {
	.maskGo.active #r2Path{
		transform: translate3d(-45vw, 7vw, 0vw) rotate(0deg);
	}
	.photo img{
		left: -10vh;
	}
	.en .menu{
		width: 70%;
	}
	.en .menu a{
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 1440px) {
	.en .footer-nav-group h3,.en .footer-nav-list a{
		font-size: 0.7rem;
	}
	.footer_img{
		width: 30%;
	}
	.en .footer-content{
		width: 70%;
		position: relative;
		z-index: 2;
	}
	.en .footer-nav-group{
		gap: 0.4rem;
	}
	.en .num .item .top{
		font-size: 0.8rem;
	}
	.en .num .item .btm .p p{
		font-size: 0.8rem;
	}
	.maskGo.active #r2Path{
		transform: translate3d(-50vw, 9vw, 0vw) rotate(0deg);
	}
	.dot_warp .all_dot{
		font-size: 1rem;
	}

	.en .menu a{
		font-size: 1rem;
	}
	.in_awards .item {
	    width: 32%;
	}
	.en .store_num .sjj_title p {
	    font-size: 1.5rem;
	}
}

@media screen and (max-width: 1366px) {
	.en .menu a {
	    font-size: 0.9rem;
	}
	.maskGo.active #r2Path{
		transform: translate3d(-60vw, 10vw, 0vw) rotate(0deg);
	}
	.photo img{
		left: -20vh;
	}
}

@media screen and (max-width: 768px) {
	html {
		font-size: 14px;
	}
	.lang-switch {
		position: absolute;
		right: 80px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 20;
	}
	.nav,.nav .container {
		height: 60px;
	}
	.logo{
		width: 130px;
		position: relative;
		z-index: 20;
	}
	.menu {
		height: calc(100vh - 0px);
		position: fixed;
		left: 0px;
		top: 0px;
		display: flex;
		align-items: center;
		width: 100%;
		-webkit-transition: all .5s;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		margin-right: 0%;
		z-index: 10;
		padding-top: 70px;
		display: block;
		background: #c7a275;
	}
	.menu.active {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.nav .container{
		padding: 0px 5%;
	}
	.scroll_icon{
		display: none;
	}
	
	.banner-swiper .swiper-slide{
		height: 80vw;
	}
	.banner-swiper .slogan{
		width: 50%;
		right: 25%;
	}
	.banner-swiper .swiper-pagination{
		bottom: 5%;
		text-align: center;
	}
	.banner-swiper .swiper-pagination-bullet{
		margin: 0px 2px !important;
		width: 30px;
		height: 30px;
	}
	.banner-swiper .swiper-slide .slide-bg video{
		position: absolute;
		height: 100%;
		left: 0;
		top: 0;
	}
	.nav{
		z-index: 50;
	}
	.menu a{
		line-height: 60px;
		font-size: 1.5rem;
	}
	.menu li {
		width: 100%;
		text-align: center;
		transform: translateY(25px);
		opacity: 0;
	}
	.menu.active li {
		transform: translateY(0px);
		opacity: 1;
		transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
	}
	.menu.active li:nth-child(2){
		transition-delay: 0.6s;
	}
	.menu.active li:nth-child(3){
		transition-delay: 0.7s;
	}
	.menu.active li:nth-child(4){
		transition-delay: 0.8s;
	}
	.menu.active li:nth-child(5){
		transition-delay: 0.9s;
	}
	.menu.active li:nth-child(6){
		transition-delay: 1s;
	}
	.menu.active li:nth-child(7){
		transition-delay: 1.1s;
	}
	.menu:before{
		width: 100vw;
		height: 100vw;
		position: absolute;
		right: -30vw;
		bottom: -20vw;
		content: '';
		background: url(../images/shuai2.png) center center no-repeat;
		background-size: cover;
		opacity: 0.5;
	}
	.sjj_title{
		width: 130px;
	}
	.boxes{
		padding: 15vw 0px;
	}
	.maskGo,.photo{
		display: none;
	}
	.intro .right,.in_box{
		width: 100%;
		margin-left: 0;
	}
	.w1400 {
	    width: 90%;
	}
	.in_awards .item {
	    width: 32%;
	}
	.sjj_more{
		width: 110px;
		margin-top: 7.5vw;
		margin-bottom: 12.5vw;
	}
	.en .sjj_more{
		width: 140px;
	}
	.en .sjj_title p{
		font-size: 1.7rem;
	}
	.photo{
		display: block;
		position: relative;
		width: 100%;
		height: 20vh;
		clip-path: initial;
		margin-top: 10vw;
	}
	.photo img:nth-child(1){
		display: none;
	}
	.photo img:nth-child(2){
		display: block;
		left: 0;
	}
	.intro{
		padding-bottom: 0;
	}
	.bouncing-blobs-container{
		display: none;
	}
	.ppyj_box{
		width: 100%;
		height: auto;
		flex-wrap: wrap;
		padding: 0px 5%;
	}
	.ppyj_box .left,.ppyj_box .right{
		width: 100%;
	}
	.ppyj_box .singePage{
		width: 100%;
		margin-bottom: 5vw;
	}
	.num{
		width: 100%;
	}
	.pot_box{
		width: 100%;
		padding: 0vw;
	}
	
	.potSwiper{
		width: 70%;
		margin: 0px auto;
		margin-bottom: 5vw;
		padding-bottom: 10vw;
	}
	.potSwiper .swiper-pagination-bullet-active{
		background: #e3571c;
	}
	.potSwiper .swiper-pagination-bullet{
		width: 5px;
		height: 5px;
	}
	.potInfo .item{
		text-align: center;
	}
	.potInfo .item .name{
		font-size: 1.5rem;
	}
	.potInfo .item .des{
		font-size: 1rem;
	}
	.potConent{
		width: 100%;
		padding-left: 0%;
	}
	.ppyj_box .right{
		flex-wrap: wrap;
		margin-top: 10vw;
	}
	.history-btn{
		display: none;
	}
	.mscp{
		height: auto;
	}
	.mscp .sjj_title{
		margin-bottom: 5vw;
	}
	.fruits{
		width: 100%;
		flex-wrap: wrap;
		padding: 0 5%;
		gap: 0;
		justify-content: space-between;
	}
	.fruits .item{
		width: 48%;
		margin-bottom: 5vw;
	}
	.fruits .item.lt{
		padding-top: 50%;
		width: 100%;
		margin-bottom: 15vw;
	}
	.fruits .item.lt .box{
		width: 60%;
		left: 20%;
	}
	.fruits .item.lt .box .img{
		width: 50%;
		margin: 0px auto;
	}
	.marquees{
		height: 35px;
	}
	.marquees .img{
		width: 1920px;
	}
	.space_box{
		padding: 0;
		height: auto;
	}
	.space_info{
		flex-wrap: wrap;
	}
	.space_info .item {
	    width: 100%;
	    height: 25%;
	}
	.space_bg .item .n,.space_bg .item .name{
		display: block;
	}
	
	.space_info{
		display: none;
	}
	
	.space_bg{
		position: relative;
		height: auto;
		background: #fff;
		padding: 0px 5%;
	}
	
	.space_bg .item{
		position: relative;
		height: 20vh;
		opacity: 1;
		background: #000000;
		margin-bottom: 5vw;
	}
	.space_bg .item.active{
		opacity: 1;
	}
	.space_bg .item img{
		opacity: 0.8;
	}
	
	.space_bg .item .n{
		font-size: 5vw;
		font-family: Figtree;
		line-height: 1;
		position: absolute;
		left: 10%;
		top: 50%;
		transform: translateY(-50%);
		color: #fff;
	}
	.space_bg .item .name{
		font-size: 5vw;
		line-height: 1;
		position: absolute;
		left: 18%;
		top: 50%;
		transform: translateY(-50%);
		color: #fff;
	}
	.store_top{
		flex-wrap: wrap;
	}
	.store_map,.store_num{
		width: 100%;
	}
	.storeNumber{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.storeNumber .item{
		width: 48%;
	}
	.store_num .sjj_title {
	    width: 180px;
	}
	.store_list{
		margin-top: 10vw;
		grid-template-columns: repeat(1, 1fr)
	}
	.store_list .item{
		padding: 0;
	}
	.store_list .item{
		flex-wrap: wrap;
		margin-bottom: 5vw;
	}
	.store_list .item .thum,.store_list .item .info{
		width: 100%;
	}

	.store_list .item .thum .inner{
		height: 0;
		padding-top: 40%;
	}
	.store_list .item .info .tp .n{
		display: none;
	}
	.store_list .item .info .title{
		font-size: 1.25rem;
	}
	.store_list .item .info .tp{
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	.store_list .item .info .btm .it .txt{
		font-size: 1rem;
		width: calc(100% - 30px);
		line-height: 25px;
	}
	.store_list .item .info .btm .it .icon{
		width: 25px;
		height: 25px;
	}
	.store_list .item .info{
		padding: 4vw;
	}
	.title_top{
		margin-bottom: 5vw;
	}
	.news_warp .first{
		width: 100%;
		margin-bottom: 5vw;
	}
	.news_warp .list{
		width: 100%;
	}
	.footer-nav{
		display: none;
	}
	.num .item .btm .n{
		font-size: 14vw;
	}
	.num .item .btm .p p{
		width: 25px;
		height: 25px;
		line-height: 25px;
		background-size: cover;
	}
	.news_warp .list a{
		padding: 5vw;
		margin-bottom: 5vw;
	}
	.num .item{
		width: 32%;
	}
	
	.num .item .top{
		text-align: center;
		font-size: 0.875rem;
		margin-bottom: 5px;
		opacity: 0.7;
	}
	
	.num .item .btm{
		align-items: center;
		justify-content: center;
	}
	.num .item:nth-child(2) .btm .p p{
		margin: 0;
	}
	.num .item:nth-child(2) .btm .p p:last-child{
		margin: 0px -5px;
	}
	.pot_box:before {
	    width: 100vw;
	    height: 100vw;
	}
	.sjj_title{
		margin-bottom: 5vw;
	}
	.storeNumber .item .btm .n{
		font-size: 14vw;
	}
	.storeNumber .item .btm .p p{
		width: 25px;
		height: 25px;
		line-height: 25px;
		background-size: cover;
	}
	.news_warp .list a .name {
	    font-size: 1.2rem;
	    padding-bottom: 10px;
	    margin-bottom: 8px;
	}
	.news_warp .list a .name::after{
		width: 30px;
	}
	.footer{
		padding-top: 2rem;
	}
	.footer-content {
	    width: 90%;
	    margin-left: 5%;
	}
	.footer-left{
		flex-wrap: wrap;
	}
	.footer-info{
		font-size: 1rem;
		margin-bottom: 10vw;
		line-height: 1.5;
	}
	.socials .item{
		width: 30px;
		margin-right: 15px;
	}
	.socials .item .icon{
		width: 100%;
	}
	.follow .txt,.footer_img{
		display: none;
	}
	
	.footer-bottom{
		margin-top: 10vw;
	}
	.potSwiper .swiper-pagination{
		display: block;
	}
	.news_warp .first .name{
		padding: 5vw;
	}
	
	.news_warp .first .name{
		font-size: 1.2rem;
	}
	.sjj_title.center{
		margin: 0px auto 5vw;
	}
	.sub_banner{
		height: 60vw;
	}
	.slogans{
		width: 35%;
	}
	.yj_box {
		border-radius: 0;
		padding: 10vw 5vw;
	}
	.yj_box .p_box{
		text-align: left;
	}
	.yj_box .p_box p{
		margin-bottom: 10px;
	}
	.pp_list .item{
		background: transparent;
	}
	.pp_list .item{
		width: 32%;
		color: #333333;
		padding: 0;
		height: auto;
		margin: 0;
	}
	.pp_list .item .box{
		flex-wrap: wrap;
	}
	.pp_list .item .box .n{
		font-size: 14vw;
		color: #e3571c;
	}
	.pp_list .item .box .r{
		width: 100%;
		font-size: 1rem;
		margin-left: 0;
		line-height: 20px;
		text-align: center;
		margin-top: 10px;
		height: 40px;
	}
	.pp_list .item .box .r .y{
		display: none;
	}
	.pp_list .item .box .dw{
		display: block;
	}
	.pp_list .item .box .top{
		width: 100%;
		display: flex;
		align-items: flex-end;
		position: relative;
		justify-content: center;
	}
	.pp_list .item .box .top .dw{
		margin-left: 0px;
		position: absolute;
		right: 0%;
		bottom: 0;
	}
	.pp_list{
		margin-top: 10vw;
	}
	.ln_list{
		grid-template-columns: repeat(2, 1fr);
	}
	.ln_list .item .box{
		height: 65vw;
	}
	.ln_list .item .box .name .title{
		font-size: 1rem;
	}
	.ln_list .item .box .name{
		bottom: 15vw;
		z-index: 2;
	}
	.ln_list .item .box .name .icon{
		width: 40px;
		margin-bottom: 3vw;
	}
	.right_img{
		display: none;
	}
	.ln_list .item .box::after{
		width: 100%;
		height: 60%;
		position: absolute;
		left: 0;
		bottom: 0;
		content: '';
		background-image: linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,.0));
	}
	.spaq .left{
		width: 90%;
		left: 5%;
		position: relative;
		width: 80%;
		left: 10%;
		position: relative;
		background: rgba(255, 255, 255, .9);
		padding: 10vw 5vw;
	}
	.spaq{
		height: auto;
	}
	.singePage{
		font-size: 1rem;
	}
	.product_swiper .mark{
		display: none;
	}
	
	.ppyj_bg .history-btn{
		display: block;
		margin-top: 5vw;
		padding: 0px 5%;
	}
	
	.history-btn .prev, .history-btn .next{
		display: none;
	}
	.history-btn .info{
		width: 100%;
	}
	.history-btn .info .item .name {
	    font-size: 1.5rem;
	    text-align: center;
	    margin-bottom: 5px;
	    line-height: 1.5;
	}
	.ppyj_bg .w1400{
		width: 100%;
	}
	.history-btn .info .item .des{
		font-size: 1rem;
	}
	.food_swiper{
		padding-bottom: 10vw;
	}
	.food_swiper{
		margin-bottom: 15vw;
	}
	.foods {
	    margin-top: 5vw;
	    grid-template-columns: repeat(2, 1fr);
	    gap: 5vw;
	}
	.food_nav .item{
		width: 30%;
		height: 40px;
		line-height: 40px;
		font-size: 1.1rem;
	}
	.foods .item .name{
		margin-top: 5px;
	}
	.food_nav{
		gap: 0;
		justify-content: space-between;
	}
	.space .item{
		flex-wrap: wrap;
		margin-bottom: 10vw;
	}
	.space .item .thum,.space .item .info{
		width: 100%;
	}
	.space .item .info{
		padding-left: 0;
	}
	.space .item .inner {
	    padding-top: 50%;
	}
	.space .item .thum{
		border-radius: 0;
		margin-bottom: 15px;
	}
	.space .item .info .name {
	    width: 100%;
	    font-size: 1.3rem;
	    position: relative;
	    padding-bottom: 5px;
	    margin-bottom: 10px;
	}
	.ip .store_map{
		flex-wrap: wrap;
		margin-bottom: 0;
	}
	.store.ip .sjj_title {
	    width: 180px;
		margin-bottom: 5vw;
	}
	.store.ip .storeNumber{
		width: 100%;
	}
	.store.ip .storeNumber .item{
		width: 48%;
	}
	.store.ip .store_top{
		margin-bottom: 10vw;
	}
	.food_nav.xw{
		justify-content: center;
		gap:2vw;
	}
	.news{
		margin-top: 5vw;
	}
	.news .item .box{
		flex-wrap: wrap;
	}
	.news .item .box{
		border-radius: 0;
	}
	.news .item .thum{
		width: 100%;
		border-radius: 0;
	}
	.news .item .thum .inner {
	    padding-top: 50%;
	}
	.news .item .info {
	    width: 100%;
	    padding: 5vw;
	}
	.news .item .info .name {
	    font-size: 1.2rem;
	    width: 100%;
	    position: relative;
	    padding-bottom: 5px;
	}
	.news .item .info .des{
		margin-bottom: 5px;
		display: none;
	}
	#page{
		margin-top: 10vw;
	}
	.news_detail:before{
		height: 60px;
	}
	.news_detail{
		padding-top: 60px;
	}
	.detail_box{
		width: 100%;
		padding: 5vw;
	}
	.detail_top .name{
		font-size: 6vw;
		margin-bottom: 2vw;
	}
	.detail_top{
		padding-bottom: 3vw;
		margin-bottom: 5vw;
	}
	.pn_news{
		padding-top: 5vw;
	}
	.pn_news .item p{
		width: 60px;
	}
	.pn_news .item a {
	    width: calc(100% - 60px);
	}
	
	.contact_box .left{
		width: 100%;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}
	.contact_box{
		flex-wrap: wrap;
	}
	.contact_box .right{
		width: 100%;
	}
	.store_list.con{
		width: 100%;
		left: 0;
		top: 0;
		transform: translateY(0px);
		position: relative;
		padding: 0px 5%;
		margin-top: 0;
		grid-template-columns: repeat(1, 1fr);
	}
	
	.store_list.con .item .info{
		padding: 5vw;
	}
	
	.m_box .sjj_title.pos{
		position: relative;
		left: 0;
		margin-bottom: 5vw;
		top: 0;
	}
	.contact_box{
		margin-bottom: 15vw;
	}
	.m_box .img,.map_dw{
		display: none;
	}
	
	.contact_box .left .item,.contact_box .right{
		border: none;
		padding: 0;
		box-shadow: none;
	}
	.contact_box .left .item{
		margin-bottom: 5vw;
	}
	
	.contact_box .right{
		margin-top: 10vw;
	}
	.contact_box .right .name{
		font-size: 1.35rem;
		font-weight: 400;
		margin-bottom: 5vw;
	}
	.from_box input{
		height: 40px;
		font-size: 0.875rem;
		padding-left: 10px;
		border-radius: 0;
		margin-bottom: 3vw;
	}
	.from_box textarea{
		padding: 10px;
		font-size: 0.875rem;
		border-radius: 0;
		margin-bottom: 5vw;
	}
	.submit .box{
		line-height: 50px;
		border-radius: 0;
	}
	.footer-info p{
		margin-bottom: 5px;
	}
	.loadingBox .loadingBg2{
		background-size: contain;
	}
	.loadingBox .loadingBg1{
		background-size: contain;
	}
	.loadingBox .loadingLogo{
		width: 8vw;
	}
	.loadingBox .loadingText {
	    color: #e3571c;
	    font-size: 4vw;
	    position: absolute;
	    bottom: 10vw;
	    left: 5vw;
	}
	.loadingBox .loadingNum {
	    font-size: 5vw;
	    bottom: 10vw;
	    right: 5vw;
	}
	.dot_warp .all_dot{
		width: 12.5vw;
	}
	.dot_warp .all_dot{
		font-size: 0.6rem;
		font-weight: normal;
	}
	.dot_warp .all_dot .dot {
	    width: 4px;
	    height: 4px;
	    margin-left: -2px;
	    top: 0px;
	}
	.dot_warp .all_dot .txt{
		font-size: 0.6rem;
		margin-top: 5px;
	}
	.ip .dot_warp .all_dot {
		font-size: 0.7rem;
		width: 9vw;
	}
	.ip .dot_warp .all_dot .dot {
	    width: 4px;
	    height: 4px;
	    margin-left: -2px;
	    top: 0px;
	}
	.ip .dot_warp .all_dot .txt {
	    margin-top: 5px;
	    font-size: 0.6rem;
	}
	.en .num .item .btm .p p{
		font-size: 0.6rem;
	}
	.en .num .item .top{
		line-height: 16px;
		height: 32px;
	}
	.en .dot_warp .all_dot {
	    font-size: 0.65rem;
	}
	.en .menu {
		width: 100%;
	}
	.en .menu a {
		font-size: 1.5rem;
	}
	.en .store.ip .sjj_title {
	    width: 100%;
	}
	.en .ip .dot_warp .all_dot {
	        font-size: 0.65rem;
	}
	.en .dot_warp .all_dot .txt {
	    width: 200%;
	    left: -50%;
	}
	.follow{
		width: 100%;
	}
	.en .contact_box .right .name{
		text-align: center;
	}
	.en .slogans{
		width: 50%;
	}
	.en .slogans .img p{
		font-size: 4vw;
	}
	.news .item .info .name::after{
		display: none;
	}
	.en .potInfo .item .des {
		font-size: 0.875rem;
	}
	.en .food_nav .item{
		width: auto;
		padding: 0px 10px;
		font-size: 1rem;
	}
	.en .food_nav{
		gap:2vw;
		flex-wrap: wrap;
		justify-content: center;
	}
	.en .banner-swiper .slogan{
		right: 0;
		width: 100%;
		font-size: 5.5vw;
	}
	.mobile_banner{
		display: block;
	}
	#video1{
		display: none;
	}
	.en .potInfo .item .name {
	    font-size: 1.5rem;
	}
	.en .yj_box {
	    padding: 10vw 5vw;
	}
	.en .yj_box .p_box {
		text-align: justify;
	}
	.en .pp_list {
		margin-top: 10vw;
		padding: 0px 5vw;
	}
	.en .spaq .left {
	    width: 90%;
	    padding: 10vw 5vw;
	    left: 5%;
	}
	.contact_box .left .item .top .name {
	    font-size: 1.35rem;
	}
	.pp_list.ip .item .box{
		justify-content: center;
	}
	.en .dot_warp .all_dot .txt{
		font-size: 0.3rem;
	}
	.store_list .item .thum{
		margin-bottom: 0;
	}
	.pp_list .item .box .xd{
		display:block;
		width: 100%;
		text-align: center;
	}
}