.reserve-dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
}

.reserve-dialog .dialog-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.reserve-dialog .dialog-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.77rem;
  height: 5.42rem;
  background: url(../images/reserve-dialog-bg.png);
  background-size: 100% 100%;
}

.reserve-form {
  width: 4.65rem;
  margin: 0.49rem auto 0;
  box-sizing: border-box;
}
.reserve-form .dialog-logo{
  display:block;
  width:1.74rem;
  margin:0 auto .29rem;
}
.reserve-form input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: 0.2rem;
  /* font-family: "HYYaKuHei-75J"; */
  padding: 0 0 0 0.28rem;
}

.reserve-form input::placeholder {
  color: #585858;
  font-size: 0.2rem;
  /* font-family: "HYYaKuHei-75J"; */
}
.reserve-form .form-item.form-tel input{
  padding:0 0 0 .94rem;
}
.reserve-form .form-item {
  width: 100%;
  margin-bottom: 0.17rem;
  position:relative;
}
.reserve-form .form-item.form-tel:before{
  display:block;
  content:'';
  width:.54rem;
  height:.3rem;
  background:url(../images/tel.png) no-repeat center;
  background-size:cover;
  position:absolute;
  left:0.28rem;
  top:48%;
  transform:translate(0,-45%);
  -webkit-transform:translate(0,-45%);
}
.reserve-form .form-item.form-type{
	margin-bottom:.31rem;
}
.reserve-form .form-item.form-sms-code{
	margin-bottom:.43rem;
}
.reserve-form .form-item.form-protocl{
	margin-bottom:.28rem;
}
.reserve-form .form-radio-item {
  box-sizing: border-box;
  width: 100%;
  height: 0.4rem;
  padding: 0 0.28rem;
  display: flex;
  justify-content: space-between;
}

.reserve-form .form-radio-item input {
  display: none;
}

.reserve-form .form-radio-item input:checked + label {
  border-bottom: 1px solid #ff6a13;
  background: linear-gradient(transparent 0%, transparent 20%, #6f3716 100%);
  color:#ff6a13;
}

.reserve-form .form-radio-item label {
  display: block;
  width: 0.8rem;
  height: 0.4rem;
  color: #999;
  font-size: 0.24rem;
  font-family: "HYYaKuHei-75J";
  text-align: center;
}

.reserve-form .form-radio-item label {
  display: block;
  width: 0.8rem;
  height: 0.4rem;
  color: #999;
  font-size: 0.24rem;
  font-family: "HYYaKuHei-75J";
  cursor: pointer;
}

.reserve-form .form-input-item {
  box-sizing: border-box;
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  border: 1px solid #313131;
  background-color: #000;
  display: flex;
  align-items: center;
}

.reserve-form .form-sms-code .form-input-item,.reserve-form .form-tx-code .form-input-item {
  width: 100%;
  display: flex;
  align-items: center;
}

.reserve-form .form-sms-code input,.reserve-form .form-tx-code input {
  flex: 1;
}
.reserve-form span img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.reserve-form .form-tx-code .get-tx-code{
  display:block;
  width:1.62rem;
  height:.44rem;
  position:relative;
}
.reserve-form .form-tx-code .get-tx-code:before{
  display:block;
  content:'';
  width:0.01rem;
  height:.3rem;
  background:#5e5e5e;
  position:absolute;
  left:0;
  top:48%;
  margin-top:-0.15rem;
}
.reserve-form .form-sms-code .get-sms-code {
  background: none;
  border: none;
  outline: none;
  color: #ff6a13;
  width:1.62rem;
  height:.44rem;
  font-size: 0.2rem;
  cursor: pointer;
  position:relative;
  text-align:center;
  line-height:.44rem;
}
.reserve-form .form-sms-code .get-sms-code:before{
  display:block;
  content:'';
  width:0.01rem;
  height:.3rem;
  background:#5e5e5e;
  position:absolute;
  left:0;
  top:48%;
  margin-top:-0.15rem;
}
.reserve-form .form-sms-code .get-sms-code.disabled {
  pointer-events: none;
  color: #999;
}

.reserve-form .form-protocl {
  width: 100%;
}

.reserve-form .form-protocl-item {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  color: #aeaeae;
  /* font-family: "HYYaKuHei-75J"; */
  box-sizing: border-box;
}

.reserve-form .form-protocl-item input[type="checkbox"] {
  width: 0.14rem;
  height: 0.14rem;
  border: 1px solid #aeaeae;
  cursor: pointer;
  position: relative;
  margin-left:.36rem;
}
.reserve-form .form-protocl-item label a{
  color:#ff6a13;
  text-decoration:none;
}
.reserve-form .form-protocl-item input[type="checkbox"]:after {
  position: absolute;
  width: 0.14rem;
  height: 0.14rem;
  content: " ";
  background-color: #000;
  visibility: visible;
  border: 1px solid #585858;
}

.reserve-form .form-protocl-item input[type="checkbox"]:checked:after {
  content: "✔";
  position: absolute;
  font-size: 0.12rem;
  background-color: #585858;
  line-height: 0.14rem;
  text-align: center;
}

.reserve-form .form-submit button {
  display: block;
  width: 100%;
  height: 0.5rem;
  background-color: #ff6a13;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.28rem;
  font-family: "HYYaKuHei-75J";
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border: none;
  background-color: #585858;
  cursor: pointer;
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}
.close-btn::before {
  transform: rotate(45deg);
}
.close-btn::after {
  transform: rotate(-45deg);
}

.captcha-dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
}

