/* 预约表单弹窗 */
.reserve-form-Pop input::-webkit-input-placeholder { /* WebKit browsers */
    font-size: 14px;
}
.reserve-form-Pop {
    /*width: 440px;*/
    width: 440px;
    height: auto;
    position: fixed;
    right: 10px;
    bottom: 10px;
    /*border: 2px solid #2A78BA;*/
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    z-index: 1001;
    box-shadow: 0 0 10px #e5e5e5;
}

.reserve-form-Pop input:placeholder-shown {
    font-size: 14px;
}

.reserve-form-Pop .form-title {
    width: 100%;
    background: #2A78BA;
    height: 50px;
    border-radius: 8px 8px 0 0;
    color: #2A78BA;
    position: relative;
    box-sizing: border-box;
}

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

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

.reserve-form-Pop .tips-text {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
}

.reserve-form-Pop .tips-text .text-style {
    width: 100%;
    background: #fff6eb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #b27f39;
}

.reserve-form-Pop .reserve-form {
    width: 100%;
    margin: 0;
    max-width: 100%;
}

.reserve-form-Pop .reserve-form .reserve-form-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

.reserve-form .reserve-form-item .label-text {
    font-weight: bold;
    position: relative;
}

.reserve-form .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;
}

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

.reserve-form .reserve-form-item .phone-input {
    display: flex;
}

.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: 140px;
}

.reserve-form-item .phone-input .input-style {
    border-radius: 0 5px 5px 0;
    width: 160px;
}

.reserve-form-item .radio-box {
    /*width: 280px;*/
    width: 240px;
    padding-left: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.reserve-form-item .radio-box .radio-style, .reserve-form-item .radio-box .radio-text {
    margin-right: 5px;
}

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

.reserve-form-Pop .submit-btn .btn-style {
    width: 100%;
    height: 40px;
    background: #2A78BA;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
}

.reserve-form-button {
    display: none;
    width: auto;
    height: 40px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    border-radius: 999px;
    z-index: 999;
}

.reserve-form-button .open-btn {
    padding: 0 20px;
    box-sizing: border-box;
    height: 100%;
    border: none;
    border-radius: 999px;
    background: #2A78BA;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: all 1s;
}

.reserve-form-button .open-btn .open-image {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

/* 取消移动端的hover效果 只有pc端的生效 */
@media (any-hover: hover) {
    .reserve-form-Pop .submit-btn .btn-style:hover {
        background: #5ba4ed;
    }

    .reserve-form-Pop .form-title .close-image:hover {
        transform: scale(1.1);
        cursor: pointer;
    }

    .reserve-form-button .open-btn:hover {
        transform: scale(1.1);
    }
}


@media screen and (max-width: 768px) {
    /* 预约表单弹窗 */
    .reserve-form-Pop {
        /*width: 80%;*/
        width: calc(100% - 10px);
        right: 5px;
        bottom: 5px;
    }

    .reserve-form-Pop .form-title {
        height: 35px;
    }

    .reserve-form-Pop .form-title .close-image {
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
        right: 10px;
    }

    .reserve-form-Pop .form-title .title-text {
        font-size: 18px;
    }

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

    .reserve-form-Pop .reserve-form .radio-item{
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }

    .reserve-form .reserve-form-item .label-text::before {
        left: -8px;
        top: -3px;
        font-size: 16px;
    }

    .reserve-form-Pop .tips-text {
        padding: 10px 5px 0 5px;
    }

    .reserve-form-Pop .tips-text .text-style {
        padding: 5px;
        height: auto;
    }

    .reserve-form-Pop .form-title .title-text{
        padding: 5px 20px;
    }

    .reserve-form .reserve-form-item .label-text {
        margin-bottom: 5px;
    }

    .reserve-form-Pop .reserve-form .reserve-form-item {
        padding: 5px 15px;
    }

    .reserve-form-item .radio-box{
        width: auto;
    }

    .reserve-form .reserve-form-item .input-style, .reserve-form .reserve-form-item .select-style {
        width: 100%;
        height: auto;
        padding: 5px;
    }

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

    .reserve-form .reserve-form-item .phone-input .input-style {
        width: calc(100% - 140px);
    }

    .reserve-form-Pop .submit-btn {
        padding: 10px;
        box-sizing: border-box;
    }

    .reserve-form-Pop .submit-btn .btn-style {
        width: 100%;
        height: 40px;
    }

    .reserve-form-Pop .submit-btn{
        margin-top: 0;
    }
}
