123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .item-list-container {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex-direction: column;
- .list-item {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- margin-top: 20rpx;
- .list-item-img{
- width: 240rpx;
- height: 160rpx;
- border-radius: 8rpx;
- }
- .list-item-right{
- margin-left: 20rpx;
- display: flex;
- flex-grow: 1;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- height: 160rpx;
- >view{
- width: 100%;
- text-align: left;
- }
- .item-title{
- height: 70rpx;
- line-height: 36rpx;
- box-sizing: border-box;
- font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
- font-weight: 650;
- color: #333333;
- display: -webkit-box;
- -webkit-line-clamp: 2; /* 控制显示的行数 */
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .item-content{
- box-sizing: border-box;
- font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
- font-weight: 650;
- color: #aaaaaa;
- font-size: 28rpx;
- }
- }
- }
- }
|