api.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. /* width: 100%;
  17. height: 100%;
  18. overflow: scroll; */
  19. }
  20. html::-webkit-scrollbar, body::-webkit-scrollbar{width:0px;height:0px;}
  21. nav,article,aside,details,main,header,footer,section,fieldset,figcaption,figure{
  22. display: block;
  23. }
  24. img,a,button,em,del,strong,var,label,cite,small,time,mark,code,textarea{
  25. display:inline-block;
  26. }
  27. header,section,footer {
  28. position:relative;
  29. }
  30. ol,ul{
  31. list-style:none;
  32. }
  33. input,button,textarea {
  34. border:0;
  35. margin:0;
  36. padding:0;
  37. font-size:1em;
  38. line-height:1em;
  39. /*-webkit-appearance:none;*/
  40. background-color:rgba(0, 0, 0, 0);
  41. }
  42. span{
  43. display:inline-block;
  44. }
  45. a:active, a:hover {
  46. outline: 0;
  47. }
  48. a, a:visited{
  49. text-decoration:none;
  50. }
  51. label, .wordWrap{
  52. word-wrap: break-word;
  53. word-break: break-all;
  54. }
  55. table {
  56. border-collapse: collapse;
  57. border-spacing: 0;
  58. }
  59. td,th {
  60. padding: 0;
  61. }
  62. .clearfix:after{
  63. content: ' ';
  64. display: block;
  65. clear: both;
  66. visibility:hidden;
  67. line-height: 0;
  68. height:0;
  69. }
  70. .loading_more{
  71. display: block;
  72. height: 1.5em;
  73. width: 100%;
  74. }
  75. .loading_more:before {
  76. display: inline-block; vertical-align: text-bottom;
  77. content: ' '; height: 16px; width: 16px; margin-right: 6px;
  78. background: url(../image/loading_more.gif) no-repeat center;
  79. -webkit-background-size: contain;
  80. background-size: contain;
  81. }
  82. .loading_more:after {
  83. content: '加载更多';
  84. }