@charset "utf-8";

body {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft JhengHei', 'LiSu', Arial, Helvetica, sans-serif;
	font-style: normal;
	font-size: 15px;
	color: #222;
	background-color: #fff;
}

ul {
	list-style: none;
}

a {
	--bs-link-color: #b29170;
	--bs-link-hover-color: #d9b189;
	text-decoration: none;
}
.editor {overflow: hidden;}
.editor img {display: inline-block;max-width: 100%!important;height: auto!important;}
.editor iframe {max-width: 100%;}
.editor table {max-width: 100%!important;}
.header-box {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 10px;
}

@media (min-width:1400px) {
	.header-box {
		max-width: 1820px;
		padding: 0 50px;
	}
}

.header {
	width: 100%;
	height: auto;
	background-color: #fff;
	border-bottom: 1px solid #eee;
	z-index: 999;
}

.header-top {
	background-color: #85393a;
}

.header-top-inner {
	padding: 5px 0;
	display: flex;
	flex-direction: column-reverse;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

@media (min-width:768px) {
	.header-top-inner {
		padding: 10px 0;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}
}

.header-top-left {
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-align: left;
}

@media (min-width:768px) {
	.header-top-left {
		font-size: 16px;
		text-align: left;
	}
}

.header-top-right {
	display: none;
}

@media (min-width:768px) {
	.header-top-right {
		display: block;
	}

}

.header-top-right a {
	margin: 0 8px;
}

.header-top-right a:last-child {
	margin-right: 0;
}

.header-top-right .fa {
	color: #fff;
	font-size: 18px;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-right {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 180px;
}
.header-right-box img{
	height: 30px;
}
@media (min-width: 768px) {
	.header-right-box img{
		height: auto;
	}
	.header-right{
		max-width: 100%;
	}
}
.header-right-box .member img{
	height: auto;
}
.header-right-box{
	display: flex;
	align-items: center;
	height: 100%;
}

.search{
	/*display: none;*/
	position: relative;
	height: 100%;
	padding: 0;
	padding: 10px 0;
}

@media (min-width:520px) {
	.search{
		position: relative;
		height: 100%;
		padding: 0;
		padding: 24px 0;
		display: block;
	}
}

@media (min-width:992px) {
	.search{
		padding: 34px 0;
	}
}

.search-img{
	display: block;
}

.search-box {
	display: none;
	position: absolute;
	top: 100%;
	right: -200%;
	height: auto;
	padding: 0 0 0 10px;
	background-color: #fff;
	border: 1px solid #eee;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	z-index: 99999;
}
@media (min-width: 768px) {
	.search-box {
		right: -5px;
	}
}
.search-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.search-box input {
	min-width: 180px;
	border: none;
	padding: 4px 10px;
}

.search-box .fa {
	background-color: #85393a;
	padding: 0 10px;
	color: #fff;
	display: block;
	padding: 14px;
	z-index: 999;
}

.mobile-search{
	display: flex !important;
	align-items: center;
}

.mobile-search input{
	border: 0;
	height: 28px;
}

.mobile-search span{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	width: 28px;
	background-color: #fff;
}

.mobile-search .fa{ 
	padding: 0;
	color: #222;
}


/*.shop {
	display: none;
}*/

@media (min-width:520px) {
	.shop {
		display: block;
		/*margin: 0 15px;*/
		position: relative;
	}
}

.shop-img {
	display: block;
}

.shop-in {
	position: absolute;
	top: 0;
	right: 0;
	width: 14px;
	height: 14px;
	background-color: #85393a;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	color: #fff;
}

.member {
	/*display: none;*/
}

@media (min-width:520px) {
	.member {
		display: block;
		overflow: hidden;
		position: relative;
		z-index: 1;
		transition: all ease .4s;
	}
}

.member::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -100px;
	display: block;
	width: 60px;
	height: 140px;
	background-color: rgba(255, 255, 255, .1);
	transform: rotate(25deg);
	z-index: 0;
	transition: all ease .4s;
}

.member-box {
	color: #fff;
	display: flex;
	align-items: center;
	padding: 6px 6px;
	background-color: #c7a37e;
	border-radius: 30px;
}
@media (min-width: 768px) {
	.member-box {
		padding: 8px 20px;
	}
}
.member-box i,.member-box a {
	font-size: 16px;
	color: #fff;
	font-style: normal;
	font-weight: bold;
	/*margin-left: 10px;*/
}

@media (min-width:992px) {
	.member-box i {
		font-size: 18px;
	}
}

.member:hover::before {
	left: 200px;
	transition: all ease .4s;
}

.logo {
	display: flex;
	align-items: center;
	margin: 10px 0;
}

@media (min-width:992px) {
	.logo {
		margin: 15px 0;
	}
}

.logo-box {
	width: auto;
	height: 50px;
}

@media (min-width:768px) {
	.logo-box {
		height: 66px;
	}
}

@media (min-width:1024px) {
	.logo-box {
		height: 76px;
	}
}

@media (min-width:1400px) {
	.logo-box {
		height: 86px;
	}
}

#header.active{
	position: fixed;
	transition: all ease .4s;
}

#header.active .header-top{
	display: none;
	transition: all ease .4s;
}


/*nav*/

.nav-box {
	display: flex;
	height: 100%;
}

.box-menu {
	display: none;
}

.mobile-menu-btn {
	display: block;
}

@media (min-width:1246px) {
	.box-menu {
		display: block;
	}

	.mobile-menu-btn {
		display: none;
	}
}

.menu {
	display: flex;
	height: 100% !important;
}

.box-menu li {
	position: relative;
	display: flex;
	height: 100%;
}

.box-menu>ul>li {
	/* padding: 0 5px; */
}

.box-menu>ul>li:last-child {
	padding-right: 0;
}

.box-menu>ul>li>a {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 45px 5px;
}

@media(min-width: 992px) {
	.box-menu>ul>li>a {}
}

@media(min-width: 1200px) {
	.box-menu>ul>li>a {
		padding: 38px 8px;
	}
}

@media(min-width: 1400px) {
	.box-menu>ul>li>a {
		padding: 45px 10px;
	}
}

@media (min-width:1700px) {
	.box-menu>ul>li>a {
		padding: 45px 15px;
	}
}

.box-menu>ul>li.dropdown:after {
	/* border: 8px solid transparent;
  border-top: 8px solid #c7c7c7; */
	width: 0;
	height: 0;
	position: absolute;
	bottom: 0;
	content: '';
	left: 50%;
	margin-left: -4px;
}

.box-menu>ul>li:last-child>a {}

.box-menu>ul {
	margin-bottom: 0;
}

.box-menu>ul>li {
	text-align: center;
	float: left;
	position: relative;
	transition: all 0.6s;
	-moz-transition: all 0.6s;
	-webkit-transition: all 0.6s;
}

.box-menu>ul>li.active,
.box-menu>ul>li.selected,
.box-menu>ul>li:hover {}

.box-menu>ul>li>a>span {
	height: 100%;
	font-size: 17px;
	color: #000;
	position: relative;
	width: 100%;
	font-weight: bold;
	display: flex;
	justify-content: center;
	z-index: 1;
}

@media(min-width: 1200px) {
	.box-menu>ul>li>a>span {
		font-size: 18px;
	}
}

@media(min-width: 1500px) {
	.box-menu>ul>li>a>span {
		font-size: 19px;
	}
}

.box-menu>ul>li>a>span::after {
	content: '';
	position: absolute;
	bottom: -10px;
	width: 64px;
	height: 28px;
	background: url(../images/nav-acv.png) no-repeat center;
	z-index: -1;
	opacity: 0;
}

/* .box-menu>ul>li.active>a,
.box-menu>ul>li.selected>a,
.box-menu>ul>li:hover>a {
	color: #ac5b26;
} */

.box-menu>ul>li.active>a>span,
.box-menu>ul>li.selected>a>span,
.box-menu>ul>li:hover>a>span {
	color: #222222;
}

.box-menu>ul>li.active>a>span::after,
.box-menu>ul>li.selected>a>span::after,
.box-menu>ul>li:hover>a>span::after {
	opacity: 1;
}

