api.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. html{
  2. font-family: sans-serif;
  3. }
  4. html,body,header,section,footer,div,ul,ol,li,img,a,span,em,del,legend,center,strong,var,fieldset,form,label,dl,dt,dd,cite,input,hr,time,mark,code,figcaption,figure,textarea,h1,h2,h3,h4,h5,h6,p{
  5. margin:0;
  6. border:0;
  7. padding:0;
  8. font-style:normal;
  9. }
  10. html,body {
  11. -webkit-touch-callout:none;
  12. -webkit-text-size-adjust:none;
  13. -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
  14. -webkit-user-select:none;
  15. background-color: #fff;
  16. }
  17. nav,article,aside,details,main,header,footer,section,fieldset,figcaption,figure{
  18. display: block;
  19. }
  20. img,a,button,em,del,strong,var,label,cite,small,time,mark,code,textarea{
  21. display:inline-block;
  22. }
  23. header,section,footer {
  24. position:relative;
  25. }
  26. ol,ul{
  27. list-style:none;
  28. }
  29. input,button,textarea {
  30. border:0;
  31. margin:0;
  32. padding:0;
  33. font-size:1em;
  34. line-height:1em;
  35. /*-webkit-appearance:none;*/
  36. background-color:rgba(0, 0, 0, 0);
  37. outline: none;
  38. }
  39. span{
  40. display:inline-block;
  41. }
  42. a:active, a:hover {
  43. outline: 0;
  44. }
  45. a, a:visited{
  46. text-decoration:none;
  47. }
  48. label, .wordWrap{
  49. word-wrap: break-word;
  50. word-break: break-all;
  51. }
  52. table {
  53. border-collapse: collapse;
  54. border-spacing: 0;
  55. }
  56. td,th {
  57. padding: 0;
  58. }
  59. .clearfix:after{
  60. content: ' ';
  61. display: block;
  62. clear: both;
  63. visibility:hidden;
  64. line-height: 0;
  65. height:0;
  66. }
  67. .loading_more{
  68. display: block;
  69. height: 1.5em;
  70. width: 100%;
  71. }
  72. .loading_more:before {
  73. display: inline-block; vertical-align: text-bottom;
  74. content: ' '; height: 16px; width: 16px; margin-right: 6px;
  75. background: url(../image/loading_more.gif) no-repeat center;
  76. -webkit-background-size: contain;
  77. background-size: contain;
  78. }
  79. .loading_more:after {
  80. content: '加载更多';
  81. }