* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-y: scroll;
}

body {
    background: #CA2100;
    color: #A25B22;
    font-size: .32rem;
    font-family: PingFang SC;
    -webkit-text-size-adjust: none;
}

ol,
ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

address,
i,
em,
strong {
    font-style: normal;
    font-weight: normal;
}

a {
    color: #555;
    text-decoration: none;
}

input,
textarea,
select,
button {
    border: none;
    outline: none;
}
input::input-placeholder{
    color:#A25B22;
}
.view {
    width: 7.5rem;
    height: 100%;
}

.container {
    width: 6.9rem;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}


/* 弹性盒子 */

.flex-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.flex-shrink {
    flex-shrink: 0;
}
.flex-box{
    width: 100%;
}
.icon{
    width: .32rem;
}
/* 文字多出隐藏 */

.one-hide {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


/*弹窗*/

.pop {
    z-index: 110;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}

.pop-box {
    width: 6.4rem;
    height: 9rem;
    background: #FFE7B5;
    border-radius: .16rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    text-align: center;
    padding:.3rem .36rem;
}


/*提示弹窗*/

.hint {
    width: 3rem;
    padding: .2rem;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    text-align: center;
    font-size: .26rem;
    position: fixed;
    top: 7rem;
    left: 2.25rem;
    display: none;
    z-index: 400;
}

.loading {
    width: 2.5rem;
    height: 1.8rem;
    display: block;
    margin: 4rem auto 0;
}

.loading-txt {
    text-align: center;
    color:#FFE7B5;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 7.5rem;
    height: 1.1rem;
    background: #FFE7B5;
    padding: .1rem .3rem;
    z-index: 5;
    color: #C08F67;
}

.footer-item {
    width: 50%;
    text-align: center;
    font-size: .24rem;
}

.footer-item img {
    width: .48rem;

}

.active {
    color: #D3000A;
}