index.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. html,
  2. body {
  3. max-width: 750px;
  4. height: 100%;
  5. background: #f3f2f7;
  6. font-family: Helvetica;
  7. overflow: hidden;
  8. }
  9. html,
  10. body,
  11. h1,
  12. h2,
  13. h3,
  14. h4,
  15. h5,
  16. h6,
  17. p,
  18. ul,
  19. li {
  20. margin: 0;
  21. padding: 0;
  22. }
  23. ul,
  24. li {
  25. list-style: none;
  26. }
  27. h1,
  28. h2,
  29. h3,
  30. h4,
  31. h5,
  32. h6 {
  33. font-weight: normal;
  34. }
  35. h3 {
  36. font-size: 16px;
  37. }
  38. h4 {
  39. font-size: 14px;
  40. }
  41. p {
  42. font-size: 12px;
  43. }
  44. em,
  45. i {
  46. font-style: normal;
  47. }
  48. @font-face {
  49. font-family: "DIN-Medium";
  50. src: url("../fonts/DIN-Medium.otf");
  51. font-weight: normal;
  52. font-style: normal;
  53. }
  54. @font-face {
  55. font-family: "DIN";
  56. src: url("../fonts/DIN-Bold.otf");
  57. font-weight: normal;
  58. font-style: normal;
  59. }
  60. @font-face {
  61. font-family: "PingFangSC-Regular";
  62. src: url("../fonts/PingFangSC-Regular.ttf");
  63. font-weight: normal;
  64. font-style: normal;
  65. }
  66. @font-face {
  67. font-family: "PingFangSC-Regular";
  68. src: url("../fonts/PingFangSC-Regular.ttf");
  69. font-weight: normal;
  70. font-style: normal;
  71. }
  72. @font-face {
  73. font-family: "PingFangSC-Semibold";
  74. src: url("../fonts/PingFangSC-Semibold.ttf");
  75. font-weight: normal;
  76. font-style: normal;
  77. }
  78. .app {
  79. height: 100%;
  80. }
  81. .van-overlay {
  82. background-color: rgba(0, 0, 0, 0.3);
  83. }
  84. .van-dialog {
  85. overflow: inherit;
  86. }
  87. ::-webkit-input-placeholder {
  88. font-size: 13rem;
  89. font-family: PingFangSC, PingFangSC-Regular;
  90. font-weight: 400;
  91. text-align: left;
  92. color: #999999;
  93. }
  94. :-moz-placeholder {
  95. /* Firefox 18- */
  96. font-size: 13rem;
  97. font-family: PingFangSC, PingFangSC-Regular;
  98. font-weight: 400;
  99. text-align: left;
  100. color: #999999;
  101. }
  102. ::-moz-placeholder {
  103. /* Firefox 19+ */
  104. font-size: 13rem;
  105. font-family: PingFangSC, PingFangSC-Regular;
  106. font-weight: 400;
  107. text-align: left;
  108. color: #999999;
  109. }
  110. :-ms-input-placeholder {
  111. font-size: 13rem;
  112. font-family: PingFangSC, PingFangSC-Regular;
  113. font-weight: 400;
  114. text-align: left;
  115. color: #999999;
  116. }