| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @charset "utf-8";
- * {
- box-sizing: border-box;
- }
- html {
- width: 100%;
- height: 100%;
- /* font-size: 62.5%!important; */
- /* color: #474747; */
- }
- body {
- font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Segoe UI","Helvetica Neue","PingFang SC","Noto Sans","Noto Sans CJK SC","Microsoft YaHei",微软雅黑,sans-serif;
- -webkit-box-sizing: border-box;
- color: #333;
- background: #fff;
- font-size: 14px;
- }
- body.gray {
- background: #eeeeee;
- }
- body.fff {
- background: #fff;
- }
- button,
- input,
- textarea {
- border: none;
- -webkit-outline: none;
- outline: none;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- -webkit-appearance: none;
- border-radius: 0;
- padding: 0;
- }
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
- a {
- color: #474747;
- text-decoration: none;
- }
- a:focus,
- a.active,
- a:hover {
- text-decoration: none;
- }
- .w1200 {
- max-width: 1200px;
- margin: 0 auto;
- }
- .cp {
- cursor: pointer;
- }
- .th {
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
|