    @charset "utf-8";
    /* banner 部分*/
    
    .banner {
        position: relative;
        width: 100%;
        height: 580px;
        overflow: hidden;
    }
    
    .banner a {
        position: absolute;
        left: 50%;
        top: 0;
        margin-left: -960px;
        width: 1920px;
        height: 580px;
    }
    
    .banner a img {
        display: block;
        width: 100%;
        height: 100%;
        transition: all 3s;
    }
    
    .banner a img:hover {
        transform: scale(1.1);
    }
    /* 内容列表 */
    
    .journal {
        position: relative;
        width: 100%;
        background-color: #ffffff;
    }
    
    .journal-hd {
        text-align: center;
        margin-top: 68px;
    }
    
    .journal-hd span {
        display: block;
        font-size: 32px;
        color: #121212;
        margin-top: 12px;
        font-family: "SourceHanSerifSC-Bold";
    }
    
    .journal-hd>i:nth-of-type(1) {
        font-size: 14px;
        color: #666666;
    }
    
    .journal-hd span i {
        color: #a87f46;
    }
    
    .journal-hd>i:nth-of-type(2) {
        width: 68px;
        height: 2px;
        display: block;
        margin: 0 auto;
        background-color: #a87f46;
        margin-top: 18px;
    }
    
    .journal-bd {
        margin: 0 auto;
        margin-top: 47px;
        width: 1136px;
    }
    
    .journal-bd ul {
        width: 100%;
    }
    
    .journal-bd ul li {
        position: relative;
        float: left;
        width: 362px;
        height: 528px;
        background: url(../img/journal/piece.png) no-repeat;
        margin-right: 25px;
        margin-bottom: 27px;
    }
    
    .journal-bd ul li:hover {
        background: url(../img/journal/piece_hover.png) no-repeat;
    }
    
    .journal-bd ul li:nth-child(3n) {
        margin-right: 0;
    }
    
    .journal-bd ul li div {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 322px;
        height: 490px;
        border-radius: 7px;
        overflow: hidden;
    }
    
    .journal-bd ul li div img {
        width: 100%;
        margin-top: -1px;
        transition: all 3s;
    }
    
    .journal-bd ul li:hover div img {
        transform: scale(1.1);
    }
    
    .journal-bd ul li div span {
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: 56px;
        line-height: 58px;
        background-color: #ffffff;
        font-size: 22px;
        color: #121212;
        text-align: center;
    }
    
    .journal>p {
        width: 176px;
        height: 40px;
        line-height: 40px;
        /* display: block; */
        margin: 0 auto;
        text-align: center;
        background: url(../img/index_new/button_black.png) no-repeat;
        color: #ffffff;
        font-size: 16px;
        border-radius: 30px;
        margin-bottom: 65px;
    }
    
    .journal>p img {
        margin-left: 10px;
    }
    /* 从未见过你 */
    
    .seen {
        position: relative;
        width: 100%;
        height: 90px;
        overflow: hidden;
    }
    
    .seen-img {
        position: absolute;
        left: 50%;
        top: 0;
        margin-left: -960px;
        width: 1920px;
        height: 100%;
        background: url(../img/seen_01.png) no-repeat;
    }