210 lines
3.2 KiB
Plaintext
210 lines
3.2 KiB
Plaintext
.circle-detail-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20rpx;
|
|
padding: 24rpx 0 18rpx;
|
|
border-bottom: 1rpx solid rgba(121, 84, 54, 0.1);
|
|
}
|
|
|
|
.circle-avatar {
|
|
flex: none;
|
|
width: 76rpx;
|
|
height: 76rpx;
|
|
border-radius: 18rpx;
|
|
background: linear-gradient(145deg, #6b1f2b, #d6a653);
|
|
color: #fff8ed;
|
|
font-size: 30rpx;
|
|
font-weight: 780;
|
|
line-height: 76rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.circle-avatar.large {
|
|
width: 88rpx;
|
|
height: 88rpx;
|
|
border-radius: 22rpx;
|
|
font-size: 34rpx;
|
|
line-height: 88rpx;
|
|
}
|
|
|
|
.circle-head-body {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.circle-author {
|
|
color: #53698e;
|
|
font-size: 30rpx;
|
|
font-weight: 760;
|
|
}
|
|
|
|
.circle-time {
|
|
margin-top: 6rpx;
|
|
color: #9a8c80;
|
|
font-size: 23rpx;
|
|
}
|
|
|
|
.detail-more {
|
|
flex: none;
|
|
min-width: 64rpx;
|
|
height: 46rpx;
|
|
border-radius: 999rpx;
|
|
background: #f1e4d4;
|
|
color: #725d4d;
|
|
font-size: 32rpx;
|
|
line-height: 38rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.circle-detail {
|
|
padding: 24rpx 0;
|
|
}
|
|
|
|
.circle-post-title {
|
|
color: #2f211c;
|
|
font-size: 34rpx;
|
|
font-weight: 780;
|
|
line-height: 1.35;
|
|
}
|
|
|
|
.circle-content {
|
|
margin-top: 12rpx;
|
|
color: #3d2c25;
|
|
font-size: 29rpx;
|
|
line-height: 1.65;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.circle-images {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 8rpx;
|
|
margin-top: 18rpx;
|
|
}
|
|
|
|
.circle-images image {
|
|
width: 100%;
|
|
height: 206rpx;
|
|
border-radius: 8rpx;
|
|
background: #efe0ca;
|
|
}
|
|
|
|
.circle-actions-row {
|
|
display: flex;
|
|
gap: 12rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.circle-action {
|
|
min-height: 50rpx;
|
|
padding: 0 18rpx;
|
|
border-radius: 999rpx;
|
|
background: #f1e4d4;
|
|
color: #725d4d;
|
|
font-size: 24rpx;
|
|
font-weight: 700;
|
|
line-height: 50rpx;
|
|
}
|
|
|
|
.circle-action.active {
|
|
background: #e7efff;
|
|
color: #53698e;
|
|
}
|
|
|
|
.circle-feedback {
|
|
position: relative;
|
|
margin-top: 4rpx;
|
|
padding: 18rpx;
|
|
border-radius: 14rpx;
|
|
background: #f1e4d4;
|
|
}
|
|
|
|
.detail-feedback {
|
|
margin-bottom: 170rpx;
|
|
}
|
|
|
|
.circle-likes {
|
|
color: #53698e;
|
|
font-size: 25rpx;
|
|
font-weight: 720;
|
|
line-height: 1.45;
|
|
}
|
|
|
|
.circle-comment {
|
|
margin-top: 8rpx;
|
|
color: #4f3930;
|
|
font-size: 26rpx;
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.circle-comment:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.circle-comment-name {
|
|
color: #53698e;
|
|
font-weight: 720;
|
|
}
|
|
|
|
.comment-dock {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 50;
|
|
box-sizing: border-box;
|
|
padding: 0 14rpx calc(18rpx + env(safe-area-inset-bottom));
|
|
background: #fffaf3;
|
|
box-shadow: 0 -12rpx 30rpx rgba(68, 39, 27, 0.1);
|
|
transition: bottom 0.18s ease;
|
|
}
|
|
|
|
.comment-dock.keyboard-open {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.replying-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 10rpx;
|
|
padding: 16rpx 24rpx;
|
|
border-radius: 22rpx;
|
|
background: #f1e4d4;
|
|
color: #76533e;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.comment-box {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14rpx;
|
|
padding: 14rpx;
|
|
border-radius: 0;
|
|
background: #fffaf3;
|
|
}
|
|
|
|
.comment-box input {
|
|
flex: 1;
|
|
min-width: 0;
|
|
height: 72rpx;
|
|
padding: 0 22rpx;
|
|
border-radius: 20rpx;
|
|
background: #f7f0e8;
|
|
color: #2f211c;
|
|
}
|
|
|
|
.comment-box button {
|
|
width: 152rpx;
|
|
flex: none;
|
|
height: 72rpx;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-radius: 20rpx;
|
|
background: #6b1f2b;
|
|
color: #fff7ea;
|
|
font-size: 25rpx;
|
|
font-weight: 720;
|
|
line-height: 72rpx;
|
|
}
|