| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @charset "utf-8";
- * {
- box-sizing: border-box;
- }
- html {
- width: 100%;
- height: 100%;
- /* font-size: 19.2px; */
- 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;
- }
- @media only screen and (max-width: 1366px) {
- html{
- font-size:13.66px;
- }
- }
|