106 lines
1.8 KiB
Plaintext
106 lines
1.8 KiB
Plaintext
|
|
/**
|
|
* Web唐明明
|
|
* 匆匆数载恍如梦,岁月迢迢华发增。
|
|
* 碌碌无为枉半生,一朝惊醒万事空。
|
|
*/
|
|
|
|
.card-content{
|
|
padding: 15px;
|
|
}
|
|
|
|
.nowrap {
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.nowrap-multi {
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
/* 默认模版 */
|
|
.card-default{
|
|
position: relative;
|
|
box-shadow: 0 0 4rpx 4rpx rgba(0, 0, 0, .05);
|
|
background: white;
|
|
border-radius: 15rpx;
|
|
height: 180px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-default-cover{
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
background: #eee;
|
|
width: 150px;
|
|
height: 180px;
|
|
overflow: hidden;
|
|
-webkit-clip-path: polygon(0 0, 0 100%, 80% 100%, 100% 0);
|
|
}
|
|
|
|
.card-default-cover-src{
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 150px;
|
|
height: 180px;
|
|
}
|
|
|
|
.card-default-gray{
|
|
background: #eee;
|
|
font-weight: bold;
|
|
height: 60px;
|
|
margin-top: 10px;
|
|
padding: 8px 10px 8px 160px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.card-default-gray-name{
|
|
font-size: 36rpx;
|
|
line-height: 25px;
|
|
}
|
|
|
|
.card-default-gray-job{
|
|
font-size: 26rpx;
|
|
line-height: 20px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.card-default-info{
|
|
padding: 0 10px 0 140px;
|
|
height: 200rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.card-default-info-text{
|
|
position: relative;
|
|
margin-top: 10px;
|
|
line-height: 18px;
|
|
text-align: right;
|
|
font-size: 28rpx;
|
|
color: gray;
|
|
padding-right: 22px;
|
|
}
|
|
|
|
.card-default-info-text:first-child{
|
|
font-weight: bold;
|
|
color: black;
|
|
}
|
|
|
|
.card-default-info-icon{
|
|
position: absolute;
|
|
right: 0;
|
|
top: 3rpx;
|
|
width: 28rpx;
|
|
height: 28rpx;
|
|
}
|
|
|
|
|