@charset "utf-8";

.label-with-tip {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.tip-icon {
    margin-left: 5px;
    color: #1E9FFF;
    cursor: pointer;
    font-size: 16px;
}
.tip-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 750px;
    font-size: 13px;
    line-height: 1.6;
}
.tip-content:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}
.tip-top:before {
    top: -10px;
    left: 10px;
    border-width: 0 8px 10px 8px;
    border-color: transparent transparent #fff transparent;
}
.tip-right:before {
    top: 8px;
    right: -10px;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
}
.tip-bottom:before {
    bottom: -10px;
    left: 10px;
    border-width: 10px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
}
.tip-left:before {
    top: 8px;
    left: -10px;
    border-width: 8px 10px 8px 0;
    border-color: transparent #fff transparent transparent;
}

