﻿* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -ms-touch-action: none;
}

body, ul, li {
    padding: 0;
    margin: 0;
    border: 0;
    /*-webkit-text-size-adjust: none;*/
}

ul, li {
    list-style: none outside none;
}

body {
    font-size: 14px;
    font-family: 'microsoft yahei',Verdana,Arial,Helvetica,sans-serif;
    min-width: 320px;
    overflow: hidden; /* this is important to prevent the whole page to bounce */
    background:#f6f6f6;
    color: #333;
}

img {
    max-width: 100%;
}

#header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    /*background: #0088d1;*/
    background:#29a3fc;
    color:#fff;
    padding: 0;
    font-size: 20px;
    text-align: center;
    border-bottom:solid 1px #29a3fc;
}


#wrapper {
    position: absolute;
    z-index: 1;
    top: 45px;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f6f6f6;
    overflow: hidden;
}

#scroller {
    position: absolute;
    z-index: 1;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    width: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none;
}

@media screen and (min-width:480px) {
    body {
        font-size: 21px;
    }
}

@media screen and (min-width:640px) {
    body {
        font-size: 28px;
    }

    .content {
        margin: auto auto;
    }
}

@media screen and (min-width:480px) {
    body {
        font-size: 21px;
    }
}


.tb-100 {
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}

.tb {
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
}

.tb-cell {
    display: table-cell;
    vertical-align: middle;
}

.tb-cell-nowrap {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
}

.tb-cell-100 {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}


.tb-row {
    display: table-row;
}
