app.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. ul,li{
  40. list-style:none;
  41. }
  42. .headerModel{
  43. position:relative;
  44. }
  45. .cancelSearch{
  46. position:absolute;
  47. left:20px;
  48. top:0px;
  49. font-size:14px;
  50. line-height:44px;
  51. display:none;
  52. }
  53. .headerClassify{
  54. position:absolute;
  55. right:20px;
  56. top:0px;
  57. font-size:14px;
  58. line-height:44px;
  59. }
  60. .listImageWrapper{
  61. float:left;
  62. width:30%;
  63. padding-top:5px;
  64. }
  65. .listImage{
  66. width:100%;
  67. }
  68. .listTitleWrapper{
  69. float:left;
  70. width:70%;
  71. padding-left:10px;
  72. }
  73. .listTitle{
  74. width:90%;
  75. font-size:14px;
  76. color:#303133;
  77. text-overflow:ellipsis ;
  78. white-space: nowrap;
  79. overflow: hidden;
  80. }
  81. .teacherNameWrapper{
  82. width:20%;
  83. margin-top:5px;
  84. float:left;
  85. }
  86. .teacherName{
  87. width:90%;
  88. font-size: 12px;
  89. color:#409EFF;
  90. text-overflow:ellipsis ;
  91. white-space: nowrap;
  92. overflow: hidden;
  93. }
  94. .teacherSchoolWrapper{
  95. width:80%;
  96. margin-top:5px;
  97. float:left;
  98. }
  99. .teacherSchool{
  100. width:80%;
  101. margin-left:5%;
  102. font-size: 12px;
  103. color:#606266;
  104. text-overflow:ellipsis ;
  105. white-space: nowrap;
  106. overflow: hidden;
  107. }
  108. .courseClick{
  109. margin-top:2px;
  110. font-size: 12px;
  111. color:#606266;
  112. }
  113. .classifyContentModel{
  114. width:100%;
  115. position:absolute;
  116. top:45px;
  117. left:0px;
  118. z-index:100;
  119. background:#fff;
  120. border-bottom:solid #DCDFE6 1px;
  121. display: none;
  122. }
  123. .popularModel{
  124. width:100%;
  125. position:absolute;
  126. top:100px;
  127. left:0px;
  128. z-index:100;
  129. background:#fff;
  130. border-bottom:solid #DCDFE6 1px;
  131. display: none;
  132. padding-bottom:20px;
  133. }
  134. .headerClassifyContentTitle{
  135. margin-left:10px;
  136. font-size:14px;
  137. color:#303133;
  138. }
  139. .headerClassifyContentItem{
  140. float:left;
  141. padding:0px 15px 0px 15px;
  142. height:34px;
  143. border:solid #DCDFE6 1px;
  144. color:#606266;
  145. font-size:13px;
  146. text-align:center;
  147. line-height:34px;
  148. margin-left:10px;
  149. margin-top:10px;
  150. border-radius:3px;
  151. }
  152. .activeSelected{
  153. background:#409EFF;
  154. color:#fff;
  155. }
  156. .popularTitle{
  157. font-size:16px;
  158. color:#303133;
  159. padding-top:20px;
  160. padding-left:20px;
  161. }
  162. .popularItem{
  163. padding:5px 20px 5px 20px;
  164. background:#f2f2f2;
  165. float:left;
  166. border-radius:3px;
  167. color:#606266;
  168. font-size: 14px;
  169. margin-top:10px;
  170. margin-left:10px;
  171. }