.box-menu>ul>li>ul {
	position: absolute;
	top: 100%;
	left: -5px;
	z-index: 99999;
	background-color: #fff;
	opacity: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	pointer-events: none;
	filter: alpha(opacity=0);
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

@media(min-width: 1600px) {
	.box-menu>ul>li>ul {
		left: 5px;
	}
}

.box-menu>ul>li>ul:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #c7a37e;
}

.box-menu>ul>li>a>span:hover>ul {
	opacity: 1;
}

.box-menu>ul>li ul li {
	text-align: left;
	border-bottom: solid 1px #fafafa;
}

.box-menu>ul>li ul li:last-child {
	border-bottom: none;
}

.box-menu>ul>li ul li a {
	/*min-width: 140px;*/
	width: 100%;
	white-space: nowrap;
	color: #252525;
	padding-left: 20px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.box-menu>ul>li ul li:last-child a {
	border-bottom: none;
}

.box-menu>ul>li ul li a:hover,
.box-menu>ul>li ul li a.active {
	color: #fff;
	background-color: #c7a37e;
}

.box-menu>ul>li.selected>ul {
	/* display: block; */
	opacity: 1;
	filter: alpha(opacity=100);
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

/*  */
.mobile-inner {
	display: block !important;
}

@media (min-width:520px) {
	.mobile-inner {
		display: none !important;
	}

}


/* mobile menu */
.st-menu {
	background-color: #85393a;
}

.st-menu ul li a {
	color: #fff;
}

/*.mobile-menu-btn { float:right; margin-top: 21px; }fheader-right
@media(min-width: 768px) {
.mobile-menu-btn { margin-top: 21px; }
}*/
.mobile-menu-btn {
	float: right;
	margin-left: 10px;
}

@media(min-width: 576px) {
	.mobile-menu-btn {
		margin-left: 15px;
	}
}

.menu-mobile {}

.menu-mobile .menu-mobile-title {
	height: 36px;
	position: relative;
}

.menu-mobile .button-close-menu {
	position: absolute;
	right: 8px;
	top: 8px;
	color: #fff;
	cursor: pointer;
}

.menu-mobile .button-close-menu:hover {
	color: #292929;
}

.menu-mobile .button-close-menu i {
	font-size: 20px;
}

.menu-mobile .mobile-more {
	display: inline-block;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 20px;
	right: 8px;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
	text-align: center;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
}

.menu-mobile ul li.mobile-sub-open>.mobile-more {
	transform: rotate(180deg);
}

.menu-mobile .mobile-more i {
	font-size: 18px;
}

.menu-mobile .menu-mobile-content>li .dropdown-menu {
	position: static;
}

.menu-mobile .mobile-dropdown-menu {
	margin-left: 0 !important;
	padding: 0;
	display: none;
}

.menu-mobile .mobile-sub-open>.mobile-dropdown-menu {
	display: block;
}

.menu-mobile .mobile-dropdown-menu a {
	padding-left: 30px;
	text-decoration: none;
}

.menu-mobile .mobile-dropdown-menu ul a {
	padding-left: 50px;
}

.menu-mobile .mobile-dropdown-menu ul ul a {
	padding-left: 70px;
}

.menu-mobile a:link,
.menu-mobile a:visited,
.menu-mobile a:hover,
.menu-mobile a:active {
	text-decoration: none;
}

.menu-mobile ul li li,
.menu-mobile .see-all,
.menu-mobile ul ul ul ul>li {
	background: #c7a37e;
}

.menu-mobile ul li:hover,
.menu-mobile ul li.mobile-sub-open {
	background: rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 -1px rgba(0, 0, 0, 0);
	color: #fff;
}

/* .menu-mobile ul li li:hover,.menu-mobile ul li li:visited,.menu-mobile ul li li:active, .menu-mobile .see-all:hover {
  background: #6c9045;
  box-shadow: inset 0 -1px rgba(0,0,0,0);
  color: #fff;
}  */
.menu-mobile ul ul ul>li {
	background: #222222;
}


.btn-ud {
	color: #fff !important;
	background-color: #85393a;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
}

.btn-ud:focus,
.btn-ud.focus {
	color: #fff;
	background-color: #222222;
}

.btn-ud:hover {
	color: #fff;
	background-color: #222222;
}

.btn-ud:active,
.btn-ud.active,
.open>.dropdown-toggle.btn-ud {
	color: #fff;
	background-color: #222222;
}

.btn-ud:active:hover,
.btn-ud.active:hover,
.open>.dropdown-toggle.btn-ud:hover,
.btn-ud:active:focus,
.btn-ud.active:focus,
.open>.dropdown-toggle.btn-ud:focus,
.btn-ud:active.focus,
.btn-ud.active.focus,
.open>.dropdown-toggle.btn-ud.focus {
	color: #fff;
	background-color: #222222;
}

.btn-ud:active,
.btn-ud.active,
.open>.dropdown-toggle.btn-ud {
	background-image: none;
}

.btn-ud.disabled,
.btn-ud[disabled],
fieldset[disabled] .btn-ud,
.btn-ud.disabled:hover,
.btn-ud[disabled]:hover,
fieldset[disabled] .btn-ud:hover,
.btn-ud.disabled:focus,
.btn-ud[disabled]:focus,
fieldset[disabled] .btn-ud:focus,
.btn-ud.disabled.focus,
.btn-ud[disabled].focus,
fieldset[disabled] .btn-ud.focus,
.btn-ud.disabled:active,
.btn-ud[disabled]:active,
fieldset[disabled] .btn-ud:active,
.btn-ud.disabled.active,
.btn-ud[disabled].active,
fieldset[disabled] .btn-ud.active {
	background-color: #222222;
}

/* swiper */
.index-swiper {
	position: relative;
	overflow: hidden;
	height: 55vh;
}

@media (min-width:520px) {
	.index-swiper {
		height: 100%;
	}
}

@media (min-width:1441px) {
	.index-swiper {
		height: 750px;
	}
}

.slide-box {
	height: 100%;
}

.slide-img {
	width: 100%;
	height: 100%;
}

.web-img{
	display: none;
}

.mobile-img{
	display: block;
}

@media (min-width:768px) {
	.web-img{
		display: block;
	}
	.mobile-img{
		display: none;
	}
	
}

.slide-img img {
	width: 100%;
	height: 100%;
	background-size: 100%;
	object-fit: cover;
}

.slide-text {
	position: absolute;
	top: 10%;
	right: 5%;
	max-width: 300px;
	padding-right: 20px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding: 15px 20px;
	background: rgba(255, 255, 255, .6);
}

@media (min-width:425px) {
	.slide-text {
		top: 10%;
		right: 7%;
		max-width: 350px;
	}
}

@media (min-width:520px) {
	.slide-text {
		top: 10%;
		right: 7%;
		max-width:340px;
		padding: 0;
		background: none;
	}
}

@media (min-width:992px) {
	.slide-text {
		top: 20%;
		right: 5%;
		max-width: 600px;
	}
}

@media (min-width:1200px) {
	.slide-text {
		top: 20%;
		right: 5%;
	}
}

@media (min-width:1921px) {
	.slide-text {
		top: 20%;
		right: 15%;
	}
}

.slide-text span {
	font-size: 16px;
	color: #85393a;
	text-align: right;
}

@media (min-width:768px) {
	.slide-text span {
		font-size: 28px;
	}
}

@media (min-width:1200px) {
	.slide-text span {
		font-size: 38px;
	}
}

.slide-text b {
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 10px;
	color: #c7a37e;
	letter-spacing: 2px;
}

@media (min-width:768px) {
	.slide-text b {
		font-size: 36px;
	}
}

@media (min-width:992px) {
	.slide-text b {
		font-size: 50px;
		margin-bottom: 20px;
	}
}

@media (min-width:1200px) {
	.slide-text b {
		font-size: 60px;
		letter-spacing: 4px;
	}
}

@media (min-width:1400px) {
	.slide-text b {
		font-size: 80px;
		margin-bottom: 30px;
	}
}

.slide-text p {
	font-size: 14px;
	margin: 0;
	text-align: right;
	color: #222;
}

@media (min-width:992px) {
	.slide-text p {
		font-size: 20px;
	}
}

.banner-more {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	width: 176px;
	height: 60px;
	background: url(../images/banner-more-bj.png) no-repeat center;
	background-size: 100%;
	object-fit: cover;
}

@media (min-width:992px) {
	.banner-more {
		margin-top: 40px;
		width: 276px;
		height: 60px;
	}
}

.banner-more i {
	font-size: 14px;
	color: #fff;
	font-style: normal;
	margin-left: -50px;
	margin-top: -5px;
}

@media (min-width:992px) {
	.banner-more i {
		font-size: 18px;
	}
}

#slideshow-swiper .index-next,
#slideshow-swiper .index-prev {
	display: block;
}

@media (min-width:321px) {

	#slideshow-swiper .index-next,
	#slideshow-swiper .index-prev {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		width: 32px;
		height: 32px;
		background-color: rgba(0, 0, 0, 0.3);
		border-radius: 100%;
	}
}

