﻿/*信息列表*/
.listText {
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .listText li {
        width: 92%;
        height: auto;
        overflow: hidden;
        margin: 30px auto;
        transition: all 0.5s;
        padding-bottom: 10px;
        padding: 20px 2%;
        box-shadow: 0 0 10px #eee;
        border-radius: 10px;
    }

        .listText li:hover {
            box-shadow: 0 0 10px #ccc;
            padding: 20px 3% 20px 3%;
        }

    .listText li h2 {
        width: 100%;
        height: auto;
        overflow: hidden;
        line-height: 40px;
        font-size: 18px;
    }

    .listText li h3 {
        width: 100%;
        height: 50px;
        overflow: hidden;
        line-height: 25px;
        font-size: 12px;
        color: #999;
    }

.listPic {
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .listPic li {
        width: 21%;
        display: inline-block;
        height: auto;
        overflow: hidden;
        margin: 20px 1%;
        box-shadow: 0 0 10px #eee;
        transition: all 0.5s;
        border-radius: 10px;
    }

        .listPic li:hover {
            box-shadow: 0 0 10px #ccc;
        }
        .listPic li:hover div img{
            transform: scale(1.1);
        }

        .listPic li div {
            width: 100%;
            height: auto;
            overflow: hidden;
        }

            .listPic li div img {
                width: 100%;
                height: 220px;
                transition: all 0.5s;
            }

        .listPic li h2 {
            width: 100%;
            height: 40px;
            line-height: 40px;
            overflow: hidden;
            text-align: center;
        }
/*信息列表*/

/*信息详情*/
.infoShowTitle {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 40px;
    font-size: 36px;
    font-weight: bold;
}

.infoShowDate {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 40px;
    line-height: 30px;
    color: #999;
    margin:20px auto;
}
.infoShowContent {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 30px;
    font-size: 16px;
    margin: 50px auto;
}

    .infoShowContent img {
        max-width: 100%;
        margin: 5px 0;
    }

.infoShowPage {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 20px auto;
    border-top:1px solid #eee;
    padding-top: 10px;
}

    .infoShowPage li {
        width:50%;float: left;
        line-height: 30px;
        color:#999;
    }
    .infoShowPage li a {
        color: #666;
    }
    .infoShowPage li a:hover{
        color: #d50100
    }
/*信息详情*/

@media(max-width:768px){
/*信息列表*/
.listText {
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .listText li {
        width: 90%;
        padding: 20px 3%;
    }

.listPic {
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .listPic li {
        width: 45%;
        margin: 20px 2%;
    }
    .listPic li div img {
        height: 180px;
    }
/*信息列表*/

/*信息详情*/
    .infoShowPage li {
        width:100%;
    }
/*信息详情*/

}