mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 05:29:37 +08:00
136 lines
2.2 KiB
Plaintext
136 lines
2.2 KiB
Plaintext
.containerView.public {
|
|
background: none;
|
|
height: auto;
|
|
}
|
|
|
|
.itemView {
|
|
background: white;
|
|
margin: 30rpx 20rpx;
|
|
padding: 30rpx 20rpx;
|
|
/* box-shadow: rgba(210,210,210,0.5) 0px 3.752px 3.752px 0px; */
|
|
}
|
|
|
|
.itemView .headView {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.itemView .headView .number {
|
|
flex: 1;
|
|
margin-right: 30rpx;
|
|
font-size: 34rpx;
|
|
font-weight: 700;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
word-break: break-all;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.itemView .headView .status {
|
|
font-size: 30rpx;
|
|
color: #4e96f8;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.itemView .contentView {
|
|
box-sizing: border-box;
|
|
border-radius: 10rpx;
|
|
width: 100%;
|
|
margin-top: 20rpx;
|
|
padding: 30rpx 20rpx;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
background: #f2f2f2;
|
|
}
|
|
|
|
.itemView .contentView .img {
|
|
border-radius: 10rpx;
|
|
width: 200rpx;
|
|
height: 110rpx;
|
|
}
|
|
|
|
.itemView .contentView .msgView {
|
|
flex: 1;
|
|
margin-left: 20rpx;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.itemView .contentView .msgView .title {
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.itemView .contentView .msgView .name,
|
|
.itemView .contentView .msgView .time {
|
|
font-size: 30rpx;
|
|
color: gray;
|
|
margin-top: 6rpx;
|
|
}
|
|
|
|
.itemView .priceView {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
margin: 30rpx 0;
|
|
}
|
|
|
|
.itemView .priceView .cancelContent {
|
|
flex: 1;
|
|
margin-right: 40rpx;
|
|
font-size: 32rpx;
|
|
color: #7F7F7F;
|
|
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
word-break: break-all;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.itemView .priceView .priceContent {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.itemView .priceView .priceContent .name {
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.itemView .priceView .priceContent .price {
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: red;
|
|
margin-left: 10rpx;
|
|
}
|
|
|
|
.itemView .btnView {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.itemView .btnView .btn {
|
|
border: 1px solid #4e96f8;
|
|
position: relative;
|
|
border-radius: 10rpx;
|
|
margin-left: 16rpx;
|
|
padding: 10rpx 24rpx;
|
|
font-size: 24rpx;
|
|
color: #4e96f8;
|
|
}
|
|
|
|
.shareBtn {
|
|
position: absolute;
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
opacity: 0;
|
|
}
|
|
|
|
.loadAllLine {
|
|
margin-top: 80rpx;
|
|
} |