1234567891011121314151617181920212223242526272829303132333435363738 |
- .express{
- width: 100%;
- background: white;
- }
- .box{
- margin: 0 20rpx;
- padding: 20rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1rpx solid #d6d6d6;
- }
- .box::after{
- background: #d6d6d6;
- }
- .box .box_conten{
- display: flex;
- flex: 1;
- margin: 0 10rpx;
- flex-direction: column;
- justify-content: center;
- }
- .box .box_conten .text{
- font-size: 30rpx;
- color: #21b314;
- font-weight: bold;
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- .date{
- font-size: 30rpx;
- color: #999999;
- }
|