/* 字体 */
@font-face {
	font-family: 'Philosopher';
	src: url('../font/Philosopher-BoldItalic.ttf');
}

@keyframes line {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

input::placeholder,
textarea::placeholder{
	color: #999999;
	font-weight: 400;
}
.container {
	background: #F2EFE9;
}

/* header */
.header {
	height: 80px;
	background-color: #F2EFE9;
	box-sizing: border-box;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 21;
	transition: all ease .6s;
	/* box-shadow: 0 1px 0 0 #DCDCDC; */
}
.header > .flex{
	gap: 40px;
}
.header-l{
	margin-left: 40px;
	display: flex;
	align-items: center;
	gap: 40px;
	height: 100%;
}
.header-r{
	margin-right: 40px;
	display: flex;
	align-items: center;
	gap: 40px;
	height: 100%;
}
.h-logo {
	width: 188px;
}

.h-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	height: 100%;
}

.h-nav-item {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.h-nav-item a {
	font-size: 14px;
	color: #333333;
	letter-spacing: 1.5px;
	line-height: 20px;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.h-nav-item>a::before {
	content: '';
	width: 0px;
	height: 2px;
	background: #B4A085;
	position: absolute;
	bottom: 2px;
	left: 50%;
	transform: translateX(-50%);
	transition: all ease .6s;
}

.h-nav-item>a::after {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url('../images/arrow-down-black.svg');
	transition: all ease .6s;
}

.h-nav-item.no-child>a::after {
	display: none;
}

.h-nav-child {
	min-width: 160px;
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px;
	background: #F2EFE9;
	box-shadow: 0 1px 0 0 #DCDCDC;
	transition: all ease .6s;
	max-height: 200px;
	overflow-y: auto;
	display: none;
}

.h-nav-child-item {
	transition: all ease .6s;
}

.h-nav-item:hover>a {
	color: #B4A085;
}

.h-nav-item:hover>a::before {
	width: 40px;
}

.h-nav-item:hover>a::after {
	background-image: url('../images/arrow-down-yellow.svg');
	transform: rotate(180deg);
}

.h-nav-item:hover .h-nav-child {
	display: block;
}

.h-nav-child-item:hover {
	color: #B4A085;
}

.h-close {
	width: 24px;
	height: 24px;
}

/* header end */

/* footer */
footer,
.footer {
	background: #2B2B2B;
}

.footer-top {
	padding: 40px 0;
}

.f-logo {
	width: 149px;
}

.f-follow {
	font-size: 12px;
	color: rgb(255 255 255 / 60%);
	letter-spacing: 0;
	line-height: 20px;
	margin-top: 24px;
}

.f-follow-btn {
	background: #FFFFFF;
	border-radius: 4px;
	padding: 5px 8px 5px 4px;
	margin-top: 8px;
	font-weight: 600;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 16px;
	display: inline-flex;
	gap: 4px;
	align-items: center;
	cursor: pointer;
}

.f-follow-btn>img {
	width: 17px;
	height: 14px;
}

.f-nav {
	display: flex;
	gap: 56px;
}

.f-nav-item>a {
	font-size: 12px;
	color: rgb(255 255 255 / 60%);
	letter-spacing: 0;
	line-height: 20px;
}

.f-nav-child {
	padding-top: 8px;
	margin-top: 8px;
	border-top: 1px solid rgb(242 239 233 / 40%);
	display: flex;
	gap: 40px;
}

.f-nav-child a {
	font-weight: 400;
	font-size: 12px;
	color: #FFFFFF;
	letter-spacing: 0;
	line-height: 20px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.f-nav-child a:last-child {
	margin-bottom: 0px;
}

.footer-bottom {
	padding: 16px 0;
	border-top: 1px solid rgb(242 239 233 / 40%);
}

.f-copyright,
.f-copyright > a{
	font-weight: 400;
	font-size: 12px;
	color: rgb(255 255 255 / 80%);
	letter-spacing: 0;
	text-align: right;
	line-height: 16px;
}

.f-xhdc {
	width: 119px;
}

/* footer end */

/* underline start */
.underline {
	position: relative;
	padding-bottom: 3px;
}

.underline::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #B4A085;
}

.underline:hover::after {
	animation: line 1s forwards;
}

/* underline end */

/* select start */
.select {
	position: relative;
	display: inline-block;
}

.select .select-selected {
	border-bottom: 1px solid #2B2B2B;
	padding: 0px 20px 0px 0;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 20px;
	cursor: pointer;
}

.select .select-selected:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 4px;
	width: 24px;
	height: 24px;
	background-image: url(../images/arrow-down-black.svg);
	background-size: 100% 100%;
	transform: translateY(-50%);
}

.select .select-list {
	position: absolute;
	top: 100%;
	left: -12px;
	right: 0;
	z-index: 99;
	display: none;
	width: calc(100% + 24px);
	padding: 6px 0;
	border: 1px solid #DCDCDC;
}

.select .select-item {
	padding: 6px 16px;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 20px;
	cursor: pointer;
	white-space: nowrap;
}

.select .select-item:hover {
	background: #F2EFE9;
}

.select .select-list.open {
	display: block !important;
}

.select .select-selected.open::after {
	transform: translateY(-50%) rotate(180deg);
}

/* select end */

/* checkbox start */
.custom-checkbox {
	display: flex;
	color: #2b2b2b;
	font-size: 14px;
	line-height: 22px;
}

.custom-checkbox a {
	color: #6A4520;
}

.custom-checkbox input[type="checkbox"] {
	display: none;
}

.custom-checkbox .checkmark {
	display: inline-block;
	width: 18px;
	height: 18px;
	background: #fff;
	margin-right: 8px;
	border-radius: 2px;
	position: relative;
	border: 1px solid #6A4520;
	margin-top: 2px;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 6px;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 4px;
	height: 7px;
	border: solid #fff;
	border-width: 0 1px 1px 0;
}

.custom-checkbox:hover .checkmark {
	border: 1px solid #6A4520;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark {
	background: #6A4520;
}

/* checkbox end */

/* radio start */
.custom-radio {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: 400;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.custom-radio input[type="radio"] {
	display: none;
	/* 隐藏默认的 radio 按钮 */
}

.radio-btn {
	width: 20px;
	height: 20px;
	border: 2px solid #B4A085;
	border-radius: 50%;
	position: relative;
	margin-right: 8px;
	transition: background-color 0.2s ease;
}

.radio-btn::after {
	content: '';
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	left: 4px;
	top: 4px;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.custom-radio input[type="radio"]:checked+.radio-btn {
	background-color: #B4A085;
}

.custom-radio input[type="radio"]:checked+.radio-btn::after {
	opacity: 1;
	/* 当选中时显示内部圆点 */
}

/* radio end */

/* form start */
.form-box {
	width: 100%;
}

.form-cont {
	background: #Fff;
	width: 100%;
}

.form-flex {
	display: flex;
}

.form-item {
	flex: 1;
	/* box-shadow: 0 0 0 1px #DCDCDC; */
	padding: 6px 12px;
	position: relative;
	margin-left: -1px;
	margin-bottom: -1px;
	margin-top: 0px;
	border: 1px solid #DCDCDC;
}

.form-label {
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 16px;
	position: relative;
	display: inline-block;
	padding-right: 12px;
}

.form-value {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form-value>input,
.form-value>textarea,
.form-value>.select,
.form-value>p {
	border: none;
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	margin-top: 2px;
	width: 100%;
	background-color: transparent;
}

.form-value.disabled>input,
.form-value.disabled>textarea,
.form-value.disabled>.select,
.form-value.disabled>p {
	color: #999999;
}
.form-value>p.p2{
	font-weight: 400;
	font-size: 12px;
	color: #666666;
	letter-spacing: 0;
	text-align: right;
	line-height: 16px;
}
.form-item.required .form-label::after {
	content: '*';
	position: absolute;
	top: 0;
	right: 0;
	font-size: 14px;
	color: #DF1329;
}

.form-item.error {
	box-shadow: 0 0 0 1px #C23343;
	border: none;
	background: #FFF8F6;
}

.form-item.error .form-label {
	color: #C23343;
}

.form-send {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	width: 120px;
	height: 40px;
}

.form-send>button {
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	cursor: pointer;
	height: 100%;
	background: #B4A085;
}

.form-send>button[disabled] {
	background: #dcdcdc;
}

.form-btn {
	margin-top: 24px;
	width: 100%;
	height: 48px;
	background: #B4A085;
	border: 1px solid #B4A085;
	@media screen and (max-height: 1100px) and (min-width: 769px) {
		/* position: absolute;
		bottom: 0;
		left: 0; */
	}
}

.form-btn>button,
.form-btn>a {
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	cursor: pointer;
	height: 100%;
}
.form-btn.line{
	background: #FFFFFF;
	border: 1px solid #B4A085;
}
.form-btn.line > button,
.form-btn.line > a{
	color: #B4A085;
}
.form-btn.disabled{
	background: #DCDCDC;
	border: 1px solid #DCDCDC;
}
.form-btn.disabled > button,
.form-btn.disabled > a{
	color: #FFFFFF;
}

.form-error {
	position: absolute;
	top: 7px;
	right: 12px;
	font-size: 12px;
	color: #DF1329;
	display: flex;
	align-items: center;
	gap: 4px;
}

.form-error>img {
	width: 16px;
	height: 16px;
}

/* form end */

/* modal start */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	/* background-color: #F2EFE9; */
	display: none;
}

.modal.open {
	display: block;
}

.modal-mark {
	background: rgb(0 0 0 / 50%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal-content {
	padding: 24px 40px 40px;
	position: absolute;
	background: #FFFFFF;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 63.5%;
	max-width: 960px;
}

.modal-close {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 24px;
	right: 24px;
	cursor: pointer;
}

.modal-header {
	font-weight: 600;
	font-size: 18px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 28px;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid #2B2B2B;
}

/* modal end */

/* modal-login start */
.modal-login {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1001;
	display: none;
}

.modal-login>.mark {
	background: rgb(0 0 0 / 50%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.m-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 480px;
	height: 560px;
	background: #FFFFFF;
	display: none;
}

.m-box.open {
	display: block;
}

.m-header {
	height: 63px;
	border-bottom: 1px solid #DCDCDC;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.m-header-close {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.m-header-title {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
}

.m-content {
	padding: 32px 40px;
	height: calc(100% - 63px);
	position: relative;
}

.m-fixed-bottom {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	background: #ffffffe6;
	box-shadow: 0 2px 8px 0 #78788029;
	padding: 24px 87px 32px;
}

.modal-login .form-btn {
	background: #B4A085;
}

.form-title {
	font-weight: 600;
	font-size: 24px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 32px;
}

.toggle-password {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.form-or {
	font-size: 12px;
	color: #2B2B2B;
	text-align: center;
	line-height: 16px;
	position: relative;
}

.form-or::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: #DCDCDC;
}

.form-or>span {
	background: #fff;
	display: inline-block;
	z-index: 1;
	position: relative;
	padding: 0 16px;
}

.form-change {
	width: 100%;
	height: 56px;
	background: #FFFFFF;
	box-shadow: 0 0 0 1px #000000;
	font-family: PingFangSC-Medium;
	font-weight: 500;
	font-size: 16px;
	color: #2B2B2B;
	line-height: 24px;
	position: relative;
}

.form-change>a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.f-change-icon {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 16px;
	left: 24px;
}

.form-tip {
	background: #F1F1F1;
	padding: 8px;
	text-align: center;
	color: #2b2b2b;
	font-size: 14px;
	line-height: 24px;
}

.form-tip a {
	color: #007AFF;
	display: inline-block;
}

.form-underline {
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	line-height: 22px;
}

.form-underline>a {
	text-decoration: underline;
}

.error-box {
	border: 1px solid #EEEEEE;
	border-radius: 16px;
	padding: 16px;
}

.form-desc {
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.form-scroll {
	overflow-y: auto;
}

/* modal-login end */

/* 预定流程 start */
.booking-step {
	height: 44px;
	background: #FFFFFF;
	position: fixed;
	top: 80px;
	width: 100%;
	z-index: 20;
}

.booking-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 8px;
}

.booking-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-left: 104px;
	position: relative;
	opacity: 0.4;
}

.booking-item::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 88px;
	transform: translateY(-50%);
	border: 1px dashed #2B2B2B;
}

.booking-item:first-child {
	padding-left: 0;
}

.booking-item:first-child::after {
	display: none;
}

.booking-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	padding: 6px;
	display: flex;
}

.booking-text {
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
}

.booking-item.current,
.booking-item.finish {
	opacity: 1;
}

.booking-item.current .booking-icon {
	border: 1px solid #2B2B2B;
}

/* 预定流程 end */

/* booking1 start */
.content-booking {
	min-height: calc(100vh - 49px);
	padding-top: 156px;
}

.booking-box {
	padding-bottom: 80px;
}

.booking-title {
	font-weight: 600;
	font-size: 18px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 28px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.booking-cont {
	display: flex;
	gap: 40px;
}

.booking-l {
	width: 63.4%;
}

.booking-r {
	width: 33.4%;
}

.calendar-box {
	background: #FFFFFF;
	padding: 16px 32px 24px;
}

.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.calendar-tips {
	display: flex;
	align-items: center;
	gap: 24px;
}

.calendar-tips-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.calendar-tips-icon {
	width: 32px;
	height: 16px;
	border: 1px solid #2B2B2B;
	position: relative;
}

.calendar-tips-icon.can {
	background: #F2EFE9;
}

.calendar-tips-icon.cannot::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: #DCDCDC;
}
.calendar-tips-text{
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 16px;
}
.calendar-line {
	width: 100%;
	height: 1px;
	background: #2B2B2B;
	margin: 16px 0 24px;
}

.calendar-body {
	display: flex;
	gap: 40px;
}

.calendar-item {
	flex: 1;
}

.ctrl {
	display: flex;
	justify-content: center;
	position: relative;
}

.ctrl .arrow {
	width: 24px;
	height: 24px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.ctrl .arrow.prev {
	left: 0;
}

.ctrl .arrow.next {
	right: 0;
}

.ctrl .title {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
}

.week {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #666666;
	letter-spacing: 0;
	text-align: center;
	line-height: 22px;
	border-bottom: 1px solid rgb(43 43 43 / 10%);
	margin-top: 24px;
	padding-bottom: 9px;
}

.week_item {
	width: calc(100% / 7);
	text-align: center;
}

.item-box {
	display: flex;
	flex-wrap: wrap;
	margin-top: 8px;
}

.item {
	width: calc(100% / 7);
	text-align: center;
	height: 40px;
	cursor: pointer;
	margin-bottom: 8px;
}

.item:hover {
	background: rgba(241, 239, 234, .4);
}

.date {
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: center;
	line-height: 22px;
}

.money {
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: center;
	line-height: 16px;
	margin-top: 4px;
}

.item.choose_start,
.item.choose_end,
.item.choose {
	background: #F2EFE9 !important;
}

.item.off {
	cursor: not-allowed;
}

.item.off .date {
	color: #999999;
}

.item.disabled {
	cursor: not-allowed;
}

.item.disabled .date {
	color: #999999;
	text-decoration: line-through;
}

.item.disabled .money {
	display: none;
}

.booking-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: transparent;
	@media screen and (max-height: 1100px) and (min-width: 769px) {
		position: relative;
		top: 0;
		max-height: 550px;
		overflow-y: scroll;
	}
	
	
}

.booking-form .form-item {
	background: #fff;
}

/* booking1 end */

/* booking2 start */
.booking2-date {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #FFFFFF;
	box-shadow: 0 0 0 1px #DCDCDC;
}

.booking2-date-text {
	flex: 1;
	height: 48px;
	background: #FFFFFF;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.booking2-date-p1 {
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 16px;
}

.booking2-date-p2 {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.booking2-date-icon {
	width: 48px;
	height: 48px;
	background: #B4A085;
	box-shadow: 0 0 0 1px #DCDCDC;
	padding: 14px;
}

.booking2-room-item {
	
}

.booking2-room-main {
	display: flex;
	margin-top: 24px;
	background: #FFFFFF;
}

.booking2-room-l {
	width: 280px;
	height: 280px;
	position: relative;
}

.booking2-room-all {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgb(180 160 133 / 90%);
	padding: 6px 8px;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.booking2-room-all>img {
	width: 16px;
	height: 16px;
}

.booking2-room-all>span {
	font-weight: 600;
	font-size: 12px;
	color: #fff;
	letter-spacing: 0;
	line-height: 16px;
}

.booking2-room-r {
	padding: 40px;
	flex: 1;
	position: relative;
}

.booking2-room-title {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	display: inline-block;
	padding-right: 32px;
	position: relative;
	cursor: pointer;
}

.booking2-room-title::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(180deg);
	width: 24px;
	height: 24px;
	background-image: url("../images/arrow-left-black.svg");
	background-size: 100% 100%;
	transition: all 0.6s;
}

.booking2-room-title:hover::after {
	right: -8px;
}

.booking2-room-desc {
	margin-top: 40px;
}

.booking2-desc-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.booking2-desc-item:last-child {
	margin-bottom: 0px;
}

.booking2-desc-item>img {
	width: 24px;
	height: 24px;
}

.booking2-desc-item>span {
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.booking2-room-price {
	position: absolute;
	top: 40px;
	right: 40px;
}

.booking2-price-p {
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 16px;
	margin-bottom: 6px;
}

.booking2-price-p>span {
	font-weight: 600;
	font-size: 24px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 32px;
	margin-right: 4px;
}

.booking2-room-view {
	position: absolute;
	bottom: 40px;
	right: 40px;
}

.booking2-view-click {
	font-weight: 400;
	font-size: 14px;
	color: #B4A085;
	letter-spacing: 0;
	line-height: 20px;
	padding-right: 20px;
	padding-bottom: 2px;
	cursor: pointer;
}

.booking2-view-click::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url(../images/arrow-down-yellow.svg);
	background-size: 100% 100%;
	transition: all 0.6s;
}

.booking2-room-hover {
	background: #ffffff99;
	padding: 0 40px;
	display: none;
}

.booking2-hover-item {
	padding: 24px 0;
	border-bottom: 1px solid #DCDCDC;
	
}

.booking2-hover-item:last-child {
	border-bottom: none;
}
.booking2-hover-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
}
.booking2-hover-l{
	flex: 1;
	position: relative;
}
.booking2-hover-l>p {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.booking2-hover-l>a {
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
	text-decoration: underline;
	margin-top: 4px;
	display: inline-block;
}
.booking2-hover-l .price-arrow{
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 0;
	right: 0;
	cursor: pointer;
}
.booking2-hover-r {
	display: flex;
	align-items: center;
	gap: 40px;
}

.booking2-hover-text p {
	font-weight: 400;
	font-size: 12px;
	color: #666666;
	letter-spacing: 0;
	text-align: right;
	line-height: 16px;
}

.booking2-hover-text p span {
	font-weight: 600;
	font-size: 24px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 32px;
	margin-top: 2px;
}

.booking2-hover-btn {
	width: 72px;
	height: 32px;
	background: #B4A085;
}

.booking2-hover-btn>button {
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	cursor: pointer;
	height: 100%;
}
.booking2-hover-box2{
	display: none;
}
.booking2-hover-multiple{
	padding: 24px 8px 0;
	border-top: 1px solid #DCDCDC;
	margin-top: 24px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.booking2-mul-item{
	background: #FFFFFF;
	border: 1px solid #D1C0AA;
	min-width: 102px;
}
.booking2-mul-date{
	font-weight: 600;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 20px;
	background: #B4A085;
	padding: 4px;
}
.booking2-mul-price{
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
	background: #FFFFFF;
	padding: 8px;
}
.booking2-hover-box.open .price-arrow{
	transform: rotate(180deg);
}
.booking2-form-box {
	padding: 16px;
	background: #FFFFFF;
	position: relative;
}
/* .booking2-form-box:last-child{
	border: 1px solid #B4A085;
} */

.fxdetail:last-child{
	border: 1px solid #B4A085;
}

.booking2-form-title {
	font-weight: 400;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	margin-bottom: 16px;
}

.booking2-form-operate {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.booking2-operate-item {
	font-weight: 400;
	font-size: 14px;
	color: #B4A085;
	letter-spacing: 0;
	line-height: 20px;
	padding-bottom: 2px;
	position: relative;
}

.booking2-form-type {
	display: flex;
	gap: 16px;
}

.booking2-type-l {
	width: 72px;
	height: 72px;
}

.booking2-type-r {
	flex: 1;
}

.booking2-type-name {
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
	margin-bottom: 4px;
}

.booking2-type-p {
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
	margin-top: 2px;
}
.tip-icon{
	position: relative;
	cursor: pointer;
}
.tip-p{
	position: absolute;
	bottom: 20px;
    right: -100%;
	white-space: nowrap;
	background: #000000d9;
	box-shadow: 0 16px 64px -16px #0000000d, 0 8px 32px -8px #190f0f12, 0 4px 8px -2px #00000014;
	border-radius: 4px;
	padding: 4px 8px;
	font-family: MicrosoftYaHei;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 22px;
	z-index: 99;
	display: none;
}
.tip-icon:hover .tip-p{
	display: block;
}
.booking2-form-add {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 400;
	font-size: 14px;
	color: #B4A085;
	letter-spacing: 0;
	cursor: pointer;
}

.booking2-form-add:hover>span::after {
	animation: line 1s forwards;
}

.booking2-form-result {
	padding: 16px 0 0;
	border-top: 1px solid #DCDCDC;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.booking2-result-l {
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
}

.booking2-result-r {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.booking2-result-r span:nth-child(1) {
	font-weight: 600;
	font-size: 24px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 32px;
}

.booking2-result-r span:nth-child(2) {
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 16px;
}
.modal-price .modal-content{
	max-width: 480px;
}
.modal-price-item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.modal-price-p1{
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}
.modal-price-p2{
	font-weight: 400;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}
.booking2-room-item.open .booking2-room-hover{
	display: block;
}
.booking2-room-item.open .booking2-view-click::before{
	transform: translateY(-50%) rotate(180deg);
}
/* booking2 end */

/* booking3 start */
.booking3-service-item {
	margin-top: 24px;
	background: #FFFFFF;
}

.booking3-service-item:first-child {
	margin-top: 0px;
}

.booking3-service-main {
	display: flex;
}

.booking3-service-l {
	width: 320px;
	height: 320px;
	position: relative;
}

.booking3-service-desc {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: rgb(255 255 255 / 90%);
	padding: 24px;
	display: flex;
	justify-content: space-between;
	width: calc(100% - 32px);
	cursor: pointer;
}

.service-desc-l>p:nth-child(1) {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.service-desc-l>p:nth-child(2) {
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
	margin-top: 4px;
}

.service-desc-r>p:nth-child(1) {
	font-weight: 600;
	font-size: 24px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 32px;
}

.service-desc-r>p:nth-child(2) {
	font-weight: 400;
	font-size: 12px;
	color: #666666;
	letter-spacing: 0;
	text-align: right;
	line-height: 16px;
	margin-top: 2px;
}

.booking3-service-r {
	padding: 40px 10px 50px;
	flex: 1;
	position: relative;
}
.booking3-service-num{
	overflow-y: auto;
	max-height: 230px;
	padding: 1px 30px;
	height: 100%;
}
.booking3-num-item {
	padding: 12px 16px;
	box-shadow: 0 0 0 1px #DCDCDC;
	margin-bottom: 16px;
}

.booking3-service-num:last-child {
	margin-bottom: 0px;
}

.quantity-title {
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 16px;
	margin-bottom: 8px;
}
.quantity-select{
	display: flex;
	align-items: center;
	gap: 16px;
}
.select-text{
	flex: 1;
	border: 0.5px solid #FFFFFF;
	border-radius: 4px;
}
.select-num{
	width: 64px;
	border: 0.5px solid #DCDCDC;
	border-radius: 4px;
}
.select-num .select-selected{
	text-align: center;
	padding: 5px 20px 5px 0;
}
.select-num .select-selected.disabled{
	background: #F6F6F6;
}
.select-num .select-list{
	top: 33px;
}
.quantity-control {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.quantity-btn {
	height: 24px;
	background: #FFFFFF;
	border: 0.5px solid #DCDCDC;
	border-radius: 4px;
	padding: 0px 10px;
	display: flex;
	gap: 20px;
	align-items: center;
	position: relative;
}

.quantity-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: 1px;
	background: #DCDCDC;
}

.quantity-control button {
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.3s;
	background: transparent;
}

.quantity-control button>img {
	width: 20px;
	height: 20px;
}

.quantity-control button.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.quantity-control input {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	width: auto;
	border: none;
}

.booking3-service-total {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 40px;
	border-top: 1px solid #DCDCDC;
	min-height: 50px;
	background: #FFFFFF;
}

.booking3-total-l {
	font-weight: 400;
	font-size: 14px;
	color: #B4A085;
	letter-spacing: 0;
	line-height: 20px;
	cursor: pointer;
}

.booking3-total-r p {
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 22px;
}

.booking3-total-r p>span {
	font-weight: 600;
	font-size: 24px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 32px;
	margin-left: 16px;
}
.booking3-total-r{
	position: relative;
}
.booking3-total-r .total-text{
	max-width: 90px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}
.booking3-total-r .total-hover{
	position: absolute;
	bottom: 32px;
	left: -30%;
	background: #FFF;
	box-shadow: 0 0px 7px 0px #ddccddcc;
	padding: 4px 8px;
	z-index: 99;
	text-align: left;
	display: none;
}
.booking3-total-r .total-box:hover .total-hover{
	display: block;
}
.total-none .booking3-total-l {
	color: #DCDCDC;
}

.booking3-transfer-tab {
	display: flex;
	align-items: center;
}

.transfer-tab-item {
	flex: 1;
	height: 48px;
	background: #FFFFFF;
	box-shadow: 0 0 0 1px #DCDCDC;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
	cursor: pointer;
	transition: all 0.6s;
}

.transfer-tab-item.active {
	background: #B4A085;
	color: #FFFFFF;
}

.booking3-form-box {
	padding: 24px;
	background: #FFFFFF;
	position: relative;
}

.booking3-form-title {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	margin-bottom: 24px;
}

.booking3-form-title-change-select{
	float: right;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	font-size: 14px;
	color: #B4A085;
	cursor: pointer;
	position: relative;
}
.booking3-form-title-change-select::after{
	content: '';
	width: 56px;
	height: 1px;
	background: #B4A085;
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translate(-50%);

}


.booking3-form-box .form-value>p {
	font-size: 14px;
}
.booking3-form-type {
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #DCDCDC;
	position: relative;
}
.booking3-form-type:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.booking3-type-flex{
	display: flex;
	gap: 16px;
}
.booking3-type-l {
	width: 72px;
	height: 72px;
}

.booking3-type-r {
	flex: 1;
	position: relative;
}

.booking3-type-name {
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
	margin-bottom: 4px;
}

.booking3-type-p {
	padding-right: 80px;
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
	margin-top: 2px;
}

.booking3-type-price {
	position: absolute;
	right: 0;
	bottom: 0;
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 16px;
}

.booking3-form-type:last-child .booking3-type-price {
	bottom: 0;
}

.booking3-type-price span {
	font-weight: 600;
	font-size: 18px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 28px;
}
.booking3-type-notes{
	display: flex;
	align-items: center;
	margin-top: 8px;
}
.booking3-notes-text{
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
}
.booking-r .booking3-service-total {
	position: static;
	padding: 0;
	min-height: auto;
	border-top: none;
}

.booking-r .booking3-total-l {
	color: #2B2B2B;
}

.booking-r .booking3-total-r p>span {
	font-weight: 600;
	font-size: 18px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 28px;
}

.booking-r .booking3-total .booking3-total-l {
	font-weight: 600;
}
.booking-r > form{
	position: sticky;
	top: 200px;
	
}
.booking-r > form::-webkit-scrollbar{
	/* width: 0; */
}

.booking3-total {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid #2B2B2B;
}

.booking3-total .booking3-total-r p>span {
	font-weight: 600;
	font-size: 24px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: right;
	line-height: 32px;
}

.modal-service-box {
	display: flex;
	gap: 40px;
}

.modal-service-item {
	background: #F2EFE9;
	padding: 40px;
	flex: 1;
}

.modal-service-name {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.modal-service-p {
	color: #2b2b2b;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
}

.modal-service-p>a {
	color: #B4A085;
	display: inline-block;
}

/* booking3 end */

/* booking4 start */
.booking4-form-box {
	padding: 24px;
	background: #FFFFFF;
	position: relative;
}

.booking4-form-title {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	margin-bottom: 24px;
}

.booking4-code {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}

.booking4-input {
	background: #FFFFFF;
	box-shadow: 0 0 0 1px #DCDCDC;
	height: 46px;
	flex: 1;
	padding: 11px;
}

.booking4-input>input {
	border: none;
	font-weight: 400;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	width: 100%;
}

.booking4-btn {
	width: 120px;
	height: 48px;
	background: #B4A085;
}

.booking4-btn>button {
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	cursor: pointer;
	height: 100%;
	background: #B4A085;
}

.abstract-item {
	margin-bottom: 16px;
}

.abstract-item:last-child {
	margin-bottom: 0;
}

.abstract-label {
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 16px;
	margin-bottom: 4px;
}

.abstract-value {
	display: flex;
	align-items: center;
	gap: 24px;
}

.abstract-value>span {
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}

.abstract-value>a {
	font-weight: 400;
	font-size: 14px;
	color: #B4A085;
	letter-spacing: 0;
	line-height: 20px;
	padding-bottom: 3px;
}

.booking4-info {
	position: relative;
}

.booking4-info-error {
	position: absolute;
	bottom: -24px;
	left: 0;
	font-size: 12px;
	color: #DF1329;
	display: flex;
	align-items: center;
	gap: 4px;
}

.booking4-info-error>img {
	width: 16px;
	height: 16px;
}

.booking4-pay {
	background: #FFFFFF;
}

.pay-header {
	border: 1px solid #DCDCDC;
	border-top: none;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pay-icon{
	display: flex;
	align-items: center;
	gap: 8px;
}
.pay-icon > div{
	width: 38px;
}
.pay-cont {
	padding: 24px;
	border: 1px solid #B4A085;
	border-top: none;
	display: none;
}
.pay-tabs-item:first-child .pay-header{
	border-top: 1px solid #DCDCDC;
}
.pay-tabs-item.active .pay-cont{
	display: block;
}
.pay-tabs-item.active .pay-header{
	background: #F2EFE9;
	border: 1px solid #B4A085;
}
.pay-cont-text {
	font-weight: 500;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	margin-bottom: 16px;
}
.pay-cont-card{
	width: 320px;
	height: inherit;
	min-height: 200px;
	border-radius: 16px;
}
.pay-cont-card > img{
	/* object-fit: cover; */
}
.booking4-guide {
	background: #FFFFFF;
	box-shadow: 0 0 0 1px #F2EFE9;
	margin-top: 16px;
}

.guide-header {
	background: #F2EFE9;
	padding: 8px 16px;
}

.guide-header .custom-checkbox a {
	color: #007AFF;
	display: inline-block;
}

.guide-cont {
	padding: 16px 24px;
}

.guide-cont>p {
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	display: flex;
	gap: 16px;
}

/* booking4 end */

/* 1028 预约 start */
.booking2-person {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: transparent;
}
.booking2-person .permodel{
	border: 1px solid #FFFFFF;
}
.booking2-person .permodel:hover{
	border: 1px solid #B4A085;
}
.fxdetail {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.new-price {
	display: none;
}
.disabled {
	pointer-events: none;
	opacity: 0.5;
}
/* 1028 预约 end */



/* 查找预定 start */
.booking-search {
	height: 44px;
	background: #FFFFFF;
	position: fixed;
	top: 80px;
	width: 100%;
	z-index: 20;
}
.booking-search-box{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
}
.booking-search-input{
	position: relative;
	padding: 0 16px 0 36px;
}
.booking-search-input::after{
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	background-image: url(../images/icon-search.svg);
}
.booking-search-input > input{
	border: none;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	letter-spacing: 0;
	line-height: 24px;
	width: 100%;
	min-width: 620px;
}
.booking-tabs{
	display: flex;
	align-items: center;
}
.booking-tab-item{
	flex: 1;
	font-weight: 600;
	font-size: 16px;
	color: #B4A085;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
	opacity: 0.4;
	padding-bottom: 12px;
	position: relative;
	cursor: pointer;
	transition: all 0.6s;
}
.booking-tab-item::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #B4A085;
}
.booking-tab-item.active{
	opacity: 1;
}
.booking-sort{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 24px;
}
.sort-box{
	padding: 13px 12px 13px 12px;
	background: #FFFFFF;
	border: 1px solid #DCDCDC;
	display: flex;
	align-items: center;
}
.sort-label{
	font-weight: 400;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	white-space: nowrap;
	position: relative;
	padding-left: 30px;
}
.sort-label::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url(../images/icon-sort.svg);
	background-size: 100% 100%;
	transform: translateY(-50%);
}
.select.sort-select .select-selected:after{
	right: 0px;
}
.booking-sort .select .select-item{
	text-align: center;
}
.b-find-list{
	margin-top: 24px;
}
.b-find-item{
	background: #FFFFFF;
	border: 1px solid #DCDCDC;
	margin-bottom: 24px;
}
.b-find-item:last-child{
	margin-bottom: 0px;
}
.b-find-head{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	border-bottom: 1px solid #DCDCDC;
	position: relative;
}
.find-head-p1{
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}
.find-head-p2{
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0;
	text-align: right;
	line-height: 20px;
	padding: 2px 13px;
	position: absolute;
	right: 16px;
	top: 16px;
}
.find-head-p2.drz{
	color: #FF9500;
	background: rgb(255 149 0 / 20%);
}
.b-find-body{
	padding: 24px 24px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
}
.find-body-p1{
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}
.find-body-p2{
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	letter-spacing: 0;
	line-height: 20px;
	margin-top: 8px;
}
.find-body-bg{
	margin-top: 16px;
	background: #F6F6F6;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 32px;
}
.find-body-start p:nth-child(1), 
.find-body-end p:nth-child(1){
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 16px;
}
.find-body-start p:nth-child(2), 
.find-body-end p:nth-child(2){
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
	margin-top: 8px;
}
.find-body-num{
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	text-align: center;
	line-height: 20px;
	background: #FFFFFF;
	border-radius: 16px;
	padding: 6px 11px;
}
.find-body-img{
	display: flex;
	gap: 8px;
}
.find-body-img > img{
	width: 96px;
	height: 96px;
	object-fit: cover;
}
.b-find-foot{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	padding: 16px 24px;
	border-top: 1px solid #DCDCDC;
}
.find-foot-btn{
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 0;
	text-align: center;
	line-height: 24px;
	padding: 7px;
	cursor: pointer;
}
.find-foot-btn.btn-border{
	color: #B4A085;
	background: #FFFFFF;
	border: 1px solid #B4A085;
}
.find-foot-btn.btn-bg{
	color: #FFFFFF;
	background: #B4A085;
	border: 1px solid #B4A085;
}
/* 查找预定 end */

/* 订单详情 start */
.booking-item-box{
	background: #FFFFFF;
	padding: 24px;
	margin-bottom: 24px;
}
.booking-item-title{
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	margin-bottom: 24px;
}
.b-detail-abstract{
	margin-top: 8px;
}
.b-detail-item{
	margin-top: 16px;
	min-width: 200px;
}
.b-detail-label{
	font-weight: 400;
	font-size: 12px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 16px;
}
.b-detail-value{
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	margin-top: 4px;
}
.b-detail-tips{
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0;
	margin-top: 16px;
}
.b-detail-tips span{
	color: #007AFF;
	cursor: pointer;
}
.b-detail-state{
	padding: 10px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0;
	text-align: center;
	line-height: 20px;
	margin: 24px 0 40px;
}
.b-detail-state.drz{
	background: #FF950033;
	border: 1px solid #FF9500;
	color: #FF9500;
}
/* 新增取消预订 */
.b-detail-state-cancel{
	border: 1px solid #DCDCDC;
	margin-bottom: 24px;

}
.b-detail-state-title{
	text-align: center;
	background: #F6F6F6;
	font-family: PingFangSC-SNaNpxibold;
	font-weight: 600;
	font-size: 14px;
	color: #999999;
	padding: 10px 0;
	border-bottom: 1px solid #DCDCDC;
}

.b-detail-state-reason{
	margin: 16px 16px 8px 16px;
	font-family: PingFangSC-SNaNpxibold;
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
}

.b-detail-state-reasonText{
	margin: 0 16px 16px 16px;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
}


.detail-info-list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.info-item{
	box-shadow: 0 0 0 1px #DCDCDC;
	display: flex;
	align-items: center;
	gap: 24px;
}
.info-img{
	width: 100px;
	height: 100px;
}
.info-text{
	padding: 8px;
}
.info-title{
	font-weight: 600;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
	margin-bottom: 8px;
}
.info-p{
	font-weight: 400;
	font-size: 14px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
}
.detail-price-list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.price-item{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
}
.price-p{
	font-weight: 400;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 22px;
}
.price-total{
	border-top: 1px solid #2B2B2B;
	padding-top: 16px;
}
.price-total .price-p{
	font-weight: 600;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
}
.modal-contact .modal-content{
	max-width: 480px;
}
.modal-contact-box{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.modal-cancel .modal-content{
	max-width: 480px;
}
/* 订单详情 end */



/* pad start */
@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1024px) {}

/* pad end */



/* sp start */
@media only screen and (max-width: 768px) {

	/* modal start */
	.modal-content {
		top: auto;
		left: 0;
		bottom: 0;
		transform: none;
		width: 100%;
		padding: 24px 20px;
	}
	.modal .m-box{
		width: 90%;
		max-height: 90vh;
	}
	.m-content{
		padding: 24px;
	}
	.form-title{
		font-size: 20px;
	}
	.user-ava{
		width: 60px;
		height: 60px;
	}
	/* modal end */

	/* header start */
	.header.sp {
		padding: 26px 20px;
	}
	.sp-header-c{
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.header-menu {
		position: relative;
		width: 24px;
		height: 24px;
	}

	.hamburg {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		cursor: pointer;
		width: 24px;
		height: 24px;
	}

	.hamburg span {

	}

	.hamburg span::after {
		content: "";
		display: inline-block;
		width: 20px;
		height: 20px;
		background-image: url('../images/hamburg-open.svg');
		background-size: 100% 100%;
		position: absolute;
		top: 0;
		left: 0;
		cursor: pointer;
		-webkit-transition: all ease .4s;
		-moz-transition: all ease .4s;
		-ms-transition: all ease .4s;
		-o-transition: all ease .4s;
		transition: all ease .4s;
	}

	.header-close {
		width: 20px;
		height: 20px;
		cursor: pointer;
	}

	.menu-box {
		padding: 0px 20px 40px;
		box-sizing: border-box;
		background-color: #F2EFE9;
		position: fixed;
		top: 80px;
		width: 100%;
		left: 0;
		z-index: 18;
		height: calc(100vh - 80px);
		overflow-y: auto;
		display: none;
	}

	.menu-con {
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
	}

	.menu-list {
		margin-right: 0;
		width: 100%;
	}

	.menu-list ul li {
		margin-bottom: 0;
		padding: 16px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		position: relative;
	}

	.menu-list ul li:after {
		content: '';
		display: inline-block;
		width: 24px;
		height: 24px;
		position: absolute;
		right: 0px;
		top: 16px;
		background-image: url('../images/arrow-left-black.svg');
		background-size: 14px;
		background-repeat: no-repeat;
		background-position: center;
		transform: rotate(180deg);
	}

	.menu-list ul li a h3 {
		margin-bottom: 0;
		font-size: 14px;
	}

	.menuopen .hamburg span {
		height: 0;
	}

	.menuopen .hamburg span:before {
		top: 0;
		transform: rotate(45deg);
	}

	.menuopen .hamburg span::after {
		background-image: url('../images/hamburg-retract.svg');
	}

	.lang-box {
		position: relative;
		width: 20px;
        height: 20px;
	}

	.lang-list {
		width: 120px;
		background: #F2EFE9;
		padding: 0 0 0px;
		box-sizing: border-box;
		position: absolute;
		right: 20px;
		top: 80px;
		display: none;
		z-index: 30;
	}

	.lang-list li {
		padding: 10px 12px;
		font-size: 16px;
		color: #1A1919;
		letter-spacing: 0;
		text-align: center;
		white-space: nowrap;
	}

	.header-lang.open .lang-list {
		display: block;
	}

	/* header end */

	/* footer start */
	footer, .footer{
		/* margin-bottom: 80px; */
	}
	.f-copyright {
		flex-direction: column;
		text-align: center;
	}

	/* footer end */

	/* 预定流程 start */
	.booking-step {
		height: 64px;
	}

	.booking-current {
		display: flex !important;
		justify-content: space-between;
		align-items: center;
		padding: 18px 20px;
	}

	.booking-current-l {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.booking-current-l .booking-icon {
		border: 1px solid #2B2B2B;
		transition: all 0.6s;
	}

	.booking-current-r {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.booking-list {
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		gap: 0;
		display: none;
	}

	.booking-item {
		padding: 18px 20px;
		width: 100%;
		background: #fff;
		opacity: 1;
	}

	.booking-item:first-child {
		padding: 18px 20px;
	}

	.booking-item::after {
		top: -8px;
		left: 33px;
		width: 0px;
		transform: translateY(0);
		border: 1px dashed #2B2B2B;
		height: 16px;
	}

	.booking-item.current {
		background: #F2EFE9;
	}

	.booking-step-box.open .booking-current-r .booking-icon {
		transform: rotate(180deg);
	}

	/* 预定流程 end */

	/* booking1 start */
	.content-booking {
		padding-top: 168px;
	}

	.booking-box {
		padding-bottom: 60px;
	}

	.booking-title {
		padding: 0 20px;
		font-size: 16px;
	}

	.booking-cont {
		flex-direction: column;
		gap: 24px;
	}

	.booking-l,
	.booking-r {
		width: 100%;
		padding: 0 20px;
	}

	.booking-l {
		/* padding-bottom: 140px; */
	}
	.booking-r > form{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.sp-fixed {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		/* height: 240px; */
		height: 100px;
		background: #fff;
		padding: 0;
		transition: all 0.6s;
	}

	.sp-fixed-header {
		height: 50px;
		background: #2B2B2B;
		width: 100%;
		padding: 12px 10px;
	}

	.fixed-header {
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 400;
		font-size: 14px;
		color: #FFFFFF;
		letter-spacing: 0;
		line-height: 20px;
		width: fit-content;
		margin: 0 auto;
		padding-right: 20px;
	}

	.fixed-header.underline::after {
		background: #fff;
	}

	.fixed-header::before {
		content: '';
		position: absolute;
		right: 0;
		width: 16px;
		height: 16px;
		background-image: url('../images/arrow-down-white.svg');
		background-size: 100%;
		transition: all 0.6s;
		transform: rotate(180deg);
	}

	.sp-fixed-form {
		height: calc(100vh - 180px);
		/* height: auto; */
		overflow-y: auto;
		background: #F2EFE9;
	}

	.sp-fixed-form .booking-form {
		padding: 24px 20px;
		background: #F2EFE9;
	}

	.sp-fixed-footer {
		/* position: fixed; */
		/* bottom: 0; */
		/* left: 0; */
		width: 100%;
		/* height: 200px; */
		/* height: 220px; */
		box-shadow: 0 2px 8px 0 #78788029;
		padding: 0 20px 0;
		z-index: 5;
		background: #fff;
	}
	.sp-fixed-btn {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		background: #B4A085;
		z-index: 5;
		text-align: center;
	}
	.fixed-btn a{
		font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
        letter-spacing: 0;
        line-height: 20px;
		padding: 15px 10px;
	}

	.fixed-footer-num {
		padding: 12px 0;
		border-bottom: 1px solid #DCDCDC;
		font-weight: 400;
		font-size: 14px;
		color: #2B2B2B;
		letter-spacing: 0;
		line-height: 20px;
	}

	.fixed-footer-price {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 0;
	}

	.fixed-price-l {
		font-weight: 600;
		font-size: 14px;
		color: #2B2B2B;
		letter-spacing: 0;
		line-height: 22px;
	}

	.fixed-price-r {
		font-weight: 400;
		font-size: 12px;
		color: #2B2B2B;
		letter-spacing: 0;
		text-align: right;
		line-height: 16px;
	}

	.fixed-price-r span {
		font-weight: 600;
		font-size: 18px;
		color: #2B2B2B;
		letter-spacing: 0;
		text-align: right;
		line-height: 28px;
	}

	.sp-fixed.open {
		max-height: calc(100vh - 100px);
		height: inherit;
		top: auto;
		bottom: 50px;
		z-index: 21;
	}

	.sp-fixed.open .fixed-header::before {
		transform: rotate(0deg);
	}


	.booking1-box .booking-l,
	.booking1-box .booking-r {
		padding: 0;
	}

	.calendar-box {
		padding: 16px 20px;
	}

	.calendar-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.calendar-line {
		margin: 16px 0 13px;
	}

	.calendar-body {
		flex-direction: column;
	}

	.form-box-booking1 {
		padding: 0 8px;
	}

	.form-box-booking1 .form-btn {
		max-width: 303px;
		margin: 40px auto 0;
	}

	/* booking1 end */

	/* booking2 start */
	.booking2-date-text {
		flex-direction: column;
		height: auto;
		align-items: flex-start;
		gap: 8px;
	}

	.booking2-date-icon {
		margin-right: 16px;
	}

	.booking2-room-main {
		flex-direction: column;
	}

	.booking2-room-l {
		width: 100%;
		height: auto;
	}

	.booking2-room-r {
		padding: 24px 16px 55px;
	}

	.booking2-room-desc {
		margin-top: 24px;
	}

	.booking2-desc-item {
		gap: 8px;
		margin-bottom: 8px;
	}

	.booking2-desc-item>img {
		width: 16px;
		height: 16px;
	}

	.booking2-desc-item>span {
		font-size: 12px;
		line-height: 16px;
	}

	.booking2-room-price {
		top: 52px;
		right: 16px;
	}

	.booking2-price-p>span {
		font-size: 18px;
		line-height: 28px;
	}

	.booking2-room-view {
		bottom: 16px;
		right: 50%;
		transform: translateX(50%);
	}

	.booking2-room-hover {
		padding: 0 16px;
	}

	.booking2-hover-item {
		padding: 16px 0;
	}

	.booking2-hover-text p span {
		font-size: 18px;
		line-height: 28px;
	}

	.booking2-hover-r {
		gap: 24px;
	}
	.modal-price .modal-content{
		min-height: 70vh;
	}
	/* booking2 end */

	/* booking3 start */
	.booking3-service-main {
		flex-direction: column;
	}

	.booking3-service-l {
		width: 100%;
		height: auto;
		min-height: 200px;
	}

	.booking3-service-desc {
		padding: 24px 16px;
	}

	.booking3-service-r {
		padding: 16px 16px 56px;
	}

	.booking3-service-total {
		padding: 8px 16px;
	}

	.booking3-total-r p>span {
		font-size: 18px;
		line-height: 28px;
	}

	.booking3-service-transfer {
		margin-bottom: 16px;
	}

	.booking3-form-box {
		padding: 0;
		background: transparent;
	}

	.booking3-form-box .form-item {
		flex-direction: column;
		gap: 16px;
	}

	.booking3-total {
		background: #fff;
	}

	.modal-service-box {
		flex-direction: column;
		gap: 16px;
	}

	.modal-service-item {
		padding: 16px;
	}
	.booking3-service-num{
		padding: 1px;
		overflow-y: visible;
	}

	/* booking3 end */

	/* booking4 start */
	.booking4-form-box {
		padding: 16px;
	}

	.booking4-form-title {
		margin-bottom: 16px;
	}

	.abstract-value {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 8px;
	}

	.booking4-info>.form-flex {
		flex-direction: column;
	}

	.booking4-info>.form-flex .form-item {
		width: 100% !important;
	}

	.pay-cont {
		padding: 16px;
	}

	.pay-cont-form>.form-flex {
		flex-direction: column;
	}

	.pay-cont-form>.form-flex .form-item {
		width: 100% !important;
	}
	.pay-header{
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.pay-icon{
		padding-left: 28px
	}
	.pay-cont-card{
		width: 100%;
		min-height: 169px;
		order: 0!important;
	}
	.guide-cont {
		padding: 16px;
	}

	.guide-cont>p {
		gap: 8px;
	}

	.booking3-total .booking3-total-r p>span {
		font-size: 18px;
		line-height: 28px;
	}

	.booking-search-input > input {
		min-width: 272px;
		white-space: nowrap; 
		overflow: hidden; 
		text-overflow: ellipsis; 
	}

	/* booking4 end */
	
	/* 查找预定 start */
	.booking-search{
		height: 64px;
	}
	.booking-search-box{
		height: 64px;
	}
	.booking-tabs,
	.booking-sort,
	.booking-find{
		padding: 0 20px;
	}
	.booking-sort .select{
		max-width: inherit;
	}
	.b-find-head,
	.b-find-body,
	.b-find-foot{
		padding: 16px;
	}
	.find-head-p1{
		gap: 12px;
	}
	.b-find-body{
		flex-direction: column;
	}
	.find-body-bg{
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}
	.booking-tab-item{
		font-size: 14px;
	}
	/* 查找预定 end */
	
	/* 订单详情 start */
	.booking-item-title{
		margin-bottom: 16px;
	}
	.info-item{
		gap: 8px;
		align-items: flex-start;
	}
	.info-title{
		margin-bottom: 4px;
	}
	.price-item{
		align-items: flex-start;
	}
	.detail-box{
		padding-bottom: 0;
	}
	.detail-box .booking-l{
		padding-bottom: 0;
	}
	.detail-box .booking-l .booking-item-box:last-child{
		margin-bottom: 0;
	}
	.detail-box .booking-r{
		padding: 0 0px;
	}
	.detail-box .booking-r .booking-item-box{
		margin-bottom: 0;
	}
	.modal-contact .modal-content{
		width: 100%;
	}
	/* 订单详情 end */
}

/* sp end */



/* 新增修改样式 */
.booking4-msg{
	background: #F2EFE9;
	padding: 12px ;
	box-sizing: border-box;
}

.change_select{
	cursor: pointer;
	margin-top: 24px;
	text-align: center;
	font-family: PingFangSC-Regular;
	font-weight: 400;
	font-size: 14px;
	color: #B4A085;
	position: relative;
}

.change_select::after{
	content: '';
	width: 56px;
	height: 1px;
	background: #B4A085;
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translate(-50%);

}

.booking4-line{
	margin: 4px 20px;
	width: 1px;
	height: 16px;
	background: #2b2b2b;
}