detailed.wxss 602 B

123456789101112131415161718192021222324252627282930
  1. /* pages/detailed/detailed.wxss */
  2. .detailed {
  3. padding: 10rpx 20rpx;
  4. }
  5. .detailed .container {
  6. background-color: #fff;
  7. padding: 20rpx;
  8. border-radius: 20rpx;
  9. }
  10. .detailed .container .item {
  11. padding: 20rpx 0;
  12. border-bottom: 1px solid #eee;
  13. }
  14. .detailed .container .item .flex {
  15. display: flex;
  16. justify-content: space-between;
  17. align-items: center;
  18. margin-bottom: 10rpx;
  19. }
  20. .detailed .container .item .flex .right {
  21. font-weight: 600;
  22. }
  23. .detailed .container .item .detail {
  24. font-size: 14px;
  25. color: #777;
  26. text-align: justify;
  27. }
  28. .detailed .container > .item:last-child {
  29. border: 0;
  30. }