app.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. .col-sm-2 {
  2. padding: 10px;
  3. border-radius: 4px;
  4. height: 125px;
  5. margin-bottom: 10px;
  6. }
  7. .sp {
  8. width: 32px;
  9. height: 32px;
  10. clear: both;
  11. margin: 20px auto;
  12. }
  13. .sp-circle {
  14. border: 4px rgba(0, 0, 0, 0.25) solid;
  15. border-top: 4px black solid;
  16. border-radius: 50%;
  17. -webkit-animation: spCircRot .6s infinite linear;
  18. animation: spCircRot .6s infinite linear;
  19. }
  20. @-webkit-keyframes spCircRot {
  21. from {
  22. -webkit-transform: rotate(0deg);
  23. }
  24. to {
  25. -webkit-transform: rotate(359deg);
  26. }
  27. }
  28. @keyframes spCircRot {
  29. from {
  30. transform: rotate(0deg);
  31. }
  32. to {
  33. transform: rotate(359deg);
  34. }
  35. }
  36. .preloading{
  37. text-align:center;
  38. }
  39. .headerModel{
  40. position:relative;
  41. }
  42. .cancelSearch{
  43. position:absolute;
  44. left:20px;
  45. top:0px;
  46. font-size:14px;
  47. line-height:44px;
  48. display:none;
  49. }
  50. .headerClassify{
  51. position:absolute;
  52. right:20px;
  53. top:0px;
  54. font-size:14px;
  55. line-height:44px;
  56. }
  57. .listImageWrapper{
  58. float:left;
  59. width:30%;
  60. }
  61. .listImage{
  62. width:100px;
  63. height:59px;
  64. border:solid #E4E7ED 1px;
  65. margin-top:1px;
  66. }
  67. .listTitleWrapper{
  68. float:left;
  69. width:70%;
  70. }
  71. .listTitle{
  72. width:90%;
  73. font-size:14px;
  74. color:#303133;
  75. text-overflow:ellipsis ;
  76. white-space: nowrap;
  77. overflow: hidden;
  78. }
  79. .teacherNameWrapper{
  80. width:20%;
  81. float:left;
  82. }
  83. .teacherName{
  84. width:90%;
  85. font-size: 12px;
  86. color:#409EFF;
  87. text-overflow:ellipsis ;
  88. white-space: nowrap;
  89. overflow: hidden;
  90. }
  91. .teacherSchoolWrapper{
  92. width:80%;
  93. float:left;
  94. }
  95. .teacherSchool{
  96. width:80%;
  97. margin-left:5%;
  98. font-size: 12px;
  99. color:#606266;
  100. text-overflow:ellipsis ;
  101. white-space: nowrap;
  102. overflow: hidden;
  103. }
  104. .courseClick{
  105. font-size: 12px;
  106. color:#606266;
  107. }
  108. .classifyContentModel{
  109. width:100%;
  110. position:absolute;
  111. top:45px;
  112. left:0px;
  113. z-index:100;
  114. background:#fff;
  115. border-bottom:solid #DCDFE6 1px;
  116. display: none;
  117. }
  118. .popularModel{
  119. width:100%;
  120. position:absolute;
  121. top:100px;
  122. left:0px;
  123. z-index:100;
  124. background:#fff;
  125. border-bottom:solid #DCDFE6 1px;
  126. display: none;
  127. padding-bottom:20px;
  128. }
  129. .headerClassifyContentTitle{
  130. margin-left:10px;
  131. font-size:14px;
  132. color:#303133;
  133. }
  134. .headerClassifyContentItem{
  135. float:left;
  136. padding:0px 15px 0px 15px;
  137. height:34px;
  138. border:solid #DCDFE6 1px;
  139. color:#606266;
  140. font-size:13px;
  141. text-align:center;
  142. line-height:34px;
  143. margin-left:10px;
  144. margin-top:10px;
  145. border-radius:3px;
  146. }
  147. .activeSelected{
  148. background:#409EFF;
  149. color:#fff;
  150. }
  151. .popularTitle{
  152. font-size:16px;
  153. color:#303133;
  154. padding-top:20px;
  155. padding-left:20px;
  156. }
  157. .popularItem{
  158. padding:5px 20px 5px 20px;
  159. background:#f2f2f2;
  160. float:left;
  161. border-radius:3px;
  162. color:#606266;
  163. font-size: 14px;
  164. margin-top:10px;
  165. margin-left:10px;
  166. }
  167. .noMore{
  168. width:100%;
  169. font-size:14px;
  170. color:#606266;
  171. text-align: center;
  172. position:absolute;
  173. bottom:0px;
  174. line-height:50px;
  175. display: none;
  176. }