/* 基础图标样式 */
.mz168utype_badge {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    margin-right: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 悬停效果 */
.mz168utype_badge:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* 个人会员 - 蓝色 */
.mz168utype_badge_personal {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 2px 4px rgba(41, 128, 185, 0.3);
}

/* 企业会员 - 橙色 */
.mz168utype_badge_enterprise {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 2px 4px rgba(211, 84, 0, 0.3);
}

/* 事业单位 - 绿色 */
.mz168utype_badge_institution {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}

/* 政府机关 - 红色 */
.mz168utype_badge_government {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 2px 4px rgba(192, 57, 43, 0.3);
}

/* 非盈利机构 - 紫色 */
.mz168utype_badge_nonprofit {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 2px 4px rgba(142, 68, 173, 0.3);
}

/* V字标记 - 纯CSS实现 */
.mz168utype_badge::after {
    content: "V";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

/* 示例样式 */
.mz168utype_user_list {
    margin: 20px;
    font-family: Arial, sans-serif;
}
.mz168utype_user_item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.mz168utype_user_name {
    margin-left: 10px;
}

/* 工具提示样式 */
.mz168utype_badge::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    pointer-events: none;
}
.mz168utype_badge:hover::before {
    opacity: 1;
    visibility: visible;
}