goods-comment.css 913 B

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