123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @import "./variables.less";
- html, body, div, span, iframe,
- h1, h2, h3, h4, h5, h6, p,
- a, em, img, s, strong,
- i,dl, dt, dd, ol, ul, li, form, label,
- table, tbody, tfoot, thead, tr, th, td,
- article, aside, canvas, input,
- figure, footer, header,
- menu, nav, output, section, summary, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font: inherit;
- font-size: 14px;
- vertical-align: baseline;
- box-sizing: border-box;
- -moz-box-sizing: border-box; /* Firefox */
- -webkit-box-sizing: border-box; /* Safari */
- }
- html, body {
- height: 100%;
- /*overflow-x: hidden;*/
- font-family: 'Microsoft YaHei', arial, tahoma, sans-serif;
- /*overflow-y: hidden; 弹窗出现有可能出现滚动条*/
- }
- body {
- background: #e4e6e7;
- line-height: 1;
- }
- body > :global(#root) {
- height: 100%;
- width: 100%;
- position: relative;
- }
- ol, ul {
- list-style: none;
- }
- li {
- list-style: none;
- }
- button {
- cursor: pointer;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- input,textarea{
- border: none;
- margin: 0;
- padding: 0;
- outline: none;
- }
|