@charset "utf-8";
/* CSS Document */
.clearfix::after{
    content: "";
    display: block;
    clear: both;
}
.header{
    background-color: #e4e5e6;
    color: #999;
    height: 40px;
    line-height: 40px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
}
.header .topnav>li{
    float: left;
    margin: 0 20px;

    width: 150px;
    text-align: center;
    height: 40px;
    position: relative;
}
.header .topnav>li:hover{
    background-color: #fff;
    border: 2px solid #ccc;
    border-bottom: none;
    box-sizing: border-box;
    line-height: 36px;
}
.header .topnav>li .submenu{
    text-align: left;
    line-height: 1.5;
    width: 300px;
    display: none;
    border: 2px solid #ccc;
    box-sizing: border-box;
    position: absolute;
    right: -2px;
    background-color: #fff;
}
.header .topnav>li:hover .submenu{
    display: block;
}
.header .topnav>li:hover::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}
