html {
    height: 100%;
    font-size: 16px;
    font-size: 4.26667vw;
}

body {
    min-height: 100%;
    margin: 0;
    color: #252628;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    /* IOS禁止微信调整字体大小 */
    -webkit-text-size-adjust: 100% !important;
}

@media (min-width: 540px) {
    html {
        font-size: 23px;
        background-color: #f5f5f5;
    }

    body {
        max-width: 768px;
        margin: 0 auto;
    }
}

body, h1, h2, h3, h4, h5, h6, input, textarea, select, button {
    font-family: 'Open Sans', 'Hiragino Sans GB', 'Hiragino Sans GB W3', "Microsoft YaHei", "微软雅黑", SimSun, "宋体", sans-serif;
}

div#app {
    padding-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.mint-button.mint-button--primary {
    background-color: #b69746;
    border-color: #b69746;
    color: #fff;
}

[v-cloak] {
    display: none;
}

.list-item {
    background-color: #ffffff;
    border-bottom: #e3e3e3 solid 1px;
    padding: 13px 20px 13px 15px;
    color: #5a5a5a;
}

.list-item .list-item-title {
    font-size: 1rem;
}

.list-item .detail-link {
    margin-left: 5px;
    float: right;
    color: #aeaeae;
    font-size: 0.75rem;
    line-height: 1.8em;
}

.footer-container {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer-container div {
    margin: 0 auto 0 auto;
    padding: 10px 20px 10px 20px;
    max-width: 728px;
}

/*Component Styles*/
.header-container .mint-header {
    color: #252628;
    background-color: #ffffff;
    font-size: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.header-container .mint-header .mint-header-button .mint-button-icon {
    vertical-align: top; /*fix back icon position*/
}

/*自定义checkbox*/
/* The container */
.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    /*margin-bottom: 12px;*/
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
}

@media (min-width: 450px) {
    .checkmark {
        bottom: 0.1rem;
    }
}

@media (min-width: 540px) {
    .checkmark {
        bottom: 0.2rem;
    }
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.color-golden {
    color: #b69746;
}

/* Style for overwrite mint cell */
.ew-cell .mint-cell-wrapper {
    padding: 0 15px;
}

.ew-cell .mint-cell-wrapper .mint-cell-title {
    font-size: 1rem;
    color: #252628;
}

.ew-cell .mint-cell-wrapper .mint-cell-value {
    font-size: 0.8rem;
    color: #aeaeae;
}
