123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- .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%;
- background-color: #FFFFFF;
- border-radius: 16rpx;
- padding: 20rpx 70rpx 20rpx 20rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- }
- .item:last-child {
- margin-bottom: 0;
- }
- .item-top {
- width: 100%;
- display: flex;
- align-items: flex-start;
- margin-bottom: 14rpx;
- }
- .item-img {
- width: 136rpx;
- height: 136rpx;
- border-radius: 8rpx;
- margin-right: 20rpx;
- }
- .item-sidebar {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .item-title {
- width: 100%;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- color: #000000;
- font-size: 26rpx;
- margin-bottom: 10rpx;
- margin-top: 3rpx;
- }
- .item-msg {
- width: 100%;
- font-size: 24rpx;
- color: #2A2A2A;
- }
- .item-msg text {
- color: #F2501A;
- }
- .item-bottom {
- width: 100%;
- font-size: 24rpx;
- color: #919191;
- }
- .normal-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- color: #999999;
- font-size: 26rpx;
- padding: 400rpx 0 100rpx;
- }
- .normal-box image {
- width: 580rpx;
- margin-bottom: 12rpx;
- }
|