/**
 * ########################################################################################################################
 * ### 右侧工具栏 - v1版本
 * ########################################################################################################################
 */
/* .right-tools-wrapper { width: 117px; position: fixed; background: rgba(0, 0, 0, 0.75); right: 0; top: 50%; z-index: 10; transform: translateY(-50%); transition: right 0.6s; }
.right-tools-wrapper.hide { right: -117px; }
.right-tools-wrapper .item { height: 101px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.75); font-size: 15px; cursor: pointer; color: #efc395; }
.right-tools-wrapper .item:hover { opacity: 0.8; }
.right-tools-wrapper .item > a { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.right-tools-wrapper .icon { font-size: 30px; }
.right-tools-wrapper .name { margin-top: 3px; }
.right-tools-wrapper .open-icon { position: absolute; width: 30px; height: 40px; left: 200%; color: #FFFFFF; font-size: 18px; top: 50%; z-index: 9; margin-top: -20px; background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center; border-radius: 0; cursor: pointer; transition: left 0.6s; border-radius: 0 4px 4px 0; }
.right-tools-wrapper.hide .open-icon { left: -30px; border-radius: 4px 0 0 4px; }
.right-tools-wrapper .open-icon:hover { background: rgba(0,0,0,0.6); }
@media screen and (max-width: 1366px) {
  .right-tools-wrapper { width: 90px; }
  .right-tools-wrapper.hide { right: -90px; }
  .right-tools-wrapper .item { height: 80px; font-size: 14px; }
  .right-tools-wrapper .icon { font-size: 23px; }
}
@media screen and (max-width: 860px) {
  .right-tools-wrapper { width: 86px; }
  .right-tools-wrapper.hide { right: -86px; }
  .right-tools-wrapper .item { height: 76px; font-size: 13px; }
  .right-tools-wrapper .icon { font-size: 26px; }
}
@media screen and (max-width: 768px) {
  .right-tools-wrapper { width: 70px; }
  .right-tools-wrapper.hide { right: -70px; }
  .right-tools-wrapper .item { height: 68px; font-size: 12px; }
  .right-tools-wrapper .icon { font-size: 24px; }
  .right-tools-wrapper .open-icon { left: -30px; transform: rotate(180deg); }
  .right-tools-wrapper.hide .open-icon { left: -30px; transform: rotate(0deg); }
} */


/**
 * ########################################################################################################################
 * ### 右侧工具栏 - v2版本
 * ########################################################################################################################
 */
/* .right-tools-container { width: 30px; height: 40px; position: fixed; z-index: 10; right: -40px; top: 50%; margin-top: -15px; background: rgba(0,0,0,0.75); border-radius: 1px; display: flex; align-items: center; justify-content: center; outline: none; color: #FFFFFF; font-size: 18px; transition: right 0.6s linear; cursor: pointer; } */
.right-tools-container {
	position: fixed;
	z-index: 100;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	transition: transform 0.8s;
}

.right-tools-container .open-icon-wrapper {
	position: absolute;
	height: 100%;
	width: 30px;
	z-index: 4;
	left: -30px;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s z-index 0.4s;
}

.right-tools-container .open-icon-btn {
	width: 100%;
	height: 40px;
	background: rgba(0, 0, 0, 0.75);
	font-size: 18px;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px 0 0 4px;
}

.right-tools-container .tools-wrapper {
	width: 118px;
	background: rgba(0, 0, 0, 0.75);
}

.right-tools-container .item {
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	cursor: pointer;
	color: #efc395;
	outline: none;
}

.right-tools-container .icon {
	font-size: 30px;
}

.right-tools-container .name {
	margin-top: 3px;
}

.right-tools-container.hide {
	transform: translate(100%, -50%);
}

/* 媒体查询 */
@media screen and (max-width: 1366px) {
	.right-tools-container .tools-wrapper {
		width: 90px;
	}

	.right-tools-container .item {
		height: 80px;
		font-size: 14px;
	}

	.right-tools-container .icon {
		font-size: 23px;
	}
}

@media screen and (max-width: 860px) {
	.right-tools-container .tools-wrapper {
		width: 86px;
	}

	.right-tools-container .item {
		height: 76px;
		font-size: 13px;
	}

	.right-tools-container .icon {
		font-size: 26px;
	}
}

@media screen and (max-width: 768px) {
	.right-tools-container .tools-wrapper {
		width: 70px;
	}

	.right-tools-container .item {
		height: 68px;
		font-size: 12px;
	}

	.right-tools-container .icon {
		font-size: 24px;
	}

	.right-tools-container .open-icon-wrapper {
		transform: rotate(180deg);
	}

	.right-tools-container .open-icon-btn {
		border-radius: 0 4px 4px 0;
	}

	.right-tools-container.hide .open-icon-wrapper {
		transform: rotate(0);
	}

	.right-tools-container.hide .open-icon-btn {
		border-radius: 4px 0 0 4px;
	}
}

@media screen and (min-width: 768px) {
	.right-tools-container:hover {
		transform: translate(0, -50%);
	}

	.right-tools-container:hover .open-icon-wrapper {
		z-index: 0;
		opacity: 0;
	}

	/* .right-tools-container:hover { right: -40px !important; }
  .right-tools-container:hover .tools-wrapper { right: 0px !important; } */
}




