* {
    margin: 0;
    padding: 0;

}
body {
    background: #f8f8f8;
    -webkit-font-smoothing: antialiased;
    font-family: "微软雅黑" !important;
    margin: 0 auto !important;
    position: relative;
    color: #52514f;
    font-size:14px;
    min-width:300px;
    -moz-box-sizing: border-box; /*Firefox3.5+*/
    -webkit-box-sizing: border-box; /*Safari3.2+*/
    -o-box-sizing: border-box; /*Opera9.6*/
    -ms-box-sizing: border-box; /*IE8*/
    /*overflow: hidden;*/
    box-sizing: border-box; /*W3C标准(IE9+，Safari5.1+,Chrome10.0+,Opera10.6+都符合box-sizing的w3c标准语法)*/
    /*黑魔法--居中*/
    /*-webkit-align-items: center;*/
    /*-ms-flex-align: center;*/
    /*align-items: center;*/
    /*display: -webkit-flex;*/
    /*display: flex;*/
}

a {
    text-decoration: none;
    color: #52514f;
}

a:link {
    color: #52514f;
    text-decoration: none;
}

a:visited {
    color: #666666;
    text-decoration: none;
}

a:visited:hover {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #52514f;
}

a:active {
    text-decoration: none;
    color: #000000;
}

a img {
    border: none;
}

li {
    list-style: none;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    color: #555;
    -webkit-appearance:none;
}

input:focus{
    border-color: #4FC3F7;
    outline: none;
    -webkit-appearance: none;
}
textarea:focus{
    border-color: #4FC3F7;
    outline: none;
}
.clear{
    clear: both;
}

.tips_container {
    animation-duration: .4s!important;
}
.tips_container{
    position: fixed;
    font-size: 14px;
    bottom: 80px;
    /* width: 100%; */
    text-align: center;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}
.tips_text{
    color: #fff;
    background: rgba(0,0,0,0.6);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 3px;
}

/*确认取消按钮*/
.confirm_hover{
    background: #333;
    opacity: .5;
    position:fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
}
.confirm_box{
    position:fixed;
    margin:auto;
    left:0;
    right:0;
    top:0;
    bottom:0;
    width:300px;
    height:100px;
    border-radius: 5px;
    background: #fff;
    z-index: 11;
    box-shadow: 2px 2px 10px 2px #777;
    padding: 5px;
}
.confirm_title{
    font-size: 16px;
    height: 50px;
    line-height: 23px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.confirm_bottom_li{
    float: right;
    width: 70px;
    text-align: center;
    color: #777;
    line-height: 40px;
    font-size: 15px;
}
.confirm_bottom_li_sure{
    color: #00c000;
}


/*底部*/
 .container_bottom {
     position: fixed;
     bottom: 0;
     width: 100%;
     background: rgba(0, 0, 0, 0.7);
     height: 60px;
     border-top: 1px solid rgba(255, 255, 255, 0.7);
 }

.bottom_tab {
    width: 50%;
    text-align: center;
    float: left;
    color: #c9c9c9;
    padding: 10px 0;
}

.bottom_tab_span {
    line-height: 38px;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    padding: 0 4px;
    transition: .5s all;
}

.tab_active .bottom_tab_span {
    border-bottom: 2px solid #fff;
    color: #fff;
}


/*删除提示——开始*/
.tip_container{
    opacity: 1;
    display: none;
}
.tip_layer{
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}
.tips_content{
    position: fixed;
    z-index: 5000;
    width: 80%;
    max-width: 300px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
}
.tips_title{
    padding: 24px;
    font-weight: 600;
    font-size: 18px;
}
.tips_message{
    padding: 0 20px 32px;
    line-height: 20px;
    color: #808080;
}
.tips_button{
    border-top: 1px solid #e8e8e8;
    line-height: 48px;
}
.cancel_button{
    float: left;
    width: 49.6%;
    border-right: 1px solid #e8e8e8;
    font-size: 18px;
}
.sure_button{
    float: left;
    width: 50%;
    font-size: 18px;
}
/*删除提示——结束*/

.ui-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ui-flex,
.ui-flex *,
.ui-flex :after,
.ui-flex :before {
    box-sizing: border-box;
}

.ui-flex.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ui-flex.center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.loading_box{
    position: fixed;
    top: 20%;
    width: 100%;
    text-align: center;
    z-index: 1000;
}

/*动画效果3*/
.spinner3 {
    width: 60px;
    height: 60px;

    position: relative;
    margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #f44;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.no_message {
    text-align: center;
    padding-top: 30px;
    color: #999;
}
.iconfont_style {
    font-size: 70px;
}
.no_message_tips {
    font-size: 16px;
    margin-top: 30px;
}
.van-nav-bar .van-icon,.van-nav-bar__text{
    color: #777!important;
}
