1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/comment/comment.wxss */
- .topLayout {
- height: 142rpx;
- width: 85%;
- margin-top: 42rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .topLayout_Item {
- height: 100%;
- width: 100rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .topLayout_Item_Img {
- width: 80rpx;
- height: 80rpx;
- }
- .topLayout_Item_Text_true {
- font-size: 30rpx;
- color: #f5a725;
- width: 100%;
- }
- .topLayout_Item_Text_false {
- font-size: 30rpx;
- color: #505050;
- width: 100%;
- }
|