﻿/*信息列表*/
.listText {
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .listText li {
        width: 94%;
        height: auto;
        overflow: hidden;
        margin: 10px auto 10px auto;
        border-bottom: 1px solid #eee;
        transition: all 0.5s;
        padding-bottom: 10px;
        padding: 20px 0 20px 0;
    }

        .listText li:hover {
            box-shadow: 0 0 10px #ccc;
            padding: 20px 2% 20px 2%;
        }
        .listText li .date {
            width: 80px;
            float: left;
            background-color: #eee;
            line-height: 20px;
            padding: 5px 0;
            font-size:18px;
            text-align:center;
            color:#666;
        }
         .listText li .date span{
             font-size:12px;
         }
        .listText li .title {
            float: left;
            height:50px;overflow:hidden;
            line-height:50px;
            font-size:16px;
            color:#000;
            margin: 0 10px;
        }
        .listText li .arrow {
            width: 50px;float:right;
            text-align: center;
            color: #999;
            font-size: 20px;
            line-height: 50px;
        }
/*信息列表*/

/*信息详情*/
.infoShowTitle {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 40px;
    font-size: 36px;
    font-weight: bold;
}

    .infoShowTitle span {
        font-size: 16px;
        color: #b99129;
    }

.infoShowDate {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 40px;
    line-height: 30px;
    color: #999;
}

.infoShowContent {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 30px;
    font-size: 16px;
    margin: 50px auto;
}

    .infoShowContent img {
        max-width: 100%;
        margin: 5px 0;
    }

.infoShowTag {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 40px auto;
    text-align: center;
}

    .infoShowTag img {
        max-width: 100%;
    }

.infoShowLeft {
    width: 26%;
    float: left;
    padding: 20px 2%;
    box-shadow: 0 0 10px #eee;
    margin: 10px 4% 10px 1%;
    transition: all 0.5s;
}

    .infoShowLeft:hover {
        box-shadow: 0 0 10px #ccc;
    }

.infoShowPhoto {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
}

    .infoShowPhoto img {
        max-width: 100%;
    }

.infoShowContact {
    width: 100%;
    margin-top: 10px;
}

    .infoShowContact li {
        width: 100%;
        height: 30px;
        line-height: 30px;
        font-size: 15px;
        text-indent: 40px;
    }

.infoShowRight {
    width: 65%;
    float: left;
}

.infoShowSubTitle {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #b99129;
    font-weight: bold;
}
/*信息详情*/

@media(max-width:720px){
    /*信息列表*/
            .listText li .date {
                width: 18%;
                float: left;
                background-color: #eee;
                line-height: 20px;
                padding: 5px 0;
                font-size: 18px;
                text-align: center;
                color: #666;
            }

                .listText li .date span {
                    font-size: 12px;
                }

            .listText li .title {
                width:70%;
                float: left;
                height: 50px;
                overflow: hidden;
                line-height: 50px;
                font-size: 16px;
                color: #000;
                margin: 0 2%;
            }

            .listText li .arrow {
                width: 8%;
                float: right;
                text-align: center;
                color: #999;
                font-size: 20px;
                line-height: 50px;
            }
    /*信息列表*/

}