﻿@charset "utf-8";
/*
* Break.css
* 2020-09-02
* */
@import "break-color.css";
@import "break-size.css";
@import "break-other.css";
.app{
    color:#fff;
    font-size: 12px;
    margin-bottom: 10px;
	background-color: rgba(255,255,255,0.8);
	margin-top: 150px;
}
.app a {
    color: #a1a1a1;
  }
  .app a {
    text-decoration: none;
  }
.app-1{
    flex: 1;
}
.app-header{
    padding-top: 60px;
}
.app-flex{
    display: flex;
    display: -webkit-flex;
}
.app-col{
    flex-direction: column;
}
.app-row{
    flex-direction: row;
}
.app-just-center{
    justify-content: center;
}
.app-just-end{
    justify-content: flex-end;
}
.app-just-around{
    justify-content: space-around;
}
.app-just-between{
    justify-content: space-between;
    
}
.app-just-evenly{
    justify-content:space-evenly;
}
.app-items-center{
    align-items: center;
}
.app-w{
    width:100%;
}
/*????????????*/
#app-toast{
    height: 2rem;
    text-align: center;
    position: fixed;
    top: 50%;
    margin-top: -1rem;
    line-height: 2rem;
    width: 100%;
    z-index:10;
}
#app-toast span{
    color: #fff;
    height: 2rem;
    display: inline-block;
    padding: 0 3rem;
    border-radius: 5px;
}
/*--------------------------------*/
#app-model{
    transition: all 0.3s ease;
    position: fixed;
    left:0;
    width:100%;
    background: rgba(10,10,10,0.58);
    z-index: 99;
}
.app-model-con{
    background: #fff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.app-model-header{
    background: #eeeeee;
    color:#909090;
    font-size: 15px;
    text-align: center;
    padding: 15px 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-bottom: 10px;
}
.app-model-footer{
    margin: 20px 0;
}
.app-model-body{
    margin: 20px 0;
}
.app-model-button{
    border-radius: 5px;
    padding: 12px;
}
.app-model-payPwd{
    text-align: center;
    padding: 5px;
    font-size: 12px;
}
.app-model-select-box{
    overflow-y: auto;
}
.app-model-select{
    margin: 15px;
}
.app-auto::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
.app-auto::-webkit-scrollbar-track {
    border-radius:5px;
}
.app-auto::-webkit-scrollbar-thumb {
    border-radius:5px;
    background:#0ad893;
}
.app-auto::-webkit-scrollbar-thumb:window-inactive {
    background: #bfbfbf;
}
.app-radius{
    border-radius: 0%;
}
img{
    width: 100%;
}