html{
    font-size: 50px;
}
body{
    color: #333;
    /*font-family:"Microsoft Yahei","PingFang SC";*/
    font-family: -apple-system, SF UI Text, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: .28rem;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, figure, header, footer ,
dl, dt, dd, ul, ol, li,
fieldset, lengend, button, input, textarea ,
th, td,
pre, section, div, span ,label{
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
    word-break: break-all;
}
ul, ol, menu, section, footer, form{
    padding: 0;
    box-sizing: border-box;
}
ul, ol ,li{
    list-style: none;
}
img {
    border: 0;
}
address, cite, dfn, em, var {
    font-style: normal;
}
a {
    text-decoration: none;
    color: black;
}
.clear:after {
    content: '';
    display: block;
    clear: both;
}
input,textarea{
    outline: none;
    border: none;
    font-size: .28rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family:inherit;
    font-weight:400;
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
    color:#999
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.5) inset !important;
    -moz-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.5) inset !important;
    -ms-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.5) inset !important;
    -o-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.5) inset !important;
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.5) inset !important;
}
input[type="search"]{
    appearance: none;
    -webkit-appearance: none;
}
input::-webkit-search-cancel-button{
    display: none;
}
.border:after{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-image: -webkit-linear-gradient(0deg, transparent 50%, #e0e0e0 50%);
    background-image: -moz-linear-gradient(0deg, transparent 50%, #e0e0e0 50%);
    background-image: -ms-linear-gradient(0deg, transparent 50%, #e0e0e0 50%);
    background-image: -o-linear-gradient(0deg, transparent 50%, #e0e0e0 50%);
    background-image: linear-gradient(0deg, transparent 50%, #e0e0e0 50%);
}
.border-none{
    border: none!important;
}
.color-gray{
    color: #999999;
}
.color-red{
    color: #e84659;
}
.text-center{
    text-align: center;
}
.text-ellipsis{
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.toast{
    -webkit-transition-property: opacity,-webkit-transform;
    transition-property: opacity,-webkit-transform;
    transition-property: transform,opacity;
    transition-property: transform,opacity,-webkit-transform;
    position: fixed;
    max-width: 568px;
    z-index: 20000;
    color: #fff;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition-duration: 450ms;
    background: rgba(0,0,0,.75);
    top: 50%;
    opacity: 0;
    width: auto;
    left: 50%;
    border-radius: 8px;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    padding: 12px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.toast-show{
    opacity: 1;
}
/* 版心 */
.center{
    min-width: 1200px;
    margin: 0 auto;
}
.margin-right0{
    margin-right: 0;
    
}
video{
    object-fit:fill;
}