body {
    /* height: 2000px; */
    background-color: #f3f3f3;
    /* background-color: #333; */
}

@font-face {
    font-family: 'cuyouyuan';
    src: url('../fonts/JiZiJingDianCuYuanJianFan-Shan\(GEETYPE-CuYuanGBT-Flash\)-2.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'comforta';
    src: url('../fonts/Comfortaa-Bold-2.ttf'), url('../fonts/Comfortaa-Light-3.ttf'), url('../fonts/Comfortaa-Regular-1.ttf');
}

.container {
    width: 100%;
}

@media (max-width:768px) {
    .col-xs-12 {
        padding: 0;
    }
}


/* 文章基本信息 用户信息 */

.title {
    text-align: center;
    font-size: .7rem;
    font-family: 'comforta';
    margin-bottom: .15rem;
}

.subtitle {
    text-align: center;
    font-size: .28rem;
    font-weight: 400;
    font-family: 'comforta';
}

.info {
    padding: 0 .3rem;
    margin-bottom: .3rem;
    font-family: 'comforta';
}

.info .head {
    float: left;
    display: block;
    height: 0.7rem;
    width: 0.7rem;
    border-radius: 1rem;
    background: url('../img/defaultheader.jpg') no-repeat center;
    background-size: cover!important;
    margin-left: .2rem;
}

.info .uname {
    float: left;
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: .4rem;
    margin-left: .2rem;
}

.info .date {
    float: right;
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: .4rem;
    margin-right: .2rem;
}

.text-body {
    padding: .2rem;
}

.text-content {
    font-size: .36rem;
    font-family: 'comforta';
    padding: 0 .3rem;
    margin-bottom: .3rem;
}


/* 瀑布流 */

.img-div {
    width: 100%;
}

.img-div ul {
    width: 98%;
    column-count: 2;
    column-gap: 0.3rem;
    margin: 0 auto 0;
}

.img-div ul li {
    overflow: hidden;
    margin-bottom: .3rem;
    border-radius: .1333rem;
    background-color: #fff;
    break-inside: avoid;
}

.img-ul img {
    width: 100%;
}


/* 图片适配 320- */

@media screen and (min-width: 320px) {
    .img-div ul {
        column-count: 2;
    }
}


/* 950 - 1200 */

@media screen and (min-width: 650px) {
    .img-div ul {
        column-count: 3;
    }
}


/* 1200+ */

@media screen and (min-width: 1200px) {
    .img-div ul {
        column-count: 3;
    }
}


/* 图片放大 */

section {
    position: relative;
    top: 0;
    left: 0;
}

.enlarge {
    position: fixed;
    width: 100%;
    height: 100vh;
    object-fit: scale-down;
    top: 0px;
    left: 0px;
    z-index: 999;
    background-color: rgba(204, 204, 204, 0.607);
}

.enlarge img {
    position: absolute;
    max-width: 100%;
    max-height: 100vh;
    top: 50%;
    left: 50%;
    border: 1px solid #e4e4e4;
    box-shadow: 2px 2px 13px 4px #888;
    transform: translate(-50%, -50%);
}

.enlarge .close {
    float: right;
    position: absolute;
    top: .5rem;
    right: .5rem;
    z-index: 999;
}

.enlarge .close::before {
    content: '\e93e';
    font-family: 'icomoon';
    font-size: .8rem;
    color: #444;
}