123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- /* components/listItem/listItem.wxss */
-
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
-
-
- /* list块-头部 */
- .list-avatar {
- height: 60rpx;
- line-height: 60rpx;
- }
- .list-chatHeads{
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- background: #999;
- }
- .list-chatHeads .chatHeads-img{
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- /* 平台认证 */
- .list-certification {
- position: absolute;
- right: 0;
- top: 22rpx;
- width: 130rpx;
- height: 40rpx;
- line-height: 40rpx;
- background-color: #fff0be;
- border-radius: 18rpx 0 0 18rpx;
- text-align: center;
- color: #ef6f10;
- font-size: 20rpx;
- }
- .list-certification .certification-img{
- width: 26rpx;
- height: 27rpx;
- position: relative;
- top: 6rpx;
- }
- /* 名称 */
- .list-nick-name {
- margin-left: 15rpx;
- max-width: 300rpx;
- white-space:nowrap;
- overflow:hidden;
- text-overflow:ellipsis;
- font-weight: bold;
- }
- /* 主页 */
- .list-home {
- color: #827de5;
- border-radius: 16px;
- border: solid 1px #827de5;
- width: 96rpx;
- height: 32rpx;
- line-height: 32rpx;
- font-size: 20rpx;
- text-align: center;
- margin-top: 15rpx;
- margin-left: 15rpx;
- }
- .list-home .home-img{
- width: 22rpx;
- height: 23rpx;
- position: relative;
- top: 2rpx;
- }
-
- /* 内容容器 */
- .list-content {
- padding-left: 75rpx;
- padding-right: 15rpx;
- }
- /* 详情 */
- .list-details-text{
- margin: 15rpx 0;
- word-break: break-all;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- }
- .list-details-text.need {
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- }
- /* 标签 */
- .list-tag-view {
- margin-bottom: 20rpx;
- }
- .list-tag-view .list-tag{
- display: inline-block;
- width: 120rpx;
- height: 36rpx;
- border-radius: 18rpx;
- text-align: center;
- line-height: 36rpx;
- font-size: 20rpx;
- margin-right: 15rpx;
- }
- .list-tag-view .list-tag:nth-child(1){
- background-color: #e4f1f7;
- color: #3d97e6;
- }
- .list-tag-view .list-tag:nth-child(2){
- background-color: #f7eee4;
- color: #f29f61;
- }
- .list-tag-view .list-tag:nth-child(3){
- background-color: #eafee3;
- color: #80c269;
- }
-
- /* 底部 */
- .list-foot {
- height: 62rpx;
- line-height: 62rpx;
- }
- .list-foot-text-lf{
- color: #999;
- font-size: 22rpx;
- margin-right: 40rpx;
- }
- .list-foot-text-lf .browse-img{
- width: 24rpx;
- height: 18rpx;
- }
- .list-foot-text-lf .time-img{
- width: 24rpx;
- height: 24rpx;
- position: relative;
- top: 1rpx;
- }
- .list-foot-text-chat {
- height: 62rpx;
- width: 180rpx;
- background-color: #5e73e5;
- box-shadow: -1px 3px 12px 4px
- rgba(62, 95, 179, 0.14);
- border-radius: 31rpx;
- text-align: center;
- color: #fff;
- font-size: 24rpx;
- }
- .list-foot-text-chat .chat-img{
- width: 28rpx;
- height: 28rpx;
- position: relative;
- top: 4rpx;
- left: -10rpx;
- }
-
- .list-collect-view .collect-img {
- width: 22rpx;
- height: 19rpx;
- }
- .list-collect-view {
- color: #e16531;
- font-size: 22rpx;
- position: relative;
- top: 1rpx;
- }
-
- .is-details-page .list-foot-text-lf{
- margin-right: 20rpx;
- }
|