| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /**
- * custom
- */
- html,
- body,
- div,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- ul,
- ol,
- dl,
- li,
- dt,
- dd,
- p,
- blockquote,
- pre,
- form,
- fieldset,
- table,
- th,
- td {
- border: none;
- margin: 0px;
- padding: 0px;
- }
- html,
- body,
- #app {
- /* font-family: "微软雅黑", "黑体", "宋体"; */
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
- 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji',
- 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
- font-size: 14px;
- height: 100%;
- width: 100%;
- }
- address,
- caption,
- cite,
- code,
- dfn,
- em,
- strong,
- th,
- var {
- font-style: normal;
- font-weight: normal;
- }
- input::-ms-clear {
- display: none;
- }
- input::-ms-reveal {
- display: none;
- }
- input {
- /* -webkit-appearance: none; */
- margin: 0;
- outline: none;
- padding: 0;
- }
- input::-webkit-input-placeholder {
- color: #ccc;
- }
- input::-ms-input-placeholder {
- color: #ccc;
- }
- input::-moz-placeholder {
- color: #ccc;
- }
- input[type='submit'],
- input[type='button'] {
- cursor: pointer;
- }
- button[disabled],
- input[disabled] {
- cursor: default;
- }
- img {
- border: none;
- }
- ul,
- ol,
- li {
- list-style-type: none;
- }
- /*
- 滚动条样式
- */
- @media screen and (min-width: 768px) {
- ::-webkit-scrollbar {
- /*滚动条整体样式*/
- width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
- height: 8px;
- background: transparent;
- cursor: pointer;
- }
- ::-webkit-scrollbar-thumb {
- /*滚动条*/
- border-radius: 2px;
- background: #c7c9cc;
- cursor: pointer;
- }
- ::-webkit-scrollbar-track {
- /*轨道*/
- border-radius: 0;
- background: transparent;
- cursor: pointer;
- }
- }
|