body {
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: #7e3af1;
}

.header {
    display: flex;
    flex-direction: row;
    height: 53px;
    background-color: #7e3af1;
}

.header .left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10px;
    padding-left: 16px;
}

.header .body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.header .right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10px;
    padding-right: 16px;
}

.header .icon {
    width: 20px;
    height: 20px;
}

.header .logo {
    width: 93px;
    height: 18px;
}

.nav {
    display: flex;
    flex-direction: row;
    margin-right: 18px;
    margin-left: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px rgba(234, 242, 255, 0.3) solid;
}

.nav .nav-arrow {
    color: #C8DDFF;
    font-size: 12px;
}

.nav > a {
    text-decoration: none;
    color: #C8DDFF;
    font-size: 12px;
}

.content {
    display: flex;
    flex-direction: column;
}

.footer {
    padding-bottom: 33px;
}

.footer .center {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

.footer .footer-nav {
    display: flex;
    width: 100%;
    max-width: 400px;
    justify-content: space-around;
    flex-direction: row;
}

.footer .footer-nav a {
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
}

.copyright {
    font-size: 12px;
    color: #FFFFFF;
    align-self: center;
    margin-top: 20px;
}

.menu {
    display: flex;
    flex-direction: row;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.menu .menu-container {
    width: 75%;
    height: 100%;
    max-width: 350px;
    background-color: #16171C;
}

.menu .menu-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: 73px;
    padding-bottom: 10px;
    border-bottom: 1px rgba(234, 242, 255, 0.3) solid;
    padding-left: 10px;
    padding-right: 10px;
}

.menu .menu-title {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.menu .menu-header-btn {
    width: 22px;
    height: 22px;
}

.menu .menu-close img {
    width: 22px;
    height: 22px;
}

.menu .menu-item {
    display: flex;
    flex-direction: row;
    border-bottom: 1px rgba(234, 242, 255, 0.3) solid;
    align-items: center;
    text-decoration: none;
    padding: 8px 10px;
}

.menu .menu-item-icon {
    width: 32px;
    height: 32px;
    margin-right: 20px;
}

.menu .menu-item-label {
    display: flex;
    flex: 1;
    color: #CDCDCE;
    font-size: 14px;
}

.menu .menu-item-arrow {
    width: 11px;
    height: 20px;
}

.menu .menu-hidden {
    display: none;
}

.search {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 8%;
    background-color: rgba(255, 255, 255, 1);
}

.search .search-input {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    background-color: #FFFFFF;
    height: 36px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    overflow: hidden;
    padding-right: 5px;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-right: 10px;
    margin-left: 10px;
}

.search .search-input input {
    display: flex;
    height: 100%;
    width: 100%;
    font-size: 13px;
    color: #999999;
    padding-left: 20px;
    border-width: 0;
}

.search .search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search .search-btn > img {
    width: 56px;
    height: 29px;
}

.search .search-tip {
    padding-left: 21px;
}

.search .search-tip-title {
    font-size: 14px;
    font-weight: bold;
    color: #1A1A1A;
}

.search .search-tip-item {
    padding: 5px 10px;
    text-decoration: none;
    font-size: 12px;
    background-color: #EAF2FF;
    color: #333333;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    line-height: 30px;
    white-space: nowrap;
}

#close-search-btn > img {
    width: 11px;
    height: 20px;
}