123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- page {
- height: 100%;
- }
- .num {
- position: absolute;
- width: 40rpx;
- height: 40rpx;
- background: #FF0000;
- border-radius: 50%;
- color: #ffffff;
- text-align: center;
- line-height: 40rpx;
- font-size: 22rpx !important;
- right: -40rpx;
- top: 0rpx;
- }
- .conversations {
- width: 750rpx;
- overflow-x: hidden;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- /* height: 100%; */
- padding-bottom: 100rpx;
- }
- .conversations .scroll-item {
- height: 152rpx;
- display: flex;
- align-items: center;
- padding-left: 32rpx;
- border-bottom: 1px solid #EFEFEF;
- }
- .conversations .scroll-item .head-icon {
- width: 100rpx;
- height: 100rpx;
- margin-right: 28rpx;
- }
- .conversations .scroll-item_info {
- height: 151rpx;
- width: 590rpx;
- padding-right: 32rpx;
- box-sizing: border-box;
- }
- .conversations .scroll-item_info .item-info-top {
- padding-top: 20rpx;
- height: 60rpx;
- line-height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .conversations .item-info-top_name {
- font-size: 34rpx;
- color: #262628;
- }
- .conversations .item-info-top_time {
- font-size: 26rpx;
- color: rgba(179, 179, 179, 0.8);
- font-family: Source Han Sans CN;
- }
- .conversations .item-info-bottom {
- height: 40rpx;
- line-height: 40rpx;
- overflow: hidden;
- }
- .conversations .item-info-bottom-item {
- display: flex;
- justify-content: space-between;
- }
- .item-info-bottom .item-info-top_content {
- font-size: 30rpx;
- color: #b3b3b3;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .item-info-bottom .item-info-bottom_action {
- width: 50rpx;
- height: 50rpx;
- font-size: 20rpx;
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABgSURBVHgB7Y6xDYAwDASDvQAjsBmNF2CDsAEDuGEzRsgCtnikBCEqQpucFOlPl8IhdBpmUNXZzDbsxMxRRPYSaxpBImTEm3K4qWmUpZBeF39u5O4LxnEJ9vr8+bd1muMEOUNL5++YjiMAAAAASUVORK5CYII=) no-repeat center;
- background-size: 28rpx 30rpx;
- }
- .no-conversation {
- width: 100%;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 28rpx;
- color: #9D9D9D;
- }
- .item-head {
- position: relative;
- }
- .item-head .item-head_unread {
- padding: 6rpx;
- background-color: #EE593C;
- color: #FFFFFF;
- font-size: 24rpx;
- line-height: 28rpx;
- border-radius: 24rpx;
- min-width: 24rpx;
- min-height: 24rpx;
- text-align: center;
- position: absolute;
- top: 0;
- right: 15rpx;
- }
- .action-container {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .action-container .layer {
- position: absolute;
- top: 0;
- left: 0;
- background: rgba(51, 51, 51, 0.5);
- width: 100%;
- height: 100%;
- z-index: 99;
- }
- .action-box {
- width: 400rpx;
- height: 240rpx;
- background: #ffffff;
- position: relative;
- z-index: 100;
- border-radius: 20rpx;
- overflow: hidden;
- }
- .action-item {
- text-align: center;
- line-height: 120rpx;
- font-size: 34rpx;
- color: #262628;
- border-bottom: 1px solid #EFEFEF;
- }
|