.dhl {
    /* background-color: #ebebeb;  */
    background-color: transparent;
    color: rgb(32, 32, 32);
    /* width: 100vw; */
    height: 35px;
    display: flex;
    justify-content: center;
    z-index: 998;
    position: fixed;
    width: 100%;
}

#navul {
    background-color: #ebebeb;
    width: 1000px;
    height: 40px;
    line-height: 35px;
    box-shadow: 2px 5px 15px #0e0e0e;
    display: flex;
    font-size: 14px;
    position: relative;
    margin-top: 0px;
    border-radius: 5px;
    cursor: pointer;
   
}

.navli {
    width: 80px;
    text-align: center;
    transition: 0.5s;
}

.navli a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    z-index: 999;
}

.navli a img{
    width: 28px;
    height: 26px;
}

#hk {
    position: absolute;
    top: 32px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: rgba(100, 100, 130, .5);
    border-radius: 5px;
    z-index: 0;
    transition: 0.5s;
    display: none;
    


}

.navli:nth-child(1) {
    margin-top: 5px;
}

.navli:nth-child(1):hover~#hk {
    /* left: 0; */
    display: none;
    /* display: block; */
}

.navli:nth-child(2):hover~#hk {
    left: 80px;
    display: block;
    
}

.navli:nth-child(3):hover~#hk {
    left: 160px;
    display: block;
}

.navli:nth-child(4):hover~#hk {
    left: 240px;
    display: block;
}

.navli:nth-child(5):hover~#hk {
    left: 320px;
    display: block;
}

.navli:nth-child(6):hover~#hk {
    left: 400px;
    display: block;
}

.navli:nth-child(7):hover~#hk {
    left: 480px;
    display: block;
}

.navli:nth-child(8):hover~#hk {
    left: 560px;
    display: block;
}

.navli:nth-child(9):hover~#hk {
    left: 640px;
    display: block;
}

.navli:nth-child(10):hover~#hk {
    left: 720px;
    display: block;
}

.navli:nth-child(11):hover~#hk {
    left: 800px;
    display: block;
}

.navli:nth-child(12):hover~#hk {
    left: 880px;
    display: block;
}

.navli:nth-child(1):hover{
    /* transform: scale(2.05);   改成旋转 */
    animation: fadenum 1.5s;
}
.navli:nth-child(2):hover{
    transform: scale(1.05);  
}
.navli:nth-child(3):hover{
    transform: scale(1.05);  
}
.navli:nth-child(4):hover{
    transform: scale(1.05);  
}
.navli:nth-child(5):hover{
    transform: scale(1.05);  
}
.navli:nth-child(6):hover{
    transform: scale(1.05);  
}
.navli:nth-child(7):hover{
    transform: scale(1.05);  
}
.navli:nth-child(8):hover{
    transform: scale(1.05);  
}
.navli:nth-child(9):hover{
    transform: scale(1.05);  
}
.navli:nth-child(10):hover{
    transform: scale(1.05);  
}
.navli:nth-child(11):hover{
    transform: scale(1.05);  
}
.navli:nth-child(12):hover{
    transform: scale(1.05);  
}






@keyframes fadenum {

    100% {
        transform: rotate(1080deg);
    }

}
