
@font-face {
    font-family: 'MyFont'; /* 自定义字体名称 */
    src: url('../font/OPPOSANS-R.TTF') format('truetype'),
    url('../font/OPPOSANS-B.TTF') format('truetype'),
    url('../font/OPPOSANS-H.TTF') format('truetype'),
    url('../font/OPPOSANS-L.TTF') format('truetype'),
    url('../font/OPPOSANS-M.TTF') format('truetype'); /* 最后加载ttf格式 */
    font-weight: normal; /* 字体粗细 */
    font-style: normal;  /* 字体样式 */
}
*,body {
    font-family: 'MyFont', sans-serif; /* 使用自定义字体，回退到sans-serif */
}


.navbar{
    width: 100%;
    height: 80px;
    padding: 0px 171px 0px 99px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*border-bottom: 1px solid #898989;*/
    position: fixed;
    top: 0px;
    box-sizing: border-box;
    z-index: 100;
}
.navbar-logo{
    width: 180px;
    height: 50px;
}
.navbar-white{
    background-color: #FFFFFF;
}
.navbar-black-opacity {
    background: rgba(0, 0, 0, 0.2);
}
.navbar-list{
    display: flex;
    align-items: center;
}
.navbar-item{
    margin-right: 66px;
}
.navbar-item:last-child{
    margin-right: 0px;
}
.navbar-text{
    font-size: 18px;
    font-weight: 400;
    line-height: 44px;
    text-decoration: none;
}
.navbar-text:hover{
    font-weight: bold;
}
.white-text{
    color: #FFFFFF;
}
.black-text{
    color: #6B6B6B;
}
.navbar-active{
    /*color: #fff!important;*/
    font-weight: bold;
}
.header-icon {
    display: none;
}
.silderItem:first-child {
    background-color: #0052D9!important;
}
.nav-active {
    font-weight: 500!important;
}
.nav-header-ul li {
    font-weight: normal;
    font-size: 26px;
    color: #15181D!important;
}
.expand-menu {
    display: none;
}