.mod-list .hd{
    position: relative;
    height: 40px;
    padding: 0 15px;
    background: #f8f8f8;
    border-top: 4px solid #e3007a;
    border-bottom: 1px solid #f0f0f0;
    line-height: 40px;
}
.mod-list .hd .title{
    display: inline-block;
    width: 75%;
    font-size: 18px;
    font-weight: bold;
}
.mod-list .hd .title strong{
    font-weight: bold;
    color: #fd6600;
}
.mod-list .bd{
    overflow: hidden;
}
.mod-list .post{
    position: relative;
    bottom: -1px;
    padding: 15px 10px;
    border-bottom: 1px dashed #e8e8e8;
    overflow: hidden;
}
.mod-list .post .c-hd{
    padding: 10px 0;
    line-height: 24px;
    font-size: 18px;
}
.mod-list .post:hover .c-hd a{
    color: #4bc061;
}
.mod-list .post .c-bd{
    margin-bottom: 5px;
    overflow: hidden;
}
.mod-list .post .picture{
    float: left;
    width: 240px;
    height: 135px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}
.mod-list .post .picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.mod-list .post .picture:hover img {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.mod-list .post .info{
    margin-left: 260px;
}
.mod-list .post .info p.summary{
    line-height: 24px;
    color: #666;
}
.mod-list .post .c-ft{
    color: #666;
}
.mod-list .post .c-ft span,.mod-list .post .c-ft time{
    margin-right: 15px;
}
.mod-list .post .c-ft .author{
    display: inline-block;
    padding-left: 20px;
    background: url('../image/icon-person.png') left center no-repeat;
    background-size: 16px 16px;
}
.mod-list .post .c-ft .date{
    display: inline-block;
    padding-left: 20px;
    background: url('../image/icon-time.png') left center no-repeat;
    background-size: 16px 16px;
}
.mod-list .post .c-ft .view{
    display: inline-block;
    padding-left: 20px;
    background: url('../image/icon-view.png') left center no-repeat;
    background-size: 16px 16px;
}
.mod-list .post .c-ft .tag{
    float: right;
    margin-right: 0;
}
.mod-list .post .c-ft .tag a{
    display: inline-block;
    padding: 0 10px;
    background: #f5f5f5;
    line-height: 24px;
    white-space: nowrap;
    font-size: 13px;
    border-radius: 3px;
}
.mod-list .pagination{
    padding: 25px 0;
    text-align: center;
}
.mod-list .pagination li{
    display: inline-block;
    margin: 0 2px;
}
.mod-list .pagination li span,.mod-list .pagination li a{
    display: block;
    min-width: 12px;
    height: 32px;
    padding: 0 10px;
    background: #f5f5f5;
    line-height: 32px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    color: #666;
}
.mod-list .pagination li.thisclass span,.mod-list .pagination li.thisclass a{
    background: #4bc061;
    color: #fff;
}
.mod-list .pagination li span.none{
    background: none;
}

.mod-post .hd{
    position: relative;
    padding: 0 15px;
    background: #f8f8f8;
    line-height: 40px;
}
.mod-post .hd::after{
    position: absolute;
    left: 4px;
    top: 50%;
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    margin-top: -12px;
    background: #fc9000;
    border-radius: 2px;
}
.mod-post .hd .title{
    font-size: 18px;
    font-weight: bold;
}
.mod-post .bd{
    padding: 10px 0;
}
.mod-post .bd li{
    line-height: 30px;
}
.mod-post .bd li .date{
    float: right;
    color: #999;
}
.mod-post .bd li a{
    display: block;
    margin-right: 60px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.mod-post .bd li a:hover{
    text-decoration: underline;
    color: #4bc061;
}
.mod-post .item-picture{
    position: relative;
    height: 160px;
    margin-bottom: 10px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}
.mod-post .item-picture .picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.mod-post .item-picture .picture:hover img {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.mod-post .item-picture .title{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    line-height: 36px;
}
.mod-post .item-picture .title a{
    display: block;
    padding: 0 15px;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mod-tags{
    border: 2px solid #ff8169;
    border-radius: 8px;
}
.mod-tags .hd{
    height: 36px;
    background: #ff8169;
    line-height: 36px;
    padding: 5px 12px;
}
.mod-tags .hd .title{
    position: relative;
    display: inline-block;
    height: 36px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    line-height: 36px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}
.mod-tags .hd .title a{
    color: #fff;
}
.mod-tags .bd{
    padding: 15px 0 15px 10px;
    line-height: 26px;
    border-radius: 6px;
}
.mod-tags .tag{
    margin: 0 2px;
    white-space: nowrap;
}
.mod-tags .tag:hover{
    text-decoration: underline;
}


@media screen and (max-width: 1020px){
    .mod-list .hd{
        margin: 0 -10px;
        height: 36px;
        line-height: 36px;
    }
    .mod-list .hd .title{
        font-size: 16px;
    }
    .mod-list .post{
        padding: 5px;
    }
    .mod-list .post .c-hd{
        padding: 5px 0;
        font-size: 16px;
    }
    .mod-list .post .picture{
        width: 120px;
        height: 68px;
        margin-top: 5px;
        margin-right: 15px;
    }
    .mod-list .post .info{
        float: none;
        margin-left: 0;
    }
    .mod-list .post .info p.title{
        line-height: 24px;
        font-size: 14px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .mod-list .post .info p.summary{
        line-height: 20px;
        font-size: 13px;
    }
    .mod-list .post .c-ft{
        line-height: 24px;
        font-size: 12px;
    }
    .mod-list .post .c-ft .tag{
        float: none;
        display: block;
        width: auto;
    }
    .mod-list .pagination{
        padding: 20px 0;
    }
    .mod-list .pagination li{
        margin: 0;
    }
    .mod-list .pagination li span, .mod-list .pagination li a{
        height: 28px;
        padding: 0 8px;
        line-height: 28px;
        font-size: 15px;
    }

    .mod-post .hd .title{
        font-size: 16px;
    }
    .mod-post .bd li{
        line-height: 28px;
    }

    .mod-tags .hd{
        padding: 0 12px;
    }
    .mod-tags .hd .title{
        font-size: 16px;
    }
}