/*預約界面弹框*/
.booking_frame{
    z-index: 10000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #0000000f;
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
.booking_close{
    position: absolute;
    right: 5px;
    top: 5px;
}
.booking_close>button{
    border-radius: 20px;
    border: 1px solid #c7c7c7;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: #ffc800;
    cursor: pointer;
}
.booking_close>button:before {
    content: "\f57d";
    font-size: 15px;
    font-family: 'harry-icon';
    color: #a06305;
    font-weight: bold;
}
.booking{
    position: relative;
    margin: 0 auto;
    width: 500px;
    padding: 50px;
    margin-bottom: 80px;
    background-color: #fff;
    border-radius: 8px;
}
.booking_title{}
.booking_title h1{
    font-size: 24px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 50px;
    color: #212121;
    font-weight: normal;
    line-height: 1.2;
}
.booking > ul{

}
.booking > ul > div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.booking > ul > li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    flex-direction: row;
}

.booking > ul > li > span {
    width: 130px;
    display: block;
    color: #808080;
    padding: 8px;
    font-size: 15px;
}

.booking > ul > li > div {
    width: calc(100% - 130px);
}

.booking > ul > li > div > select, .booking > ul > li > div > input {
    text-indent: 6px;
    color: #3d3d3e;
    width: calc(100% - 20px);
    background-color: #F5F5F5;
    padding: 10px;
    border: 1px solid #E0E0E0;
    font-size: 14px;
    border-radius: 5px;
}
.booking > ul > li > div > select{
    width: 100%;
}
.booking > ul > li > div > p{
    color: #e0a800;
}

.booking > ul > li > div > select::-webkit-input-placeholder, .booking > ul > li > div > input::-webkit-input-placeholder, .login > ul > li > div > textarea::-webkit-input-placeholder {
    color: #b4b4b4;
}

.booking > ul > li > div > select::-moz-placeholder, .booking > ul > li > div > input::-moz-placeholder, .booking > ul > li > div > textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #b4b4b4;
}

.booking > ul > li > div > select:-moz-placeholder, .booking > ul > li > div > input:-moz-placeholder, .booking > ul > li > div > textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #b4b4b4;
}

.booking > ul > li > div > select:-ms-input-placeholder, .booking > ul > li > div > input:-ms-input-placeholder, .booking > ul > li > div > textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #b4b4b4;
}

.bookingFooted{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.bookingFooted button{
    box-shadow: 0 1px 3px 0 rgba(33, 150, 243, 0.21);
    background-color: #ffdd00;
    border: unset;
    border-radius: 28px;
    line-height: 38px;
    color: #a06305;
    font-size: 18px;
    width: 150px;
}