/* 预约定制表单 */
.Appointment-customization-dialog-wrapper {
	position: fixed;
	z-index: -10;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0);
	transition: opacity 0.36s;
}

.Appointment-customization-dialog-wrapper.show {
	z-index: 9999;
	opacity: 1;
	transform: scale(1);
}

.Appointment-customization-dialog-wrap {
	width: 1025px;
	display: flex;
	position: relative;
	opacity: 0;
	transform: scale(0);
	transition: 0.36s;
}

.Appointment-customization-dialog-wrapper.show .Appointment-customization-dialog-wrap {
	transform: scale(1);
	opacity: 1;
}

.Appointment-customization-dialog-wrapper .close {
	position: absolute;
	z-index: 1;
	color: #666666;
	width: 40px;
	height: 40px;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 0;
	top: 0;
	cursor: pointer;
	transition: all 0.6s;
}

.Appointment-customization-dialog-wrapper .close:hover {
	color: #EFC395;
}

.Appointment-customization-dialog-wrapper .left {
	width: 58%;
	flex-shrink: 0;
	background-position: center;
	background-image: url(../images/66.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.Appointment-customization-dialog-wrapper .right {
	flex: 1;
	background: #FFFFFF;
	padding: 95px 35px;
	line-height: 1;
}

.Appointment-customization-dialog-wrapper .title {
	font-size: 30px;
	color: #333333;
	text-align: center;
}

.Appointment-customization-dialog-wrapper .tips {
	font-size: 16px;
	color: #333333;
	text-align: center;
	padding: 22px 0;
}

.Appointment-customization-dialog-wrapper .count {
	padding: 0 6px;
}

.Appointment-customization-dialog-wrapper .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.Appointment-customization-dialog-wrapper .field {
	width: 100%;
	margin-top: 16px;
}

.Appointment-customization-dialog-wrapper .input {
	width: 100%;
	border: 1px solid #D0D0D0;
	height: 50px;
	border-radius: 4px;
	font-size: 14px;
	padding: 0 20px;
}

.Appointment-customization-dialog-wrapper .input.empty::placeholder {
	color: #FF1E10;
}

.Appointment-customization-dialog-wrapper .row-select .field {
	width: 48%;
	margin-top: 16px;
}

.Appointment-customization-dialog-wrapper .select {
	width: 100%;
	border: 1px solid #D0D0D0;
	height: 50px;
	border-radius: 4px;
	font-size: 14px;
	padding: 0 0 0 20px;
}

.Appointment-customization-dialog-wrapper .submit-button {
	width: 100%;
	height: 50px;
	border-radius: 4px;
	font-size: 18px;
	background: #333333;
	margin-top: 18px;
	cursor: pointer;
	transition: all 0.6s;
}

.Appointment-customization-dialog-wrapper .submit-button:hover {
	opacity: 0.86;
}

.Appointment-customization-dialog-wrapper .safe-tips {
	font-size: 16px;
	color: #999999;
	text-align: center;
	margin-top: 27px;
}

@media screen and (max-width: 1366px) {
	.Appointment-customization-dialog-wrap {
		width: 860px;
	}

	.Appointment-customization-dialog-wrapper .right {
		padding: 75px 30px;
	}

	.Appointment-customization-dialog-wrapper .title {
		font-size: 26px;
	}

	.Appointment-customization-dialog-wrapper .tips {
		font-size: 14px;
		padding: 14px 0;
	}

	.Appointment-customization-dialog-wrapper .field {
		margin-top: 12px;
	}

	.Appointment-customization-dialog-wrapper .input {
		height: 44px;
	}

	.Appointment-customization-dialog-wrapper .select {
		height: 44px;
	}

	.Appointment-customization-dialog-wrapper .submit-button {
		height: 44px;
		font-size: 16px;
	}

	.Appointment-customization-dialog-wrapper .safe-tips {
		font-size: 14px;
		margin-top: 22px;
	}
}

@media screen and (max-width: 1024px) {
	.Appointment-customization-dialog-wrap {
		width: 680px;
	}

	.Appointment-customization-dialog-wrapper .right {
		padding: 60px 20px;
	}

	.Appointment-customization-dialog-wrapper .title {
		font-size: 22px;
	}

	.Appointment-customization-dialog-wrapper .tips {
		font-size: 12px;
		padding: 10px 0;
	}

	.Appointment-customization-dialog-wrapper .field {
		margin-top: 8px;
	}

	.Appointment-customization-dialog-wrapper .input {
		height: 38px;
		font-size: 12px;
	}

	.Appointment-customization-dialog-wrapper .select {
		height: 38px;
		font-size: 12px;
	}

	.Appointment-customization-dialog-wrapper .submit-button {
		height: 38px;
		font-size: 14px;
		margin-top: 14px;
	}

	.Appointment-customization-dialog-wrapper .safe-tips {
		font-size: 12px;
		margin-top: 14px;
	}
}

@media screen and (max-width: 768px) {
	.Appointment-customization-dialog-wrap {
		flex-direction: column;
	}

	.Appointment-customization-dialog-wrapper .close {
		right: 10%;
	}

	.Appointment-customization-dialog-wrapper .left {
		display: none;
	}

	.Appointment-customization-dialog-wrapper .right {
		width: 80%;
		margin: 0 auto;
	}
}



/* 门店咨询表单 */
.consulting-service-dialog-wrapper {
	position: fixed;
	z-index: -10;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0);
	transition: opacity 0.36s;
}

.consulting-service-dialog-wrapper.show {
	z-index: 9999;
	opacity: 1;
	transform: scale(1);
}

.consulting-service-dialog-wrap {
	width: 7.7rem;
	padding: 0.8rem 0.7rem;
	position: relative;
	opacity: 0;
	transform: scale(0);
	transition: 0.36s;
	background: #333333;
}

.consulting-service-dialog-wrapper.show .consulting-service-dialog-wrap {
	transform: scale(1);
	opacity: 1;
}

.consulting-service-dialog-wrapper .close {
	position: absolute;
	z-index: 1;
	color: rgba(255, 255, 255, 0.6);
	width: 40px;
	height: 40px;
	font-size: 0.36rem;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 0;
	top: 0;
	cursor: pointer;
	transition: all 0.6s;
}

.consulting-service-dialog-wrapper .close:hover {
	color: #EFC395;
}

.consulting-service-dialog-wrapper .form {
	width: 100%;
}

.consulting-service-dialog-wrapper .title {
	font-size: 0.42rem;
	color: #EFC395;
	text-align: center;
	margin-bottom: 0.27rem;
}

.consulting-service-dialog-wrapper .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.consulting-service-dialog-wrapper .field {
	width: 100%;
	margin-top: 0.23rem;
}

.consulting-service-dialog-wrapper .input {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	height: 0.9rem;
	border-radius: 4px;
	font-size: 0.2rem;
	padding: 0 0.2rem;
	background: none;
	outline: none;
	color: rgba(255, 255, 255, 0.6);
}

.consulting-service-dialog-wrapper .input.empty::placeholder {
	color: #FF1E10;
}

.consulting-service-dialog-wrapper .row-select .field {
	width: 48%;
	margin-top: 0.16rem;
}

.consulting-service-dialog-wrapper .select {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	height: 0.9rem;
	border-radius: 4px;
	font-size: 0.2rem;
	padding: 0 0 0 0.2rem;
	background: none;
	outline: none;
	color: rgba(255, 255, 255, 0.6);
	background: #333333;
}

.consulting-service-dialog-wrapper .btns {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.32rem;
}

.consulting-service-dialog-wrapper .button {
	width: 1.8rem;
	height: 0.76rem;
	border-radius: 4px;
	font-size: 0.24rem;
	background: #333333;
	margin: 0 0.4rem;
	cursor: pointer;
	transition: all 0.6s;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #333333;
}

.consulting-service-dialog-wrapper .submit-button {
	background: #EFC395;
	border-color: #EFC395;
}

.consulting-service-dialog-wrapper .cancel-button {
	background: #EEEEEE;
	border-color: #EEEEEE;
}

.consulting-service-dialog-wrapper .button:hover {
	opacity: 0.8;
}

.consulting-service-dialog-wrapper .safe-tips {
	font-size: 0.18rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
	margin-top: 0.37rem;
}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {
	.consulting-service-dialog-wrap {
		width: 80%;
	}
}



/**
 * ########################################################################################################################
 * ### 消息提示
 * ########################################################################################################################
 */
.message-tips-wrapper {
	position: fixed;
	z-index: 999999;
	background: #333333;
	color: #EFC395;
	font-size: 0.18rem;
	max-width: 300px;
	text-align: center;
	padding: 12px 24px;
	border-radius: 6px;
	left: 50%;
	top: 20%;
	transform: translateX(-50%) scale(0);
	line-height: 1;
	opacity: 0;
	transition: all 0.6s;
}

.message-tips-wrapper.show {
	transform: translateX(-50%) scale(1);
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.message-tips-wrapper {
		font-size: 0.28rem;
	}
}



/**
 * ########################################################################################################################
 * ### loading
 * ########################################################################################################################
 */
.request-loading-wrapper {
	position: fixed;
	z-index: 6000000;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.request-loading-wrapper .loading {
	width: 0.8rem;
	height: 0.8rem;
	display: block;
}


/**
 * ########################################################################################################################
 * ### 分页
 * ########################################################################################################################
 */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 0.3rem;
}

.pagination .page-item {
	background: #333333;
	color: #EFC395;
	font-size: 0.16rem;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	margin: 3px;
	cursor: pointer;
	border-radius: 2px;
	transition: all 0.36s;
}

.pagination .page-link {
	width: 100%;
	height: 100%;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination .page-item.disabled {
	opacity: 0.5;
}

.pagination .page-item.active {
	background: #EFC395;
	color: #333333;
}

.pagination .page-item:not(.disabled):hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	.pagination .page-item {
		font-size: 0.26rem;
		padding: 12px;
	}
}