.ms_header{
   width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #ffffff61;
}
.ms_header_wrap{
    height: 100%;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background-image: url("http://dykct.com/Web/template/css/img/5bc249a1225ac0ee53df3b979a12ad04.png");*/
    background-position: 0 21%;
    background-repeat: no-repeat;
}
.wrapbg{
    background-color: #ffffff61;
}
.ms_center{
    width: 70%;
}
.ms_center ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ms_header_wrap .ms_left{
    font-size: 20px;
    font-weight: bolder;
}

.ms_nav_header{
    background-color: #f9f9f9;
}

.ms_header_wrap .ms_right{
    display: flex;
    justify-content: center;
    align-items: center;
}
.ms_header_wrap .ms_right .ms_help{
    margin-left: 5px;
    cursor: pointer;
}
.ms_header_wrap .ms_right .ms_help span{
    color:#505363;
    font-weight: 600;
    padding: 5px 10px;
}
.ms_header_wrap .ms_right .ms_help.ms_use_login span{
    background-color: #ED8042;
    color: #FFFFFF;
}
.ms_header_wrap .ms_right .ms_help i{
    margin-right: 2px;
    color: #a7a7a7;
}
.ms_account_opening{
    padding: 5px 10px;
    color: #FFFFFF;
    margin-right: 10px;
    border-radius: 100px;
    background-color: #a7a7a7;
}

.ms_input{
    border-radius: 100px;
    padding: 8px 10px;
    background-color: #ebebeb;
}

.ms_input input{
    background-color: transparent;
    border:none;
    appearance: none;
    outline: none;
}
.ms_nav{
    padding: 5px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.ms_nav_item{
    text-align: center;
    font-size: 16px;
    position: relative;
    border-left: 2px solid #ebebeb;
    transition:all .3s;
    width: 200px;
    cursor: pointer;
    font-weight: bold;
}

.ms_nav_item:before{
    content: '';
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
}
.ms_nav_item:hover{
    transition:all .3s;
}
.ms_nav_item:hover:before{
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    left: 25%;
    bottom: 0px;
    height: 4px;
    background-color: #0d70f5;
}
.ms_nav_item:first-child{
    border-left: none;
}
.ms_nav_item.active{
    color: #0d70f5;
    transition: all .3s;
}
.ms_nav_item.active:before{
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    left: 25%;
    bottom: 0px;
    height: 4px;
    background-color: #0d70f5;
}
.ms_nav_item:hover ul{
    display: block;
}
.ms_nav_item ul{
    position: absolute;
    top: 100%;
    width: 150px;
    background-color: #FFFFFF;
    left: calc((100% - 150px) / 2);
    display: none;
}
.ms_nav_item ul li{
    font-size: 14px;
}
.ms_nav_item i{
    margin: 0 3px;
}

.ms_nav_item ul li:hover{
    color: #ffffff;
    background-color: #0d70f5;
}
