*{
    font-family: "Microsoft YaHei UI";
}
.header{
    width: 100%;
    height: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 999;
}
.header_null{
    width: 100%;
    height: 80px;
}
.header-menu-mobile{
    display: none;
    background: #FFFFFF;
}
.header-menu-mobile-one{
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding: 16px 12px;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}
.header-menu-mobile-one-go{
    position: absolute;
    right: 12px;
    top: 16px;
    width: 16px;
    height: 16px;
}
.header-menu-mobile-one-more{
    padding: 16px 0;
}
.header-menu-mobile-one-more-title{
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
}
.header-menu-mobile-one-more-title-icon{
    width: 18px;
    height: 18px;
    overflow: hidden;
}
.header-menu-mobile-one-more-menu{
    display: none;
}

.header-menu-mobile-one-more-menu-item{
    position: relative;
    display: block;
    padding: 16px 32px 0;
    margin-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.header-menu-mobile-one-active{
    color: #0045FF;
    .header-menu-mobile-one-more-title-icon img{
        transform: translateX(-18px);
    }
}
.header-menu-mobile-icon{
    display: none;
}
.header-content{
    max-width: 1400px;
    height: 80px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-family: "Microsoft YaHei UI";
    font-size: 18px;
    font-weight: 700;
}
.header-content-magician{
    max-width: 1280px;
}
.header-logo{
   width: 140px;
}
.header-logo-img{
    margin-left: 12px;
}
.header-menu{
    max-width: 685px;
    min-width: 420px;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-around;
    color: #666;
    font-size: 16px;
    font-weight: 400;
}
.header-menu-magician{
    width: 500px;
    max-width: 500px;
}
.header-menu-item {
    position: relative;
    height: 80px;
    line-height: 80px;
    display: flex;
    align-items: center;
}
.header-menu-item-img{
    width: 18px;
    display: flex;
    align-items: center;
    margin-left: 2px;
    overflow: hidden;
    cursor: pointer;
}
.header-menu-item-img img{
    width: 72px;
    max-width: 400%;
}

.header-menu-item-list{
    position: absolute;
    top: 80px;
    left: -24px;
    width: 196px;
    padding: 12px;
    background: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    z-index: 2;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 42px;
    display: none;
}
.header-menu-item-list li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.header-menu-item-list li:last-child{
    border-bottom: none;
}
.header-menu-item-list li:hover a{
    padding-left: 20px;
    color: #005EFF;
}
.header-menu-item .header-menu-item-a{
    font-weight: 700;
}

.header-menu-item:hover .header-menu-item-a{
    color: #005EFF;
}
.header-menu-item:hover .header-menu-item-a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #347DFF 0%, #47FFF6 100%);
    border-radius: 2px;
}
.header-menu-item:hover .header-menu-item-list{
    display: block;
}
.header-menu-item:hover img{
    transform: translateX(-18px);
}
.header-menu-item-active{
    position: relative;
}
.header-menu-item-active a{
    color: #005EFF;
}
.header-menu-item-active a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #347DFF 0%, #47FFF6 100%);
    border-radius: 2px;
}
.header-menu-item-active a:hover{
    color: #005EFF;
}
.header-menu-item-logo{
    width: 24px;
    height: 24px;
    vertical-align: -5px;
}
.header-menu-item:hover .header-menu-item-logo{
    transform: translateX(0px);
}
.header-search{
    max-width: 300px;
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 12px;
}
.header-search:hover{
    .header-search-input{
        display: block;
    }
    .header-search-icon{
        position: absolute;
        right: 2px;
        top: 0;
    }
}

.header-search-input{
    width: 100%;
    height: 36px;
    border-radius: 53px;
    border: 1px solid #333;
    padding: 0 36px 0 16px;
    display: none;
}
.header-search-icon{
    width: 36px;
    height: 36px;
}
.header-download{
    width: 132px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(90deg, #008FFF 0.33%, #00CFBE 103.1%);
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/*适配移动端*/
@media screen and (max-width: 780px) {
    .header{
        height: 56px;
    }
    .header_null{
        height: 56px;
    }
    .header-content{
        padding: 0 12px;
        height: 56px;
    }
    .header-logo-img{
        width: 75%;
        height: 75%;
    }

    .header-menu{
        display: none;
    }
    .header-menu-mobile-icon{
        display: block;
    }
    .header-menu-mobile-icon-two{
        display: none;
    }
}
