123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- html,
- body {
- max-width: 750px;
- height: 100%;
- background: #f3f2f7;
- font-family: Helvetica;
- overflow: hidden;
- }
- html,
- body,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- ul,
- li {
- margin: 0;
- padding: 0;
- }
- ul,
- li {
- list-style: none;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-weight: normal;
- }
- h3 {
- font-size: 16px;
- }
- h4 {
- font-size: 14px;
- }
- p {
- font-size: 12px;
- }
- em,
- i {
- font-style: normal;
- }
- @font-face {
- font-family: "DIN-Medium";
- src: url("../fonts/DIN-Medium.otf");
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- font-family: "DIN";
- src: url("../fonts/DIN-Bold.otf");
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- font-family: "PingFangSC-Regular";
- src: url("../fonts/PingFangSC-Regular.ttf");
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- font-family: "PingFangSC-Regular";
- src: url("../fonts/PingFangSC-Regular.ttf");
- font-weight: normal;
- font-style: normal;
- }
- @font-face {
- font-family: "PingFangSC-Semibold";
- src: url("../fonts/PingFangSC-Semibold.ttf");
- font-weight: normal;
- font-style: normal;
- }
- .app {
- height: 100%;
- }
- .van-overlay {
- background-color: rgba(0, 0, 0, 0.3);
- }
- .van-dialog {
- overflow: inherit;
- }
- ::-webkit-input-placeholder {
- font-size: 13rem;
- font-family: PingFangSC, PingFangSC-Regular;
- font-weight: 400;
- text-align: left;
- color: #999999;
- }
- :-moz-placeholder {
- /* Firefox 18- */
- font-size: 13rem;
- font-family: PingFangSC, PingFangSC-Regular;
- font-weight: 400;
- text-align: left;
- color: #999999;
- }
- ::-moz-placeholder {
- /* Firefox 19+ */
- font-size: 13rem;
- font-family: PingFangSC, PingFangSC-Regular;
- font-weight: 400;
- text-align: left;
- color: #999999;
- }
- :-ms-input-placeholder {
- font-size: 13rem;
- font-family: PingFangSC, PingFangSC-Regular;
- font-weight: 400;
- text-align: left;
- color: #999999;
- }
|