@charset "utf-8";
/* CSS Document */

.main {
    padding: .2rem 0;
}

.content {
    width: 95%;
    margin: .3rem auto;
    background-color: #fff;
    border-radius: .2rem;
}
.content .cont {
    width: 96%;
    margin: 0 auto;
}
.content .cont h3{
    text-align: center;
    font-size: .4rem;
    font-weight: bold;
    padding-top: .4rem;
    
}
.content .cont  h5{
    text-align: center;
    margin-top: .2rem;
    color: #7a7a7a;
    font-size: .38rem;
}
.content .cont .article img{
    max-width: 90%;
    display: block;
    height: auto;
    margin: .3rem auto;

}
.content .cont .art-info {
    width: 100%;
    padding-bottom: .1rem;
    margin: .2rem auto;
    font-size: .25rem;
    color: #666;
    text-align: center;
    position: relative;
}
.content .cont .art-info span.time {
    margin: 0 .5rem;
}
.content .cont .article p{
    width: 95%;
    margin: .2rem auto;
    line-height: .6rem;
}

.fj {
    margin: .5rem auto;
    width: 95%;
}
.fj a {
    color: rgb(0,138,235);
    margin-left: .2rem;
}

.shareIcon {
    display: inline-block;
    float: right;
    margin-bottom: .3rem;
}

/* 图片放大 */
.bigImg {
    position: absolute;
    top: 50%;
    left: 50%;
    /*图片向左移动自身宽度的50%, 向上移动自身高度的50%。*/
    transform: translate(-50%, -50%);
    width: 100%;
}

/*遮罩层*/
.opacityBottom {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0);
    z-index: 1000;
    top: 0;
    left: 0;
}