html {
    -webkit-touch-callout: none;  /* 禁止长按系统默认菜单 */
    list-style-type:none;
}

body {
    /*防止长按出现阴影*/
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

* {
    -webkit-box-sizing: border-box;
    border: 0;
    padding: 0;
    margin: 0;
}

input,select,textarea,[contenteditable] {
    font-size: 100%;
    outline: none; /* android上防止点击时出现外框 */
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
    font-weight: 500
}

em {
    font-style: normal;
}

.clearfix {
    zoom: 1;
}
.clearfix:before,.clearfix:after{
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
}

a, a:hover, a:visited, a:active {
    text-decoration: none;
    color: inherit;
    /*防止长按出现阴影*/
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

button {
    background: #fff;
    /*防止长按出现阴影*/
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: none; /* android上防止点击时出现外框 */
}

.ellipsis2 {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break:break-all;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bread-word {
    word-wrap:break-word;
}
.flex {
    display: flex;
}
.jcsb {
    justify-content: space-between;
}
.jcc {
    justify-content: center;
}
.jcfs {
    justify-content: flex-start;
}
.jcfe {
    justify-content: flex-end;
}
.aic {
    align-items: center;
}
.aifs {
    align-items: flex-start;
}
.aife {
    align-items: flex-end;
}


.flex-1 {
    flex: 1
}
.flex-0 {
    flex: 0;
}
.flex-25 {
    flex: 0 0 25%;
}
.flex-33 {
    flex: 0 0 33.333333%;
}
.flex-50 {
    flex: 0 0 50%
}

.tac {
    text-align: center;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}

.container {
    padding: .2rem;
}
ul,ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.flex-wrap {
    flex-wrap: wrap;
}
