* {
    margin: 0;
    padding: 0;
    font-size: 0.26rem;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

*,
*:before,
*:after {
    max-height: 100000px;
    user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal
}

ul,
ol {
    list-style: none
}

img {
    border: 0;
    vertical-align: middle
}

a {
    text-decoration: none;
    color: #000;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
}

table {
    border-collapse: collapse;
    table-layout: fixed
}

input,
textarea {
    outline: 0;
    border: 0
}

textarea {
    resize: none;
    overflow: auto
}

.left{
    float: left;
}
.right{
    float: right;
}

.clearfix {
    zoom: 1
}

.clearfix:after {
    content: "";
    width: 0;
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    overflow: hidden
}

.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}
.flex{
    display: flex;
}
.flex_c_c{
   display: flex;
   justify-content: center;
   align-items: center;
}
.flex_d_c_c{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.flex_b_c{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex_d_b_c{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.flex_w_c_c{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}