index.css 821 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*初始化*/
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. html {
  7. -webkit-text-size-adjust: 100%;
  8. -ms-text-size-adjust: 100%;
  9. font-size: 20px;
  10. width: 1280px;
  11. height: 720px;
  12. }
  13. body {
  14. width: 1280px;
  15. height: 720px;
  16. background: transparent;
  17. background-size: 1280px 720px;
  18. font-size: 0.14rem;
  19. font-family: 'Microsoft Yahei;Arial';
  20. white-space: normal;
  21. table-layout: fixed;
  22. word-wrap: break-word;
  23. -webkit-overflow-scrolling: touch;
  24. }
  25. table {
  26. border-collapse: collapse;
  27. border-spacing: 0;
  28. }
  29. em,
  30. b,
  31. i {
  32. font-style: normal;
  33. }
  34. ol,
  35. ul,
  36. li {
  37. list-style: none;
  38. }
  39. fieldset,
  40. img,
  41. abbr,
  42. acronym {
  43. border: 0;
  44. }
  45. input,
  46. select {
  47. vertical-align: middle;
  48. -webkit-appearance: none;
  49. }
  50. h1,
  51. h2,
  52. h3,
  53. h4,
  54. h5,
  55. h6 {
  56. font-weight: normal;
  57. }
  58. q:before,
  59. q:after {
  60. content: '';
  61. }
  62. a,
  63. a:hover {
  64. text-decoration: none;
  65. }