/*
 * @Author: fuy
 * @Date: 2020-06-23 10:28:12
 * @LastEditTime: 2020-06-23 15:24:07
 * @LastEditors: fuy
 * @Description: 新闻详情页样式
 * @FilePath: /lihua/css/news-detail.css
 */ 
/* poster */
.poster {
    width: 100%;
    height: 300px;
    background: url(../images/poster-02.png) no-repeat center;
    background-size: cover;
    /* 此处加上-ms前缀，让IE识别 */
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/poster-02.png',sizingMethod='scale')";
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/poster-02.png',sizingMethod='scale');
    /* \9 是 IE的CSS hack,IE9以下识别，不包括IE 9 */
    background: none\9;
    position: relative;
    z-index: 1;
}
/* poster end */
/* position */
.position {
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #f0f0f0;
    margin: 50px 5px;
    background: url(../images/ic-07.png) no-repeat center left;
    background-size: 10px 10px;
    padding-left: 20px;
    font-size: 16px;
    color: #787878;
}
/* position end */
/* cont */
.cont {
    padding: 0 80px;
}

.title {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.title p {
    font-size: 24px;
    color: #333333;
    line-height: 50px;
    text-align: center;
}

.prop {
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
}

.prop span {
    color: #747474;
    font-size: 16px;
    margin: 0 5px;
}

.letter {
    font-size: 16px;
    color: #333333;
    padding: 50px 0;
    line-height: 35px;
}

.letter p {
    margin: 20px 0;
}

.letter img {
    max-width: 100% !important;
}
/* cont end */