| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- @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",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;
- }
- .bgF8 {
- background-color: #F8FBFF;
- }
- @font-face {
- font-family: Archivo-Bold;
- src: url('./Archivo-Bold.ttf');
- }
- @font-face {
- font-family: Nunito-Black;
- src: url('./Nunito-Black.ttf');
- }
- @media only screen and (max-width: 1366px) {
- html{
- font-size: 13.66px;
- }
- }
|