/**组件样式*/
.dhxg{position: relative;border-bottom: none !important;}
.dhxg::before {
      content: "";
    display: block;
    width: 50%;
    height: 1px;
    position: absolute;
    right: auto;
    bottom: 0;
    background: #4052b4;
    left: 50%;}
    .dhxg::after {content: "";
    display: block;
    width: 50%;
    height: 1px;
    position: absolute;
    bottom: 0;
    background: #4052b4;
    right: 50%;}
    
    .dhxg:hover::before{
    animation: dblj_li 1s;
    -webkit-animation: dblj_li 1s;
    animation-fill-mode: forwards;
        color: #e4820f;}
    .dhxg:hover::after{
    animation: dblj_li 1s;
    -webkit-animation: dblj_li 1s;
    animation-fill-mode: forwards;
        color: #e4820f;}

@keyframes dblj_li
{
    0%   {width: 50%;}
    50%  {width: 0;}
    100% {width: 50%;}
}
@-webkit-keyframes dblj_li /* Safari ä¸Ž Chrome */
{
    0%   {width: 50%;}
    50%  {width: 0;}
    100% {width: 50%;}
}


