/* 技师卡片样式 */
.technician-item {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.technician-avatar {
    width: 120px;
    height: 150px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
    float: left;
}

.technician-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technician-info {
    overflow: hidden;
    position: relative;
}

.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.tech-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.tech-age {
    font-size: 12px;
    color: #999;
    margin-left: 6px;
    font-weight: normal;
}

.technician-rating {
    color: #FF9800;
    font-size: 14px;
}

.technician-tags {
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
}

.technician-tags span {
    display: inline-block;
    padding: 2px 12px;
    margin-right: 6px;
    margin-bottom: 6px;
    border-radius: 15px;
    font-size: 12px;
    background-color: #4a90e2;
    color: #fff;
}

.technician-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn-order {
    float: left;
    display: inline-block;
    background: #28a745;
    color: #fff;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 5px;
}

.technician-level {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FF9800;
    color: white;
    padding: 3px 6px;
    font-size: 12px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
    font-weight: normal;
}

/* 清除浮动 */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
} 
 