1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .list {
- float: left;
- width: 92%;
- /* height: 218rpx; */
- padding: 0 0 20rpx 0;
- margin: 0 30rpx;
- /* border-bottom: 1px solid #ccc; */
- }
- .list .title {
- float: left;
- width: 100%;
- font-size: 30rpx;
- font-family: Source Han Sans SC;
- font-weight: 400;
- color: rgba(40, 40, 40, 1);
- margin: 30rpx 0;
- }
- .list .news {
- float: left;
- width: 100%;
- font-size: 30rpx;
- font-family: Source Han Sans SC;
- font-weight: 400;
- color: rgba(40, 40, 40, 1);
- margin: 0 0 20rpx 0;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- .list .info {
- float: left;
- width: 100%;
- }
- .list .info text:first-child {
- float: left;
- width: 100%;
- font-size: 30rpx;
- font-family: Source Han Sans SC;
- font-weight: 400;
- color: rgba(40, 40, 40, 1);
- border-bottom: 1px solid #ccc;
- padding: 20rpx 0;
-
- }
- .list .info text:last-child {
- float: left;
- width: 100%;
- font-size: 30rpx;
- font-family: Source Han Sans SC;
- font-weight: 400;
- color: rgba(40, 40, 40, 1);
- }
|