learning.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* pages/learning/learning.wxss */
  2. .tab{
  3. display: flex;
  4. justify-content: space-between;
  5. margin: 20rpx 0;
  6. }
  7. .tab text{
  8. font-size: 30rpx;
  9. color: #666;
  10. }
  11. .tab .active{
  12. color: #3780CD;
  13. }
  14. scroll-view{
  15. height: 100%;
  16. }
  17. .part{
  18. background: #fff;
  19. border-radius: 18rpx;
  20. margin-bottom: 20rpx;
  21. padding: 24rpx;
  22. }
  23. .title{
  24. font-size: 32rpx;
  25. color: #333;
  26. margin-bottom: 28rpx;
  27. }
  28. .title navigator{
  29. float: right;
  30. color: #3780CD;
  31. font-size: 26rpx;
  32. }
  33. .tj{
  34. display: flex;
  35. justify-content: space-between;
  36. }
  37. .tj navigator{
  38. width: 30%;
  39. }
  40. .tj image{
  41. width: 100%;
  42. max-height: 200rpx;
  43. }
  44. .tj view{
  45. color: #333;
  46. font-size: 28rpx;
  47. margin: 28rpx 0;
  48. overflow: hidden;
  49. text-overflow: ellipsis;
  50. display: -webkit-box;
  51. -webkit-line-clamp: 2;
  52. -webkit-box-orient: vertical;
  53. white-space: normal;
  54. }
  55. .tj text{
  56. display: block;
  57. color: #989898;
  58. font-size: 24rpx;
  59. overflow: hidden;
  60. text-overflow: ellipsis;
  61. display: -webkit-box;
  62. -webkit-line-clamp: 2;
  63. -webkit-box-orient: vertical;
  64. white-space: normal;
  65. }
  66. .list{
  67. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  68. /* border-radius: 20rpx; */
  69. display: flex;
  70. /* padding: 20rpx; */
  71. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  72. /* margin: 0 20rpx 40rpx; */
  73. border-bottom: 1px solid #F0F0F0;
  74. padding: 28rpx 0;
  75. }
  76. .list image{
  77. width: 20%;
  78. max-height: 100px;
  79. }
  80. .list>view{
  81. width: 80%;
  82. vertical-align: middle;
  83. padding-left: 20rpx;
  84. }
  85. .list .tt{
  86. margin-bottom: 20rpx;
  87. text-overflow: ellipsis;
  88. overflow: hidden;
  89. white-space: nowrap;
  90. font-size: 28rpx;
  91. }
  92. .list text{
  93. color: #999;
  94. display: block;
  95. overflow: hidden;
  96. text-overflow: ellipsis;
  97. display: -webkit-box;
  98. -webkit-line-clamp: 2;
  99. -webkit-box-orient: vertical;
  100. white-space: normal;
  101. font-size: 26rpx;
  102. }
  103. .list .hd_ly{
  104. margin-bottom: 40rpx;
  105. color: #666;
  106. }
  107. .hd_ly text{
  108. font-size: 18rpx;
  109. float: right;
  110. margin-top: 5rpx;
  111. }
  112. .content{
  113. background: #fff;
  114. border-radius: 18rpx;
  115. padding: 20rpx;
  116. }
  117. .ly{
  118. margin-bottom: 28rpx;
  119. }
  120. .ly text{
  121. display: block;
  122. color: #666;
  123. font-size: 22rpx;
  124. }
  125. .ly view{
  126. float: right;
  127. text-align: right;
  128. }
  129. .ly view text{
  130. font-size: 18rpx;
  131. }