.headbox {
    position: absolute;
    width: 100%;
    height: 0px;
    background-color: rgba(6, 26, 37, 0.9);
    top: 80px;
    left: 0;
    z-index: 100;
    transition: all .3s;
    overflow: hidden;
}

.menu {
    width: 100%;
    height: 200px;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    border-top: 1px solid #4d4c4c;
    border-bottom: 1px solid #4d4c4c;
    position: relative;
}

.dropDown {
    position: absolute;
    right: 460px;
    display: flex;
    margin-top: 10px;
}

.dropDown .list>a {
    width: 150px;
    display: block;
    text-align: center;
    border: none;
    background: none;
    color: #e5cd8a;
    font-weight: bold;
    cursor: pointer;
    /* padding: 0 20px; */
    font-size: 1.4em;
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
}

.dropDown .list>a:hover {
    color: #fff9ea
}

.dropDown .list:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background: #79caf2;
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.dropDown .list:hover::after {
    width: 150px;
}

.dropDown .list {
    position: relative;
    width: 150px;
}

#mainNotice {
    height: 158px;
    background: #27292b;
    border: none !important;
}

.notice {
    width: 700px;
    padding: 10px 100px 10px;
    height: 180px;
}

.noticeTitle {
    color: #e5cd8a;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.noticeTitle>b {
    margin-left: 2%;
}

.noticeLi {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-bottom: 1px solid #b5b5b5;
    color: #eaeadd;
}

.noticeLi>p {
    padding: 0;
    margin: 0;
}

.title:hover .headbox {
    height: 200px;
}