index.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @charset "utf-8";
  2. #textbook-library {
  3. padding: 15px;
  4. .title {
  5. font-size: 16px;
  6. color: #303036;
  7. margin-bottom: 15px;
  8. .date {
  9. color: #686872;
  10. float: right;
  11. .assets {
  12. width: 15px;
  13. height: 15px;
  14. margin-left: 5px;
  15. }
  16. }
  17. }
  18. .main {
  19. text-align: center;
  20. font-size: 24px;
  21. font-weight: 600;
  22. padding-top: 15px;
  23. padding-bottom: 40px;
  24. border-bottom: 1px solid #eee;
  25. margin-bottom: 25px;
  26. }
  27. .list {
  28. .item:nth-child(odd) {
  29. background: #FBFBFB;
  30. }
  31. .item {
  32. border-bottom: 1px solid #eee;
  33. .d {
  34. color: #686872;
  35. display: inline-block;
  36. width: 60px;
  37. height: 60px;
  38. line-height: 60px;
  39. text-align: center;
  40. }
  41. .v {
  42. display: inline-block;
  43. padding: 15px 20px;
  44. span {
  45. display: inline-block;
  46. width: 30px;
  47. height: 30px;
  48. line-height: 30px;
  49. color: #fff;
  50. margin: 0 5px;
  51. background: #7660A4;
  52. border-radius: 50%;
  53. text-align: center;
  54. }
  55. }
  56. }
  57. }
  58. }