* {
	color: #433F37;
	box-sizing: border-box;
	font-weight: normal;
}

html,
body {
	background-color: #F3F4F0;
	width: 100%;
	scroll-behavior: smooth;
}

@font-face {
	font-family: "LibreBaskerville";
	src: url(LibreBaskerville-Bold.ttf);
	font-weight: bold;
}

@font-face {
	font-family: "LibreBaskerville";
	src: url(LibreBaskerville-Regular.ttf);
	font-weight: normal;
}

.baskerville-n {
	font-family: "LibreBaskerville";
	font-weight: normal;
}

.baskerville-b {
	font-family: "LibreBaskerville";
	font-weight: bold;
}

*::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	background: transparent;
	border-radius: 3px;
}

*::-webkit-scrollbar-thumb {
	width: 4px;
	height: 4px;
	background: #A7ABAA;
	border-radius: 2px;
}

*::-webkit-scrollbar-thumb:window-inactive {
	width: 4px;
	height: 4px;
	background: #A7ABAA;
	border-radius: 2px;
}

img {
	width: 100%;
}

.bg-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.wrap-1040 {
	width: 100%;
	max-width: 1040px;
	min-width: 1040px;
	margin: 0 auto;
}

.wrap-1120 {
	width: 100%;
	max-width: 1120px;
	min-width: 1120px;
	margin: 0 auto;
}

.wrap-1280 {
	width: 100%;
	max-width: 1280px;
	min-width: 1280px;
	margin: 0 auto;
}

.transition {
	-webkit-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
}

.sm-14 {
	font-size: 14px;
}

.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-v-c {
	align-items: center;
}

.flex-v-s {
	align-items: flex-start;
}

.flex-v-e {
	align-items: flex-end;
}

.flex-h-c {
	justify-content: center;
}

.flex-h-sb {
	justify-content: space-between;
}

.flex-h-s {
	justify-content: flex-start;
}

.flex-h-e {
	justify-content: flex-end;
}

.gap-20 {
	gap: 20px;
}

.gap-40 {
	gap: 40px;
}

.gap-60 {
	gap: 60px;
}

.gap-80 {
	gap: 80px;
}

.gap-100 {
	gap: 100px;
}

.main-kv {
	margin-top: 0;
	padding: 0 80px;
}

.wj-slogan {
	font-size: 48px;
	color: #433F37;
	letter-spacing: 4px;
}

.wj-slogan span {
	opacity: 0;
	color: transparent;
	text-shadow: 0 0 50px #433f37;
	will-change: text-shadow, opacity;
	animation: ani-blur 4s ease-in-out forwards paused;
	animation-play-state: running;
}

@keyframes ani-blur {
	0% {
		opacity: 0;
		text-shadow: 0 0 50px #433f37;
	}

	10% {
		opacity: 1;
		text-shadow: 0 0 25px #433f37;
	}

	50% {
		opacity: 1;
		text-shadow: 0 0 0 #433f37;
	}

	100% {
		opacity: 1;
		text-shadow: 0 0 0 #433f37;
	}
}

.main-kv-slider {
	position: relative;
	margin-top: 50px;
	/* transform: translate3d(0, 0px, 0); */
	opacity: 0;
	transition: opacity 2s linear 2000ms;
	will-change: opacity;
}

.main-kv-slider.is-active {
	/* transform: translate3d(0, 0, 0); */
	opacity: 1;
}

.m-index-swiper .swiper-free-mode>.swiper-wrapper {
	transition-timing-function: linear;
}

.m-index-swiper .mainkv-swiper {
	padding-bottom: 20px;
	/* background-color: #F3F4F0; */
}

.m-index-swiper .mainkv-swiper .swiper-wrapper {
	background-color: #F3F4F0;
}

.m-index-swiper .swiper-horizontal>.swiper-pagination-progressbar {
	bottom: 2px;
	top: unset;
	width: 168px;
	left: calc(50% - 168px / 2);
	height: 1px;
	background-color: #ffffff;
}

.m-index-swiper .swiper-horizontal>.swiper-pagination-progressbar::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #8FC31F;
	position: absolute;
	left: -5px;
	top: -2px;
}

.m-index-swiper .swiper-horizontal>.swiper-pagination-progressbar::after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #ffffff;
	position: absolute;
	right: -5px;
	top: -2px;
}

.m-index-swiper .swiper-horizontal>.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background-color: #8FC31F;
}

.circle-logo {
	width: 80px;
	height: 80px;
	display: inline-block;
}

.circle-logo {
	position: absolute;
	left: -40px;
	top: -40px;
	z-index: 0;
}

.spin {
	transform-origin: center;
	animation: ani-spin 10s linear infinite;
	animation-play-state: running;
}

@keyframes ani-spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(-360deg);
	}
}

.sect-mt-50 {
	margin-top: 50px;
}

.sect-mt-80 {
	margin-top: 80px;
}

.sect-mt-120 {
	margin-top: 120px;
}

.sect-mt-212 {
	margin-top: 212px;
}

.scroll-img {
	position: relative;
	overflow: hidden;
	will-change: transform;
	transition: transform 1.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.05);
}

.scroll-img img {
	width: 100%;
	display: block;
	will-change: transform;
	transition: transform 1.5s cubic-bezier(0.13, 0.78, 0.38, 0.98);
	margin-top: -50px;
}

.w480-h600 {
	width: 480px;
	height: 600px;
}

.w576-h384 {
	width: 576px;
	height: 384px;
}

.w420-h560 {
	width: 420px;
	height: 560px;
}

.left-txt {
	padding-bottom: 74px;
}

.left-txt .left-txt1 {
	font-size: 40px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 64px;
}

.left-txt .left-txt2 {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 30px;
}

.posi-rel {
	position: relative;
}

.sect-title {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 80px;
	color: #FFFFFF;
	letter-spacing: 8px;
	text-transform: uppercase;
	z-index: 2;
}

.sect-title span {
	color: #FFFFFF;
}

.satisfy-sect2 {
	margin-top: 60px;
}

.satisfy-btn-group {
	flex: 1;
	background-color: #FFFFFF;
	padding: 33px 112px 57px;
}

.satisfy-btn-group .btn-z:first-child {
	margin-bottom: 8px;
}

.btn-z {
	padding: 24px 0;
	padding-left: 10px;
	font-size: 16px;
	line-height: 22px;
	color: #433F37;
	letter-spacing: 0;
	width: 100%;
	display: block;
	position: relative;
}

.btn-z span {
	width: 100%;
	display: inline-block;
	padding-right: 40px;
	position: relative;
}

.btn-z::before {
	content: "";
	position: absolute;
	right: 0;
	width: 100%;
	bottom: 0;
	height: 1px;
	background-color: #433f37;
	will-change: width;
	transition: width 0.3s;
}

.btn-z:hover::before {
	width: 0;
}

.btn-z span::after,
.btn-z span::before {
	content: "";
	position: absolute;
	background-color: #433f37;
}

.btn-z span::before {
	right: 18px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	transition: transform 0.3s;
	will-change: transform;
	top: 9px;
}

