@charset "utf-8";

* {
    box-sizing: border-box;
}

/*鸿蒙字体*/
@font-face {
    font-family: 'HarmonyOS_Sans_SC_Regular';
    src: url('../fonts/Harmony/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'HarmonyOS_Sans_SC_Bold';
    src: url('../fonts/Harmony/HarmonyOS_Sans_SC_Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'HarmonyOS_Sans_SC_Light';
    src: url('../fonts/Harmony/HarmonyOS_Sans_SC_Light.ttf') format('truetype');
}


html,
body,
div,
span,
h1,
h2,
h3,
p,
a,
ul,
li,
img,
header,
nav,
main,
section,
footer {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    background: #fff;
}

body {
    min-width: 1440px;
    font-size: 16px;
    color: #111;
    background: #fff;
    font-family: 'HarmonyOS_Sans_SC_Regular', Arial, 'AvenirLTStd-light', 'AvenirLTStd', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

ul,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none !important;
}

a:focus{
    outline: none !important;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 1440px;
    margin: 0 auto;
    position: relative;
}

.clearfix::after {
    display: table;
    clear: both;
    content: "";
}

