* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

html {
    background: #f2f2f2;
    height: 100%;
}

body {
    font-family: "SF Pro SC", "HanHei SC", "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif, "黑体-简", "微软雅黑", "黑体";
    max-width: 480px;
    width: 100%;
    margin: 0 auto !important;
    /* line-height: 1.5rem; */
    background: #fff;
    min-height: 100%;
    height: auto;
    color: #333;
    position: relative;
    font-size: 12px;
}

p,
a,
li,
span,
i {
    font-size: 12px;
}

img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

ul,
li {
    overflow: hidden;
    list-style-type: none;
}

li {
    float: left;
}

input,
textarea,
select {
    /* display: block; */
    /* border: 1px solid #ddd; */
    outline: none;
}


/* input {
    padding: 5px;
    background: #fff;
} */

input[type=button] {
    -webkit-appearance: none;
    outline: none;
}


/* textarea {
    resize: none;
    min-height: 50px;
    border-radius: 5px;
    box-shadow: none;
    padding: 10px;
} */

.sel_box {
    position: relative;
    display: block;
    overflow: hidden;
    /* border: 1px solid #ddd; */
    /* padding: 9px 10px; */
    /* margin: 0 0 10px; */
    /* border-radius: 5px; */
    /* background: #fff; */
    /* background: #f60; */
}

.sel_box select {
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 100%;
    z-index: 99;
    border: none;
    background-color: transparent;
}

.sel_box i {
    position: absolute;
    top: calc(50% - 8px);
    right: 7px;
    /* font-size: 1rem; */
    font-size: 16px;
    z-index: 98;
}

a {
    text-decoration: none;
    color: inherit;
}


/* 底部导航 */

.footer_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    /* height: 55px; */
    height: 65px;
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 10px #ddd;
    z-index: 9999;
    max-width: 480px;
    margin: 0 auto;
}

.footer_bar a {
    /* height: 55px; */
    padding: 8px 0;
    display: block;
    height: 100%;
    flex: 1;
    overflow: hidden;
    text-align: center;
}

.footer_bar a img {
    /* height: 27px; */
    height: 32px;
}

.footer_bar a .tit {
    /* font-size: 10px; */
    font-size: 12px;
    color: #999;
    /* margin-top: 2px; */
}

.footer_bar a.cur .tit {
    color: #ff81b0;
}