﻿
/* 列表 */
.content .teacher-list {
    width: 100%;
    padding: 5vw 5vw 6vw;
}

/* 列表里的item */
.content .teacher-list .teach-l-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #ECECEC;
    margin-bottom: 20px;
}

/* item里的左边 */
.content .teacher-list .teach-l-item .item-left {
    width: 32vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.content .teacher-list .teach-l-item .item-left .image {
    width: 32vw;
    height: 43vw;
}

.content .teacher-list .teach-l-item .item-left .toMore {
    width: 32vw;
    height: 8vw;
    background-color: #EDEDED;
    text-align: center;
    line-height: 8vw;
}
.content .teacher-list .teach-l-item .item-left .toMore a {
    color: #1B6395;
}
.content .teacher-list .teach-l-item .item-left .toMore a:active {
    color: #333;
}

/* item里的右边 */
.content .teacher-list .teach-l-item .item-right {
    width: 52vw;
}

.content .teacher-list .teach-l-item .item-right .rigth-title {
    font-size: 3.8vw;
    color: #676767;
    border-bottom: 1px solid #D2D2D2;
    padding-bottom: 15px;
}
.content .teacher-list .teach-l-item .item-right .rigth-title span {
    font-size: 4vw;
    font-weight: 600;
    color: #333;
    margin-right: 10px;

    
}

.content .teacher-list .teach-l-item .item-right .right-content {
    display: -webkit-box;
    display: -moz-box;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    overflow: hidden;
    /*控制文本行数，多少行以后开始省略号 */
    -webkit-line-clamp: 7; 
    -webkit-box-orient: vertical;

    /* display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:6;
    overflow:hidden; */
    font-size: 3.8vw;
    color: #676767;
    line-height: 6vw;
    padding: 10px 0 0;
}

/* 查看更多按钮 */
.content .more-but {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content .more-but a {
    display: inline-block;
    width: 30vw;
    height: 8vw;
    color: #9F9F9F;
    font-size: 3.8vw;
    background-color: #EDEDED;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .more-but a:active {
    background-color: #d2d2d2;
}

.content .more-but a span {
    display: inline-block;
    width: 4vw;
    height: 4vw;
    margin-right: 10px;
}

