/*导航条*/
.mob-pro-nav { width: 100vw; height: 6rem; 
    position: absolute; 
    top: 3.125rem; left: 0; 
    z-index: 9997; 
    background: #232526;
    position: fixed;
}
.mobpro-navs { 
    width: 100vw; height: 6rem;
     display: flex; 
     align-items: center; 
     position: relative;
     flex-direction: column;
}

.mob-navleft {
    width: 100vw;
    height: 3rem;
    border-bottom: 0.2px solid #8C8C8C;
    /* background-color: aqua; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: .75rem;
    padding-right: .75rem;
}
.mob-navleft p {color: white; font-size: 1rem; font-weight: 500; }
.mob-navleft .mob-navbtn {
    width: 4.875rem; 
    height: 1.75rem;
    border-radius: 4px; 
    background: #F46F0A;
    color: white; 
    font-size: .875rem;
    line-height: 1.75rem;
    font-weight: 500;
    text-align: center;
   cursor: pointer;
}
/* .mob-navbtn:hover { background: #fa9548; } */



.mob-navright {
     width: calc(100vw - 1.5rem); 
     height:2.9375rem; 
     /* background-color: red; */
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: flex-start;
}

.mob-navright span a { 
    color: white; font-size: .875rem;
     font-weight: 400; padding-right: 30px;}

/*导航条*/