html,
body,
header,
section,
footer,
div,
ul,
ol,
li,
img,
a,
span,
em,
del,
legend,
center,
strong,
var,
fieldset,
form,
label,
dl,
dt,
dd,
cite,
input,
hr,
time,
mark,
code,
figcaption,
figure,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    border: 0;
    padding: 0;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
}
html,
body {
    width: 100%;
    height:100%;
    color: #333;
    font-family: "微软雅黑", "arial",PingFangSC-Regular, PingFang SC;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    background-color: #fff;
    box-sizing: border-box;
    -webkit-overflow-scrolling:touch;
}

body {
    margin: 0 auto;
}

td,
th {
    padding: 0;
}

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

a,
a:visited {
    text-decoration: none;
}
a:focus,input:focus{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
div{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
ul {
    list-style: none;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.hide,
.none {
    display: none;
}

.hidden {
    overflow: hidden;
}
input::-webkit-input-placeholder { /* WebKit browsers 适配谷歌 */
    color: #fff;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #fff;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ 适配火狐 */
    color: #fff;
}
input:-ms-input-placeholder { /* Internet Explorer 10+  适配ie*/
    color: #fff;
}
input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.one-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.two-text {
    text-overflow: ellipsis;
    display: -webkit-box;
    box-orient: vertical;
    /*! autoprefixer:off */
    -webkit-box-orient: vertical;
     /* autoprefixer:on */
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.thr-text {
    text-overflow: ellipsis;
    display: -webkit-box;
   /*! autoprefixer:off */
    -webkit-box-orient: vertical;
     /* autoprefixer:on */
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.img>img {
    width: 100%;
}
/*使用vw的polyfill解决方案会在用到的vw的地方添加content，会影响到img和伪元素，需要全局添加*/
img {
    content: normal !important;
}
.font-w{
    font-weight: 500;
}
.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.row {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.column {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
/* 水平居中 */
.f-center {
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}
/* 水平左右对齐 */
.f-between {
    -webkit-box-pack: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
/* 水平居中对齐 */
.f-around {
    -webkit-box-pack: space-around;
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
/* 上下居中 */
.f-align {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}
/* 换行显示 */
.f-wrap{
    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
}

/* 占位图 */
.mod-skeleton .mod-skeleton-item{
    background-color:#eee;
    border-radius: 4px;
}
.animation-opacity{
    animation: 1.5s opacitys infinite;
}
@keyframes opacitys{
    0%{
        opacity: 0.5;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0.5;
    }
}
/* 占位图 */
.mod-skeleton .mod-skeleton-item{
    background-color:#eee;
    border-radius: 4px;
}
.animation-opacity{
    animation: 1.5s opacitys infinite;
}
@keyframes opacitys{
    0%{
        opacity: 0.5;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0.5;
    }
}
/* 全局变量 */
:root{
   --bgColor : #eee; 
   --themeColor:#7e1a20; 
   --pageBgColor:#fff; 
   --pagethemeColor:#333; 
}