@media (min-width:992px) {

	#slideshow-swiper .index-next,
	#slideshow-swiper .index-prev {
		width: 42px;
		height: 42px;
	}
}

@media (min-width:1400px) {

	#slideshow-swiper .index-next,
	#slideshow-swiper .index-prev {
		width: 60px;
		height: 60px;
	}
}

#slideshow-swiper .index-next::after,
#slideshow-swiper .index-prev::after {
	content: '';
	width: 13px;
	height: 22px;
	background: url(../images/banner-r-icon.png) no-repeat center;
}

#slideshow-swiper .index-prev::after {
	content: '';
	transform: rotate(180deg);
}

#slideshow-swiper .index-next:hover,
#slideshow-swiper .index-prev:hover {
	background-color: rgba(0, 0, 0, 0.6);
}

.index-pag {
	position: absolute;
	bottom: 12% !important;
	left: 5% !important;
	text-align: left;
}

@media (min-width:425px) {
	.index-pag {
		left: 10% !important;
	}
}

@media (min-width:992px) {
	.index-pag {
		left: 20% !important;
	}
}

.index-pag .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #fff;
	opacity: 1;
}

.index-pag .swiper-pagination-bullet-active {
	border: 2px solid #222222;
	background: none;
}

.swiper-slide-active .slide-text span {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.swiper-slide-active .slide-text b {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.swiper-slide-active .slide-text p {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

/*  */
.main-all {
	min-height: 92vh;
}

/* ↓↓ index ↓↓ */

/* about */
.home-about {
	background: url(../images/about-bj.png) no-repeat bottom;
	background-size: cover;
	object-fit: cover;
	padding: 30px 0;
}

@media (min-width:992px) {
	.home-about {
		padding: 50px 0 80px;
	}
}

.home-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

.home-title h3 {
	font-size: 30px;
	font-family: 'LiSu';
	color: #85393a;
}

@media (min-width:992px) {
	.home-title h3 {
		font-size: 32px;
	}
}

@media (min-width:1200px) {
	.home-title h3 {
		font-size: 40px;
	}
}

@media (min-width:1400px) {
	.home-title h3 {
		font-size: 48px;
	}
}

.home-title span {
	display: block;
	width: 50px;
	height: 4px;
	background-color: #c7a37e;
}

.home-title p {
	max-width: 400px;
	margin-top: 10px;
	font-size: 15px;
	line-height: 24px;
	color: #555;
	text-align: center;
}

@media (min-width:992px) {
	.home-title p {
		max-width: 600px;
		margin-top: 20px;
		font-size: 18px;
		line-height: 30px;
	}
}

.home-about-img {
	position: relative;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
}

.home-about-img::before {
	content: '';
	position: absolute;
	left: -5px;
	top: -16px;
	width: 165px;
	height: 195px;
	background: url(../images/about-l-be.png) no-repeat center;
	background-size: 100%;
	object-fit: cover;
}

.home-about-img::after {
	content: '';
	position: absolute;
	right: -5px;
	bottom: -16px;
	width: 121px;
	height: 212px;
	background: url(../images/about-r-be.png) no-repeat center;
	background-size: 100%;
	object-fit: cover;
}

@media (min-width:768px) {
	.home-about-img::before {
		left: -20px;
		top: -20px;
	}

	.home-about-img::after {
		right: -20px;
		bottom: -20px;
	}
}

.home-about-img img {
	width: 92%;
	height: 92%;
	background-size: 100%;
	object-fit: cover;
}

@media (min-width:768px) {
	.home-about-img img {
		width: 100%;
		height: 100%;
	}
}

.about-right {
	padding-left: 0;
	margin-top: 40px;
}

@media (min-width:992px) {
	.about-right {
		padding-left: 40px;
		margin-top: 10px;
	}
}

@media (min-width:1200px) {
	.about-right {
		padding-left: 80px;
	}
}

.about-text {
	margin-bottom: 20px;
}

@media (min-width:992px) {
	.about-text {
		margin-bottom: 40px;
	}
}

.about-text p {
	font-size: 16px;
	color: #555;
	line-height: 26px;
}

@media (min-width:1200px) {
	.about-text p {
		font-size: 19px;
		line-height: 32px;
	}
}

.btn-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 91px;
	background: url(../images/more-icon.png) no-repeat center;
	background-size: 100%;
	object-fit: cover;
	transition: all ease .4s;
}

@media (min-width:768px) {
	.btn-inner {
		width: 316px;
		height: 91px;
	}
}

.btn-inner i {
	font-style: normal;
	font-size: 16px;
	color: #fff;
	margin-left: -100px;
}

@media (min-width:768px) {
	.btn-inner i {
		font-size: 18px;
		margin-left: -120px;
	}
}

.btn-inner:hover {
	background: url(../images/more-hover.png) no-repeat center;
	background-size: 100%;
	object-fit: cover;
	transition: all ease .4s;
}


/* service */

.home-service {
	position: relative;
	overflow: hidden;
	padding: 30px 0;
}

@media (min-width:992px) {
	.home-service {
		padding: 50px 0 60px;
	}
}

.home-service:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 641px;
	height: 366px;
	background: url(../images/seavie-bj-l.png) no-repeat bottom left;
	z-index: -1;
}

.home-service::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 382px;
	height: 306px;
	background: url(../images/seavie-bj-r.png) no-repeat bottom left;
	z-index: -1;
	opacity: .3;
}

@media (min-width:768px) {
	.home-service::after {
		opacity: 1;
	}
}

.service-swiper {
	overflow: hidden;
	position: relative;
	padding-bottom: 40px;
}

.service-swiper .swiper-pagination {
	bottom: 0;
}

.service-swiper .swiper-pagination-bullet {
	opacity: 1;
	width: 10px;
	height: 10px;
	background: url(../images/fw-pa-icon.png) no-repeat center;
}

.service-swiper .swiper-pagination-bullet-active {
	width: 10px;
	height: 10px;
	background: url(../images/fw-pa-hover.png) no-repeat center;
}

.service-li {
	width: 100%;
	height: 100%;
	padding: 30px 20px;
	border-radius: 10px;
	background-size: 100%;
	object-fit: cover;
	transition: all ease .4s;
}

.service-icon {
	display: flex;
	justify-content: center;
	transition: all ease .4s;
}

.service-title {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #c7a37e;
	margin: 15px 0;
	transition: all ease .4s;
}

.service-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	font-size: 16px;
	color: #666;
	text-align: center;
	line-height: 26px;
	transition: all ease .4s;
}

.service-more {
	display: -webkit-box;
	opacity: 0;
	margin-top: 15px;
	transition: all ease .4s;
}

.more-text {
	font-size: 14px;
	color: #fff !important;
	text-decoration: underline;
}

.service-li:hover{
	transition: all ease .4s;
}

.service-li:hover .service-icon {
	opacity: 0;
	transition: all ease .4s;
}

.service-li:hover .service-title {
	text-align: left;
	color: #fff;
	transition: all ease .4s;
}

.service-li:hover .service-text {
	text-align: left;
	color: #fff;
	transition: all ease .4s;
}

.service-li:hover .service-more {
	opacity: 1;
	transition: all ease .4s;
}

.service-li-1:hover{
	background: url(../images/zy-bj.png) no-repeat bottom left !important;
	background-size: 100%;
	object-fit: cover;
}

