#app {
  /* right-form */
}

#app .right-fixed {
  z-index: 99;
  position: fixed;
  top: 35%;
  margin-top: -155px;
  right: 10px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#app .right-fixed .right {
  background-color: #000000;
  opacity: 0.6;
  border-radius: 6px;
}

#app .right-fixed .right.right_1 {
  cursor: pointer;
}

#app .right-fixed .right.right_2 {
  margin-top: 8px;
  position: absolute;
  top: 77px;
  right: -160px;
  transform: translateX(0px);
  -ms-transform: translateX(0px);
  /* IE 9 */
  -moz-transform: translateX(0px);
  /* Firefox */
  -webkit-transform: translateX(0px);
  /* Safari 和 Chrome */
  -o-transform: translateX(0px);
  transition: transform 0.5s ease;
}

#app .right-fixed .right.right_2:hover {
  opacity: 0.8;
  transform: translateX(-160px);
  -ms-transform: translateX(-160px);
  /* IE 9 */
  -moz-transform: translateX(-160px);
  /* Firefox */
  -webkit-transform: translateX(-160px);
  /* Safari 和 Chrome */
  -o-transform: translateX(-160px);
  transition: transform 0.5s ease;
  border: 1px solid transparent;
}

#app .right-fixed .right.right_4 {
  cursor: pointer;
  position: absolute;
  top: 170px;
}

#app .right-fixed .right.right_5 {
  cursor: pointer;
  position: absolute;
  top: 255px;
}

#app .right-fixed .right.right_4:hover+.right-ewm2 {
  display: block;
  opacity: 1;
  animation: ewmout 0.5s;
}

#app .right-fixed .right img {
  width: 72px;
  height: 72px;
  z-index: 1000;
}

#app .right-fixed .right .mobile-number {
  width: 232px;
  height: 72px;
  display: block;
}

#app .right-fixed .right-ewm {
  position: absolute;
  top: 66px;
  right: 90px;
  opacity: 0;
  display: none;
}

#app .right-fixed .right-ewm img {
  width: 230px;
  height: 259px;
}

#app .right-fixed .right-ewm2 {
  position: absolute;
  top: 130px;
  right: 90px;
  opacity: 0;
  display: none;
}

#app .right-fixed .right-ewm2 img {
  width: 230px;
  height: 259px;
}

#app .right-ewm2 img {
  max-width: none;
}

#app .right-mask {
  position: absolute;
  background-color: transparent;
  cursor: pointer;
  width: 1.43rem;
  height: 1.44rem;
}

#app .right:hover {
  opacity: 0.8;
  animation: mouseOver_1 0.3s ease;
}

#app .dialog_mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0.6;
  z-index: 1000;
}

#app .reserve_dialog {
  position: fixed;
  top: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 600px;
  height: 500px;
  background-color: #fff;
  border-radius: 0.1rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#app .reserve_dialog .title {
  font-size: 20px;
  color: #2b80ff;
  padding: 15px;
}

#app .reserve_dialog .title h3 {
  margin: 0;
  padding-top: 15px;
}

#app .reserve_dialog .form-group {
  width: 340px;
  display: flex;
  margin-bottom: 16px;
  height: 40px;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

#app .reserve_dialog .form-group .label {
  font-size: 14px;
  color: #333;
  margin-right: 0.2rem;
  position: absolute;
  top: 10px;
  left: -80px;
  width: 70px;
  text-align: right;
}

#app .reserve_dialog .form-group input {
  height: 40px;
  border: 1px solid #a0a0a0;
  border-radius: 6px;
  width: 340px;
  padding: 0 10px;
}

#app .reserve_dialog .form-group textarea {
  height: 100px;
  width: 340px;
  border-radius: 16px;
  align-self: baseline;
  border: 1px solid #a0a0a0;
  padding: 10px;
  resize: none;
}

#app .reserve_dialog .button {
  background-color: #2b80ff;
  height: 40px;
  width: 240px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  border-radius: 6px;
  margin-top: 85px;
  cursor: pointer;
}