/* 元素 */
html,body{
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #EEEEEE;
    overflow: scroll;
}
a{
    text-decoration: none;
}
div{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}
/* 容器 */
.container{
    min-height: 100%;
    max-width: 820px;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
}
*[v-cloak]{
    display: none;
}
/* 标题 */
.title{
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    flex-shrink: 0;
    border-bottom: 0 solid #d6d6d6;
}
.title .btn{
    display: flex;
    width: 38px;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.title .btn .icon{
    height: 50%;
}
.title .text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
/* ELEMENT */
.el-message-box{
    max-width: 90%;
}