detail.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .slides {
  2. height: 580rpx;
  3. }
  4. .slides image {
  5. min-width: 100%;
  6. height: 100%;
  7. }
  8. .heading {
  9. display: flex;
  10. flex-direction: column;
  11. padding: 20rpx 30rpx;
  12. background-color: #fff;
  13. color: #567;
  14. font-size: 24rpx;
  15. }
  16. .heading .name {
  17. font-size: 40rpx;
  18. color: #234;
  19. }
  20. .heading .score {
  21. position: absolute;
  22. top: 20rpx;
  23. right: 20rpx;
  24. padding: 0 10rpx;
  25. background-color: #ee523d;
  26. border-radius: 30rpx;
  27. color: #fff;
  28. font-size: 24rpx;
  29. text-align: center;
  30. }
  31. .introduction {
  32. margin-top: 20rpx;
  33. padding: 30rpx;
  34. background-color: #fff;
  35. color: #456;
  36. font-size: 24rpx;
  37. line-height: 2;
  38. }
  39. .comments {
  40. margin-top: 20rpx;
  41. padding: 20rpx;
  42. background-color: #fff;
  43. color: #345;
  44. font-size: 24rpx;
  45. }
  46. .comments .item {
  47. display: flex;
  48. position: relative;
  49. flex-direction: column;
  50. padding: 20rpx;
  51. border-bottom: 1rpx solid #eee;
  52. }
  53. .comments .item .name {
  54. margin-top: 20rpx;
  55. font-size: 36rpx;
  56. }
  57. .comments .item .date {
  58. align-self: flex-end;
  59. margin: -40rpx 0 20rpx;
  60. color: #567;
  61. }
  62. .comments .item .rating {
  63. position: absolute;
  64. top: 20rpx;
  65. right: 10rpx;
  66. color: #ee523d;
  67. }
  68. .comments .item image {
  69. width: 110rpx;
  70. height: 110rpx;
  71. margin: 10rpx;
  72. }