.popup_bg {
    position: absolute;
    z-index: 1;
    width: 148px;
    height: 268px;
}

.popup_container {
    position: fixed;
    z-index: 999;
    width: 148px;
    height: 268px;
    top: 325px;
    left: calc(50vw + 600px);
}

.popup_content {
    position: relative;
    z-index: 2;
    padding: 8px 0;
}

.popup_ul {
    height: 46px;
    background: white;
    border-radius: 4px;
    margin: 14px 15px;
}

.popup_icon {
    float: left;
    margin: 16px 8px 16px 10px;
    height: 14px;
    width: 14px;
}

.popup_icon_hover {
    display: none;
    float: left;
    margin: 16px 8px 16px 10px;
    height: 14px;
    width: 14px;
}

.popup_ul:hover {
    background: #ffefe1;
}

.popup_ul:hover .popup_icon {
    display: none;
}

.popup_ul:hover .popup_icon_hover {
    display: inline;
}

.popup_ul:hover .popup_label {
    color: #D61518;
}

.popup_label {
    float: left;
    line-height: 46px;
    font-size: 18px;
    font-family: MicrosoftYaHei, MicrosoftYaHei-Regular;
    font-weight: 400;
    text-align: justify;
    color: #616161;
    user-select: none;
}