html,body {
    width: 100%;
    height: 100%;
    background-color: #fff;
}
body {
    margin: 0;
    padding: 0;
    font-size: .28rem;
    font-weight: 300;
    line-height: 1;
    font-family: PingFangSC-Regular, sans-serif, -apple-system, HelveticaNeue, Arial, "Microsoft YaHei";
}
ul,h1,h2,h3,h4,h5,h6,p,input,form,dl,dt,dd,span,i,img,header,nav,a,li,em,font,b,div,textarea,button,select,figure,
figcaption,dialog,menu,menuitem,progress,meter,details,aside,header,main,footer,ol,label{
    margin: 0;
    padding: 0;
    /*取消手指按下时出现的黑色遮罩层*/
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    -webkit-touch-callout: none;
}
input,button,select,textarea {
    border: 0;
    border-radius: 0;
    /*解决IOS下表单元素圆角问题*/
   -webkit-appearance: none;
   outline: 0!important;
   font-size: 0.28rem;
   font-weight: 300;
   font-family: PingFangSC-Regular, sans-serif, -apple-system, HelveticaNeue, Arial, "Microsoft YaHei";
}
input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {  
    -webkit-text-fill-color: #333!important;  
    -webkit-box-shadow: 0 0 0px 1000px transparent  inset !important;  
    background-color:transparent;  
    background-image: none;  
     transition: background-color 50000s ease-in-out 0s;
}  
input {  
    background-color:transparent;
}
input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textare {
    border-radius: 0px;
    margin-bottom: 0;
}
input::-webkit-input-placeholder{
    color: #ccc;
}
input::-moz-placeholder{
    color: #ccc;
}
textarea {
    resize: none;
}
img {
    border: 0;
    vertical-align: middle;
}
i,em {
    font-style: normal;
}
a,i,em {
    /*取消手指按下时出现的黑色遮罩层*/
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    -webkit-touch-callout: none;
}
a {
    text-decoration: none;
}
a:active, a:hover {
    outline-width: 0;
}
li {
    list-style: none;
}
h1,h2,h3,h4,h5,h6,b {
    font-weight: normal;
}
hr {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    height: 0;
    overflow: visible;
}
/* 隐藏搜索框取消按钮 */
::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clear{
    zoom: 1;
}
.clear:after{
    content: '';
    display: block;
    clear: both;
}
/* 防止vue、angular渲染出现闪烁 */
[v-cloak] {
    display: none;
}
[ng:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak,
.ng-hide:not(.ng-hide-animate) {
    display: none;
}
ng:form {
    display: block;
}
.cutstr2 {
    /*超出两行使用...表示*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cutstr1 {
    /*超出一行使用...表示*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