.service-li-2:hover{
	background: url(../images/zj-bj.png) no-repeat bottom left !important;
}

.service-li-3:hover{
	background: url(../images/bg-bj.png) no-repeat bottom left !important;
}

.service-li-4:hover{
	background: url(../images/gs-bj.png) no-repeat bottom left !important;
}

.service-li-5:hover{
	background: url(../images/fxlf-bj.png) no-repeat bottom left !important;
}

.service-li-6:hover{
	background: url(../images/tn-bj.png) no-repeat bottom left !important;
}

.service-li-7:hover{
	background: url(../images/tj-bj.png) no-repeat bottom left !important;
}

.service-li-8:hover{
	background: url(../images/aj-bj.png) no-repeat bottom left !important;
}

.service-li-9:hover{
	background: url(../images/zl-bj.png) no-repeat bottom left !important;
}




/* product */
.home-product {
	background: url(../images/product-bj.png) no-repeat bottom;
	background-size: cover;
	object-fit: cover;
	padding: 30px 0;
}

@media (min-width:992px) {
	.home-product {
		padding: 50px 0 60px 0;
	}
}

.product-box {
	margin-top: 30px;
}

.product-swiper {
	position: relative;
	overflow: hidden;
	padding-bottom: 30px;
}

.product-swiper .swiper-pagination {
	bottom: 0;
}

.product-swiper .swiper-pagination-bullet {
	opacity: 1;
	width: 10px;
	height: 10px;
	background: url(../images/fw-pa-icon.png) no-repeat center;
}

.product-swiper .swiper-pagination-bullet-active {
	width: 10px;
	height: 10px;
	background: url(../images/pro-pa-hover.png) no-repeat center;
}

.product-inner {
	display: block;
}

.product-img {
	overflow: hidden;
	border: 4px solid #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.product-img img {
	width: 100%;
	transition: all ease .4s;
}

.product-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.product-text h3 {
	font-size: 19px;
	font-weight: bold;
	color: #c7a37e;
	transition: all ease .4s;
}

@media (min-width:992px) {
	.product-text h3 {
		font-size: 22px;
	}
}

.product-text span {
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #444;
}

.product-text i {
	font-style: normal;
	font-size: 16px;
}

.product-text b {
	font-style: normal;
	font-size: 16px;
	color: red;
}

.op {
	font-size: 14px !important;
	color: #999;
	text-decoration: line-through;
	margin-right: 6px;
}

.product-btn {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

@media (min-width:768px) {
	.product-btn {
		margin-top: 30px;
	}
}

.product-btn .btn-inner {
	margin-left: 100px;
}

.product-inner:hover .product-img img {
	transform: scale(1.1);
	transition: all ease .4s;
}

.product-inner:hover .product-text h3 {
	color: #85393a;
	transition: all ease .4s;
}

/* team */

.home-team {
	position: relative;
	overflow: hidden;
	padding: 30px 0;
}

.home-team::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 583px;
	height: 558px;
	background: url(../images/team-bj-l.png) no-repeat top;
	z-index: -1;
}

.home-team::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 1016px;
	height: 609px;
	background: url(../images/team-bj-r.png) no-repeat bottom;
	z-index: -1;
}

@media (min-width:992px) {
	.home-team {
		padding: 60px 0;
	}
}

.team-swiper {
	position: relative;
	overflow: hidden;
	padding: 0;
}

@media (min-width:992px) {
	.team-swiper {
		padding: 0 30px;
	}
}

@media (min-width:1200px) {
	.team-swiper {
		padding: 0 80px;
	}
}

#doctor-swiper .team-next,
#doctor-swiper .team-prev {
	width: 48px;
	height: 45px;
	background: url(../images/team-an-bj.png) no-repeat center;
	background-size: cover;
	object-fit: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease .4s;
}

@media (min-width:768px) {
	#doctor-swiper .team-next,
	#doctor-swiper .team-prev {
		width: 61px;
		height: 58px;
	}
}

#doctor-swiper .team-next {
	margin-right: -10px;
}

#doctor-swiper .team-prev {
	margin-left: -10px;
}

#doctor-swiper .team-next::after,
#doctor-swiper .team-prev::after {
	content: '';
	width: 12px;
	height: 20px;
	background: url(../images/team-right.png) no-repeat center;
}

#doctor-swiper .team-prev::after {
	transform: rotate(180deg);
}

#doctor-swiper .team-next:hover,
#doctor-swiper .team-prev:hover {
	background: url(../images/team-hov-bj.png) no-repeat center;
	background-size: cover;
	object-fit: cover;
	transition: all ease .4s;
}

.team-list {
	padding: 15px 15px;
	position: relative;
	transition: all ease .4s;
	z-index: 0;
}
@media (min-width:992px) {
	.team-list {
		padding: 30px;
	}
}

.team-list::before {
	content: '';
	position: absolute;
	top: 0px;
	left: -5px;
	width: 167px;
	height: 151px;
	background: url(../images/team-l.png) no-repeat center;
	opacity: 0;
	transition: all ease .4s;
	z-index: 1;
}

.team-list::after {
	content: '';
	position: absolute;
	bottom: 0px;
	right: -5px;
	width: 97px;
	height: 152px;
	background: url(../images/team-r.png) no-repeat center;
	opacity: 0;
	transition: all ease .4s;
	z-index: 1;
}

@media (min-width:992px) {
	.team-list::before{
		top: 15px;
		left: -5px;
	}
	.team-list::after{
		bottom: 15px;
		right: -5px;
	}
}

.team-box {
	display: flex;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0);
	border-radius: 0px;
	overflow: hidden;
	transition: all ease .4s;
}

.team-img {
	position: relative;
	overflow: hidden;
	padding: 0;
	background-color: #fafafa;
	display: flex;
	justify-content: center;
	align-items: center;
}

.team-img img {
	width: 100%;
	/* height: 100%; */
	transition: all ease .4s;
}

.team-inner {
	padding: 15px 15px;
	display: flex;
	flex-direction: column;
}

@media (min-width:425px) {
	.team-inner {
		/*padding: 30px 25px;*/
		padding: 15px 25px;
	}
}

@media (min-width:768px) {
	.team-inner {
		padding: 10px 20px;
	}
}

@media (min-width:991px) {
	.team-inner {
		padding: 24px 20px;
	}
}

@media (min-width:1200px) {
	.team-inner {
		padding: 30px 40px;
	}
}

.team-inner h3 {
	font-weight: bold;
	color: #222;
	font-size: 22px;
}

/*.team-inner span {
	display: flex;
	flex-direction: column;
	margin: 0px 0 10px;
}*/

.team-inner i {
	font-style: normal;
	font-size: 15px;
	color: #333;
	font-weight: 300;
	margin-bottom: 5px;
}

.team-more {
	display: block;
	position: relative;
	font-size: 14px;
	color: #c7a37e;
	text-decoration: underline;
	margin-left: 0;
	z-index: 1;
	transition: all ease .4s;
}

.team-more::before {
	content: '';
	position: absolute;
	bottom: -20px;
	left: -22px;
	width: 158px;
	height: 62px;
	background: url(../images/team-more.png) no-repeat center;
	background-size: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0;
	transition: all ease .4s;
}
.team-education span{
	width: calc(76% - 5px);

	display: inline-block;
}
.team-education h5{
	width: 24%;

	line-height: 1.2;
	margin-right: 5px;
	font-size: 1rem;
}
@media (min-width: 768px) {
	.team-education h5 {
		width: 30%;
	}
	.team-education span {
		width: calc(70% - 5px);
	}
}
@media (min-width: 1200px) {
	.team-education span{
		width: calc(70% - 5px);
	}
	.team-education h5{
		width: 30%;
	}
}
@media (min-width:768px) {
	.team-inner h3 {
		font-size: 20px;
	}

	.team-inner .team-education {
		margin: 10px 0 30px;
	}

	.team-inner i {
		font-size: 18px;
	}

	.team-more {
		font-size: 16px;
	}

	.team-more::before {
		width: 218px;
		left: -32px;
	}
}
@media (min-width: 991px) {
	.team-inner h3 {
		font-size: 28px;
	}
}
.team-list:hover::before,
.team-list:hover::after {
	opacity: 1;
	transition: all ease .4s;
}

