learning.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /* pages/learning/learning.wxss */
  2. .search{
  3. width: 70%;
  4. display: inline-block;
  5. margin-bottom: 20rpx;
  6. }
  7. .tab{
  8. display: flex;
  9. justify-content: space-between;
  10. margin: 20rpx 0;
  11. }
  12. .tab text{
  13. font-size: 30rpx;
  14. color: #666;
  15. }
  16. .tab .active{
  17. color: #3780CD;
  18. }
  19. scroll-view{
  20. height: 100%;
  21. }
  22. .part{
  23. background: #fff;
  24. border-radius: 18rpx;
  25. margin-bottom: 20rpx;
  26. padding: 24rpx;
  27. }
  28. .title{
  29. font-size: 34rpx;
  30. color: #333;
  31. margin-bottom: 28rpx;
  32. }
  33. .title text{
  34. float: right;
  35. color: #3780CD;
  36. font-size: 26rpx;
  37. }
  38. .tj{
  39. display: flex;
  40. justify-content: space-between;
  41. }
  42. .tj navigator{
  43. width: 30%;
  44. }
  45. .tj image{
  46. width: 100%;
  47. height: 200rpx;
  48. }
  49. .tj view{
  50. color: #333;
  51. font-size: 28rpx;
  52. margin: 20rpx 0;
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. display: -webkit-box;
  56. -webkit-line-clamp: 2;
  57. -webkit-box-orient: vertical;
  58. white-space: normal;
  59. height: 79rpx;
  60. line-height: 44rpx;
  61. }
  62. .tj text{
  63. display: block;
  64. color: #989898;
  65. font-size: 24rpx;
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. display: -webkit-box;
  69. -webkit-line-clamp: 2;
  70. -webkit-box-orient: vertical;
  71. white-space: normal;
  72. }
  73. .list .hy_ly{
  74. width: 65%;
  75. overflow: hidden;
  76. text-overflow: ellipsis;
  77. white-space: nowrap;
  78. }
  79. .list{
  80. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  81. /* border-radius: 20rpx; */
  82. display: flex;
  83. /* padding: 20rpx; */
  84. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  85. /* margin: 0 20rpx 40rpx; */
  86. border-bottom: 1px solid #F0F0F0;
  87. padding: 28rpx 0;
  88. }
  89. .list image{
  90. width: 20%;
  91. height: 50px;
  92. }
  93. .list>view{
  94. width: 80%;
  95. vertical-align: middle;
  96. padding-left: 20rpx;
  97. }
  98. .list .tt{
  99. margin-bottom: 5rpx;
  100. text-overflow: ellipsis;
  101. overflow: hidden;
  102. white-space: nowrap;
  103. font-size: 32rpx;
  104. }
  105. .list text{
  106. color: #888;
  107. display: block;
  108. overflow: hidden;
  109. text-overflow: ellipsis;
  110. display: -webkit-box;
  111. -webkit-line-clamp: 2;
  112. -webkit-box-orient: vertical;
  113. white-space: normal;
  114. font-size: 26rpx;
  115. }
  116. .list .hd_ly{
  117. margin-bottom: 40rpx;
  118. color: #666;
  119. }
  120. .hd_ly text{
  121. font-size: 18rpx;
  122. float: right;
  123. margin-top: 5rpx;
  124. }
  125. .content{
  126. background: #fff;
  127. border-radius: 18rpx;
  128. padding: 20rpx;
  129. }
  130. .ly{
  131. margin-bottom: 28rpx;
  132. }
  133. .ly text{
  134. display: block;
  135. color: #666;
  136. font-size: 24rpx;
  137. }
  138. .ly view{
  139. float: right;
  140. text-align: right;
  141. }
  142. .menu{
  143. width: 28%;
  144. background: #fff;
  145. display: inline-block;
  146. line-height: 64rpx;
  147. border-radius: 15rpx;
  148. margin-left: 2%;
  149. vertical-align: top;
  150. position: relative;
  151. }
  152. .picker{
  153. text-align: center;
  154. color: #999;
  155. font-size: 26rpx;
  156. }
  157. .up{
  158. width: 0;
  159. height: 0;
  160. border: 10rpx solid transparent;
  161. border-top: 12rpx solid #999;
  162. display: inline-block;
  163. position: relative;
  164. top: 3px;
  165. }
  166. .drop_menu{
  167. background: #fff;
  168. box-shadow: 2px 2px 10rpx 1px rgba(0, 0, 0, 0.2);
  169. position: absolute;
  170. width: 100%;
  171. right: 0;
  172. border-radius: 15rpx;
  173. z-index: 9;
  174. top: 70rpx;
  175. }
  176. .drop_menu text{
  177. display: block;
  178. line-height: 60rpx;
  179. text-align: center;
  180. color: #999;
  181. }
  182. .myswiper{
  183. height: calc(100vh - 206rpx);
  184. }
  185. .more{
  186. text-align:center;
  187. color:#999;
  188. padding:10rpx 0;
  189. }