html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: 'PingFangSC';
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input {
    border: none;
    outline: none;
}

body,
html {
    height: 100%;
    background: #ededed;
}

header {
    text-align: center;
    position: relative;
    font-size: .32rem;
    color: #101010;
    padding: .32rem 0 .26rem;
    font-weight: 600;
}

header>a {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-left: .4rem;
    height: 100%;
    left: .28rem;
    top: 50%;
}

header>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: .3rem;
    width: .38rem;
    background: url("../img/left_btn.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -.14rem;
}

.subBtn {
    padding: 0 .3rem;
}

.subBtn .searchCard {
    height: 0.9rem;
    width: 100%;
    color: #fff;
    font-size: .36rem;
    background: #315fa6;
    border-radius: 2px;
}

.subBtn .searchCard.disabled {
    background: #666;
}

.copy {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: .26rem;
    color: #6a6969;
    text-align: center;
    padding: .38rem 0 .3rem;
    background: #ededed;
}

.toast {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: .15rem .5rem;
    background: #666;
    font-size: .28rem;
    color: #fff;
    border-radius: .1rem;
    z-index: 2;
    min-width: 50%;
    text-align: center;
}

.confim_mask {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    font-size: .32rem;
}

.confim_mask .confim {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: #fff;
    border: 1px solid #f5f0f0;
    border-radius: .15rem;
    overflow: hidden;
}

.confim_mask .confim .title {
    border-bottom: 1px solid #ddd;
    position: relative;
    width: 100%;
    height: .7rem;
    line-height: .7rem;
    text-align: center;
}

.confim_mask .confim .close {
    position: absolute;
    right: 0;
    top: 0;
    width: .6rem;
    height: 100%;
    background: url('../img/close.png') no-repeat;
    background-size: contain;
}

.confim_mask .confim .content {
    padding: .5rem;
}

.confim_mask .confim .button {
    height: 1rem;
    line-height: 1rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
}

.confim_mask .confim .button button {
    flex: 1;
    background: none;
    color: #059bff;
    font-weight: 600;
    font-size: .36rem;
}

.confim_mask .confim .button button:first-child {
    border-right: 1px solid #ddd;
}

.wait {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, .2);
}

.wait .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1rem;
    margin: -.5rem 0 0 -.5rem;
}

.wait .loading img {
    display: block;
    width: 100%;
    height: 100%;
    animation: 3s linear rotate infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}