/* 预约表单弹窗 */
.bottom-reserve-form-wrap {
    width: auto;
    height: auto;
}

.bottom-reserve-form-wrap .bottom-reserve-form-Pop {
    display: none;
    width: 500px;
    height: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 10000;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 5px #e5e5e5;
}

.bottom-reserve-form-wrap .bottom-reserve-btn {
    width: auto;
    position: fixed;
    bottom: 15px;
    right: 15px;
    box-sizing: border-box;
    z-index: 10000;
    display: none;
}

.bottom-reserve-form-wrap .bottom-reserve-btn .open-btn {
    width: auto;
    border-radius: 999px;
    background: #055f87;
    color: #fff;
    font-size: 20px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 0 5px #fff;
}

.bottom-reserve-form-wrap .bottom-reserve-btn .open-btn img {
    width: 20px;
    height: auto;
    margin-left: 15px;
}

.bottom-reserve-form-Pop .form-title {
    width: 100%;
    /* height: 50px; */
    border-radius: 8px 8px 0 0;
    position: relative;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
}

.bottom-reserve-form-Pop .form-title .title-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 10px 15px;
    color: #055f87;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: bold;
    /*background: #fff;*/
    /*border-radius: 8px 8px 0 0;*/
}

.bottom-reserve-form-Pop .form-title .close-image {
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    cursor: pointer;
    transition: all 1s;
}

.bottom-reserve-form-Pop .tips-text {
    display: inline-block;
    width: 100%;
    padding: 5px 15px;
    box-sizing: border-box;
    background: #055f87;
}

.bottom-reserve-form-Pop .tips-text .text-style {
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
}

.bottom-reserve-form-Pop .bottom-reserve-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.bottom-reserve-form-Pop .bottom-reserve-form .bottom-reserve-form-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 15px 0 15px;
    box-sizing: border-box;
}

.bottom-reserve-form-Pop .bottom-reserve-form .bottom-reserve-form-item.radio-item {
    width: calc(50% - 10px) !important;
}

