123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /* pages/mineComment/mineComment.wxss */
- .comment-list{
- width: 750rpx;
- height: auto;
- background: #FFFFFF;
- display: flex;
- flex-direction: row;
- }
- .comment-list:active{
- background: rgba(0,0,0,0.07);
- }
- .comment-list>image:nth-child(1){
- width: 64rpx;
- height: 64rpx;
- border-radius: 50%;
- margin: 32rpx 24rpx auto 40rpx;
- }
- .comment-list>view:nth-child(2){
- display: flex;
- flex-direction: column;
- width: 382rpx;
- height: auto;
- border-bottom: 1px solid rgba(0,0,0,0.07);
- }
- .comment-name{
- width: 382rpx;
- height: 40rpx;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- margin: 32rpx 20rpx 16rpx 0;
- }
- .comment-name>text:nth-child(1){
- width: auto;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: rgba(0,0,0,0.4);
- line-height: 40rpx;
- margin-right: auto;
- }
- .comment-content{
- width: 382rpx;
- height: auto;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 40rpx;
- text-align: justify;
- }
- .comment-content>text{
- font-weight: 500;
- color: rgba(58,81,166,0.87);
- }
- .comment-time{
- width: 382rpx;
- height: 32rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.4);
- line-height: 32rpx;
- text-align: left;
- margin: 16rpx 0 32rpx;
- }
- .action-img{
- width: 200rpx;
- display: flex;
- margin-right: 40rpx;
- border-bottom: 1px solid rgba(0,0,0,0.07);
- }
- .action-img>image{
- width: 150rpx;
- height: 150rpx;
- margin: 32rpx 0 auto auto;
- }
- .nonedata-style{
- width: 750rpx;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .nonedata-style>image:nth-child(1){
- width: 332rpx;
- height: 264rpx;
- }
- .nonedata-style>text:nth-child(2){
- width: auto;
- height: 48rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.4);
- line-height: 48rpx;
- margin-top: 32rpx;
- }
|