goods-comment.acss 1.8 KB
Newer Older
G
gongfuxiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
/*
 * 评分
 */
.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;
  margin-top: 35rpx;
  background-color: #eee;
  border-radius: 0;
  width: calc(100% - 200rpx);
}
.progress .cr-888 {
  font-size: 24rpx;
  line-height: 40rpx;
}
.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;
}

/*
 * 列表
 */
.scroll-box {
  height: calc(100vh - 125rpx);
}
.comment-item {
  padding: 0 10rpx 10rpx 10rpx;
  border-bottom:solid 1px #eee;
}
.comment-item .nav {
  background: #ebebeb;
  padding: 10rpx 0;
}
.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 已提交
84 85
.base-content .content,
.base-content .reply {
G
gongfuxiang 已提交
86 87 88
  line-height: 46rpx;
  font-size: 30rpx;
}
D
devil_gong 已提交
89 90 91
.base-content .spec,
.base-content .reply,
.base-content .images {
G
gongfuxiang 已提交
92
  margin-top: 20rpx;
D
devil_gong 已提交
93 94
}
.base-content .spec {
G
gongfuxiang 已提交
95 96 97 98 99 100 101
  color: #B0B0B0;
}
.base-content .reply {
  padding-top: 20rpx;
}
.base-content .reply-desc {
    color: #905602;
D
devil_gong 已提交
102 103 104 105 106 107 108 109
}
.base-content .images image {
  width: 100rpx;
  height: 100rpx;
  padding: 5rpx;
}
.base-content .images image:not(:last-child) {
  margin-right: 10rpx;
G
gongfuxiang 已提交
110
}