html{
    font-family: PingFangSC-Semibold;
    color: #333333;
}
/* rem 适配基准：1rem=100px@1920；1920 及以下保持 100px（不缩小），高于 1920 等比放大（4K=200px）。
   用 CSS 设置根字号，保证静态化页面（无 JS 注入）也能正确还原 rem 尺寸。 */
html{
    font-size: max(calc(100vw / 19.2), 100px);
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #2080fb;
}
.d-f{
    display: flex;
}
.jc-sb{
    justify-content: space-between;
}
.ai-c{
    align-items: center;
}
.p-r{
    position: relative;
}
.p-a{
    position: absolute;
}
.m-0a{
    margin: 0 auto;
}
.ml-10{
    margin-left: 0.1rem;
}
.ml-20{
    margin-left: 0.2rem;
}
.mt-10{
    margin-top: 0.1rem;
}
.mt-20{
    margin-top: 0.2rem;
}
.mt-15{
    margin-top: 0.15rem;
}
.ta-c{
    text-align: center;
}
.ta-r{
    text-align: right;
}
.bgc-f{
    background: #fff;
}
.c-f{
    color: #fff;
}
.fs-10{
    font-size: 0.1rem;
}
.fs-12{
    font-size: 0.12rem;
}
.fs-14{
    font-size: 0.14rem;
}
.fs-18{
    font-size: 0.18rem;
}
.fs-20{
    font-size: 0.2rem;
}
.fs-24{
    font-size: 0.24rem;
}
.fs-26{
    font-size: 0.26rem;
}
.c-p{
    cursor: pointer;
}

.tit2 {
    border-bottom: 0.02rem solid #be2d25;
    height: 0.3rem;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#ededed));
    background-image: -webkit-linear-gradient(bottom, #fff, #ededed);
    background-image: -o-linear-gradient(bottom, #fff, #ededed);
    background-image: linear-gradient(to top, #fff, #ededed); }
.tit2 h4 {
    float: left;
    color: #000;
    font-size: 0.14rem; }
.tit2 .more {
    float: right;
    color: #747474; }
.tit2 .more:hover {
    color: #f00; }

/* 单行截断 */
.single-line{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tt1{
    float: left;
}

/*newsList.html*/
.newsList li {
    width: 95%;
    padding-left: 0.05rem;
    float: left;
    border-bottom: 0.01rem solid #ddd;
    line-height: 100%;
    position: relative; }
.newsList li:hover {
    background-color: #eee; }
.newsList li:hover a {
    color: #f00; }
.newsList li a {
    width: 85%;
    font-size: 0.14rem;
    height: 0.6rem;
    line-height: 0.6rem;
    display: block;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    float: left; }
.newsList li span {
    position: absolute;
    right: 0.03rem;
    top: 0px;
    color: #999;
    font-size: 0.12rem;
    height: 0.6rem;
    line-height: 0.6rem; }

