/* 留言板弹出层 */

.masking-s {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    z-index: 9999;
}

.dialog {
    width: 800px;
    height: 380px;
    padding: 20px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: none;
    z-index: 1000;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 2px #3BA86F;
}

.dialog .close {
    font-size: 20px;
    position: relative;
    margin-left: -20px !important;
    margin-top: -20px !important;
}

.dialog .close .consult {
    width: 960px;
    height: 90px;
    margin-bottom: 15px;
}

.dialog .close .exit {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 30px;
    right: 0;
    cursor: pointer;
}

/* .dialog .close:hover {
    border-radius: 6px;
    background: red;
    color: #fff;
} */

.dialog h4 {
    text-align: center;
    font-size: 16px;
    color: red;
    line-height: 50px;
}

.dialog h5 {
    font-size: 14px;
    line-height: 50px;
    border-bottom: 1px solid #3BA86F;
}

.dialog h5 strong {
    font-weight: bold;
    font-size: 30px;
    color: #3BA86F;
    padding-right: 10px;
}

.dialog h5 span {
    color: #3BA86F;
    font-size: 16px;
    font-weight: bold;
}

.dialog_item {
    display: flex;
}

.dialog_left {
    flex: 2;
}

.dialog_right {
    flex: 1;
}

.dialog_left .tonnage {
    margin-top: 30px;
}

.dialog_left .afterSale_item {
    margin-bottom: 10px;
}

.dialog_left .afterSale_item label {
    width: 50px;
    font-size: 14px;
}

.dialog_left .name,
.dialog_left .phone {
    float: left;
}

.dialog_left .name .input_text {
    width: 130px;
    height: 40px;
    border: 1px solid #666;
    margin-right: 10px;
    text-indent: 20px;
    border-radius: 6px;
    outline: #666;
}

.dialog_left .phone input {
    width: 220px;
    height: 40px;
    border: 1px solid #666;
    margin-right: 10px;
    text-indent: 20px;
    border-radius: 6px;
    outline: #666;
}

.dialog_left .phone span {
    color: red;
}

.dialog_left .afterSale_item input {
    padding: 0px 10px;
    border: none;
    margin-right: 5px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    background: #EFEFEF;
    cursor: pointer;
}

.dialog_right .count_down {
    margin-top: 20px;
    color: #3BA86F;
}

.dialog_right .count_down,
.dialog_right .today_consulting {
    width: 100%;
    font-size: 16px;
    height: 38px;
    line-height: 38px;
    margin-bottom: 0;
    text-align: center;
}

.clock {
    width: 100%;
    text-align: center;
    margin-top: 5px;
}

.dialog_right button {
    border: none;
    background: #3BA86F;
    color: #fff;
    width: 100%;
    font-size: 20px;
    height: 50px;
    border-radius: 6px;
    cursor: pointer;
}

.cursor {
    cursor: pointer;
}

.afterSale_item input:hover {
    cursor: pointer;
    color: #3BA86F;
}