﻿.information {
    font-family: PingFang SC;
    color: #333;
    width: 110rem;
    margin: 0 auto;
    padding: 5.31rem 0 9.62rem 0;
}

.information .information-nav {
    display: flex;
    padding: 0 0 5.44rem 0;
}

.information .information-nav a {
    width: 5.63rem;
    height: 2.25rem;
    border: 1px solid #707070;
    border-radius: 1.56rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0 0.94rem 0 0;
}

.information .information-nav .active {
    background: #0d0bd4;
    color: #fff;
    border: 1px #0d0bd4 solid;
}

.information .information-nav a:hover {
    background: #0d0bd4;
    color: #fff;
    border: 1px #0d0bd4 solid;
}

.information .information-list {
    display: flex;
    flex-wrap: wrap;
}

.information .information-list a:nth-of-type(3n) {
    margin: 0 0 3.75rem 0;
}

.information .information-list a {
    display: block;
    width: 33.375rem;
    margin: 0 4.687rem 3.75rem 0;
}

.information .information-list a:hover i{
    color: #0d0bd4;
}

.information .information-list a img {
    width: 100%;
    height: 18.75rem;
}

.information .information-list a div{
    position: absolute;
    width: 33.375rem;
    height: 18.75rem;
    transition: .5s;
    background: rgba(0,0,0,0);
}

.information .information-list a:hover div{
    background: rgba(0,0,0,0.4);
}

.information .information-list a h4 {
    font-size: 1.5rem;
    font-family: PIngFang SC;
    font-weight: bold;
    line-height: 2.06rem;
    margin: 1.25rem 0 0.875rem 0;
}

.information .information-list a span {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-family: Futra;
    font-weight: 500;
    color: #999;
}

.information .information-list a i {
    font-size: 0.875rem;
    margin: 0 0 0 1rem;
    color: #333333;
    transition: .3s;
}

.information .data-page #page{
    display: flex;
    justify-content: center;align-items: center;
}

.information .data-page a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: #0d0bd4 1px solid;
    margin: 10px;
    transition: .3s;
    color: #0d0bd4;
}

.information .data-page .selected,
.information .data-page a:hover
{
    background: #0d0bd4;
    color: #fff;
}

.information .data-page a:first-of-type,
.information .data-page a:nth-of-type(7),
.information .data-page a:last-of-type{
    border: 0px;
    width: auto;
    height: auto;
}

@media screen and (max-width:1280px) {
    .information .information-nav a {
        width: 6.63rem;
    }
}

@media screen and (max-width:800px) {
    .information {
        width: 96%;
    }
    .information-nav {
        width: 100%;
        flex-wrap: wrap;
        padding-bottom: 2.4rem;
    }
    .information .information-nav a {
        width: auto;
        padding: 8px 20px;
        border-radius: 25px;
        margin: 0 0.5% .9rem 0.5%;
        height: auto;
        font-size: 1.5rem;
    }
    .information .information-list {
        justify-content: space-between;
    }
    .information .information-list a {
        width: 49%;
        margin: 0 0 4rem 0;
        overflow: hidden;
    }
    .information .information-list a img {
        height: auto;
    }
    .information .data-page a{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border: #0d0bd4 1px solid;
        margin: 10px 4px;
        transition: .3s;
        font-size:12px;
    }
    .information .information-list a div{
        width: 0;
    }
    .information .information-list a:hover div{
        /* display: none; */
        width: 0px;
        float: left;
    }
    .information .information-list a span{
        font-size: 12px;
    }
    .information .information-list a h4{
        overflow: hidden;      
  text-overflow: ellipsis;      
  display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */      
  -webkit-line-clamp: 2; /* 控制最多显示几行 */      
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式 */  
    }
}