| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- .box {
- padding: 30rpx;
- box-sizing: border-box;
- background-color: #fff;
- width: 100vw;
- .title {
- height: 42rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- font-size: 30rpx;
- color: #333333;
- line-height: 42rpx;
- }
- .textarea-box {
- width: 690rpx;
- height: 240rpx;
- background: #FAFAFA;
- border-radius: 8rpx;
- border: 1rpx solid #CCCCCC;
- padding: 20rpx;
- box-sizing: border-box;
- margin-top: 20rpx;
- .textarea {
- width: 100%;
- height: 100%;
- font-size: 28rpx;
- }
- }
- .textarea-but {
- width: 100%;
- display: flex;
- justify-content: flex-end;
- margin-top: 20rpx;
- .custom-class {
- min-width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- padding: 0 15rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #FFFFFF;
- }
- }
- .item {
- display: flex;
- margin-top: 60rpx;
- .headpic {
- width: 80rpx;
- margin-right: 20rpx;
- flex-shrink: 0;
- .image,
- .createby {
- width: 80rpx;
- height: 80rpx;
- border-radius: 40rpx;
- overflow: hidden;
- }
- .createby {
- text-align: center;
- line-height: 80rpx;
- background-color: #3874F6;
- font-family: PingFang SC, PingFang SC;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- }
- .content {
- width: 100%;
- .name {
- display: flex;
- align-items: center;
- height: 44rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 32rpx;
- color: #333333;
- .createby {
- flex: 1;
- width: 0;
- }
- .iconfont {
- flex-shrink: 0;
- font-weight: 400;
- color: #999999;
- padding-left: 20rpx;
- }
- }
- .text {
- font-family: PingFang SC, PingFang SC;
- font-size: 28rpx;
- color: #333333;
- line-height: 45rpx;
- margin-top: 20rpx;
- }
- }
- .bottom {
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- height: 40rpx;
- .time {
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #999999;
- }
- .reply {
- .iconfont {
- margin-right: 10rpx;
- }
- font-size: 28rpx;
- color: #333333;
- }
- }
- }
- }
|