123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- }
- .list {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .item {
- width: 100%;
- display: flex;
- flex-direction: column;
- background-color: #FFFFFF;
- border-radius: 16rpx;
- padding: 14rpx 40rpx 14rpx 26rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- }
- .item-top {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 27rpx;
- color: #000000;
- font-size: 32rpx;
- }
- .item-content {
- width: 100%;
- display: flex;
- align-items: center;
- }
- .item-img {
- width: 112rpx;
- height: 112rpx;
- border-radius: 8rpx;
- margin-right: 36rpx;
- }
- .item-sidebar {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .item-name {
- width: 100%;
- color: #000000;
- font-size: 26rpx;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- margin-bottom: 20rpx;
- }
- .item-bottom {
- color: #919191;
- font-size: 24rpx;
- margin-top: 30rpx;
- }
|