@charset "utf-8";

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6vh;
    line-height: 6vh;
    background-color: #efefef;
    border-bottom: 1px solid #e0e0e0;
}

header .header-back, header .header-title, header .header-menu {
    height: 100%;
    text-align: center;
}

header .header-back, header .header-menu {
    width: 6vh;
}

header .header-back button{
    height: 100%;
    color: #656565;
    text-shadow: 1px 1px rgba(255, 255, 255, .8);
    background-color: transparent;
    border: none;
}
header .header-menu a {
    display: block;
    height: 100%;
    color: #656565;
    text-shadow: 1px 1px rgba(255, 255, 255, .8);
}

header .header-title {
    width: calc(100vw - 14vh);
    user-select: none;
    overflow: hidden;
}

header .header-title-text {
    font-size: .8rem;
    margin: 0;
    font-weight: normal;
    color: #656565;
    text-shadow: 1px 1px rgba(255, 255, 255, .8);
}

main {
    width: 100vw;
    height: 86vh;
    padding-bottom: 8vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

main > .container {
    padding: .8rem;
}

footer > .footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    height: 8vh;
    width: 100vw;
    background-color: #f0f0f0;
    border-top: 1px solid #eaeaea;
}

footer > .footer-nav a {
    display: inline-block;
    height: 8vh;
    width: 22vw;
    box-sizing: border-box;
    padding-top: 5vh;
    position: relative;
    text-align: center;
    font-size: .7rem;
    overflow: hidden;
}

footer > .footer-nav .iconfont {
    position: absolute;
    width: 22vw;
    height: 5vh;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    top: 0;
    left: 0;
}

footer > .footer-nav .active {
    color: #199a0b;
}

footer > .footer-button {
    width: 100vw;
    font-size:.8rem;
    position: fixed;
    bottom: 0;
    letter-spacing:0;
    border-radius: 0;
    height: 2.2rem;
    line-height:2.2rem;
}


footer > .pagination {
    width: 100vw;
    position: fixed;
    bottom: 0;
    margin: 0;
    padding: .3rem 0;
    background-color: #fff;
}