.team-list:hover .team-box {
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	transition: all ease .4s;
}

.team-list:hover .team-img img {
	transform: scale(1.1);
	transition: all ease .4s;
}

.team-list:hover .team-more {
	text-decoration: none;
	margin-left: 30px;
	color: #fff;
	transition: all ease .4s;
}

.team-list:hover .team-more::before {
	opacity: 1;
	transition: all ease .4s;
}


/* order */
.home-order {
	background: url(../images/bj-yy.png) no-repeat bottom;
	background-size: cover;
	object-fit: cover;
	background-attachment: fixed;
	padding: 40px 0 80px;
	position: relative;
	overflow: hidden;
}

@media (min-width:992px) {
	.home-order {
		padding: 60px 0 100px;
	}
}

.order-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.order-box h3 {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
}

@media (min-width:768px) {
	.order-box h3 {
		font-size: 40px;
		margin-bottom: 20px;
	}
}

.order-box p {
	font-size: 16px;
	color: #fff;
	margin: 0;
	text-align: center;
}

@media (min-width:768px) {
	.order-box p {
		font-size: 18px;
	}
}

.order-btn .btn-inner i {
	font-weight: bold;
	font-size: 17px;
}

@media (min-width:768px) {
	.order-btn .btn-inner i {
		font-size: 22px;
	}
}

.web-map {
	display: none;
}

.mobile-map {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width:768px) {
	.web-map {
		display: block;
		position: absolute;
		top: 5%;
		right: 10%;
	}

	.mobile-map {
		display: none;
	}
}

.map-inner {
	display: flex;
	align-items: center;
	border: 2px solid #fff;
	border-radius: 10px;
	padding: 6px 14px;
	font-size: 18px;
	color: #fff !important;
	z-index: 1;
	position: relative;
	overflow: hidden;
	transition: all ease .4s;
}

@media (min-width:768px) {
	.map-inner {
		padding: 10px 20px;
		font-size: 18px;
	}
}

.close-icon{
	color: #fff;
	margin-right: 10px;
}

.map-inner::before {
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #85393a;
	z-index: -1;
	transition: all ease .4s;
}

.map-inner::after {
	content: '';
	position: absolute;
	right: 0;
	width: 0;
	height: 100%;
	background-color: #85393a;
	z-index: -1;
	transition: all ease .4s;
}

.map-inner:hover {
	border-color: #85393a;
	transition: all ease .4s;
}

.map-inner:hover::before,
.map-inner:hover::after {
	width: 100%;
	transition: all ease .4s;
}

.map-inner img {
	margin-right: 10px;
}

.home-map-inner{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.map1{
	display: block !important;
}

.map2{
	display: none !important;
}

.map1.on{
	display: none !important;
}

.map2.on{
	display: block !important;
	background-color: #85393a !important;
	border-radius: 10px;
}

.map2.on .map-inner{
	border-color: #85393a;
}

.map2.on .map-inner::before,
.map2.on .map-inner::after{
	width: 100% !important;
}

/*  */

.home-contact {
	position: relative;
}

.contact-box {
	margin-top: -50px;
	padding: 20px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
	overflow: hidden;
}

@media (min-width:560px) {
	.contact-box {
		padding: 20px 40px;
	}
}

@media (min-width:992px) {
	.contact-box {
		padding: 30px 40px;
	}
}

.contact-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

@media (min-width:992px) {
	.contact-inner {
		display: flex;
		flex-direction: row;
		align-items: center;
	}
}

.con-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 20px;
}

.con-box:last-child {
	margin-bottom: 0;
}

@media (min-width:992px) {
	.con-box {
		margin-bottom: 0;
	}
}

.con-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 100%;
}

@media (min-width:992px) {
	.con-icon {
		width: 50px;
		height: 50px;
	}
}

.con-text {
	display: flex;
	flex-direction: column;
	margin-left: 15px;
}

.con-text i {
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	color: #666;
}

.con-text b {
	font-size: 14px;
	color: #c7a37e;
}

@media (min-width:560px) {
	.con-text i {
		font-size: 16px;
	}

	.con-text b {
		font-size: 16px;
	}
}

.contact-inner span {
	display: none;
}

@media (min-width:992px) {
	.contact-inner span {
		display: block;
		width: 1px;
		height: 24px;
		background-color: #ddd;
	}
}



/* footer */

.footer {
	padding-top: 30px;
}

@media (min-width:992px) {
	.footer {
		padding-top: 50px;
	}
}

.footer-left {
	margin-bottom: 30px;
}

@media (min-width:1200px) {
	.footer-left {
		margin-bottom: 0px;
	}
}

.footer-left p {
	max-width: 100%;
	font-size: 16px;
	color: #666;
}

@media (min-width:1200px) {
	.footer-left p {
		max-width: 400px;
	}
}

.footer-contact {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	font-weight: 300;
}

@media (min-width:768px) {
	.footer-contact {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

@media (min-width:1200px) {
	.footer-contact {
		flex-direction: column;
		flex-wrap: nowrap;
	}
}

.footer-contact li {
	margin-bottom: 20px;
}

.foo-con-icon {
	display: flex;
	align-items: center;
}

.foo-con-icon i {
	color: #fff;
	font-style: normal;
	font-size: 16px;
	margin-left: 10px;
}

.footer-contact span {
	font-size: 16px;
	color: #fff;
	margin-top: 5px;
	display: block;
}

.footer-right {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0;
}

@media (min-width:992px) {
	.footer-right {
		justify-content: space-between;
	}
}

@media (min-width:1200px) {
	.footer-right {
		flex-wrap: nowrap;
	}
}

.mobile-foo {
	display: none;
}

@media (min-width:768px) {
	.mobile-foo {
		display: block;
	}
}

.footer-right li {
	margin-bottom: 30px;
}

.foo-col {
	padding: 0;
}

.footer-title {
	font-size: 19px;
	font-weight: bold;
	color: #85393a;
	text-transform: uppercase;
}

@media (min-width:992px) {
	.footer-title {
		font-size: 24px;
	}
}

.footer-title-b {
	display: block;
	background-color: #c7a37e;
	width: 30px;
	height: 4px;
	margin: 10px 0 20px;
}

@media (min-width:768px) {
	.footer-title-b {
		margin: 15px 0 30px;
	}
}

.footer-nav li {
	margin-bottom: 10px;
}

.footer-nav a {
	color: #666;
	font-size: 16px;
}

.footer-nav a:hover {
	color: #c7a37e;
}

.footer-con-li {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	font-size: 16px;
	margin-bottom: 10px;
}

.footer-con-title {
	display: block;
	color: #fff;
	width: 74px;
}

.footer-con-info {
	color: #aaa;
	/* width: 90%; */
}

.footer-bottom {
	padding: 14px 0;
	border-top: 1px solid #eee;
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	align-items: center;
}

@media (min-width:768px) {
	.footer-bottom {
		flex-direction: row;
	}
}

.footer-text {
	color: #444;
	font-size: 15px;
	text-align: center;
}

.footer-links {
	display: flex;
	align-items: center;
	height: 40px;
}

.footer-links .fa {
	font-size: 20px;
	color: #c7a37e;
}

.footer-links a {
	display: block;
	margin: 0 10px;
	transition: all .4s;
}

.footer-links a:hover {
	margin-top: -6px;
	transition: all .4s;
}

@media (max-width:425px) {
	.mobile-box {
		display: none;
	}

	.foo-col-2 {
		padding: 0;
	}
}

.footer-con-box {
	margin: 0px 0 10px;
}

@media (min-width:768px) {
	.footer-con-box {
		margin: 0;
	}
}

.footer-links .fa:hover {
	color: #85393a;
}



/*back-to-top*/
#back-to-top {
	position: fixed;
	right: 2%;
	bottom: 5%;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	background: #85393a;
	border-radius: 0;
}

@media(min-width: 768px) {
	#back-to-top {
		right: 2%;
		bottom: 6%;
		width: 46px;
		height: 46px;
	}
}

#back-to-top a {
	color: #fff;
}

/*  */

/*home-top-form*/
.home-top-form {
	position: fixed;
	right: 0;
	top: 60%;
	z-index: 999990;
}

