index.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .i-load-more {
  2. width: 65%;
  3. margin: 1.5em auto;
  4. line-height: 1.6em;
  5. font-size: 14px;
  6. text-align: center;
  7. }
  8. .i-load-more-loading {
  9. display: inline-block;
  10. margin-right: 12px;
  11. vertical-align: middle;
  12. width: 14px;
  13. height: 14px;
  14. background: 0 0;
  15. border-radius: 50%;
  16. border: 2px solid #e9eaec;
  17. border-color: #e9eaec #e9eaec #e9eaec #2d8cf0;
  18. animation: btn-spin 0.6s linear;
  19. animation-iteration-count: infinite;
  20. }
  21. .i-load-more-tip {
  22. display: inline-block;
  23. vertical-align: middle;
  24. /* color: #495060; */
  25. color: #999;
  26. /* text-align: center;
  27. margin: 20px 0; */
  28. font-size: 12px;
  29. }
  30. .i-load-more-line {
  31. border-top: 1px solid #dddee1;
  32. display: flex;
  33. border-top: 0;
  34. }
  35. .i-load-more-line::before {
  36. position: relative;
  37. top: -1px;
  38. -webkit-box-flex: 1;
  39. -webkit-flex: 1;
  40. flex: 1;
  41. content: '';
  42. border-top: 1px solid #dddee1;
  43. }
  44. .i-load-more-line::after {
  45. position: relative;
  46. top: -1px;
  47. -webkit-box-flex: 1;
  48. -webkit-flex: 1;
  49. flex: 1;
  50. content: '';
  51. border-top: 1px solid #dddee1;
  52. }
  53. .i-load-more-line .i-load-more-tip {
  54. position: relative;
  55. top: -0.9em;
  56. padding: 0 0.55em;
  57. }
  58. .i-load-more-empty {
  59. width: 4px;
  60. height: 4px;
  61. border-radius: 50%;
  62. background-color: #e5e5e5;
  63. display: inline-block;
  64. position: relative;
  65. vertical-align: 0;
  66. top: -0.16em;
  67. }
  68. @keyframes btn-spin {
  69. 0% {
  70. transform: rotate(0);
  71. }
  72. 100% {
  73. transform: rotate(360deg);
  74. }
  75. }