93 lines
1.8 KiB
Plaintext
93 lines
1.8 KiB
Plaintext
/* packageH/Advertising/advertisingList/advertisingList.wxss */
|
|
#Advertising-adList .main {
|
|
padding: 28rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
#Advertising-adList .main image {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
#Advertising-adList .main .list {
|
|
display: flex;
|
|
padding-bottom: 28rpx;
|
|
}
|
|
|
|
#Advertising-adList .main .list .list-img {
|
|
width: 140rpx;
|
|
height: 166rpx;
|
|
background-color: #fff;
|
|
border-radius: 10rpx;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
position: relative;
|
|
}
|
|
|
|
#Advertising-adList .main .list .list-img::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
border: 1rpx solid #a6a6a6;
|
|
width: 200%;
|
|
height: 200%;
|
|
-webkit-transform: scale(0.5);
|
|
transform: scale(0.5);
|
|
-webkit-transform-origin: left top;
|
|
transform-origin: left top;
|
|
}
|
|
|
|
#Advertising-adList .main .list .list-right {
|
|
flex: 1;
|
|
margin-left: 24rpx;
|
|
display: flex;
|
|
overflow: hidden;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
text-align: left;
|
|
}
|
|
|
|
#Advertising-adList .main .list .list-right .list-title {
|
|
text-align: left;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
color: #1e1e1e;
|
|
font-size: 15px;
|
|
}
|
|
|
|
#Advertising-adList .main .list .list-right .list-member {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
color: #202020;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#Advertising-adList .main .list .list-right .list-member .member-img {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
overflow: hidden;
|
|
border-radius: 50%;
|
|
margin-right: 8rpx;
|
|
background-color: #c5c5c5;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
#Advertising-adList .main .list .list-right .list-member .member-name {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
|
|
/* 超出部分隐藏 */
|
|
text-overflow: ellipsis;
|
|
|
|
/* 超出部分显示省略号 */
|
|
white-space: nowrap;
|
|
|
|
/* 规定段落中的文本不进行换行 */
|
|
}
|