/* 产品列表css */
body {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    min-width: 1200px;
}

/* 头部box */
.header {
    height: .68rem;
    width: 100%;
    background: #FFFFFFFF;
    border-bottom: 2px solid rgba(198, 198, 198, 1);
}

/* logo */
.header-logo {
    height: 100%;
    position: relative;
}

.header-logo img {
    margin-left: 4.6rem;
    width: 2.02rem;
    height: .32rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* 导航 */
.header-nav {
    height: 100%;
    margin-right: 2.82rem;
    line-height: 0rem;
}

.header-nav span {
    margin-right: 1.03rem;
}

.header-nav span a {
    font-size: .18rem;
    color: rgba(96, 96, 96, 1);
    padding-bottom: .14rem;
}

.header-nav span a:hover {
    color: rgba(16, 45, 175, 1);
}


/* 导航激活状态 */
.header-nav-active {
    position: relative;
    color: rgba(16, 45, 175, 1) !important; 
}

.header-nav-active::after{
    content: "";
    position: absolute;
    width: 0.32rem;
    bottom: 0;
    left: 0.2rem;
    height: 2px;
    background:rgba(0,48,255,1);
    border-radius:1px;
}

/* banner */
.banner {
    box-sizing: border-box;
    width: 100%;
    height: 3rem;
    background: url(../image/banner/information_banner.png);
    -ms-background-size: 100% 100%;
    background-size: 100% 100%;
    padding-left: 3.59rem;
    position: relative;
}

.banner::after {
    content: "";
    bottom: 0;
    left: 0;
    height: .1rem;
    width: 100%;
    position: absolute;
    background: #F3F3F3;
}

.banner-title {
    font-size: .42rem;
    font-weight: bold;
    color: rgba(16, 45, 173, 1);
    padding-top: .8rem;
}

.banner-text {
    font-size: .32rem;
    color: rgba(16, 45, 173, 1);
    margin-top: .3rem;
}

/* 资讯列表 */
.information {
    margin: 0 auto;
    width: 12rem;
    height: 7.7rem;
    background: rgba(255, 255, 255, 1);
    padding-top: .35rem;
    padding-bottom: .37rem;
}

.information-listbox{
    width: 12rem;
}

.title {
    font-size: .3rem;
    font-weight: bold;
    color: rgba(16, 45, 173, 1);
    text-align: center;
    position: relative;
}

.information .title {
    margin-bottom: 0.58rem;
}

.information .title::after {
    content: "";
    position: absolute;
    bottom: -.27rem;
    left: 46.5%;
    width: .8rem;
    height: 0.04rem;
    background: rgba(16, 45, 173, 1);
    border-radius: 2px;
}

.information-list {
    width: 5.6rem;
    height: 1.52rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    border: 1px solid rgba(217, 217, 217, 1);
    padding: .14rem;
    margin-bottom: 0.18rem;
    transition: border .5s;
    -moz-transition: border .5s;
    -webkit-transition: border .5s; 
    -o-transition: border .5s; 
}

.information-list:hover {
    border: 1px solid rgba(71, 106, 255, 1) !important;
}

.information-list:nth-child(2n-1) {
    margin-right: .16rem;
}

.information-list-img {
    width: 1.49rem;
    height: 1.49rem;
    border-radius: 4px;
    overflow: hidden;
    transform: all .3s;
    -ms-transform: all .3s;
    -moz-transform: all .3s;
    -webkit-transform: all .3s;
    -o-transform: all .3s;
}

.information-list-img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: transform .3s;
    -moz-transition: transform .3s;
    -webkit-transition: transform .3s;
    -o-transition: transform .3s;
}

.information-list:hover img {
    transform: scale(1.06);
    -ms-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -webkit-transform: scale(1.06);
    -o-transform: scale(1.06);
}

.information-list-content {
    width: 3.74rem;
    margin-top: 0.07rem;
}

.information-list-content-title {
    font-size: .18rem;
    font-weight: bold;
    color: rgba(56, 56, 56, 1);
}

.information-list-content-text {
    text-indent: 0.28rem;
    margin-top: 0.15rem;
    height: .69rem;
    font-size: .14rem;
    line-height: .24rem;
    color: rgba(132, 132, 132, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.information-list-time {
    margin-top: 0.24rem;
    font-size: .14rem;
    color: rgba(77, 77, 77, 1);
    line-height: .12rem;
}

.information-list-last {
    margin-top: .22rem;
    font-size: .14rem;
    color: rgba(45, 67, 179, 1);
    line-height: .12rem;
}

.information-list-last img {
    width: .15rem;
    height: .12rem;
    margin-left: 0.06rem;
}

/* 分页器 */
.paging {
    margin-top: .27rem;
    height: 0.26rem;
    width: 100%;
    text-align: center;
    font-size: 0;
}

.paging-box {
    height: 100%;
    display: inline-block;
}

.paging-left {
    border-top: 2px solid #7E7E7E;
    border-right: 2px solid #7E7E7E;
    width: .12rem;
    height: .12rem;
    transform: rotate(-135deg);
    margin-top: 0.06rem;
    float: left;
    margin-right: 0.27rem;
}

.paging-left:hover {
    border-top: 2px solid #102DAD;
    border-right: 2px solid #102DAD;
}

.paging-right {
    border-top: 2px solid #7E7E7E;
    border-right: 2px solid #7E7E7E;
    width: .12rem;
    height: .12rem;
    transform: rotate(45deg);
    float: left;
    margin-top: 0.06rem;
    margin-left: 0.16rem;
}

.paging-right:hover {
    border-top: 2px solid #102DAD;
    border-right: 2px solid #102DAD;
}

.paging-num {
    width: .26rem;
    height: .26rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 4px;
    font-size: .14rem;
    color: #848484;
    float: left;
    line-height: .26rem;
    text-align: center;
    cursor: pointer;
    margin-right: .12rem;
}

.paging-num-active {
    background: rgba(16, 45, 173, 1) !important;
    color: #fff;
}

/* 底部 */
.footer {
    height: .68rem;
    width: 100%;
    font-size: 0;
    text-align: center;
    background: #5877ff;
}

.footer-content {
    display: inline-block;
    font-size: 0;
    height: 100%;
}

.footer-img-box {
    width: 0.5rem;
    height: 100%;
    float: left;
    margin: 0 auto;
    margin-right: .32rem;
}


.footer-img-box img {
    line-height: .5rem;
    margin-top: 0.1rem;
    width: 0.5rem;
    height: 0.5rem;

}

.footer-text {
    box-sizing: border-box;
    height: 100%;
    margin: 0 auto;
    float: right;
    padding-top: .16rem;
}

.footer-text p {
    font-size: .14rem;
    text-align: left;
    color: rgb(255, 255, 255);
}