html{
    font-size: 13.333vw;
}
/* boostrap将所有盒模型改为border-box,修复可能导致的一些问题 */
.selector-for-some-widget {
    box-sizing: content-box;
}

/* 清除默认样式 */
* {
    padding: 0;
    margin: 0;
}
body {
    font-family: '微软雅黑';
    background-color: #FFF;
    color: #000;
}
ul li,
ol li {
    list-style: none;
}

a {
    text-decoration: none !important;
    color: #000;
}

button {
    outline: none;
    border: none;
}

img {
    display: block;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    
}
header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.28rem;
    padding: 0 0.2rem;
    margin: 0 auto;
    box-sizing: border-box;
    height: 0.8rem;
    background-color: #9D242B;
    color: #FFF;
}
header .iconfont{
    color: #FFF;
    font-size: 0.28rem;
}
.h-card{
    box-sizing: border-box;
    width: 100%;
    /* padding: 0.2rem 0.3rem; */
    margin: 0.2rem 0;
    background-color: #FFF;
    border-radius: 0.08rem;
    -webkit-border-radius: 0.08rem;
    -moz-border-radius: 0.08rem;
    -ms-border-radius: 0.08rem;
    -o-border-radius: 0.08rem;
    box-shadow: 0 0 0.1rem 0.1rem rgba(204, 204, 204,0.2);
}

.back-to-top {
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 99;
    position: fixed;
    bottom: 90px;
    right: -70px;
    background-color: #9D242B;
    /* display: none; */
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  .back-to-top-active{
    background-color: #9D242B;
    right: 30px;
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
  .back-to-top img{
    display: block;
    height: 20px;
    margin: 0 auto;
    margin-top: 8px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
  .back-to-top:hover {
        background-color: red;
        transform: rotate(-405deg);
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-405deg);
        -ms-transform: rotate(-405deg);
        -o-transform: rotate(-405deg);
        box-shadow: 0 0 8px 1px #ddd;
  }
  .back-to-top:hover img{
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
  }
body{
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    -moz-text-size-adjust: 100% !important;
}