| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- $font-family: 12px/1.5 "Microsoft YaHei",tahoma,arial,"宋体";;
- $font-size: 10px !default;
- $mian-color:#fff;
- body,
- div,
- dl,
- dt,
- dd,
- ul,
- ol,
- li,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- pre,
- code,
- form,
- fieldset,
- legend,
- input,
- textarea,
- p,
- blockquote,
- th,
- td {
- margin: 0;
- padding: 0;
- color: #666;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0
- }
- ::-webkit-scrollbar {
- width:8px; background:#f5f6f9;
- }
- ::-webkit-scrollbar-thumb {
- background:#d8dce5; border:1px solid #d8dce5; border-width:0 1px;
- }
- fieldset,
- img {
- border: 0
- }
- address,
- caption,
- cite,
- code,
- dfn,
- em,
- strong,
- th,
- var {
- font-style: normal;
- font-weight: 400
- }
- ol,
- ul,li {
- list-style: none
- }
- caption,
- th {
- text-align: left
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-size: 100%;
- font-weight: 400
- }
- abbr,
- acronym {
- border: 0;
- font-variant: normal
- }
- sup {
- vertical-align: text-top
- }
- sub {
- vertical-align: text-bottom
- }
- input,
- textarea,
- select {
- font-family: inherit;
- font-size: inherit;
- font-weight: inherit
- }
- textarea {
- resize: none
- }
- legend {
- color: #000
- }
- a {
- color: #0068b7;
- outline: none;
- text-decoration: none
- }
- body {
- background: #fff;
- color: #333;
- font: $font-family ;
- }
- input::-ms-clear {
- display: none
- }
- :focus {
- outline: 0
- }
- .clearfix {
- :before,
- :after {
- content: "";
- display: table
- }
- :after {
- clear: both
- }
- }
- .ellipsics{ word-break: break-word;
- text-overflow: ellipsis;
- white-space: inherit;
- word-spacing: normal;
- overflow:hidden;
- }
- .y-row{
- flex: 1;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- width: 100%;
- .column {
- flex: 1;
- display: block;
- }
- .initial{
- display: block;
- flex: initial;
- }
- }
- #drap_file{
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: none;
- }
|