@charset "utf-8";


:root{
    --main-text-color:#333333;
    --primary-text-color:#5BB53C;
    --btn-text-color:#185AB2;
    --main-bg-color:#5BB53C;
}


html,body,a,button,div,dl,dt,dd,form,h1,h2,h3,h4,h5,h6,input,img,li,label,ol,p,span,table,thead,tbody,tfoot,th,td,tr,ul,li{padding: 0px;margin: 0px;}
ol,ul,li{list-style: none;}
a{text-decoration: none;}
button{border-style: none;background-color: transparent;cursor: pointer;}
input,button{outline: none;border-radius: none}
html,body{font-size: 16px;font-family: "微软雅黑";overflow-x:hidden;color: var(--main-text-color);}

/* 去除按钮点击背景颜色 */
a,a:active,a:focus{
    -webkit-tap-highlight-color: transparent;
}
button,button:active,button:focus{
    -webkit-tap-highlight-color: transparent;
}
/*--------布局--------*/
.view-section{
    position: relative;
    max-width: 750px;
    margin: auto;
    
}


.loading-div{
    z-index: 50;
    position: fixed;
    left: 50%;
    top: 0;
    width: 100%;
    max-width: 750px;
    height: 100%;
    padding-top: 30%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
}



@media screen and (min-width: 750px){
    
}

.bg{
    display: none;
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hide{
    display: none
}



/* 弹出模板 */
.pop-tpl{
    /* display: none; */
    z-index: 15;position: fixed;
    left: 50%;top: 0;
    width: 100%;
    height: 100%;
    max-width: 750px;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
}
.pop-tpl-content{
    box-sizing: border-box;
    z-index: 10;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);
    width: 80%;
    padding: 0.75rem;
    background-color: #fff;
    color: #333;
    border-radius: 6px;
}
.pop-tpl-text{
    font-size: 0.8rem;
    color: #333;
    text-align: center;
}
.pop-tpl-btn-div{
    padding-top: 2rem;
    text-align: center;
}
.pop-tpl-btn-div>button{
    display: inline-block;
    padding: 0 1rem;
    /* height: 1.8rem; */
    line-height: 1.8rem;
    font-size: 0.7rem;
    color: #666;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #aaa;
}
.pop-tpl-btn-div>button+button{
    margin-left: 1rem;
}
.pop-tpl-btn-div>button.confirm-btn{
    
    color: #fff;
    background-color: var(--primary-text-color);
    border-color: var(--primary-text-color);
}