.bottom-reserve-form .bottom-reserve-form-item .label-text {
    font-weight: bold;
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

.bottom-reserve-form .bottom-reserve-form-item .label-text::before {
    display: inline-block;
    content: "*";
    color: #eb3740;
    font-size: 14px;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    left: -10px;
}

.bottom-reserve-form .bottom-reserve-form-item .input-style,
.bottom-reserve-form .bottom-reserve-form-item .select-style {
    /*width: 280px;*/
    width: 100%;
    height: 30px;
    border: 1px solid #e6e6e6;
    padding: 3px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 14px;
    color: #000;
}

.bottom-reserve-form .bottom-reserve-form-item .phone-input {
    display: flex;
    width: 100%;
}

.bottom-reserve-form-item .phone-input .area-select {
    border: 1px solid #e6e6e6;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px 0 0 5px;
    border-right: none;
    width: 160px;
}

.bottom-reserve-form-item .phone-input .input-style {
    border-radius: 0 5px 5px 0;
    flex: 1;
}

.bottom-reserve-form-item .radio-box {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bottom-reserve-form-item .radio-box .radio-style {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.bottom-reserve-form-item .radio-box .radio-text {
    font-size: 14px;
    margin-right: 10px;
}

.bottom-reserve-form-Pop .pop-submit-btn {
    width: 100%;
    border-top: 1px solid #e6e6e6;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.bottom-reserve-form-Pop .pop-submit-btn .btn-style {
    width: 100%;
    height: 40px;
    background: #055f87;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 0;
    font-size: 16px;
    cursor: pointer;
}

.bottom-reserve-form-Pop input::-webkit-input-placeholder {
    /* WebKit browsers */
    font-size: 14px;
}


/* 取消移动端的hover效果 只有pc端的生效 */
@media (any-hover: hover) {}


@media screen and (max-width: 768px) {

    /* 预约表单弹窗 */
    .bottom-reserve-form-wrap {
        width: 100%;
        height: auto;
    }

    .bottom-reserve-form-wrap .bottom-reserve-form-Pop {
        width: calc(100% - 10px);
        height: auto;
        margin: 0 auto;
        box-sizing: border-box;
        position: fixed;
        bottom: 5px;
        left: 5px;
        background: #fff;
        border-radius: 4px;
        z-index: 10000;
    }

    .bottom-reserve-form-wrap .bottom-reserve-btn .open-btn {
        position: fixed;
        bottom: 65px;
        right: 5px;
        font-size: 16px;
        padding: 10px 20px;
        box-sizing: border-box;
    }

    .bottom-reserve-form-wrap .bottom-reserve-btn .open-btn img {
        width: 15px;
        height: auto;
    }

    .bottom-reserve-form-Pop .form-title {
        width: 100%;
        /* height: 50px; */
        border-radius: 8px 8px 0 0;
        position: relative;
        box-sizing: border-box;
        border-bottom: 1px solid #e5e5e5;
    }

    .bottom-reserve-form-Pop .form-title .title-text {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        width: 100%;
        padding: 10px 15px;
        color: #055f87;
        box-sizing: border-box;
        font-size: 18px;
        font-weight: bold;
        /*background: #fff;*/
        /*border-radius: 8px 8px 0 0;*/
    }

    .bottom-reserve-form-Pop .form-title .close-image {
        width: 20px;
        height: 20px;
        position: absolute;
        top: calc(50% - 10px);
        right: 10px;
        cursor: pointer;
        transition: all 1s;
    }

    .bottom-reserve-form-Pop .tips-text {
        display: inline-block;
        width: 100%;
        padding: 5px 15px;
        box-sizing: border-box;
        background: #055f87;
    }

    .bottom-reserve-form-Pop .tips-text .text-style {
        width: 100%;
        box-sizing: border-box;
        color: #fff;
        font-size: 14px;
    }

    .bottom-reserve-form-Pop .bottom-reserve-form {
        width: 100%;
    }

    .bottom-reserve-form-Pop .bottom-reserve-form .bottom-reserve-form-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        padding: 10px 15px 0 15px;
        box-sizing: border-box;
    }

    .bottom-reserve-form-Pop .bottom-reserve-form .bottom-reserve-form-item.radio-item {
        width: 50% !important;
    }

    .bottom-reserve-form-Pop .bottom-reserve-form .bottom-reserve-form-item.radio-item:last-child {
        padding: 10px 15px 0 0;
    }

    .bottom-reserve-form .bottom-reserve-form-item .label-text {
        font-weight: bold;
        position: relative;
        width: 100%;
        margin-bottom: 5px;
    }

    .bottom-reserve-form .bottom-reserve-form-item .label-text::before {
        display: inline-block;
        content: "*";
        color: #eb3740;
        font-size: 14px;
        width: 14px;
        height: 14px;
        position: absolute;
        top: 0;
        left: -10px;
    }

    .bottom-reserve-form .bottom-reserve-form-item .input-style,
    .bottom-reserve-form .bottom-reserve-form-item .select-style {
        /*width: 280px;*/
        width: 100%;
        height: 40px;
        border: 1px solid #e6e6e6;
        padding: 5px 10px;
        box-sizing: border-box;
        border-radius: 5px;
        font-size: 14px;
        color: #000;
    }

    .bottom-reserve-form .bottom-reserve-form-item .phone-input {
        display: flex;
        width: 100%;
    }

    .bottom-reserve-form-item .phone-input .area-select {
        border: 1px solid #e6e6e6;
        padding: 5px;
        box-sizing: border-box;
        border-radius: 5px 0 0 5px;
        border-right: none;
        width: 160px;
    }

    .bottom-reserve-form-item .phone-input .input-style {
        border-radius: 0 5px 5px 0;
        flex: 1;
    }

    .bottom-reserve-form-item .radio-box {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .bottom-reserve-form-item .radio-box .radio-style {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }

    .bottom-reserve-form-item .radio-box .radio-text {
        font-size: 14px;
        margin-right: 5px;
        white-space: nowrap;
    }

    .bottom-reserve-form-Pop .pop-submit-btn {
        width: 100%;
        border-top: 1px solid #e6e6e6;
        padding: 10px 15px;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

    .bottom-reserve-form-Pop .pop-submit-btn .btn-style {
        width: 100%;
        height: 30px;
        background: #055f87;
        color: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        border: 0;
        font-size: 16px;
        cursor: pointer;
    }

}