list.css 881 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*小说列表*/
  2. .fictionBox {
  3. border: 1px solid #CCCCCC;
  4. padding: 20px 20px 0px;
  5. margin: 40px;
  6. display: flex;
  7. justify-content: space-between;
  8. align-content: center;
  9. flex-wrap: wrap;
  10. }
  11. /* 图文信息*/
  12. .fictionBox article {
  13. width: 490px;
  14. height: 130px;
  15. display: flex;
  16. margin-bottom: 20px;
  17. }
  18. /* 小说图片 */
  19. .fictionImg {
  20. width: 100px;
  21. height: 130px;
  22. box-shadow: 0 3px 4px rgba(0, 0, 0, .5);
  23. }
  24. .fictionImg img {
  25. width: 100px;
  26. height: 130px;
  27. }
  28. /* 全部文字信息 */
  29. .fictionInfo {
  30. height: 140px;
  31. margin-left: 15px;
  32. overflow: hidden;
  33. }
  34. /* 小说标题 */
  35. .fictionInfo h3 {
  36. margin-top: 5px;
  37. }
  38. /* 小说内容介绍 */
  39. .fictionTop {
  40. font-size: 13px;
  41. color: #555555;
  42. }
  43. .fictionTop span {
  44. margin: 0 8px;
  45. line-height: 35px;
  46. }