* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑";
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-tap-highlight-color: rgba(0, 0, 0, 0);
    -o-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

html.gray {
   -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    _filter: none;
}

body {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding-bottom: 230px;
    position: relative;
    min-width: 1200px;
    background: url(../img/body_bg.png) repeat;
}

[v-cloak] {
    display: none !important;
}

img {
    max-width: 100%;
    border: none;
}

ol,
li {
    list-style: none;
}

a {
    cursor: pointer;
    color: #000;
    text-decoration: none;
    transition: all .2s ease-out 0s;
}

a:hover,
a:active {
    color: #C2103E;
}

.main {
    width: 100%;
    min-height: 500px;
}

.foot {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
}


/*弹出提示*/
.toast {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.toast span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    display: block;
    width: auto;
    height: auto;
    border-radius: 5px;
    line-height: 150%;
    color: #fff;
    padding: 10px 20px;
}

/*分页*/
.pagination {
    width: 100%;
    height: auto;
    padding: 30px 0;
    overflow: hidden;
    text-align: center;
}

.pagination a,
.pagination span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
}

.pagination a {
    display: inline-block;
    width: auto;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #CB2636;
    color: #CB2636;
    margin: 0 3px;
    line-height: 30px;
    text-align: center;
}

.pagination span.active {
    display: inline-block;
    width: auto;
    height: 32px;
    padding: 0 10px;
    border: 1px solid transparent;
    color: #000;
    margin: 0 3px;
    line-height: 30px;
    text-align: center;
}


.backtop {
    position: fixed;
    z-index: 1000;
    bottom: 255px;
    cursor: pointer;
    display: none;
    height:60px;
    width: 60px;
    color: #fff;
    left: 50%;
    margin-left: 634px;
    background-color: #AAAAAA;
}
.backtop img{
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
.backtop:hover .backtext{
    display: block;
}
.backtop .backtext{
    position: absolute;
    font-size: 14px;
    text-align: center;
    height: 60px;
    width: 60px;
    padding: 10px  0 0 0;
    background-color: #AAAAAA;
    top: 0;
    color: #fff;
    display: none;
    transition: ease-in-out  .3s;
}