detail.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. .courseInfoItem{
  40. font-size:14px;
  41. color:#303133;
  42. line-height:25px;
  43. }
  44. #noMore{
  45. width:100%;
  46. color:#606266;
  47. font-size:13px;
  48. text-align:center;
  49. position:absolute;
  50. top:0px;
  51. left:0px;
  52. padding-top:20px;
  53. padding-bottom:20px;
  54. }
  55. .noData{
  56. width:100%;
  57. text-align:center;
  58. font-size:14px;
  59. color:#606266;
  60. padding:15px 0px 15px 0px;
  61. }