.zxh-online-help-btn{
    display:inline-flex;
    align-items:center;
    gap:1px;
    width:190px;
    height:10px;
    padding:8px 15px;
    text-decoration:none;
    background:linear-gradient(180deg,#171717,#090909);
    border:1px solid #8a6a00;
    border-bottom:4px solid #f1c40f;
    color:#dbc658;
    font-size:14.7px;
    font-weight:700;
    font-family:system-ui;
    position:relative;
    overflow:hidden;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 0 20px rgba(241,196,15,.15);
    transition:.3s;
}

.zxh-online-help-btn:before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:180px;
    height:100%;
    background-image:
        radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px);
    background-size:10px 10px;
    opacity:.3;
}

.zxh-online-help-btn:hover{
    color:#ffd700;
}

.zxh-online-help-btn:after{
    content:"";
    position:absolute;
    top:1px;
    right:22px;
    width:4px;
    height:95%;
    background:#f1c40f;
    transform:skew(-20deg);
    box-shadow:-18px 0 0 rgba(255,255,255,.08);
}

.zxh-open-btn{
    position: relative;
    margin: -149px 6px 1px;
    float: right;
    cursor: pointer;
    top: 199px;
    right: 338px;
}

.zxh-popup{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:999999;
}

.zxh-popup.zxh-active{
    opacity:1;
    pointer-events:auto;
}

.zxh-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.zxh-box{
    position:relative;
    width:380px;
    background:#fff;
    border:2px solid #444;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
    z-index:2;
    font-family:Tahoma,Verdana,sans-serif;
}

.zxh-header{
    background:#000;
    color:#fff;
    padding:10px 12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    font-weight:bold;
}

.zxh-close{
    background:#d80000;
    color:#fff;
    border:none;
    padding:6px 12px;
    cursor:pointer;
    font-size:12px;
    font-weight:bold;
}

.zxh-line{
    height:1px;
    margin:8px 10px;
    background:
    repeating-linear-gradient(
        to right,
        #999 0,
        #999 8px,
        transparent 8px,
        transparent 16px
    );
}

.zxh-row{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 15px;
}

.zxh-support-img{
    border:2px solid #ff0000;
    width:75px;
    height:64px;
    background:#ededed;
}

.zxh-text{
    font-size:13px;
    line-height:1.4;
    font-weight:600;
    color:#333;
}

.zxh-info{
    text-align:center;
    padding:10px;
    color:#d70000;
    font-size:16px;
}

.zxh-buttons{
    display:flex;
    gap:10px;
    padding:12px;
}

.zxh-buttons a{
    flex:1;
    text-decoration:none;
    color:#fff;
    padding:12px;
    font-size:16px;
    font-weight:bold;
    text-align:center;
    border-radius:3px;
}

.zxh-phone-btn{
    background:#2979ff;
}

.zxh-contact-btn{
    background:#ff9800;
}

.zxh-phone-btn:hover,
.zxh-contact-btn:hover{
    opacity:.9;
}

@media(max-width:480px){

    .zxh-box{
        width:95%;
    }

}
.zxh-phone-btn:hover,
.zxh-contact-btn:hover{
    color:#fff !important;
}