.btn-z span::after {
	left: calc(100% - 50px);
	width: 30px;
	height: 1px;
	transition: width 0.3s;
	will-change: width;
	top: 11px;
}

.btn-z:hover span::before {
	transform: translateX(10px);
}

.btn-z:hover span::after {
	width: 40px;
}

.w-full-l {
	width: calc(100vw - (100vw - 1120px)/2);
	padding-right: 200px;
}

.w-full-r {
	width: calc(100vw - (100vw - 1120px)/2);
	padding-left: 200px;
}

.left-bg-fff {
	background-color: #FFFFFF;
	padding: 152px 0 120px 0;
	padding-left: calc((100vw - 1120px)/2);
}

.right-bg-fff {
	background-color: #FFFFFF;
	padding: 152px 0 120px 0;
	padding-right: calc((100vw - 1120px)/2);
}

.right-bg-fff .wrap-1120 {
	margin-left: -200px;
}

.title-hollow {
	position: absolute;
	right: 0;
	top: -224px;
	font-size: 100px;
	letter-spacing: 10px;
	-webkit-text-stroke: 1px rgba(104, 57, 0, 0.20);
	color: transparent;
}

.title-hollow-left {
	left: 0;
	right: unset;
}

.posi-sticky {
	position: sticky;
	top: 10vh;
}

h2 {
	font-size: 32px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 40px;
}

h5 {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 24px;
}

p {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 30px;
}

.sub-title {
	margin-bottom: 8px;
}

.info-list {
	margin-top: 16px;
}

.info-item {
	width: calc(50% - 20px);
	margin-top: 64px;
	border-top: 1px solid #433F37;
	padding-top: 10px;
}

.info-item .category-service {
	opacity: 0.8;
	font-size: 14px;
	color: #433F37;
	letter-spacing: 1.4px;
	display: inline-block;
	margin-bottom: 12px;
}

.w-full {
	width: 100%;
}

.title-xl-en {
	text-align: center;
}

.title-xl-en span {
	font-size: 60px;
	color: #433F37;
	letter-spacing: 2px;
	line-height: 80px;
}

[rel*="scroll-to-view"] span {
	display: inline-block;
	transform-origin: -100px center;
	transform: rotate(5deg) translate(0, 70%);
	opacity: 0;
}

[rel*="scroll-to-view"].in-view span {
	transition: opacity 0.8s cubic-bezier(0.26, 0.06, 0, 1), transform 1.2s cubic-bezier(0.36, 0.14, 0, 1);
	opacity: 1;
	animation: ani-color-flash 3.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both infinite;
	transform: rotate(0deg) translate(0, 0);
}

@keyframes ani-color-flash {
	0% {
		color: #433f37;
	}

	12.5% {
		color: #cfa254;
	}

	25% {
		color: #433f37;
	}

	100% {
		color: #433f37;
	}
}

@keyframes ani-color-flash-white {
	0% {
		color: #FFFFFF;
	}

	12.5% {
		color: #cfa254;
	}

	25% {
		color: #FFFFFF;
	}

	100% {
		color: #FFFFFF;
	}
}

.title-xs-cn {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	text-align: center;
	margin-top: 5px;
}

.title-s {
	padding-bottom: 80px;
}

.title-s::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 1px;
	height: 60px;
	background-color: #433f37;
}

.title-s.half-withe::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 1px;
	height: 30px;
	background-color: #FFFFFF;
}

.m-logo-swiper .swiper-slide {
	height: 128px !important;
}

.logos-list {
	gap: 24px;
}

.logos-list img {
	height: 64px;
	width: auto;
}

.m-logo-swiper .swiper {
	padding: 89px 0 0;
}

.m-logo-swiper {
	position: relative;
}

.m-logo-swiper::before {
	content: "";
	display: inline-block;
	height: 128px;
	width: 100%;
	background-color: #ffffff;
	position: absolute;
	bottom: 0;
	left: 0;
}

.m-logo-swiper::after {
	content: "";
	display: inline-block;
	height: 128px;
	width: 100%;
	background-image: linear-gradient(180deg, rgba(120, 115, 104, 0) 0%, rgba(67, 63, 55, 0.05) 100%);
	position: absolute;
	bottom: calc(128px * 1);
	left: 0;
}

.m-logo-swiper .swiper-slide:not(.swiper-slide-active) .logos-list {
	filter: grayscale(1);
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transform: scale(0.875);
	opacity: 0.2;
	-webkit-transition: filter linear 400ms, transform linear 400ms 100ms;
	-moz-transition: filter linear 400ms, transform linear 400ms 100ms;
	-ms-transition: filter linear 400ms, transform linear 400ms 100ms;
	-o-transition: filter linear 400ms, transform linear 400ms 100ms;
	transition: filter linear 400ms, transform linear 400ms 100ms;
}

.case-list__con {
	padding: 0 60px;
	margin-top: 40px;
}

.case-items {
	width: calc(33.333% - 40px);
	margin: 0 20px 30px;
	box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.05);
	overflow: hidden;
	display: block;
	position: relative;
}

.case-items .case-item-cover {
	position: relative;
}

.case-items .case-item-cover img {
	display: block;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.case-items .case-item-cover::before {
	display: block;
	content: " ";
	width: 100%;
	padding-top: 55%;
}

.case-items .case-info {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.3s;
	will-change: opacity;
	background: rgba(67, 63, 55, 0.8);
	color: #FFFFFF;
	padding: 38px 40px 0;
}

.case-items:hover .case-info {
	opacity: 1;
}

.case-items .case-info p {
	color: #FFFFFF;
	font-size: 16px;
}

.case-items .case-info .case-info-des {
	margin-top: 8px;
	font-size: 12px;
	line-height: 18px;
}

.case-items .case-info .case-info-category {
	font-size: 12px;
	line-height: 18px;
	position: absolute;
	left: 40px;
	bottom: 36px;
	width: calc(100% - 115px);
}

.moer-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	display: block;
	position: absolute;
	opacity: 0;
	transition: opacity 0.3s;
	will-change: opacity;
}

.moer-icon-deep {
	border: 1px solid #433F37;
}

.moer-icon::before {
	content: "";
	display: block;
	position: absolute;
	background-color: #FFFFFF;
	transform: rotate(-180deg);
	transition: transform 0.3s;
	will-change: transform;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 1px;
	margin-left: -9px;
}

.moer-icon-deep::before {
	background-color: #433F37;
}

.moer-icon::after {
	content: "";
	display: block;
	position: absolute;
	background-color: #FFFFFF;
	transform: rotate(-180deg);
	transition: transform 0.3s;
	will-change: transform;
	top: 50%;
	left: 50%;
	height: 19px;
	width: 1px;
	margin-top: -9px;
}

.moer-icon-deep::after {
	background-color: #433F37;
}

.opacity1 {
	opacity: 1;
}

.case-items .case-info .moer-icon {
	right: 20px;
	bottom: 20px;
	opacity: 1;
}

.case-items:hover .moer-icon::before,
.case-items:hover .moer-icon::after {
	transform: rotate(0);
}

