1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* pages/invitees/invitees.wxss */
- .invitees-wrp{
- }
- .invitees-list{
-
- }
- .invitees-list-item{
- display: flex;
- align-items: center;
- padding: 30rpx;
- background-color: #fff;
- border-radius: 10rpx;
- margin: 20rpx 0;
- }
- .invitees-list-item:hover{
- background-color: #eee;
- }
- .invitees-list-item .avtor{
- max-width: 100rpx;
- max-height: 100rpx;
- margin-right: 20rpx;
- }
- .invitees-list-item .content{
- flex: 1;
- height: 100rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- margin-right: 20rpx;
- overflow: hidden;
- white-space: nowrap;
- word-break: keep-all;
- text-overflow: ellipsis;
- }
- .invitees-list-item .content .title{
- /* padding: 10rpx 0; */
- margin-top: -10rpx;
- font-size: 30rpx;
- }
- .invitees-list-item .content .desc, .invitees-list-item .extra{
- font-size: 22rpx;
- color: #8e8e8e;
- }
- .invitees-list-item .extra{
- display: flex;
- flex-direction: column;
- line-height: 1.8;
- text-align: right;
- }
|