html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
header,
menu,
nav,
output,
ruby,
summary,
time,
mark,
audio,
video,
input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    /* font-weight: normal; */
    vertical-align: baseline;
    outline: none;
}
article,
aside,
details,
figcaption,
figure,
header,
menu,
nav {
    display: block;
}
body {
    line-height: 1;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    color: #7e8c8d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-text-decoration: none;
    text-decoration: none;
}
a:visited {
    -webkit-text-decoration: none;
    text-decoration: none;
}
li {
    list-style: none;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    border-radius: 6px;
}
@font-face {
    font-family: "HarmonyOS Sans SC";
    src: url("/statics/font/HarmonyOS_Sans_Medium.ttf") format('truetype');
}
html,
body {
    width: 100%;
}
body {
    font-family: HarmonyOS Sans SC;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

header {
    position: fixed;
    top: 0;
    z-index: 100;
    height: 90px;
    padding: 0 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    /*overflow: hidden;*/
    background-color: white;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
}
header h1 img {
    -o-object-fit: contain;
    object-fit: contain;
}
header menu {
    padding-left: 11vw;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}
header menu a {
    font-size: 16px;
    line-height: 23px;
    color: #262729;
    margin-left: 2.2vw;
    position: relative;
    line-height: 90px;
    display: inline-block;
}
header menu a.active {
    color: #055297;
}
header menu a.active:after {
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #055297;
    position: absolute;
    height: 3px;
}

header{
    overflow: unset;
}
.submenu{
    box-shadow: 0 2px 4px 0 rgba(104, 104, 104, 0.6);
    position: absolute;
    top: 90px;
    left: 0;
    background: #fff;
    z-index: 99;
    width: 100%;
    display: none;
}

.submenu a{
    line-height: 0;
}

.submenu li{
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.submenu li:hover > a{
    color: #338eff;
}

header menu{
    display: flex;
}
header menu a{
    margin-left: 0;
}
header menu .menu{
    position: relative;
    padding: 0 1.1vw;
}

header menu .menu:hover > .submenu{
    display: block;
}

.submenu-sub{
    position: absolute;
    top: 0;
    z-index: 99;
    left: 100px;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(104, 104, 104, 0.6);

}

@media (max-width: 1440px) {
    header {
        padding: 0 60px;
    }
}