123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /* 我的评价 */
- .evaluation {
- min-height: calc(100vh - 44px);
- background-color: #F2F2F2;
-
- &-list {
- padding: 26rpx 30rpx;
-
- &-item {
- background-color: #fff;
- border-radius: 10rpx;
- padding: 22rpx 34rpx;
- margin-bottom: 20rpx;
-
- &-title {
- color: #000;
- font-size: 32rpx;
- margin-bottom: 24rpx;
- font-family: 'PingFangSC-Regular, PingFang SC';
- }
-
- &-content {
- display: flex;
- align-items: center;
-
- .left {
- margin-right: 24rpx;
-
- // image {
- // width: 96rpx;
- // height: 96rpx;
- // border-radius: 10rpx;
- // }
- }
-
- .right {
- font-size: 28rpx;
- color: #3D3D3D;
- line-height: 40rpx;
-
- view {
- &:nth-child(2) {
- color: #C4C4C4;
- font-size: 22rpx;
- display: flex;
- align-items: center;
- text {
- margin-left: 10rpx;
- }
- }
- &:last-child {
- color: #6C6C6C;
- font-size: 24rpx;
- }
- }
- }
- }
- }
- }
- }
|