.home-top-form-list {
	margin-bottom: 0.5rem;
	position: relative;
	min-height: 40px;
}

.home-top-form-list-color-1 {
	background-color: #e0002a;
}

.home-top-form-list-color-2 {
	background-color: #231815;
}

.home-top-form-list-color-3 {
	background-color: #3799fe;
}

.home-top-form-list span {
	color: #fff;
	display: inline-block;
}

.home-top-form-list .div1 {
	width: 44px;
	height: 50px;
	position: absolute;
	left: -42px;
	border-radius: 2rem 0 0 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media(min-width: 992px) {
	.home-top-form-list .div1 {
		border-radius: 5px 0 0 5px;
	}
}

.home-top-form-list .div1 img {
	width: auto;
	height: auto;
}

.home-top-form-list .div2 {
	height: 50px;
	text-align: left;
	padding: 12px 1px;
	color: #fff;
	font-size: 17px;
}

@media(min-width: 576px) {
	.home-top-form-list .div2 {
		padding: 12px 2px;
	}
}

@media(min-width: 992px) {
	.home-top-form-list .div2 {
		padding: 12px 4px;
	}
}

.home-top-form-list .div-form {
	padding: 1rem;
}

.home-top-form-list .div-form-tit {
	color: #fbac35;
	font-weight: bold;
}

.home-top-form-list .div-form-sec {
	font-size: 12px;
	margin-bottom: 1rem;
}

.div-form-input input {
	width: 100%;
	border: 0;
	padding: 3px 10px;
	margin-bottom: 1rem;
	font-size: 14px;
	color: #666;
}

.div-form-button {
	border: 0;
	background: #fbac35;
	width: 100%;
	padding: 3px 5px;
	font-size: 14px;
}

@media(max-width: 768px) {
	.home-top-form {
		left: 15%;
		width: 85%;
		background: #fff;
	}
}

.home-top-form-box {
	position: relative;
}

.hide1 {
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.5s;
}

.hide1 .div2 {
	min-width: 90px;
	white-space: nowrap;
}

.hide2 {
	position: absolute;
	right: 0;
	top: 54px;
	transition: all 0.5s;
}

@media(min-width: 992px) {
	.hide2 {
		top: 60px;
	}
}

.hide2 .div2 {
	min-width: 90px;
}


.hide3 {
	position: absolute;
	right: 0;
	top: 90px;
	transition: all 0.5s;
}

@media(min-width: 992px) {
	.hide3 {
		top: 120px;
	}
}

.hide3 .div2 {
	min-width: 100px;
}

@media(min-width: 576px) {
	.hide3 .div2 {
		min-width: 130px;
	}
}

.home-top-form .in {
	transition: all 0.5s;
	margin-right: -105px;
}

.home-top-form .in2 {
	transition: all 0.5s;
	margin-right: -105px;
}

.home-top-form .in3 {
	transition: all 0.5s;
	margin-right: -105px;
}

@media(min-width: 576px) {
	.home-top-form .in {
		margin-right: -130px;
	}

	.home-top-form .in2 {
		margin-right: -130px;
	}

	.home-top-form .in3 {
		margin-right: -130px;
	}
}

.hide2 .div2 {
	max-width: 100px;
}
.banner-box{
	height: 100px;
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}
@media (min-width: 768px) {
	.banner-box{
		height: 250px;
	}
}
@media (min-width: 1200px) {
	.banner-box {
		background-position: center;
	}
}
.banner-text{
	max-width: 600px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-top: 1rem;
	font-size: 1.75rem;
	background: url("../images/holistic-service-bg.png") no-repeat;
	background-position: center;
	background-size: cover;
}
@media (min-width: 768px) {
	.banner-text{
		padding-left: 2rem;
		padding-right: 2rem;
		font-size: 3rem;
	}
}
.font-lisu{
	font-family: 'LiSu';
	color: #85393a;
}
.course-menu a {
	padding: 0rem 1rem;
	font-size: 1.25rem;
	border: none;
	color: #222;
}
@media (min-width: 1200px) {
	.course-menu a {
		padding: 0rem 2rem;
		font-size: 1.5rem;
	}
}
.course-menu a.active{
	color: #c7a37e;
}
.gold-line{
	height: 2px;
	background: #c7a37e;
}
.course-info{
	background: #f7ebde;
}
.course-info h4{
	font-size: 1.25rem;
}
.course-desc{
	font-size: 1rem;
}
@media (min-width: 991px) {
	.course-info h4{
		font-size: 1.75rem;
	}
	.course-desc{
		font-size: 1.25rem;
	}
}
#content{
	background: url("../images/course-bg.png?v=1.02") no-repeat;
	background-position: center;
	background-size: cover;
}
.mobile-menu .dropdown-toggle .fa{
	color: #fff;
}
.mobile-menu .dropdown-toggle::after{
	display: none!important;
}
.mobile-menu .dropdown-toggle{
	background-color: #c7a37e;
	border-color: #c4a586;
	border-radius: 5px;
	padding: 5px 10px;
	border: none;
}
.swiper-bg{
	position: relative;
	margin-bottom: 10px;
	padding: 0px 20px;
}
.swiper-bg:before{
	width: 125px;
	height: 150px;
	top: -20px;
	left: 0px;
	background-image: url("../images/swiper_left.png");
}
.swiper-bg:after{
	width: 87px;
	height: 151px;
	bottom: -20px;
	right: 0px;
	background-image: url("../images/swiper_right.png");
}
.swiper-bg:before,
.swiper-bg:after{
	content: " ";
	position: absolute;
	background-size: 100%;
	background-repeat: no-repeat;
}
.information-desc{
	margin-bottom: 40px;
}
@media (min-width: 768px) {
	.information-desc{
		margin-bottom: 80px;
	}
	.swiper-bg {
		margin-bottom: 50px;
	}
}
#information .swiper-button-next:hover:after,#information .swiper-container-rtl .swiper-button-prev:hover:after,
#information .swiper-button-prev:hover:after,#information .swiper-container-rtl .swiper-button-next:hover:after{
	background-image: url("../images/team-hov-bj.png");
}
#information .swiper-button-next:after,#information .swiper-container-rtl .swiper-button-prev:after,
#information .swiper-button-prev:after,#information .swiper-container-rtl .swiper-button-next:after{
	background-image: url("../images/team-an-bj.png");
	width: 61px;
	height: 58px;
	color: #fff;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s;
}
#information .new-next{
	right: -2px;
}
#information .new-prev{
	left: -3px;
}
#information .new-next,#information .new-prev{
	width: 61px;
	height: 58px;
}
.doctor-desc h3{
	font-size: 36px;
	color: #c7a37e;
}
.doctor-desc{
	color: #666666;
	font-size: 20px;
}
.doctor-content{
	max-width: calc(90% + 15px) ;
	background-color: transparent !important;
}
@media (min-width: 991px) {
	.doctor-content{
		max-width: 800px;
	}
}
.doctor-content .layui-layer-content{
	border-radius: 10px !important;
	overflow: hidden;
}
#modal-doctor .modal-body{
	padding: 0px;
}
.modal-close{
	width: 20px;
	height: 20px;
	top: 0px;
	right: 0px;
	background-color: #c7a37e;
	border-radius: 50%;
	transform: translate(20%, -50%);
	opacity: 1;
}
@media (min-width: 768px) {
	.modal-close {
		width: 40px;
		height: 40px;
		transform: translate(50%, -50%);
	}
}
#information-contact .font-lisu{
	font-size: 1.5rem;
	text-align: center;
}
@media (min-width: 768px) {
	#information-contact .font-lisu {
		font-size: 2.25rem;
	}
}
.gold-line{
	width: 100%;
	height: 2px;
	background: #c7a37e;

}
#information-contact .gold-line{
	width: 50px;
	height: 4px;
	margin: 24px auto 0px;
}
#information-contact .contact-desc,
#information-contact .contact-desc a{
	color: #c7a37e;
}
#information-contact .contact-desc{
	max-width: 243px;
	text-align: center;
	margin: 0px auto;
}

