/* 弹窗样式 */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup-modal-content-kf {
    position: relative;
    background: url(https://www.china-mcc.com/static/member/images/upgrade/window-bg.png) no-repeat center;
    background-size: contain;
    margin: 100px auto;
    padding: 20px;
    border: none;
    width: 711px;
    height: 489px;
    max-width: 751px;
    margin-top: 210px;
    z-index: 99;
}

.popup-modal-content-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
    margin-left: 80px;
}

.popup-modal-header {
    text-align: center;
    margin-top: 37px;
}

.popup-modal-header h2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    line-height: 42px;
}

.popup-modal-header h2 img {
    position: relative;
    /* top: 5px; */
    width: 44px;
    height: 20px;
}

.popup-modal-header p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #5E7298;
    line-height: 42px;
}

.popup-vip-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: -30px;
    margin-top: -8px;
}

.popup-qr-code {
    background: url(https://www.china-mcc.com/static/member/images/upgrade/qr-code-bg.png) no-repeat center;
    width: 220px;
    height: 220px;
    margin-left: -10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
}

.popup-qr-code img {
    width: 100%;
    max-width: 200px;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.popup-qr-code::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 110px;
    background: linear-gradient(to bottom, 
                rgba(30, 144, 255, 0.2),      /* 一版0% */
                rgba(30, 144, 255, 0.3),
                rgba(30, 144, 255, 0.6),
                rgba(30, 144, 255, 0.8),
                rgba(30, 144, 255, 0.9));
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.5);
    animation: scan 2.5s linear infinite;
    z-index: 2;
}

.popup-vip-close img {
    width: 32px;
    height: 32px;
}

.popup-qr-code-annotation{
    /* margin-left: -20px; */
    margin-right: 8px;
}

.popup-vip-close:hover,
.popup-vip-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.popup-qr-code-annotation p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 12px;
    color: #77ADFF;
    line-height: 16px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.popup-contact-info {
    text-align: center;
    border-left: 1px dashed #A5B9DB;
    width: 340px;
    height: 240px;
}

.popup-contact-info p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #707274;
    line-height: 42px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.popup-phone {
    font-family: Microsoft YaHei !important;
    font-weight: bold !important;
    font-size: 20px !important;
    color: #000000 !important;
    line-height: 42px !important;
}

.popup-contact-info .contact-btn {
    margin-top: 15px;
}

.popup-contact-btn {
    background: #1969F2;
    border-radius: 20px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    width: 152px;
    height: 40px;
    text-align: center;
}

.popup-contact-btn:hover {
    background-color: #0056b3;
}

@keyframes scan {
    0% {
        top: -20%;
    }
    100% {
        top: 100%;
    }
}

/* 弹窗提示框样式 */
.popup-contact-tooltip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* 图标和文本之间的间距 */
}

.popup-contact-tooltip img {
    width: 24px;
    height: 24px;
}