.all-works__btn {
	margin: 0 auto;
	margin-top: 50px;
	display: block;
	text-align: center;
	position: relative;
	line-height: 1;
	padding: 29px 0;
	width: calc(100% - 40px);
}

.all-works__btn span {
	font-size: 18px;
	color: #4E463C;
	letter-spacing: 1.8px;
	line-height: 22px;
	display: inline-block;
	position: relative;
	padding-right: 60px;
}

.all-works__btn::after,
.all-works__btn::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background-color: #433f37;
	transition: width 0.3s;
	will-change: width;
}

.all-works__btn::before {
	top: 0;
}

.all-works__btn::after {
	bottom: 0;
}

.all-works__btn span::after,
.all-works__btn span::before {
	content: "";
	position: absolute;
	background-color: #433f37;
}

.all-works__btn span::before {
	right: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	transition: transform 0.3s;
	will-change: transform;
	top: 50%;
	margin-top: -2px;
}

.all-works__btn span::after {
	left: calc(100% - 32px);
	width: 30px;
	height: 1px;
	transition: width 0.3s;
	will-change: width;
	top: 50%;
}

.all-works__btn:hover::after,
.all-works__btn:hover::before {
	width: 50%;
}

.all-works__btn:hover span::before {
	transform: translateX(10px);
}

.all-works__btn:hover span::after {
	width: 40px;
}

.flow-fqa-sect {
	background: #FFFFFF;
	overflow: hidden;
}

.flow-fqa-link {
	width: 50%;
	padding: 60px 80px;
	height: 320px;
	position: relative;
	flex-direction: column;
	justify-content: center;
	z-index: 3;
}

.flow-fqa-link:hover {
	opacity: 1;
	z-index: 10;
}

.flow-fqa-link.flow::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 200px;
	background-color: #433f37;
	position: absolute;
	right: 0;
	top: 60px;
	opacity: 0.2;
}

.flow-fqa-link .moer-icon {
	right: 80px;
	top: 50%;
	transform: translateY(-50%);
}

.flow-fqa-link:hover .moer-icon {
	opacity: 0;
}

.flow-fqa-title {
	font-size: 36px;
	color: #433F37;
	letter-spacing: -4px;
	line-height: 46px;
}

.flow-fqa-title-cn {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 30px;
	margin-top: 10px;
}

.flow-fqa-sect .moer-icon {
	right: 80px;
	top: 50%;
	transform: translateY(-50%);
}

.flow-fqa-sect .flow-fqa-bg {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.3s, transform 0.5s;
	will-change: opacity, transform;
}

.flow-fqa-link:hover+.flow-fqa-bg {
	z-index: 8;
	opacity: 1;
	transform: scale(1.08);
}

.flow-fqa-link.flow:hover::after {
	opacity: 0;
}

