body,html {
    margin: 0;
}
a {
    text-decoration: none;
}
* {
    user-select: none;
}
header {
    width: 100%;
    height: 230px;
    background-color: #3076CD;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
}

.menu-outer {
    width: 1400px;
    height: 70px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    flex-flow: row;
    align-items: center;
    height: 100%;
}

.menu-item {
    color: white;
    font-size: 18px;
    padding: 0 52px 0 52px;
    font-weight: 700;
    height: 95%;
    cursor: pointer;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

.menu-item:hover {
    background-color: white;
    border-radius: 2px;
    color: #4571C9 !important;
}

.active {
    background-color: white;
    border-radius: 2px;
    color: #4571C9 !important;
}

.logo {
    width: 100%;
    height: 160px;
    background-image: url(/img/index/head_bg.png);
}

.logo_img {
    margin-top: 55px;
    margin-left: 255px;
}

.search-outer {
    position: relative;
}

.search {
    width: 300px;
    height: 42px;
    border-radius: 2px;
    border: none;
    padding-left: 10px;
    padding-right: 45px;
    font-size: 16px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 6px;
    cursor: pointer;
}

footer {
    height: 140px;
    width: 100%;
    background: #2B2A2A;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

.footer-outer {
    width: 1400px;
    height: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 300px;
}

.footer-info {
    color: white;
    width: 666px;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: space-around;
    font-size: 14px;
}

.footer-menu {
    display: flex;
    flex-flow: row;

}

.footer-menu a {
    text-decoration: none;
    color: white;
    margin-right: 25px;
}

.current-login {
    color: white;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}