2025-06-14 18:22:36 +08:00

88 lines
1.5 KiB
CSS

image {
width: 100%;
height: 100%;
}
.searchBox {
width: 710rpx;
height: 70rpx;
background: #F6F6FA;
border-radius: 100rpx 100rpx 100rpx 100rpx;
margin: 0 auto;
margin-top: 30rpx;
display: flex;
align-items: center;
padding: 0 30rpx;
}
.searchBox image {
width: 30rpx;
height: 30rpx;
margin-right: 16rpx;
}
.searchBox input {
flex: 1;
}
.communityItem {
box-sizing: border-box;
margin: 0 20rpx;
padding: 30rpx 0;
border-bottom: 1rpx solid #EBEBEB;
display: flex;
}
.communityItem_img {
width: 180rpx;
height: 160rpx;
border-radius: 20rpx 20rpx 20rpx 20rpx;
margin-right: 20rpx;
}
.communityItem_msg {
flex: 1;
display: flex;
align-items: center;
}
.communityItem_msg_title {
font-size: 32rpx;
color: #222222;
}
.communityItem_msg_addr {
font-size: 26rpx;
color: #999999;
height: 72rpx;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
margin-top: 20rpx;
}
.communityItem_msg_more {
width: 16rpx;
height: 30rpx;
margin-left: 110rpx;
}
.addBtn {
font-size: 36rpx;
color: #FFFFFF;
width: 600rpx;
height: 90rpx;
background: linear-gradient(91deg, #FF7658 0%, #FF370B 100%);
border-radius: 100rpx 100rpx 100rpx 100rpx;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
margin-top: 30rpx;
}
/* .communityItem的最后一个 */
.communityList .communityItem:last-child {
border-bottom: none;
}