.flow-fqa-bg img {
	display: block;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.flow-fqa-link:hover~.moer-icon {
	opacity: 1;
	z-index: 10;
}

.flow-fqa-link:hover~.moer-icon::after,
.flow-fqa-link:hover~.moer-icon::before {
	transform: rotate(0deg);
}

.modal {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: #F3F4F0;
	left: 0;
	top: 0;
	z-index: 101;
	display: none;
}

.modal.open {
	display: block;
}

.modal .header-r {
	position: absolute;
	right: 0;
	top: 0;
	padding: 23px 45px;
}

.modal-content,
.case-modal-con {
	height: 100%;
}

.case-modal-l {
	padding: 60px;
	background-color: #433F37;
	width: 36%;
	height: 100%;
}

.case-modal-r {
	padding-top: 80px;
	flex: 1;
	padding-bottom: 200px;
	padding-left: 60px;
	padding-right: 60px;
	position: relative;
}

.case-modal-l .case-tags {
	display: flex;
	gap: 10px;
	margin-top: 40px;
}

.case-modal-l .case-tags .tag {
	display: inline-block;
	padding: 6px 10px;
	border: 1px solid #ffffff;
	font-size: 12px;
	color: #ffffff;
	letter-spacing: 0;
	text-align: center;
}

.case-modal-l .case-info-list {
	margin-top: 30px;
}

.case-modal-l .case-info-list li {
	margin-bottom: 10px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(243, 244, 240, 0.2);
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

.case-modal-l .case-info-list li .left {
	opacity: 0.6;
	font-size: 14px;
	color: #F3F4F0;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.case-modal-l .case-info-list li .left img {
	width: 16px;
	margin-right: 10px;
}

.case-modal-l .case-info-list li .right {
	font-size: 14px;
	color: #F3F4F0;
	letter-spacing: 1px;
}

.case-des-info {
	padding-top: 80px;
	height: 100%;
	border-bottom: 1px solid #433F37;
	overflow: auto;
}

.case-des-info .case-des-title {
	padding-left: 30px;
	font-size: 24px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 32px;
	position: relative;
	margin-bottom: 20px;
}

.case-des-info .case-des-title::before {
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	top: 2px;
	width: 2px;
	height: 28px;
	background-color: #433F37;
}

.case-des-info p {
	opacity: 0.8;
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 30px;
	margin-bottom: 4px;
}

.case-des-info ul li {
	opacity: 0.8;
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 30px;
	margin-bottom: 4px;
	padding-left: 30px;
	position: relative;
}

.case-des-info ul li::before {
	content: "";
	display: block;
	position: absolute;
	left: 10px;
	top: 11px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #433F37;
	opacity: 0.8;
}

.case-footer-menu {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	width: 100%;
	padding: 40px 60px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.case-footer-menu .case-menu {
	width: 40%;
	max-width: 320px;
	height: 100px;
	background: #FFFFFF;
	display: flex;
	gap: 20px;
	position: relative;
	cursor: pointer;
}

.case-footer-menu .case-menu.hidden {
	display: none;
}

.case-footer-menu .case-menu .btn-z {
	width: calc(100% - 105px);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	font-size: 14px;
	color: #433F37;
	letter-spacing: 0;
	height: 22px;
}

.case-footer-menu .case-menu .btn-z small {
	/* è¶…è¿‡ä¸€è¡Œæ˜¾ç¤ºçœç•¥å· */
	width: 100%;
	display: inline-block;
	font-size: 14px;
	color: #433F37;
	letter-spacing: 0;
	height: 22px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.case-footer-menu .case-menu .btn-z span::before {
	right: 0;
}

.case-footer-menu .case-menu .btn-z span::after {
	left: calc(100% - 35px);
}

.case-footer-menu .case-menu.case-menu-l .btn-z span {
	padding-left: 40px;
	padding-right: 0;
	text-align: right;
}

.case-footer-menu .case-menu.case-menu-l .btn-z span::before {
	left: 0;
	right: unset;
}

.case-footer-menu .case-menu.case-menu-l .btn-z span::after {
	right: calc(100% - 35px);
	left: unset;
}

.case-footer-menu .case-menu.case-menu-l:hover .btn-z span::before {
	transform: translateX(-10px);
}

.case-footer-menu .case-menu.case-menu-r:hover .btn-z span::before {
	transform: translateX(10px);
}

.case-footer-menu .case-menu.case-menu-l:hover .btn-z span::after {
	width: 40px;
}

.case-footer-menu .case-menu.case-menu-r:hover .btn-z span::after {
	width: 40px;
}

.case-footer-menu .case-menu .btn-z::before {
	display: none;
}

.case-footer-menu .case-menu.case-menu-l .btn-z {
	left: -15px;
}

.case-footer-menu .case-menu.case-menu-r .btn-z {
	right: -15px;
}

.case-footer-menu .case-menu .case-cover {
	position: absolute;
	width: 45.3%;
	max-width: 145px;
}

.case-footer-menu .case-menu.case-menu-l .case-cover {
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
}

.case-footer-menu .case-menu.case-menu-r .case-cover {
	left: -40px;
	top: 50%;
	transform: translateY(-50%);
}

.sub-page-kv {
	margin-top: 40px;
	width: 100%;
	padding: 0 80px;
}

.sub-page-title-en {
	font-size: 60px;
	color: #433F37;
	letter-spacing: 12px;
	line-height: 80px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.sub-page-title-cn {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 1.71px;
}

.sub-page-banner-con {
	width: 100%;
	margin: 64px auto 0;
	padding: 0 60px;
	position: relative;
}

.crumbs,
.crumbs a {
	font-size: 12px;
	color: #433F37;
	letter-spacing: 1.28px;
	margin-top: 20px;
}

.scroll-bar {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	position: absolute;
	padding-left: 220px;
	transform: rotate(-90deg);
	bottom: 140px;
	left: -140px;
}

.scroll-bar::after {
	content: '';
	display: inline-block;
	width: 210px;
	height: 1px;
	background-color: #433F37;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.sub-page-banner-con .circle-logo {
	left: calc(50% - 40px);
}

.bg-fff {
	background-color: #FFFFFF;
}

.p-80 {
	padding: 80px;
}

.margin-30-minus {
	margin-top: -30px;
}

.contact-des {
	text-align: center;
	font-size: 16px;
	color: #433F37;
	letter-spacing: 1.6px;
}

hr {
	opacity: 0.2;
	color: #683900;
	margin: 20px 0;
	height: 1px;
}

.contact-us-con .tel {
	font-size: 24px;
	color: #433F37;
	letter-spacing: 2.4px;
	text-align: center;
	line-height: 32px;
	margin: 0;
}

.contact-us-con .open-time {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 1.6px;
	text-align: center;
	line-height: 32px;
}

.contact-form-con {
	padding-top: 60px;
	padding-bottom: 48px;
}

.form-hr {
	margin-bottom: 60px;
	opacity: 0.2;
	color: #683900;
	height: 1px;
}

.contact-form {
	width: 773px;
	margin: 0 auto;
}

.c-form-group {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}

.c-form-group.flex-v-s {
	align-items: flex-start;
}

.c-form-group.flex-v-s label {
	margin-top: 13px;
}

.c-form-group label {
	width: 124px;
	min-width: 124px;
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	position: relative;
}

.c-form-group label.star:after {
	content: "*";
	position: absolute;
	left: -10px;
	top: 0;
	color: #FF3B30;
	font-size: 16px;
}

.c-form-group .c-form-control {
	flex: 1;
}

textarea,
input {
	background: #FFFFFF;
	border: 1px solid rgba(104, 57, 0, 0.20);
	padding: 8px 15px;
	line-height: 30px;
	width: 100%;
	font-size: 16px;
	color: #683900;
	letter-spacing: 0;
}

input::placeholder {
	color: #999;
}

textarea {
	max-width: 100%;
	min-height: 64px;
	appearance: none;
	-webkit-appearance: none;
}

.submit-btn-div {
	margin-top: 40px;
	text-align: center;
}

.submit-btn {
	display: inline-block;
	cursor: pointer;
	border: 1px solid #683900;
	background: #eee;
	width: 400px;
	padding: 12px;
	font-size: 16px;
	color: #683900;
	letter-spacing: 0;
	text-align: center;
	-webkit-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
}

.submit-btn:hover {
	background-color: #683900;
	color: #FFFFFF;
}

@keyframes ani-move {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

.sect-about {
	position: relative;
}

.sect-about .right-bg-fff-1120 {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	z-index: 0;
}

.sect-about .left-bg-fff-1120 {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 0;
}

.left-bg-fff-1120,
.right-bg-fff-1120 {
	width: calc(100vw - (100vw - 1120px)/2 - 250px);
	background: #fff;
}

.about-us-con {
	padding: 100px 0;
	position: relative;
	gap: 70px;
}

.w500-h400 {
	width: 500px;
}

.about-us-des {
	flex: 1;
}

.about-us-des h2 {
	padding-left: 30px;
	font-size: 24px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 32px;
	position: relative;
	margin-bottom: 32px;
}

.about-us-des h2::before {
	content: "";
	display: block;
	position: absolute;
	left: 0px;
	top: 2px;
	width: 2px;
	height: 28px;
	background-color: #433F37;
}

.about-us-des p {
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 30px;
	margin-bottom: 32px;
}

.about-us-des p:last-child {
	margin-bottom: 0;
}

.case-tab-menu {
	padding: 0 80px;
	margin-bottom: 60px;
	gap: 20px;
}

.tab-menu-item {
	border: 1px solid #433F37;
	font-size: 14px;
	color: #4E463C;
	letter-spacing: 0;
	text-align: center;
	padding: 8px;
	min-width: 140px;
	cursor: pointer;
}

.tab-menu-item.active {
	color: #FFFFFF;
	background-color: #433F37;
}

.case-items.case-items1 {
	box-shadow: none;
	overflow: visible;
	margin: 0 20px 60px;
}

.case-items.case-items1 .case-item-cover {
	box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.05);
}

.case-items.case-items1 .case-info {
	position: relative;
	opacity: 1;
	height: auto;
	background: none;
	margin-top: 30px;
	padding: 0;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(104, 57, 0, 0.20);
}

.case-items.case-items1 .case-info .case-info-title {
	font-size: 18px;
	color: #433F37;
	letter-spacing: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	white-space: nowrap;
}

.case-items.case-items1 .case-info .case-info-des {
	font-size: 14px;
	color: #433F37;
	letter-spacing: 0;
	margin-top: 10px;
}

.faq-title {
	font-size: 40px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 64px;
	text-align: center;
}

.faq-list .faq-item {
	padding: 24px 20px;
	border-bottom: 1px solid rgba(104, 57, 0, 0.20);
}

.faq-list .faq-item:first-child {
	border-top: 1px solid rgba(104, 57, 0, 0.20);
}

.faq-list .faq-item .faq-question {
	position: relative;
	cursor: pointer;
}

.faq-list .faq-item .faq-question .faq-q {
	font-size: 18px;
	color: #433F37;
	letter-spacing: 0;
}

.faq-list .faq-item .faq-question .faq-q span {
	font-size: 24px;
	color: #8FC31F;
	letter-spacing: 0;
	margin-right: 20px;
}

.faq-list .faq-item .faq-answer {
	background: #FFFFFF;
	padding: 40px;
	display: none;
	margin-top: 24px;
}

.faq-question.open+.faq-answer {
	display: block;
}

.faq-list .faq-item .faq-answer p {
	opacity: 0.8;
	font-size: 16px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 30px;
}

.moer-icon.moer-icon-green {
	right: 0;
	top: -2px;
	width: 30px;
	height: 30px;
	border: 1px solid #8FC31F;
	cursor: pointer;
}

.moer-icon.moer-icon-green::before {
	width: 15px;
	margin-left: -7px;
	background: #8FC31F;
}

.moer-icon.moer-icon-green::after {
	height: 15px;
	margin-top: -7px;
	background: #8FC31F;
}

.open .moer-icon.moer-icon-green {
	background: #8FC31F;
}

.open .moer-icon.moer-icon-green::before {
	background: #FFFFFF;
}

.open .moer-icon.moer-icon-green::after {
	transform: rotate(-90deg);
	background: #FFFFFF;
}

.sect-flow1 {
	gap: 30px;
}

.sect-flow2 {
	height: 480px;
}

.sect-flow1 .flow-link {
	width: 430px;
	height: 160px;
	border: 1px solid #433F37;
	text-align: center;
	padding-top: 27px;
}

.flow-icon1 {
	width: 66px;
	margin-top: -4px;
}

.flow-icon2 {
	width: 74px;
}

.sect-flow1 .flow-link {
	position: relative;
}

.sect-flow1 .flow-link p {
	font-size: 14px;
	color: #4E463C;
	letter-spacing: 0;
	text-align: center;
	margin-top: 8px;
	line-height: 20px;
}

.sect-flow1 .flow-link::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: calc(50% - 2px);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	transition: transform 0.3s;
	will-change: transform;
	bottom: 20px;
	background-color: #433f37;
}

.sect-flow1 .flow-link::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	width: 1px;
	height: 30px;
	transition: height 0.3s;
	will-change: height;
	top: calc(100% - 50px);
	background-color: #433f37;
}

.sect-flow1 .flow-link:hover::before {
	transform: translateY(10px);
}

.sect-flow1 .flow-link:hover::after {
	height: 40px;
}

.sect-flow-team .p-100 {
	padding: 100px;
}

.sect-flow-team {
	padding: 0 20px;
}

.team-p-item img {
	width: auto;
	height: 160px;
}

.team-p-item .tt {
	font-size: 18px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 26px;
	margin-top: 24px;
}

.team-p-item .dd {
	opacity: 0.8;
	font-size: 14px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 22px;
	margin-top: 8px;
}

.sect-flow-process {
	padding: 0 20px;
}

.sect-flow-process .bg-fff {
	padding: 86px 56px 100px;
}

.process-con {
	gap: 56px;
	flex-wrap: wrap;
}

.process-item {
	width: calc(50% - 28px);
	padding-bottom: 28px;
	padding-top: 14px;
	border-bottom: 1px solid rgba(104, 57, 0, 0.20);
}

.process-item span {
	display: inline-block;
	font-size: 100px;
	width: 80px;
	line-height: 86px;
	letter-spacing: 10px;
	-webkit-text-stroke: 1px rgba(104, 57, 0, 0.20);
	color: transparent;
	margin-right: 8px;
}

.process-item .tt {
	font-size: 18px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 26px;
}

.process-item .dd {
	opacity: 0.8;
	font-size: 14px;
	color: #433F37;
	letter-spacing: 0;
	line-height: 22px;
	margin-top: 8px;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

@media only screen and (max-width:1240px) {

	.sub-page-kv,
	.main-kv {
		padding: 0 50px;
	}

	.sub-page-banner-con {
		padding-right: 0;
	}

	.case-tab-menu {
		padding: 0 50px;
	}

	.case-list__con {
		padding: 0 30px;
	}

	.left-bg-fff {
		padding-left: 50px;
	}
}

@media only screen and (max-width:1180px) {

	.sub-page-kv,
	.main-kv {
		padding: 0 30px;
	}

	.sub-page-banner-con {
		padding-right: 0;
	}

	.wrap-1040,
	.wrap-1120 {
		padding: 0 20px;
		min-width: 100%;
	}

	.logos-list img {
		height: 56px;
	}

	.gap-80 {
		gap: 50px;
	}

	.sect-mt-212 {
		margin-top: 180px;
	}

	.w-full-l {
		width: 100%;
		padding-right: 100px;
	}

	.w-full-r {
		width: 100%;
		padding-left: 100px;
	}

	.right-bg-fff,
	.left-bg-fff {
		padding: 120px 0;
		padding-left: 50px;
	}

	.right-bg-fff .wrap-1120 {
		margin-left: -120px;
	}

	.right-bg-fff .posi-rel,
	.left-bg-fff .posi-rel {
		width: calc(100% + 70px);
	}

	.right-bg-fff .left-img .posi-rel,
	.left-bg-fff .left-img .posi-rel {
		width: 100%;
	}

	.posi-rel.gap-100 {
		gap: 40px;
	}

	.title-hollow {
		font-size: 80px;
		top: -175px;
	}

	.satisfy-sect1 .gap-80 {
		gap: 10px;
	}

	.sect-title {
		font-size: 64px;
	}

	.case-list__con {
		padding: 0 15px;
	}

	.case-tab-menu {
		padding: 0 25px;
	}

	.case-items {
		width: calc(33.3333% - 20px);
		margin: 0 10px 20px;
	}

	.case-items.case-items1 {
		width: calc(33.3333% - 20px);
		margin: 0 10px 40px;
	}

	.left-bg-fff-1120,
	.right-bg-fff-1120 {
		width: calc(100vw - 200px);
	}

	.w500-h400 {
		width: 400px;
	}

	.about-us-con {
		gap: 30px;
		padding: 60px 0;
	}
}

@media only screen and (max-width:1000px) {
	.logos-list img {
		height: 40px;
	}

	.m-logo-swiper .swiper-slide {
		height: 80px !important;
	}

	.m-logo-swiper::before {
		height: 80px;
		bottom: 0px;
	}

	.m-logo-swiper::after {
		height: 60px;
		bottom: calc(80px + 0px);
	}

	.m-logo-swiper .swiper {
		padding: 60px 0 0;
	}

	.w480-h600 {
		width: 350px;
		height: auto;
	}

	.left-txt .left-txt1 {
		font-size: 30px;
	}

	.left-txt .left-txt2 {
		font-size: 14px;
	}

	.w576-h384 {
		width: 450px;
		height: auto;
	}

	.w420-h560 {
		width: 350px;
		height: auto;
	}

	.satisfy-btn-group {
		padding: 30px 30px 54px;
	}

	.title-hollow {
		font-size: 68px
	}

	.info-item {
		width: 100%;
	}

	.case-items {
		width: calc(50% - 20px);
	}

	.addr-list {
		padding-left: 55%;
	}
}

.case-modal .logo {
	display: none;
}

@media only screen and (max-width:900px) {
	.wj-slogan {
		font-size: 40px;
	}

	.sect-title {
		font-size: 48px;
	}

	.contact-form {
		width: 80%;
	}

	.case-modal-con.flex {
		flex-direction: column;
		overflow-y: auto;
	}

	.case-modal .logo {
		display: block;
	}

	.case-modal .header-contact-us {
		display: none;
	}

	.case-modal-l {
		width: 100%;
		padding: 104px 30px 48px;
	}

	.case-modal-r {
		width: 100%;
		padding-top: 56px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.modal .header-r {
		width: 100%;
		justify-content: space-between;
	}

	.case-des-info {
		padding-top: 0;
		padding-bottom: 30px;
	}

	.case-modal .hamburger::before {
		background: #FFFFFF;
	}

	.case-modal .hamburger::after {
		background: #FFFFFF;
	}

	.modal .header-r {
		padding: 20px 15px;
	}

	.sect-flow-team .p-100 {
		padding: 48px 15px;
	}

	.sect-flow-team .gap-60 {
		gap: 15px;
		row-gap: 24px;
		flex-wrap: wrap;
	}

	.team-p-item {
		width: calc(25% - 12px);
	}
}

@media only screen and (max-width:1120px) {
	.wrap-1120 {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
}

@media only screen and (max-width:1040px) {
	.wrap-1040 {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
}

@media only screen and (max-width:768px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	.wrap-1040,
	.wrap-1120 {
		padding: 0;
	}

	.header-contact-us {
		display: none;
	}

	.main-kv {
		/* margin-top: 40px; */
		padding: 0 15px;
	}

	.wj-slogan {
		font-size: 32px;
		letter-spacing: 2.67px;
	}

	.main-kv-slider {
		margin: 0 -15px;
		margin-top: 40px;
	}

	.circle-logo {
		width: 40px;
		height: 40px;
		left: 5px;
		top: -20px;
	}

	.circle-logo.circle-logo-holl {
		width: 48px;
		height: 48px;
		left: -10px;
		top: -24px;
	}

	.m-index-swiper .mainkv-swiper {
		padding-bottom: 13px;
	}

	.title-xl-en span {
		font-size: 40px;
		color: #433F37;
		letter-spacing: -2px;
		line-height: 48px;
	}

	.title-xs-cn {
		font-size: 14px;
		color: #433F37;
		letter-spacing: 0;
		line-height: 24px;
	}

	.footer {
		margin-top: 72px;
	}

	.title-s {
		padding-bottom: 76px;
	}

	.contact-us-ft {
		padding: 0 15px;
	}

	.contact-us-bg {
		padding: 80px 25px;
		height: auto;
	}

	.contact-us-bg .flex {
		flex-direction: column;
		align-items: center;
		gap: 56px;
	}

	.addr-list {
		padding-left: 0;
		padding-top: calc(((100vw - 30px) * 0.591) + 40px);
	}

	.addr-list li img {
		width: 100%;
		max-width: 100%;
	}

	.addr-list li {
		padding-left: 16px;
		margin-bottom: 24px;
	}

	.addr-list li .location::before {
		width: 8px;
		height: 8px;
		left: -16px;
	}

	.addr-list li .location {
		font-size: 16px;
		letter-spacing: 0;
		margin-bottom: 12px;
		line-height: 22px;
	}

	.addr-list li .addr {
		font-size: 12px;
		letter-spacing: 0;
		line-height: 20px;
	}

	.flow-fqa-link {
		padding: 40px 15px;
		height: auto;
	}

	.flow-fqa-title {
		font-size: 18px;
		letter-spacing: -2px;
		line-height: 26px;
	}

	.flow-fqa-title-cn {
		font-size: 12px;
		letter-spacing: 0;
		line-height: 20px;
		margin-top: 8px;
	}

	.flow-fqa-link.flow::after {
		height: 64px;
		top: 40px;
	}

	.moer-icon {
		width: 32px;
		height: 32px;
	}

	.moer-icon::before {
		width: 15px;
		margin-left: -7px;
	}

	.moer-icon::after {
		height: 15px;
		margin-top: -7px;
	}

	.flow-fqa-sect .moer-icon {
		right: 15px;
	}

	.sect-mt-120 {
		margin-top: 72px;
	}

	.case-tab-menu {
		padding: 0 15px;
		margin-bottom: 40px;
		gap: 8px;
	}

	.tab-menu-item {
		padding: 4px 16px;
		min-width: unset;
		font-size: 12px;
		letter-spacing: 0;
		text-align: center;
		line-height: 20px;
	}

	.case-list__con {
		padding: 0px 7px;
		margin-top: 24px;
	}

	.case-items {
		width: calc(33.333% - 16px);
		margin: 0 8px 16px;
	}

	.all-works__btn {
		margin-top: 25px;
		padding: 24px;
		width: calc(100% - 16px);
	}

	.all-works__btn span {
		font-size: 16px;
		letter-spacing: 1.6px;
	}

	.all-works__btn:hover::after,
	.all-works__btn:hover::before {
		width: 100%;
	}

	.sect-mt-212 {
		margin-top: 163px;
	}

	.right-bg-fff {
		padding: 80px 0 56px 0;
	}

	.left-bg-fff {
		padding: 80px 0 56px 0;
	}

	.title-hollow {
		font-size: 50px;
		letter-spacing: 5px;
		text-align: right;
		line-height: 58px;
		top: -172px;
	}

	.title-hollow {
		left: 15px;
		right: unset;
		text-align: left;
	}

	.title-hollow-left {
		right: 15px;
		left: unset;
		text-align: right;
	}

	.posi-sticky {
		position: relative;
		top: 0;
	}

	.w-full-r {
		width: calc(100vw - 70px);
		padding-left: 0;
	}

	.w-full-l {
		width: calc(100vw - 70px);
		padding-right: 0;
	}

	.right-bg-fff .posi-rel.flex {
		flex-direction: column-reverse;
		margin-left: -55px;
		width: calc(100% + 55px);
	}

	.left-bg-fff .posi-rel.flex {
		flex-direction: column;
		margin-right: -70px;
		padding-left: 15px;
	}

	.gap-100 {
		gap: 56px;
	}

	.right-bg-fff .wrap-1120 {
		margin-left: 0;
	}

	.w420-h560 {
		width: calc(100% - 15px);
		height: calc(100vw * 0.74);
	}

	.info-item {
		width: 100%;
		margin-top: 24px;
	}

	h5 {
		font-size: 14px;
		line-height: 24px;
	}

	h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.sub-title {
		margin-bottom: 3px;
	}

	.info-list {
		margin-top: 0;
	}

	.info-item .category-service {
		opacity: 0.8;
		font-size: 12px;
		letter-spacing: 1.2px;
	}

	.info-item p {
		width: 73.6%;
		letter-spacing: -0.4px;
		text-align: justify;
	}

	.info-item p br {
		display: none;
	}

	p {
		font-size: 14px;
		line-height: 24px;
	}

	.sect-title-sp {
		display: flex;
		height: 63px;
		font-size: 50px;
		letter-spacing: 5px;
		width: auto;
		max-width: none;
		will-change: transform;
		transform: translateX(0);
		animation: ani-move 200s linear infinite both;
	}

	.sect-title-sp span {
		display: inline-block;
		white-space: nowrap;
	}

	.sect-title-sp span+span {
		margin-left: 0.5em;
	}

	.sect-i-1 {
		padding-top: 87px;
		overflow: hidden;
	}

	.satisfy-sect1.flex {
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		gap: 56px;
		padding: 0 15px;
	}

	.satisfy-sect1 .flex.left-txt {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
	}

	.w576-h384,
	.w480-h600 {
		width: 100%;
		height: calc(100vw * 0.74);
	}

	.left-txt .left-txt1 {
		font-size: 28px;
		line-height: 42px;
	}

	.left-txt .left-txt2 {
		font-size: 14px;
		letter-spacing: 0;
		line-height: 24px;
	}

	.gap-80 {
		gap: 24px;
	}

	.satisfy-sect1 .gap-80 {
		gap: 24px;
	}

	.satisfy-sect2.flex {
		margin-top: 56px;
		flex-direction: column;
		padding: 0 15px;
	}

	.scroll-img img {
		margin-top: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.satisfy-btn-group {
		margin-top: 24px;
		padding: 10px 40px 24px;
		width: 100%;
	}

	.satisfy-btn-group .btn-z:first-child {
		margin-bottom: 0;
	}

	.btn-z {
		font-size: 14px;
		letter-spacing: 0;
		line-height: 24px;
		padding: 15px 0;
	}

	.sect-mt-80 {
		margin-top: 72px;
	}

	.logos-list img {
		height: 40px;
	}

	.m-logo-swiper .swiper-slide {
		height: 60px !important;
	}

	.m-logo-swiper::before {
		height: 60px;
		bottom: 50px;
	}

	.m-logo-swiper::after {
		height: 60px;
		bottom: calc(60px + 50px);
	}

	.m-logo-swiper .swiper {
		padding: 50px 0;
	}

	.sub-page-kv {
		padding: 0 0 0 15px;
	}

	.sub-page-title-en {
		font-size: 40px;
		color: #433F37;
		letter-spacing: 8px;
		line-height: 48px;
		margin-bottom: 8px;
	}

	.sub-page-title-cn {
		font-size: 14px;
		color: #433F37;
		letter-spacing: 0;
		line-height: 24px;
	}

	.sub-page-banner-con {
		margin-top: 40px;
		padding: 0 0 0 35px;
	}

	.scroll-bar {
		font-size: 12px;
		letter-spacing: 0;
		line-height: 20px;
		padding-left: 180px;
		left: -110px;
		bottom: 148px;
	}

	.scroll-bar::after {
		width: 170px;
	}

	.crumbs {
		margin-left: -35px;
		margin-top: 24px;
	}

	.sub-page-banner-con .circle-logo {
		width: 64px;
		height: 64px;
		top: -32px;
		left: calc(50% - 8px);
	}

	.sp-sect-con {
		padding: 0 15px;
	}

	.sp-sect-con .p-80 {
		padding: 48px 15px;
	}

	.contact-us-con .tel {
		font-size: 18px;
		letter-spacing: 0;
	}

	.contact-us-con .open-time {
		font-size: 14px;
		letter-spacing: 0;
	}

	hr {
		margin: 16px 0;
	}

	.contact-des {
		font-size: 14px;
		letter-spacing: 0;
		line-height: 24px;
	}

	.contact-form-con {
		padding-top: 48px;
	}

	.form-hr {
		margin-bottom: 48px;
	}

	.contact-form {
		padding: 0 15px;
		width: 100%;
	}

	.submit-btn {
		width: 100%;
		max-width: 400px;
	}

	.c-form-group label {
		width: 92px;
		min-width: 92px;
		font-size: 14px;
		letter-spacing: 0;
		line-height: 24px;
		padding-left: 10px;
	}

	.c-form-group label.star:after {
		left: 0;
	}

	.c-form-group.flex-v-s label {
		margin-top: 10px;
	}

	textarea,
	input {
		line-height: 26px;
		font-size: 14px;
		padding: 8px 10px;
	}

	.flat .selected {
		line-height: 26px;
		height: 26px;
		font-size: 14px;
	}

	.left-bg-fff-1120,
	.right-bg-fff-1120 {
		width: calc(100vw - 70px);
	}

	.sect-about1 .about-us-con {
		flex-direction: column;
		gap: 56px;
		padding: 56px 15px;
	}

	.sect-about2 .about-us-con {
		flex-direction: column-reverse;
		gap: 56px;
		padding: 56px 15px;
	}

	.w500-h400 {
		width: 100%;
	}

	.about-us-des h2 {
		font-size: 18px;
		color: #433F37;
		letter-spacing: 0;
		line-height: 24px;
		padding-left: 24px;
		margin-bottom: 16px;
	}

	.about-us-des h2::before {
		height: 20px;
	}

	.about-us-des p {
		font-size: 14px;
		letter-spacing: 0;
		line-height: 24px;
		margin-bottom: 24px;
	}

	.case-items.case-items1 .case-info .case-info-title {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 22px;
	}

	.case-items.case-items1 .case-info .case-info-des {
		font-size: 12px;
		letter-spacing: 0;
		line-height: 20px;
		margin-top: 4px;
	}

	.case-items.case-items1 .case-info {
		margin-top: 24px;
		padding-bottom: 18px;
	}

	.faq-title {
		font-size: 28px;
		letter-spacing: 0;
		line-height: 42px;
	}

	.faq-list .faq-item {
		padding: 21px 16px;
	}

	.faq-list .faq-item .faq-question .faq-q {
		font-size: 16px;
		letter-spacing: 0;
	}

	.faq-list .faq-item .faq-question .faq-q span {
		font-size: 18px;
		letter-spacing: 0;
		margin-right: 8px;
	}

	.faq-list .faq-item .faq-answer {
		padding: 16px;
		margin-top: 16px;
	}

	.faq-list .faq-item .faq-answer p {
		font-size: 14px;
		letter-spacing: 0;
		line-height: 24px;
	}

	.moer-icon.moer-icon-green {
		right: 0;
		top: 0px;
		width: 24px;
		height: 24px;
		border: 1px solid #8FC31F;
		cursor: pointer;
	}

	.moer-icon.moer-icon-green::before {
		width: 13px;
		margin-left: -6px;
	}

	.moer-icon.moer-icon-green::after {
		height: 13px;
		margin-top: -6px;
	}

	.sect-flow1 {
		gap: 15px;
		padding: 0 15px;
	}

	.sect-flow2 {
		height: calc(100vw * 0.333);
	}

	.sect-flow1 .flow-link {
		width: calc(50% - 7px);
		height: 126px;
		border: 1px solid #433F37;
		text-align: center;
		padding-top: 20px;
	}

	.flow-icon1 {
		width: 46px;
		margin-top: -3px;
	}

	.flow-icon2 {
		width: 52px;
	}

	.sect-flow1 .flow-link {
		position: relative;
	}

	.sect-flow1 .flow-link::before {
		bottom: 16px;
	}

	.sect-flow1 .flow-link::after {
		height: 24px;
		top: calc(100% - 40px);
	}

	.sect-flow1 .flow-link:hover::after {
		height: 34px;
	}

	.sect-flow-team {
		padding: 0 15px;
	}

	.team-p-item img {
		width: auto;
		height: 134px;
	}

	.team-p-item .tt {
		font-size: 16px;
		line-height: 22px;
		margin-top: 16px;
	}

	.team-p-item .dd {
		font-size: 12px;
		line-height: 20px;
		margin-top: 4px;
	}

	.sect-flow-process {
		padding: 0 15px;
	}

	.sect-flow-process .bg-fff {
		padding: 64px 30px 48px;
	}

	.process-con {
		gap: 40px;
		flex-wrap: wrap;
	}

	.process-item {
		width: 100%;
		padding-bottom: 18px;
		padding-top: 0px;
		align-items: center;
	}

	.process-item span {
		font-size: 72px;
	}

	.process-item .tt {
		font-size: 16px;
		line-height: 26px;
	}

	.process-item .dd {
		font-size: 14px;
		line-height: 24px;
		margin-top: 4px;
	}
}

@media only screen and (max-width:600px) {
	.case-items {
		width: calc(50% - 16px);
		margin: 0 8px 16px;
	}

	.case-items.case-items1 {
		width: calc(50% - 16px);
		margin: 0 8px 40px;
	}

	.logos-list img {
		height: 28px;
	}

	.logos-list {
		gap: 8px;
	}

	.case-modal-l .case-tags {
		margin-top: 24px;
	}

	.case-modal-l .case-info-list li {
		padding: 8px 0;
		margin-bottom: 8px;
		gap: 32px;
	}

	.case-modal-l .case-info-list li .left img {
		width: 14px;
		margin-right: 12px;
	}

	.case-modal-l .case-info-list li .left {
		font-size: 12px;
		letter-spacing: 0;
		line-height: 20px;
	}

	.case-modal-l .case-info-list li .right {
		font-size: 12px;
		letter-spacing: 0;
		line-height: 20px;
	}

	.case-des-info .case-des-title {
		font-size: 18px;
		letter-spacing: 0;
		line-height: 24px;
		padding-left: 24px;
	}

	.case-des-info .case-des-title::before {
		height: 20px;
	}

	.case-des-info p {
		font-size: 14px;
		letter-spacing: 0;
		line-height: 24px;
	}

	.case-footer-menu {
		padding: 32px 32px 0;
		align-items: flex-start;
	}

	.case-footer-menu .case-menu {
		height: 84px;
		min-width: 136px;
	}

	.case-footer-menu .case-menu .btn-z span {
		height: 20px;
	}

	.case-footer-menu .case-menu .btn-z small {
		display: none;
	}

	.case-footer-menu .case-menu.case-menu-l .case-cover {
		width: 110px;
		right: -12px;
	}

	.case-footer-menu .case-menu.case-menu-r .case-cover {
		width: 110px;
		left: -12px;
	}

	.team-p-item {
		width: calc(50% - 8px);
	}
}


/*wangjun 0321*/

.flowfaqgp {
	display: flex;
	background: white;
	margin-bottom: 20px;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.flowfaqgp .fcol {
	padding: 60px 80px;
	height: 320px;
	width: 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flowfaqgp .fcol .ral {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.flowfaqgp .flline {
	background: #ccc;
	width: 1px;
	height: 200px;
	overflow: hidden;
}

.flowfaqgp .fcol .flowbg,
.flowfaqgp .fcol .faqbg {
	transition: transform 0.5s, opacity 0.5s;
}

.flioc {
	border: 1px solid #433F37;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: block;
	transition: opacity 0.3s;
	will-change: opacity;
	position: relative;
}

.flioc::before {
	content: "";
	display: block;
	position: absolute;
	background-color: #FFFFFF;
	transform: rotate(-180deg);
	transition: transform 0.3s;
	will-change: transform;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 1px;
	margin-left: -9px;
}

.flioc::after {
	content: "";
	display: block;
	position: absolute;
	background-color: #FFFFFF;
	transform: rotate(-180deg);
	transition: transform 0.3s;
	will-change: transform;
	top: 50%;
	left: 50%;
	height: 19px;
	width: 1px;
	margin-top: -9px;
}

.flioc-deep::before {
	background-color: #433F37;
}

.flioc-deep::after {
	background-color: #433F37;
}

.flowfaqgp a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

@media only screen and (min-width:769px) {
	.flowfaqgp .fcol:hover {
		position: absolute;
		left: 0;
		z-index: 10;
		width: 100%;
		height: 100%;
	}

	.flowfaqgp .fcol.flow:hover .flowbg {
		display: block;
		background: url(/images/flow.png) left center;
		background-size: cover;
		transform: scale(1.08);
		opacity: 1;
		z-index: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
	}

	.flowfaqgp .fcol.faq:hover .faqbg {
		display: block;
		background: url(/images/faq.png) left center;
		background-size: cover;
		transform: scale(1.08);
		opacity: 1;
		z-index: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
	}

	.flowfaqgp .fcol:hover .ral {
		position: relative;
		z-index: 1000
	}

	.flowfaqgp .fcol:hover .flioc-deep::before,
	.flowfaqgp .fcol:hover .flioc-deep::after {
		transform: rotate(0);
	}

	.flowfaqgp .fcol.faq:hover .ral {
		position: absolute;
		width: 50%;
		left: 50%;
		padding: 60px 80px;
	}
}

@media only screen and (max-width:768px) {
	.case-items .case-info {
		padding: 25px 30px 0;
	}

	.case-items .case-info .case-info-category {
		position: static;
	}

	.flow-fqa-link {
		display: block
	}

	.flow-fqa-link.sp-flow-bg {
		background: url(/images/flow.png) no-repeat center;
		background-size: cover
	}

	.flow-fqa-link.sp-fqa-bg {
		background: url(/images/faq.png) no-repeat;
		background-size: cover
	}

	.flow-fqa-link.flow::after {
		display: none;
	}

	.flow-fqa-sect .flow-fqa-bg {
		display: none;
	}

	.flow-fqa-link:hover+.flow-fqa-bg {
		display: none;
	}

	.flow-fqa-link:hover .moer-icon {
		opacity: 1;
	}

	.flow-fqa-link:hover~.moer-icon::after,
	.flow-fqa-link:hover~.moer-icon::before {
		display: none;
	}

	.flowfaqgp .flline {
		display: none;
	}

	.flowfaqgp .fcol {
		padding: 40px 15px;
		height: inherit;
	}

	.flioc {
		width: 32px;
		height: 32px;
	}

	.flowfaqgp .fcol.flow {
		background: url(/images/flow.png) no-repeat center;
		background-size: cover
	}

	.flowfaqgp .fcol.faq {
		background: url(/images/faq.png) no-repeat;
		background-size: cover
	}

	.wj-slogan span {
		display: block
	}
}

.icp a {
	color: #433F37;
	text-decoration: underline
}