blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
ol,
p,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #FFFFFF;
    color: #333;
    font-family: "M";
}

* {
    -webkit-overflow-scrolling: touch
}

ul {
    list-style: none
}

a {
    text-decoration: none;
    color: #333;
}

.clear :after {
    clear: both;
    content: '.';
    display: block;
    width: 0;
    height: 0;
    visibility: hidden
}

.border-around-shadow {
    border-radius: .357143rem;
    box-shadow: -1px 0px 1px #d5d5d5,
        /*左边阴影*/
        0px -1px 1px #d5d5d5,
        /*上边阴影*/
        1px 0px 1px #d5d5d5,
        /*右边阴影*/
        0px 1px 1px #d5d5d5;
    /*下边阴影*/
    ;
    -webkit-border-radius: .357143rem;
    -moz-border-radius: .357143rem;
    -ms-border-radius: .357143rem;
    -o-border-radius: .357143rem;
}

.ep-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.4)
}



[v-cloak] {
    display: none;
}

.container{
    display: flex;
    flex-direction: column;
}

/* 超出隐藏类 */
.over-hide {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 使用图片作为a标签的点击按钮时，触发touchstart的时候，去除灰色的背景 */
a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    text-decoration: none;
}