﻿html,
body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
table,
td,
img,
dl,
dt,
dd,
iframe,
span {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

button,
input,
audio {
    outline: none;
    border: 0;
}

body {
    padding: 0px !important;
    margin: 0px !important;
    zoom: 100%;
    line-height: 1;
    font-family: "microsoft yahei", "微软雅黑", "黑体";
}

ul,
dl,
dt,
dd,
ol {
    list-style-type: none;
}

select,
input {
    vertical-align: middle;
}

a {
    color: #3b3b3b;
    text-decoration: none;
}

* html .clear {
    zoom: 1;
}

*+html .clear {
    zoom: 1;
}

em {
    font-style: normal;
}

i {
    font-style: normal;
}

* {
    margin: auto;
    padding: auto;
}

.r {
    float: right;
}

.l {
    float: left;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
    /*IE/7/6*/
}

html {
    /* max-width: 7.5rem; */
    /*设计图为1080时可以改成1080，适配大屏iPad*/
    min-width: 3.2rem;
    overflow-x: hidden;
    background: #f0eff5;
    margin: 0 auto;
}

.container_mobile {
    width: 6.9rem;
    margin: 0 auto;
}


/*通用头部、尾部、检索等公用代码*/


/*移动端下拉加载代码*/

.dropload-up,
.dropload-down {
    position: relative;
    height: 0;
    overflow: hidden;
    font-size: 0.26rem;
    color: #999999;
    /* 开启硬件加速 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.dropload-down {
    height: 50px;
}

.dropload-refresh,
.dropload-update,
.dropload-load,
.dropload-noData {
    height: 0.72rem;
    line-height: 0.72rem;
    text-align: center;
}

.dropload-load .loading {
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    margin: 6px;
    border: 2px solid #666;
    border-bottom-color: transparent;
    vertical-align: middle;
    -webkit-animation: rotate 0.75s linear infinite;
    animation: rotate 0.75s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}