#information-contact h5{
	color: #999999;
	font-size: 1rem;
}
#information-contact .con-icon{
	margin: 0px auto 23px;
}
#information-contact iframe{
	height: 448px !important;
}
.booking-box{
	padding: 30px 10px;
	background-color: #fff;
	box-shadow: 0px 0px 10px 10px rgba(250,250,250,0.7);
}
@media (min-width: 768px) {
	.booking-box{
		/*padding: 40px 60px;*/
		padding: 40px 40px;
	}
}
@media (min-width: 1200px) {
	.booking-box{
		padding: 60px 80px;
	}
}
.booking-desc{
	font-size: 1rem;
	color: #333;
}
@media (min-width: 768px) {
	.booking-desc{
		font-size: 1.25rem;
	}
}
.text-red{
	color: #ff0000;
}
.booking-box .form-style{
	outline:0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: relative;
	font-size: 1rem;
	border-radius: 0;
	border-left: 0px;
	border-right: 0px;
	border-top: 1px solid #ebc7a1;
	border-bottom: 1px solid #ebc7a1;
	color: #aaa;
}

.form-style ::placeholder{
	color: #aaa;
	font-size: 1rem;
}
@media (min-width: 768px) {
	.booking-box .form-style{

	}
	.form-style ::placeholder,
	.booking-box .form-style{
		font-size: 1.25rem;
	}
}

