@@ -0,0 +1,141 @@
/* ── 名片列表布局 ── */
.teacher-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── 单张名片卡片 ── */
.teacher-card {
    display: flex;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-decoration: none;
    color: inherit;
}
.teacher-card:hover {
    border-color: #07ae71;
    box-shadow: 0 4px 20px rgba(7,174,113,0.15);
    transform: translateY(-2px);
}

/* 头像 */
.tc-avatar {
    width: 160px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f0f0f0;
}
.tc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s;
}
.teacher-card:hover .tc-avatar img { transform: scale(1.05); }

/* 右侧信息区 */
.tc-info {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 姓名 */
.tc-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* 职务 & 办公室 */
.tc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}
.tc-position,
.tc-office {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
    background: #f5f9f7;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid #d4ede3;
}
.tc-position i,
.tc-office i {
    color: #07ae71;
    font-style: normal;
}

/* 岗位职责 */
.tc-duty {
    position: relative;
    padding-left: 20px;
}
.tc-duty::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #07ae71;
    font-size: 12px;
    top: 2px;
}
.tc-duty-label {
    font-size: 13px;
    color: #07ae71;
    font-weight: bold;
    margin-bottom: 6px;
}
.tc-duty-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* 箭头 */
.tc-arrow {
    display: flex;
    align-items: center;
    padding-right: 20px;
    color: #ccc;
    font-size: 24px;
    transition: all 0.3s;
}
.teacher-card:hover .tc-arrow {
    color: #07ae71;
    transform: translateX(5px);
}

/* ── 响应式 ── */
@media (max-width: 768px) {
    .teacher-card { flex-direction: column; }
    .tc-avatar { width: 100%; height: 220px; }
    .tc-info { padding: 20px; }
    .tc-name { font-size: 18px; }
    .tc-arrow { display: none; }
}
@media (max-width: 480px) {
    .tc-avatar { height: 180px; }
    .tc-name { font-size: 16px; }
    .tc-info { padding: 16px; }
    .tc-meta { gap: 8px; }
    .tc-position, .tc-office { font-size: 12px; padding: 5px 10px; }
    .tc-duty-text { font-size: 13px; }
}
