style.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @charset "utf-8";
  2. /* CSS Document */
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. -webkit-box-sizing: border-box;
  7. -moz-box-sizing: border-box;
  8. -o-box-sizing: border-box;
  9. -ms-box-sizing: border-box;
  10. box-sizing: border-box;
  11. -webkit-tap-highlight-color: transparent;
  12. font-family: "PingFang SC", PingFangSC, Helvetica, sans-serif!important;
  13. -webkit-tap-highlight-color: rgba(0,0,0,0);
  14. -webkit-tap-highlight-color:transparent;
  15. outline:none;
  16. }
  17. /* @font-face {font-family:"myFont fan";src: url('./NotoSansHans-DemiLight.ttf'); */
  18. }
  19. body, div, span, i, em, h2, h3, h4, h5, h6, h1, b, big, small, ul, li, a, img {
  20. margin: 0;
  21. padding: 0;
  22. border:none;
  23. /*font-weight:lighter;*/
  24. font-size:1rem;
  25. font-weight:400;
  26. color:#323232;
  27. -webkit-tap-highlight-color: transparent;
  28. font-family: "PingFang SC", PingFangSC, Helvetica, sans-serif!important;
  29. }
  30. input,button,textarea,text{
  31. outline: none;
  32. font-family: "PingFang SC", PingFangSC, Helvetica, sans-serif!important;
  33. }
  34. li{
  35. list-style:none;
  36. }
  37. a{
  38. text-decoration:none;
  39. }
  40. .clear-fix:after{
  41. content:' ';
  42. width:0;
  43. height:0;
  44. clear:both;
  45. display:block;
  46. }
  47. em,i{
  48. font-style:normal;
  49. }