@charset "UTF-8";
/*(1)清除默认样式*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: 0;
    -webkit-tap-highlight-color: transparent
}


body {
    font-size: 14px;
    line-height: 22px;
    overflow-x: hidden;
    max-width: 750px;
    margin: 0 auto;
    color: #222222;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    font-family:'Microsoft YaHei',Arial, Helvetica, sans-serif;
}


html,
body {
    height: 100%;
    width: 100%;
    position: relative;
}


html {
    font-size: 50px;
}


h1,h2,h3,h4,h5,h6,div{
    font-size: 100%;
    font-weight: normal;
}



/* 设置HTML5元素为块 */
article, aside, details,figcaption,figure,footer,header,hgroup, menu,nav,section,main{
    display: block;   
}



/*去掉input等聚焦时的蓝色边框*/
fieldset,
input,
button,
textarea{
    border: 0 none;
    padding: 0;
    margin: 0;
    outline-style: none;
    font-size: 14px
}
textarea {
    resize: none;
}



table {
    border-spacing: 0;
    border-collapse: collapse
}

td,th {
    padding: 0
}




b,strong {
    font-weight: 700
}
em,i {
    font-style: normal
}


img {
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    height: auto;
}



select,
input {
    vertical-align: middle;
}

input.fixAKeyboard:focus,textarea.fixAndroidKeyboard:focus {
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    -webkit-user-modify: read-write-plaintext-only
}

 

ul,
li,
ol {
    list-style: none;
}


a{
    text-decoration: none;
    color: #000;
}




/* 清除浮动 */
.clearfix::after {
    content: "";
    clear: both;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
}

.fl {
    float: left
}

.fr {
    float: right
}

.hidden {
    display: none
}

/* 清除苹果input默认样式 */
input[type=text],input[type=button], input[type=submit], input[type=file], button { cursor: pointer; -webkit-appearance: none; border-radius: 0}
textarea { -webkit-appearance: none;border-radius: 0}
select{  appearance:none;
        -moz-appearance:none;
        -webkit-appearance:none;
        border-radius: 0
}

.flex{ 
display:-webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}

.flex-b{
    display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content:space-between;
    justify-content:space-between;
    -moz-box-pack:space-between;
    -webkit-moz-box-pack:space-between;
    box-pack:space-between;
   
}

.border-box{
    -moz-box-sizing: border-box;  
     -webkit-box-sizing: border-box; 
     -o-box-sizing: border-box; 
     -ms-box-sizing: border-box; 
     box-sizing: border-box; 
}

.block{
    display: block;
    width: 100%;
    height: 100%;
}
.ellipsis{
    overflow: hidden; /*自动隐藏文字*/
    text-overflow: ellipsis;/*文字隐藏后添加省略号*/
    white-space: nowrap;/*强制不换行*/
}
.ellipsis2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



@font-face{
    font-family: 'myfont'; 
    src:url('../font/font.TTF')
     
}

