You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
2.6 KiB
126 lines
2.6 KiB
.my-lecturer .lecturer-list {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-wrap: wrap;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
-webkit-align-content: flex-start;
|
|
-ms-flex-line-pack: start;
|
|
align-content: flex-start;
|
|
padding: 40px 0 0 39px;
|
|
}
|
|
|
|
.my-lecturer .item {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-direction: column;
|
|
-moz-box-orient: vertical;
|
|
-moz-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
width: 264px;
|
|
height: 310px;
|
|
padding-top: 31px;
|
|
margin: 0 22px 22px 0;
|
|
-webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.my-lecturer .avatar {
|
|
width: 96px;
|
|
height: 96px;
|
|
border-radius: 50%;
|
|
margin: 0 auto 15px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.my-lecturer .avatar img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.my-lecturer .item .name {
|
|
padding: 0 20px;
|
|
margin-bottom: 15px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
line-height: 24px;
|
|
color: #333333;
|
|
}
|
|
|
|
.my-lecturer .tags {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-wrap: wrap;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
-webkit-align-content: flex-start;
|
|
-ms-flex-line-pack: start;
|
|
align-content: flex-start;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
padding: 0 20px;
|
|
margin: 0 -10px 12px 0;
|
|
}
|
|
|
|
.my-lecturer .tag {
|
|
height: 24px;
|
|
padding: 0 10px;
|
|
border-radius: 2px;
|
|
margin: 0 10px 10px 0;
|
|
background-color: #FFF0E5;
|
|
font-size: 12px;
|
|
line-height: 24px;
|
|
color: #FF6B00;
|
|
}
|
|
|
|
.my-lecturer .info {
|
|
padding: 0 20px;
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
color: #707070;
|
|
}
|
|
|
|
.my-lecturer .item button {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
z-index: 2;
|
|
display: none;
|
|
height: 22px;
|
|
padding: 0 7px;
|
|
border: none;
|
|
border-radius: 2px;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
font-size: 12px;
|
|
color: #666666;
|
|
}
|
|
|
|
.my-lecturer .item:hover button {
|
|
display: block;
|
|
}
|
|
|
|
.my-lecturer .item .iconfont {
|
|
margin-right: 6px;
|
|
font-size: 12px;
|
|
} |