style.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. @import url('../../assets/less/global.less');
  2. .free-title {
  3. margin: 30px 0;
  4. justify-content: center;
  5. text {
  6. width: 600px;
  7. height: 60px;
  8. line-height: 60px;
  9. text-align: center;
  10. background-color: rgba(178, 245, 115, 0.1);
  11. border: 1px solid @theme;;
  12. color: @theme;
  13. font-size: 26px;
  14. border-radius: 30px;
  15. }
  16. }
  17. .book-list__wrap {
  18. background-color: #fff;
  19. // margin-top: 24px;
  20. padding: 0 24px;
  21. flex-direction: column;
  22. .book-list__title {
  23. padding: 30px 0;
  24. align-items: center;
  25. text {
  26. color: #333;
  27. font-size: 32px;
  28. }
  29. }
  30. }
  31. .book-list {
  32. flex: 1;
  33. flex-direction: row;
  34. flex-wrap: wrap;
  35. justify-content: space-between;
  36. }
  37. .book-list__multi {
  38. margin-top: 30px;
  39. flex-direction: column;
  40. .book-item {
  41. margin-bottom: 30px;
  42. }
  43. .book-info__multi {
  44. flex: 1;
  45. flex-direction: column;
  46. justify-content: flex-start;
  47. align-items: flex-start;
  48. margin-left: 38px;
  49. // margin-bottom: 40px;
  50. .name {
  51. font-size: 32px;
  52. color: #333;
  53. lines: 1;
  54. text-overflow: ellipsis;
  55. }
  56. .intro {
  57. font-size: 24px;
  58. color: #666;
  59. lines: 3;
  60. text-overflow: ellipsis;
  61. margin-top: 36px;
  62. line-height: 36px;
  63. }
  64. }
  65. }
  66. .blank_img {
  67. width: 100%;
  68. height: 100%;
  69. align-items: center;
  70. justify-content: center;
  71. image {
  72. width: 500px;
  73. }
  74. }
  75. .type-bar {
  76. width: 100%;
  77. .type-item {
  78. flex: 1;
  79. justify-content: center;
  80. align-items: center;
  81. flex-direction: column;
  82. position: relative;
  83. text {
  84. font-size: 30px;
  85. color: @theme;
  86. }
  87. .cur {
  88. color: @theme;
  89. font-size: 36px;
  90. font-weight: bold;
  91. }
  92. .choose-bar {
  93. width: 38px;
  94. height: 4px;
  95. background-color: @theme;
  96. border-radius: 2px;
  97. margin-top: 10px;
  98. }
  99. }
  100. }