.captcha-dialog .dialog-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.captcha-dialog .dialog-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.385rem;
  height: 2.11rem;
  background: url(../images/reserve-dialog-bg.png);
  background-size: cover;
}

.captcha-form {
  width: 3rem;
  margin: 0.36rem auto;
  box-sizing: border-box;
}

.captcha-form input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: 0.2rem;
  font-family: "HYYaKuHei-75J";
  padding: 0 0.28rem;
}

.captcha-form input::placeholder {
  color: #999;
  font-size: 0.2rem;
  font-family: "HYYaKuHei-75J";
}

.captcha-form .form-item {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  margin-bottom: 0.16rem;
}

.captcha-form .form-input-item {
  box-sizing: border-box;
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  border: 1px solid #313131;
  background-color: #000;
  display: flex;
  align-items: center;
}

.captcha-form .form-captcha-code .form-input-item {
  width: 100%;
  display: flex;
  align-items: center;
}

.captcha-form .form-captcha-code input {
  flex: 1;
}
.captcha-form .form-captcha-code .captcha-img {
  height: 100%;
  display: flex;
  padding: 0.1rem 0.1rem 0.1rem 0;
  box-sizing: border-box;
}
.captcha-form .form-captcha-code .captcha-img img {
  height: 100%;
  object-fit: cover;
}

.captcha-form .form-submit button {
  width: 100%;
  height: 0.4rem;
  background-color: #ff6a13;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.28rem;
  font-family: "HYYaKuHei-75J";
  cursor: pointer;
}
.successTc1{
	width:100%;
	height:100%;
	background:rgba(0,0,0,.6);
	position:fixed;
	left:0;
	top:0;
	z-index:200;
	display:none;
}
.chengg{
	height:1px;
}
.successBody1{
	width:6.77rem;
	height:3.63rem;
	background:url(../images/succ.png) no-repeat center;
	background-size:cover;
	position:relative;
	margin:0 auto 0;
	top:45%;
	transform:translate(0,-45%);
	-webkit-transform: translate(0,-45%);
}
.succTit1{
	display:block;
	width:1.95rem;
	margin:0.41rem auto 0;
}
.yyTit1{
	display:block;
	width:5.33rem;
	margin:0.3rem auto 0;
}
.ewm1{
	display:block;
	width:1.66rem;
	margin:0.22rem auto 0;
}
.loading{
	width:100%;
	height:100%;
	background:#1c1c1c;
	position:fixed;
	left:0;
	top:0;
	z-index:99;
	display:none;
}
.loadingBody{
	width:3rem;
	margin:0 auto 0;
	position:relative;
	top:45%;
	transform: translate(0,-45%);
	-webkit-transform:translate(0,-45%);
}
.loadingBody .loadPic{
	display:block;
	width:.86rem;
	height:.99rem;
	position:relative;
	margin:0 auto 0;
}
.loadingBody .lightLoading{
	display:block;
	width:.77rem;
	margin-top:.15rem;
	position:relative;
	left:50%;
	transform:translate(-42%,0);
	-webkit-transform:translate(-42%,0);
}
.loadingBody .loadPic img{
	display:none;
	width:100%;
	position:absolute;
	left:0;
	top:0;
}
.loadingBody .loadPic img.active{
	display:block;
}
.loadingBody .lightQuan{
	display:block;
	width:.85rem;
	position:absolute;
	right:.8rem;
	top:0.3rem;
}