.booking-box .arrow-img:before{
	width: 14px;
	height: 10px;
	content: " ";
	background: url("../images/arrow-down.png") #fff no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.form-style input{
	background-color: #fff;
	outline: 0;
}
.form-label-font{
	color: #999;
}
.booking-box h5{
	font-size: 18px;
}
.booking-box h4{
	font-size: 22px;
}
.booking-box input[type="checkbox"], .booking-box input[type="radio"]{
	border: 1px solid #ebc7a1;
	width: 22px;
	height: 22px;
	outline: 0;
	margin-top: 0px;
}
@media (min-width: 768px) {
	.booking-box input[type="checkbox"] {
		width: 19px;
		height: 19px;
	}
}
.form-check label{
	color: #222;
	font-size: 1rem;
	max-width: 100%;
}
@media (min-width: 768px) {
	.form-check label {
		font-size: 1.25rem;

	}
}
.course-btn{
	font-size: 18px;
}
.form-check-input:focus{
	box-shadow: 0 0 0 0.25rem rgb(235, 199, 161 ,25%);
}
#input-other{
	max-width: 130px;
	/*border-bottom: none;*/
	border-top: none;
	border-right: none;
	border-left: none;
	background-color: #fff;
	outline: 0;
}
@media (min-width: 768px) {
	#input-other {
		max-width: 100%;
	}
}
hr{
	background-color: #eee;
}
.agree-input label{
	font-size: 16px;
}
#common-success{
	min-height: 600px;
}
.btn-primary{
	background-image:linear-gradient(to bottom, #be9678, #c7a37e);
	border-color:#c7a37e #c7a37e #be9678;
}
.btn:hover{
	background-color: #c7a37e;
	border-color: #be9678;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
	border-color: #bd9a81;
}
.btn:focus-visible{
	box-shadow: 0 0 0 0.25rem rgba(189,154,129, .5);
}
.success-items { text-align: center; font-size: 18px; margin-top: 40px; color: #333; line-height: 26px; }
.success-items .title { margin-top: 20px; font-weight: bold; }
.success-items .icon-wrapper { font-size: 66px; color: #00d025; }
.success-items .btns { margin-top: 20px; }

.input-group-text{
	background-color: #c7a37e;
}
.flatpickr-minute~span{
	display: none;
}
/*.sub-menu li{
	display: block;
}*/
.sub-menu{
	width: 100%;
}
.header-top-left p{
	margin-bottom: 0px;
}

.fix-select option:first-child{
	display: none;
}
.fix-select{
	width: 100%;
	height: 100%;
	border: none;
	background: transparent;
	appearance: none;
	outline: 0;
	color: #aaa;
}












.layui-layer {
	max-width: 98%!important;
	border-radius: 8px;
}
/*.layui-layer{
	max-width: 100%;
}*/
.layui-layer-title{
	background-color: #be9678!important;
	color: #fff!important;
	font-weight: bold;
}
.layui-layer-btn {
	text-align: center!important;
}
.layui-layer-btn .layui-layer-btn0 {background:#c7a37e!important;color:#fff!important;border:none!important;}
.layui-layer-rim iframe {max-height: 100%!important;height: 626px!important;}

.layui-layer .layui-layer-setwin .layui-layer-close2 {
	right:-10px;
	top:-12px;
	width: 22px;
	height: 22px;
	background: none;
	/*font-size: inherit;*/
	text-align: center;
	line-height: 22px;
}
.layui-layer .layui-layer-setwin .layui-layer-close2:after {
	content: "×";
	width: 22px;
	height: 22px;
	font-size: 1.575rem;
	font-weight: normal;
	line-height: 22px;
	text-align: center;
	color: #000;
	/*text-shadow: 0 1px 0 #fff;*/
	opacity: .9;
}

.layui-layer .layui-layer-setwin .layui-layer-close1 {
	right:0;
	top:-6px;
	width: 20px;
	height: 20px;
	background: none;
	font-size: inherit;
}

.layui-layer .layui-layer-setwin .layui-layer-close1:after {
	content: "×";
	width: 20px;
	height: 20px;
	font-size: 1.275rem;
	font-weight: normal;
	line-height: 20px;
	text-align: center;
	color: #fff;
	/*text-shadow: 0 1px 0 #fff;*/
	opacity: .9;
}

.layui-layer .layui-layer-btn a {
	height:34px;
	line-height: 34px;
}
.layui-layer .layui-layer-content {
	text-align: center;
	font-size: 15px!important;
}



.btn-inner:hover, .btn-inner:focus, .btn-inner:active .btn-inner:link {
	background-color: transparent!important;
	border:none!important;
}
.btn:disabled {
	border:none!important;
}

.loading i {
	-webkit-animation: fa-spin 2s linear infinite;
	animation: fa-spin 2s linear infinite;
}

.loading i:before {
	content: "\f1ce";
}


.btn-inner span {
	font-style: normal;
	font-size: 16px;
	color: #fff;
	/*margin-left: -100px;*/
}

@media (min-width:768px) {
	.btn-inner span {
		font-size: 18px;
		/*margin-left: -120px;*/
	}
}

.order-btn .btn-inner span {
	font-weight: bold;
	font-size: 17px;
}

@media (min-width:768px) {
	.order-btn .btn-inner span {
		font-size: 22px;
	}
}





.quick-icon-wrapper .item {
	position: fixed;
	right:-64px;
	bottom: 24%;
	z-index: 99999;
	background-color: #e0002a;
	padding: 8px;
	color:#fff;
	border-radius: 6px 0 0 6px;
	font-size:14px;
	transition: all 0.5s;
	width: 100px;
}
.quick-icon-wrapper .item a {
	color:#fff;
}
.quick-icon-wrapper .item.in {
	right: 0;
}
.quick-icon-wrapper .item img{
	max-width: 24px;
}

.quick-icon-wrapper .item.item-contact {
	margin-bottom: 0;
	background-color: #3ec350;
}
.quick-icon-wrapper .item.item-booking {
	margin-bottom: 50px;
}

@media(min-width: 768px) {
	.quick-icon-wrapper .item {
		right:-86px;
		font-size:17px;
		width: 130px;
		padding: 10px;
	}
	.quick-icon-wrapper .item img{
		max-width: 30px;
	}
	.quick-icon-wrapper .item.item-booking {
		margin-bottom: 60px;
	}
}
.category-btn-style.active{
	color: #c7a37e;
	border-bottom: 2px solid #c7a37e;
}
.category-btn-style:not(:last-child){
	margin-right: 15px;
}
.category-btn-style{
	font-size: 1.5rem;
	padding: 13px 19px;
	color: #000;
}
.category-box{
	padding-bottom: 11px;
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}
.filter-style{
	width: 100px;
	padding: 10px 0px;
	border-top: solid 1px #ebc7a1;
	border-bottom: solid 1px #ebc7a1;
}
.filter-style.arrow-img:before{
	right: 13px;
}

.arrow-img:before{
	width: 14px;
	height: 10px;
	content: " ";
	background: url(../images/arrow-down.png) #fff no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.caption{
	padding: 10px;
	background: #fff;
	/*border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	box-shadow: 0px 0px 2px 2px #f3f3f3;*/
}
@media (min-width: 768px) {
	.caption {
		padding: 30px;
	}
}
/*.post-listting-shadow{
	border-radius: 10px;
	box-shadow: 0px 0px 2px 2px #f3f3f3;
}*/
.post-bg:after,.post-bg:before{
	content: " ";
	position: absolute;
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: 9;
}
.post-bg:hover:after{
	width: 87px;
	height: 151px;
	bottom: -20px;
	right: -5px;
	background-image: url(../images/swiper_right.png);
}
.post-bg:hover:before{
	width: 125px;
	height: 150px;
	top: -15px;
	left: -5px;
	background-image: url(../images/swiper_left.png);
}
.post-bg .caption h5{
	margin-bottom: 24px;
}
.post-bg .caption h5 a{
	font-size: 1.25rem;
	margin-bottom: 23px;
	color: #222;
	transition: all 0.5s;
}
@media (min-width: 768px) {
	.post-bg .caption h5 a {
		font-size: 1.5rem;
	}
}
.post-list-summary{
	color: #666;
	height: 42px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.post-bg{
	/*padding: 0px 10px;*/
	position: relative;
	font-size: 14px;
}
@media (min-width: 768px) {
	.post-list-summary {
		height: 48px;
	}
	.post-bg{
		font-size: 16px;
	}
}
.date{
	color: #222;
}
.date i{
	color: #999999;
}
.btn-style{
	border-bottom: 1px solid #ebc7a1;
	color: #ebc7a1;
	z-index: 99;
	position: relative;
	transition: all 0.5s;

}
.post-bg:hover .btn-style{
	color: #fff;
	border-bottom: 0;

}
.post-bg:hover h5 a{
	color: #894041;
}
.post-more-box{
	padding: 13px 29px;
	transition: all 0.5s;
}
.post-bg:hover .post-more-box{
	background: url("../images/btn-style-bg.png") no-repeat;
}
.post-detail-title{
	background: url("../images/post-detail-title-bg.png") no-repeat;
	padding: 0px 18px;
	background-size: cover;

	/*background-size: cover;
	background-size: contain;*/
}
.post-detail-title h1{
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	color: #85393a;
	margin-bottom: 0px;
}
@media (min-width: 768px) {
	.post-detail-title{
		background-size: auto;
	}
	.post-detail-title h1{
		font-size: 48px;
		height: 73px;
		line-height: 73px;
	}
}
.filter-year{
	margin-bottom: 30px;
}
.detail-date{
	padding: 0px 18px;
}
.post-filter-year .fix-select option:first-child{
	display: block;
}
#page .pagination .active>.page-link,#page .pagination .page-link.active{
	background-image: url("../images/page_active_bg.png");
	background-color: transparent;
	background-repeat: no-repeat;
}
#page .pagination .page-link:hover{
	background-color: transparent;
}
#page .pagination .page-link{
	border-radius: 0;
	border: 0px;
	background-image: url("../images/page_bg.png");
	background-repeat: no-repeat;
}
#page .pagination {
	--bs-pagination-padding-x: 1.35rem;
	--bs-pagination-padding-y: 0.85rem;
	--bs-pagination-hover-color: #85393a;
	--bs-pagination-color: #fff;
	--bs-pagination-focus-box-shadow: none;
	--bs-pagination-focus-color: #85393a;
	--bs-pagination-focus-bg: transparent;
}
.post-pdf-content i{
	font-size: 24px;
}
.post-pdf-content a{
	color: #ff0000;
	font-size: 16px;
}
@media (min-width: 768px) {
	.post-pdf-content i{
		font-size: 30px;
	}
	.post-pdf-content a{
		color: #ff0000;
		font-size: 20px;
	}
}
.mw-95{
	max-width: 95% !important;
}
#modal-doctor .doctor-desc{
	
}
@media (min-width: 991px) {
	#modal-doctor .image,#modal-doctor .doctor-desc{
		max-width: 50%;
	}
}
.team-education span{
	height: 67.5px;
	overflow: hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
}
.category-heading{
	background: #85393a;
	font-size: 24px;
	color: #fff;
}
.category-list .active{
	color: #c7a37e;

}
.category-list > .first-level{
	background: #fafafa;
	font-size: 18px;
	border-bottom: 1px solid #fff !important;
}
@media (min-width: 768px) {
	.category-heading{
		font-size: 28px;
	}
	.category-list > .first-level{
		font-size: 20px;
	}
}
@media (min-width: 1200px) {
	.category-heading{
		font-size: 40px;
	}
	.category-list > .first-level{
		font-size: 24px;
	}
}
.category-link i{
	font-size: 14px;
}
.category-link:not(:last-child){
	border-bottom: 1px solid #e5e5e5;
}
.category-link{
	color: #444444;
	font-size: 18px;
}
#product-list  a:hover,#product-related a:hover{
	color: #85393a;
}
#product-list .image img,#product-related .image img{
	padding: 4px;
	border: 1px solid #f3f3f3;
	border-radius: 2px;
}
#product-list h4,#product-related h4{
	font-size: 22px;
}
.gallery-top{
	width: calc(100% - 120px);
}
.image img{
	cursor: pointer;
}
.gallery-thumbs{
	width: 80px;
	height: 180px;
}
@media (min-width: 425px) {
	.gallery-thumbs{
		width: 85px;
		height: 280px;
	}
}
@media (min-width: 768px) {
	.gallery-thumbs{
		width: 120px;
		height: 520px;
	}
}
.image .swiper-button-next{
	bottom: -30px;
	top: auto;
}
.image .swiper-button-prev{
	top: 10px;


}
.gallery-top img{
	border: 1px solid #c7a37e;
}
.image .swiper-button-next:after,.image .swiper-button-prev:after{
	width: 20px;
	height: 12px;
	font-size: 14px;
}
.image .swiper-button-next,.image .swiper-button-prev{
	width: 20px;
	height: 12px;
	transform: rotate(90deg);
	left: 50%;
	margin-left: -10px;
}
.gold-line{
	width: 105px;
	height: 3px;
	background: #c7a47f;
}
.grey-line{
	height: 1px;
	background: #cececa;
}
#product-info h1{
	color: #85393a;
	font-size: 36px;
}
.price-info{
	font-size: 26px;
}
.price-info .price-now{
	color: #c7a37e;
}
.price-info .price-old{
	font-size: 18px;
}
@media (min-width: 768px) {
	#product-info h1{
		font-size: 50px;
	}
	.price-info{
		font-size: 36px;
	}
	.price-info .price-old{
		font-size: 24px;
	}
}
.ul-style ul li{
	position: relative;
}
.ul-style ul li:before{
	content: " ";
	width: 6px;
	height: 6px;
	display: inline-block;
	background: #c7a37e;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: -15px;
	transform: translate(-50%,-50%);
}
.btn-cart{
	height: 60px;
	font-size: 18px;
	color: #fff;
	background: #85393a;
}
#product-info #input-quantity{
	width: 84px;
	height: 42px;
	border: 1px solid #c7a37e;
}
#product-info .input-group-text {
	border: 1px solid #c7a37e;
	background: #fff;
	padding: 0.325rem 0.85rem;
}
@media (min-width: 768px) {
	#product-info #input-quantity{
		width: 84px;
		height: 48px;
	}
	#product-info .input-group-text{
		padding: .375rem 1.25rem;
	}
}
.product-info-h3{
	font-size: 36px;
	color: #c7a37e;
}
hr{
	background: #f4f4f4;
}
#product-related.swiper-container-horizontal>.swiper-pagination-bullets,#product-related .swiper-pagination-custom,#product-related .swiper-pagination-fraction{
	bottom: -5px;
}
#product-related .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
}
#product-related .swiper-pagination-bullet-active{
	background: #c7a37e;
}
.post-list .post-bg{
	padding: 5px;
}
.post-list .post-border{
	/*border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;*/
	border-radius: 10px;
	box-shadow: 0px 0px 2px 2px #f3f3f3;
}