@charset "UTF-8";

/* 手机预约 */

.booking {
    position: fixed;
    display: flex;
    z-index: 18;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.booking.hide {
    display: none;
}

.booking > .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10.2rem;
    height: 5.8rem;
    background: url("/booking/img/booking-bg.png") no-repeat center left / 90%;
    font-size: 0.16rem;
    color: #ffffff;
}

.booking > .content > div {
    display: flex;
    align-items: flex-end;
}

.booking > .content > .title {
    height: 24%;
    width: 98%;
}

.booking > .content > .title > .content {
    justify-content: flex-end;
}

.booking > .content > .title > .content > .down {
    height: 0.48rem;
    width: 0.48rem;
    background: url("/booking/img/booking-down.png")no-repeat center center / 100%;
    cursor: pointer;
}

.booking > .content > .title > .content > .down:hover {
    transform: scale(0.95);
}

.booking > .content > .time {
    height: 15.5%;
    width: 100%;
    margin-left: 1.6rem;
    user-select: none;
}

.booking > .content > .time > .content {
    justify-content: center;
}

.booking > .content > .name {
    height: 8%;
    width: 100%;
    margin-left: 1.4rem;
}

.booking > .content > .name > .content {
    justify-content: center;
}

.booking > .content > .name > .content > span:first-child {
    padding-left: 0.08rem;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    width: 10%;
    user-select: none;
}

.booking > .content > .name > .content > span:nth-child(2) {
    height: 0.32rem;
    width: 26%;
}

.booking > .content > .name > .content > span > input {
    font-size: 0.16rem;
    height: 0.32rem;
    width: 100%;
    text-indent: 0.08rem;
}

.booking > .content > .captcha {
    height: 7%;
    width: 100%;
    margin-left: 1.4rem;
}

.booking > .content > .captcha > .content {
    justify-content: center;
}

.booking > .content > .captcha > .content > span:first-child {
    padding-left: 0.08rem;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    width: 10%;
    user-select: none;
}

.booking > .content > .captcha > .content > span:nth-child(2) {
    height: 0.32rem;
    width: 13%;
}

.booking > .content > .captcha > .content > span:nth-child(3) {
    height: 0.32rem;
    width: 13%;
    padding-left: 0.08rem;
}

.booking > .content > .captcha > .content > span > button {
    width: 100%;
    height: 0.33rem;
    text-align: center;
    color: white;
    background-color: #c82920;
    border: solid #282828 0.01rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.booking > .content > .captcha > .content > span > button:not(.forbid):hover {
    background-color: #ff0000;
}

.booking > .content > .captcha > .content > span > button:not(.forbid):active {
    transform: scale(0.98);
}

.booking > .content > .captcha > .content > span > .forbid {
    color: #d7d7d7;
    background-color: #6b6877;
}

.booking > .content > .captcha > .content > span > input {
    height: 0.32rem;
    width: 100%;
    text-indent: 0.08rem;
}

.booking > .content > .bookingBtn {
    height: 14%;
    width: 100%;
    margin-left: 1.4rem;
}

.booking > .content > .bookingBtn > .content {
    height: 66%;
    justify-content: center;
}

.booking > .content > .bookingBtn > .content > .bookingBtn {
    width: 24%;
    background: url("/booking/img/booking-btn.png")no-repeat center center / 100%;
    cursor: pointer;
    transition: background 0.3s;
}

.booking > .content > .bookingBtn > .content > .bookingBtn:hover {
    background: url("/booking/img/booking-btn-active.png")no-repeat center center / 100%;
}
.booking > .content > .a-title{
    margin-top: 0.3rem;
    height: 4%;
    width: 100%;
    padding-left: 4.7rem;
}
.booking > .content > .a-title > a {
    font-size: 0.17rem;
    color: white;
    transition: color 0.3s;
}
.booking > .content > .a-title > a:hover {
    color: #9a9a9a;
}
.booking > .content > div > div {
    display: flex;
    margin: 0 auto;
    width: 95%;
}

.booking.magnify > .content {
    transform: translate(-50%, -50%) scale(1.8);
}