@charset "utf-8";

/* 师资力量页面样式 */
.container {
    padding-top: 80px; /* 为固定header留出空间 */
}

/* banner区域 */
.banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #009B96 0%, #006B66 100%);
}

.banner-img {
    width: 100%;
    height: 100%;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* 导航面包屑 */
.nav {
    background: #f5f5f5;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.nav .con-center {
    font-size: 14px;
    color: #666;
}

.nav a {
    color: #666;
    margin: 0 5px;
}

.nav a:hover {
    color: #009B96;
}

.nav i {
    font-style: normal;
    margin: 0 5px;
    color: #ccc;
}

.nav span {
    color: #009B96;
    margin-left: 5px;
}

/* 师资力量列表页 - sz-index */
.sz-index {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -10px;
}

.sz-index li {
    width: calc(25% - 20px);
    margin: 0 10px 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.sz-index li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,155,150,0.2);
}

.sz-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.sz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sz-index li:hover .sz-image img {
    transform: scale(1.05);
}

.sz-index-p {
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    border-top: 1px solid #eee;
}

/* 师资力量详情页 - sz */
.sz {
    display: flex;
    margin: 40px 0;
    gap: 30px;
}

.sz .le {
    width: 70%;
}

.sz .ri {
    width: 30%;
}

.sz-h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #009B96;
}

.sz-name {
    font-weight: bold;
    color: #009B96;
    margin-right: 15px;
}

.sz-zw {
    font-size: 16px;
    color: #999;
    font-weight: normal;
}

.sz-ul {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sz-ul-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #009B96;
}

.sz-ul-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sz-ul .sz-name {
    font-size: 28px;
    text-align: center;
    margin: 15px 0;
    display: block;
}

.sz-ul li:last-child {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    text-align: center;
}

.sz-text {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: #666;
}

.sz-text p {
    margin-bottom: 10px;
}

/* 右侧其他教师 */
.sz-h5 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #009B96;
}

.sz-ren {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.sz-ren li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
}

.sz-ren li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sz-ren li:hover {
    transform: translateX(5px);
}

.sz-ren li a {
    display: flex;
    align-items: center;
    width: 100%;
}

.sz-ren-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #009B96;
}

.sz-ren-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sz-ren-text {
    flex: 1;
}

.sz-ren-text h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.sz-ren-text p {
    font-size: 14px;
    color: #999;
}

/* 响应式 */
@media (max-width: 768px) {
    .sz {
        flex-direction: column;
    }

    .sz .le,
    .sz .ri {
        width: 100%;
    }

    .sz-index li {
        width: calc(50% - 20px);
    }
}