/*专家卡片行样式*/
.user-card {
    text-align: center;
    padding: 10px 5px;
    border-radius: .375rem;
    transition: all 0.3s;
    /*background: white;*/
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);

    background-image: url("../img/banner-bg4.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.user-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.user-name {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #0a2540;

    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.balance-info {
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    /*width: 100%;*/
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
}

.balance-amount {
    font-weight: 600;
}

/* 余额不同等级的样式 */
.balance-high {
    color: #28a745;
}

.balance-medium {
    color: #ffc107;
}

.balance-low {
    color: #dc3545;
}

/* 5列布局支持 */
.col-lg-2-4 {
    flex: 0 0 auto;
    padding-left: 5px;
    padding-right: 5px;
    width: 20%;
}

@media (max-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        padding-left: 5px;
        padding-right: 5px;
        width: 20%;
    }
}

@media (max-width: 768px) {
    .col-lg-2-4 {
        width: 25%;
        padding-left: 5px;
        padding-right: 5px;
        /*margin-top: 10px;*/
    }
    .avatar {
        width: 60px;
        height: 60px;
    }
}



/* 单行省略号 */
.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 多行省略号（2行） */
.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 多行省略号（3行） */
.ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.up-issue-result{
    padding: 2px 3px;
    border:1px solid red;
    border-radius: 5px;
    color: red;
}