goods-comment.wxss 1.8 KB
Newer Older
G
gongfuxiang 已提交
1 2 3
/*
 * 评分
 */
D
devil_gong 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.score-container {
  padding: 10rpx;
}
.score-container .score {
  width: 180rpx;
  border-right: 1px solid #eee;
}
.score-container .score .value {
  color: #f03726;
  font-weight: bold;
  font-size: 60rpx;
  line-height: 60rpx;
  margin-top: 10rpx;
}
.progress {
  overflow: hidden;
  height: 40rpx;
G
gongfuxiang 已提交
21 22
  margin-top: 35rpx;
  background-color: #eee;
D
devil_gong 已提交
23 24 25
  border-radius: 0;
  width: calc(100% - 200rpx);
}
G
gongfuxiang 已提交
26 27 28 29
.progress .cr-888 {
  font-size: 24rpx;
  line-height: 40rpx;
}
D
devil_gong 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 24rpx;
  line-height: 40rpx;
  color: #fff;
  text-align: center;
  background-color: #0e90d2;
}
.progress-bar-danger {
  background-color: #dd514c;
}
.progress-bar-warning {
  background-color: #F37B1D;
}
.progress-bar-secondary {
  background-color: #3bb4f2;
}
.progress-bar-success {
  background-color: #5eb95e;
}

G
gongfuxiang 已提交
53 54 55 56 57 58
/*
 * 列表
 */
.scroll-box {
  height: calc(100vh - 125rpx);
}
D
devil_gong 已提交
59
.comment-item {
D
devil_gong 已提交
60
  padding-bottom: 10rpx;
D
devil_gong 已提交
61 62
}
.comment-item .nav {
G
gongfuxiang 已提交
63
  background: #ebebeb;
D
devil_gong 已提交
64
  padding: 10rpx;
D
devil_gong 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
}
.comment-item .avatar {
  width: 70rpx;
  height: 70rpx;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
}
.comment-item .base-nav {
  width: calc(100% - 90rpx);
  line-height: 70rpx;
}
.comment-item .base-nav text:not(:last-child) {
  margin-right: 5rpx;
}

.base-content {
  padding: 10rpx;
}
D
devil_gong 已提交
83 84
.base-content .content,
.base-content .reply {
D
devil_gong 已提交
85 86 87
  line-height: 46rpx;
  font-size: 30rpx;
}
D
devil_gong 已提交
88 89 90
.base-content .spec,
.base-content .reply,
.base-content .images {
D
devil_gong 已提交
91
  margin-top: 20rpx;
D
devil_gong 已提交
92 93
}
.base-content .spec {
D
devil_gong 已提交
94 95 96 97 98 99 100
  color: #B0B0B0;
}
.base-content .reply {
  padding-top: 20rpx;
}
.base-content .reply-desc {
    color: #905602;
D
devil_gong 已提交
101 102 103 104 105 106 107 108
}
.base-content .images image {
  width: 100rpx;
  height: 100rpx;
  padding: 5rpx;
}
.base-content .images image:not(:last-child) {
  margin-right: 10rpx;
D
devil_gong 已提交
109
}