*{
    font-family: ChillDuanSans;
}
._dis{
    pointer-events: none;
    opacity: .8;
}
.banner{
    padding-bottom: 58px;
}
.banner ._part1{
    max-width: 680px;
    width: 100%;
}
.banner ._part1 ._img1{
    height: 49px !important;
}
.banner ._part1 ._img2{
    height: 36px !important;
}
.banner .nav-title{
    margin: 35px 0;
    height: fit-content;
    font-family: ChillDuanSans;
}
.banner ._part1 ._line1{
    font-size: 24px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.booking-cont{
    display: flex;
    flex-direction: column;
    max-width: 696px;
    padding: 56px 0 88px;
    gap: 56px;
}
.form-box{
    margin-bottom: 32px;
}
.form-box ._lab{
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-box ._lab span{
    color: #E72922;
    position: relative;
    top: 4px;
}
.error-msg{
    color: #E72922;
}
.form-box ._val{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
    border: 1px solid #888888;
    color: #000;
    font-size: 20px;
    position: relative;
}
.form-box ._val input{
    color: #000;
    font-size: 20px;
    padding: 0 8px;
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
}
._send-btn{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 0 30px;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    background: #000;
}
.radio-group{
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    gap: 8px;
}
.radio-group label{
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #000;
    gap:8px;
    cursor: pointer;
}
.radio-group label input{
    margin: 7px;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #888;
    flex-shrink: 0;
}
.radio-group label input:checked {
    border-color: #000;
    border-width: 6px;
}
.submit-an{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1C1C1C;
    height: 62px;
    border: 2px solid #1C1C1C;
    font-weight: 700;
    font-size: 24px;
}
.submit-an:hover{
    color:  #000;
    background: #fff;
}
.submit-an.disabled{
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}
.safe-captcha{
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 10;
    width: 320px;
}
.select-box{
    width: 100%;
    height: 100%;
    position: relative;
}
.select-box ._result{
    background-image: url("https://jimg.jiagle.com/upload/2026/06/16/ibcuWqrVLRGOOluxUpPL5yUpyFb3VdAgSzZR9TXW.png");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: calc(100% - 13px) center;
    padding: 0 8px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: none;
}
.select-box ._option-list{
    position: absolute;
    display: none;
    max-height: 520px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #888888;
    border-top: none;
    left: -1px;
    width: calc(100% + 2px);
    z-index: 2;
}
.select-box ._option-list div{
    padding: 11px 16px;
    font-size: 20px;
    line-height: 29px;
    cursor: pointer;
    color: #000000;
}
.select-box ._option-list div.disabled{
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}
.select-box ._option-list div.on,
.select-box ._option-list div:hover{
    background: #1C1C1C;
    color: #fff;
}
.select-box ._option-list::-webkit-scrollbar{
    display: none;
}
.select-box._open ._result{
    background: #E1E1E1;
}
.select-box._open ._option-list{
    display: block;
}
.color-placeholder{
    color: #888888;
}

@media (max-width: 992px) {
    .banner{
        padding-bottom: 38px;
    }
    .banner ._part1{
        max-width: 275px;
    }
    .banner ._part1 ._img1{
        height: 23px !important;
    }
    .banner ._part1 ._img2{
        height: 20px !important;
    }
    .banner .nav-title{
        margin: 12px 0;
    }
    .banner ._part1 ._line1{
        gap: 8px;
        font-size: 12px;
    }
    .booking-cont{
        padding: 40px 16px 48px;
        gap: 40px;
        max-width: 100%;
    }
    .form-box{
        margin-bottom: 24px;
    }
    .form-box ._lab{
        font-size: 14px;
        line-height: 20px;
        gap: 4px;
    }
    .form-box ._lab span{
        top: 3px;
    }
    .form-box ._val{
        height: 32px;
        font-size: 12px;
    }
    ._send-btn{
        font-size: 14px;
        padding: 0 45px;
    }
    .select-box ._result{
        background-size: 8px;
        background-position: calc(100% - 8px) center;
    }
    .select-box ._option-list div{
        font-size: 12px;
        line-height: 14px;
        padding: 10px 14px;
    }
    .radio-group label{
        gap: 4px;
        font-size: 14px;
        line-height: 22px;
    }
    .radio-group label input{
        margin: 5px;
        width: 14px;
        height: 14px;
    }
    .submit-an{
        font-size: 14px;
        height: 36px;
    }
    .form-box ._val input{
        font-size: 14px;
    }
    .radio-group label input:checked{
        border-width: 4px;
    }
}
