100 lines
1.5 KiB
Plaintext
100 lines
1.5 KiB
Plaintext
/* packageE/groupCode/groupCodeSearch/groupCodeSearch.wxss */
|
|
.groupCodeSearch {
|
|
min-height: 100vh;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.inpBox {
|
|
width: 660rpx;
|
|
height: 68rpx;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
background-color: rgba(255, 255, 255, 0.6);
|
|
border-radius: 34rpx;
|
|
}
|
|
|
|
.inpBox icon {
|
|
color: #fff;
|
|
margin-left: 36rpx;
|
|
margin-top: -10rpx;
|
|
margin-right: 17rpx;
|
|
}
|
|
|
|
.recommendList {
|
|
padding: 21rpx 27rpx;
|
|
display: flex;
|
|
border-bottom: 1rpx solid rgba(226, 226, 226, 0.9);
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.reLeft {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
border-radius: 50%;
|
|
margin-right: 22rpx;
|
|
}
|
|
|
|
.reLeft image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.rigTop {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.reRight {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.codeName {
|
|
font-size: 32rpx;
|
|
line-height: 48rpx;
|
|
letter-spacing: 2rpx;
|
|
}
|
|
|
|
.addBtn {
|
|
width: 100rpx;
|
|
height: 44rpx;
|
|
background-image:
|
|
linear-gradient(
|
|
#00b075,
|
|
#00b075
|
|
),
|
|
linear-gradient(
|
|
#ff6e65,
|
|
#ff6e65
|
|
);
|
|
background-blend-mode:
|
|
normal,
|
|
normal;
|
|
border-radius: 22rpx;
|
|
text-align: center;
|
|
line-height: 44rpx;
|
|
margin-right: 40rpx;
|
|
}
|
|
|
|
.addBtn text {
|
|
font-size: 28rpx;
|
|
|
|
/* line-height: 48rpx; */
|
|
letter-spacing: 1rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
.rigBtm {
|
|
font-size: 28rpx;
|
|
line-height: 48rpx;
|
|
color: #999;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|