html,
body,
p,
a,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
img,
#app,
.main-contaniner {
    padding: 0;
    margin: 0;
}

html,
body,
#app,
.menu-container {
    max-width: 750px;
    overflow-x: hidden;
    background: #f5f5f5;
    font-family: 'PingFangSC-Regular';
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}


.alert-box { 
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:10;
    font-size:.24rem;
    color:#666;
}
.alert-box .hide_alert_box {
    width:100%;
    height:100%;
    background:rgba(0,0,0,1);
    opacity:0.65;
}
.alert-box .alert_text {
    width:5.6rem;
    height:3.8rem;
    background:rgba(255,255,255,1);
    border-radius:.1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -2.8rem;
    margin-top: -1.9rem;
    font-size:.32rem;
    color:rgba(51,51,51,1);
}

.loading-animate {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:10;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading-animate img {
    width:1rem;
    height:1rem;
}

.msg_tip {
    width:100%;
    max-width: 750px;
    height:100%;
    overflow:hidden;
    position: fixed;
    top: 0;
    left:0;
    z-index:1000;
    display:flex;
    justify-content: center;
    align-items: center;
}
.msg_tip .msg_text {
    padding: .2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.6);
    font-size: .2rem;
    color: #fff;
    border-radius: .04rem;
    max-width:4.5rem;
}

.tip-enter,.tip-leave-to{
    opacity: 0;
}
.tip-enter-to,.tip-leave{
    opacity: 1;
}
.tip-enter-active,.tip-leave-active{
    -moz-transition: all 3s; 
    -webkit-transition: all 3s; 
    -o-transition: all 3s; 
    transition: all 3s;
}


.right-slide-enter{
    opacity: 0;
    transform: translateX(100%);
}
.right-slide-leave-to{
opacity: 0;
transform: translateX(-100%);
position: absolute;
}
.right-slide-enter-active{
-moz-transition: all 0.35s ease; 
-webkit-transition: all 0.35s ease; 
-o-transition: all 0.35s ease; 
transition: all 0.35s ease;
}
.right-slide-leave-active {
-moz-transition: all 0 ease; 
-webkit-transition: all 0 ease; 
-o-transition: all 0 ease; 
transition: all 0 ease;
}

.slide-enter-active {
    animation-name: slideInUp;
    animation-duration: 0.2s;
    animation-fill-mode: both;
}
.slide-leave-active {
    animation-name: slideOutDown;
    animation-duration: 0;
    animation-fill-mode: both;
}
@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translateZ(0);
    }
}
@keyframes slideOutDown {
    0% {
        transform: translateZ(0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}
.delay-leave-active {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.back_pay {
    max-width:750px;
    width:100%;
    height:100%;
    overflow: hidden;
    position:fixed;
    top:0;
    left:0;
    z-index:10;
}
.back_hide_modal {
    width:100%;
    height:100%;
    overflow: hidden;
    background: rgba(0,0,0,.65);
}

[v-cloak] {
    display: none !important; 
}


.refreshMoudle {
    margin-top: -1rem;
    
    transition: all 0.2s;
}
.pull-refresh {
    color: #999;
    transition-duration: 500ms;
    font-size: .24rem;
}
.refreshMoudle .down-tip,
.up-tip,
.refresh-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
}
.refreshMoudle .down-tip-img,
.up-tip-img,
.refresh-tip-img {
    width: 2rem;
}

.top-menu {
    position: fixed;
    top:0;
    left: 0;  
    max-width:750px;
    padding:.16rem 0;
    width:100%;
    font-size:.32rem;
    color:rgba(51,51,51,1);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index:5;
}
.top-menu i {
    position:absolute;
    left:.3rem;
    display:inline-block;
    width:.16rem;
    height:.26rem;
    background:url('../image/back3.png') no-repeat;
    background-size:100%;
}
.top-menu .coupon-a {
    font-size: .28rem;
    color:rgba(102,102,102,1);
    position: absolute;
    right:.3rem;
}