html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}
.container {
    height: 100%;
    width: 100%;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    overflow: auto;
    -ms-overflow-style: none;
}
a {
    text-decoration: none;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
    box-sizing: border-box;
    height: 75px;
    min-height: 75px;
    padding: 0 60px;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
header .logo {
    height: 20px;
    font-size: 20px;
    color: #10c9c3;
}
header .nav {
    position: absolute;
    right: 60px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
header .nav li {
    display: inline-block;
    padding: 0 20px;
}
header .nav li a {
    color: #333;
    text-decoration: none;
}
header .nav li a:hover {
    color: #10c9c3;
    font-weight: bold;
}
header .nav li .active {
    color: #10c9c3;
    font-weight: bold;
}
.footer {
    height: 155px;
    min-height: 155px;
    background-color: #141414;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;

    /* 09版 */
    -webkit-box-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.footer .logo {
    height: 20px;
}
.footer p {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 12px;
}
.footer p a {
    color: #fff;
}
.iconfont.icon-menu {
    position: absolute;
    right: 20px;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    display: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.iconfont.icon-menu:active {
    opacity: .6;
}
.button {
    background-color: #10c9c3;
    border: none;
    color: white;
    padding: 10px 36px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.button:hover {
    background-color: #0Eaba7;
}
.button.text {
    background-color: transparent;
    color: #10c9c3;
}

.button.text:hover {
    color: #0Eaba7;
}

::-webkit-scrollbar {
    width: 0;
}

@media (max-width: 840px) {
    .iconfont.icon-menu {
        display: inline;
        right: 20px !important;
        top: 26px;
    }
    header {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 0 20px;
    }
    header .nav {
        right: 0 !important;
        top: -1px;
        width: 100%;
        height: 0;
        background-color: #fff;
        transition: all .2s;
        opacity: 0;
        overflow: hidden;
        font-size: 16px !important;
    }
    header .nav.active {
        opacity: 1;
        height: auto;
        margin-top: 75px !important;
        display: inline-block !important;
    }
    header .nav li {
        display: block !important;
        margin: 15px 0;
    }
}