findme-miniprogram-frontend/subpackages/social-remark/friend-remark.wxss
2025-12-27 17:16:03 +08:00

77 lines
1.3 KiB
Text

.friend-remark-container {
width: 100vw;
height: 100vh;
background: #000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding: 0 32rpx;
padding-top: 40rpx;
box-sizing: border-box;
}
.remark-row {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
width: 100%;
gap: 20rpx;
margin-top: 160rpx;
}
.remark-form {
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
.remark-form > view {
font-size: 28rpx;
color: #999;
margin-bottom: 16rpx;
}
.remark-input {
width: 100%;
height: 80rpx;
border-radius: 40rpx;
background: #1a1a1a;
font-size: 28rpx;
padding: 0 32rpx;
box-sizing: border-box;
border: 1rpx solid #333;
color: #fff;
}
.remark-input::placeholder {
color: #666;
}
.remark-actions {
flex-shrink: 0;
display: flex;
align-items: flex-start;
padding-top: 56rpx;
}
.save-btn {
background: linear-gradient(135deg, #68f9fe 0%, #AA93ED 100%);
color: #fff;
border-radius: 40rpx;
padding: 0 48rpx;
height: 80rpx;
line-height: 80rpx;
font-size: 32rpx;
border: none;
display: flex;
align-items: center;
justify-content: center;
}
.save-btn::after {
border: none;
}