@charset "UTF-8";

.index-container {
    width: 980px;
    margin: 0 auto;
    background-color: #fff;
}

    .index-container .title-border .title {
        font-size: 16px;
        font-weight: bold;
        border-bottom: 1px solid #919191;
        padding: 10px 0;
    }

    .index-container .recommend,
    .index-container .news-new {
        padding: 0 16px;
    }

        .index-container .recommend .recommend-container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            padding-left: 8px;
            -ms-flex-line-pack: start;
            align-content: flex-start;
        }

            .index-container .recommend .recommend-container .recommend-container__item {
                margin-top: 10px;
                margin-bottom: 10px;
                margin-right: 20px;
                position: relative;
                width: 140px;
               /* border: 1px solid #dddddd;*/
                -webkit-transition: all 0.2s;
                -o-transition: all 0.2s;
                transition: all 0.2s;
                -webkit-box-shadow: 1px 10px 10px rgba(221, 221, 221, 0);
                box-shadow: 1px 10px 10px rgba(221, 221, 221, 0);
            }

                .index-container .recommend .recommend-container .recommend-container__item:hover {
                    -webkit-box-shadow: 1px 10px 10px #dddddd;
                    box-shadow: 1px 10px 10px #dddddd;
                }

                .index-container .recommend .recommend-container .recommend-container__item:nth-of-type(6n) {
                    margin-right: 0;
                }

                .index-container .recommend .recommend-container .recommend-container__item .recommend-container--img {
                    width: 100%;
                    height: 180px;
                    background-color: rgba(0, 0, 0, 0.3);
                    overflow: hidden;
                }

                    .index-container .recommend .recommend-container .recommend-container__item .recommend-container--img img {
                        width: 100%;
                    }

                .index-container .recommend .recommend-container .recommend-container__item .recommend-container--title {
                    font-size: 18px;
                    text-align: center;
                    padding: 4px 4px;
                    word-break: break-all;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    /* 这里是超出几行省略 */
                    overflow: hidden;
                    color: #000;
                    -webkit-transition: all 0.2s;
                    -o-transition: all 0.2s;
                    transition: all 0.2s;
                }

                    .index-container .recommend .recommend-container .recommend-container__item .recommend-container--title:hover {
                        color: #ff4757;
                    }

                .index-container .recommend .recommend-container .recommend-container__item .recommend-container--description {
                    font-size: 12px;
                    padding: 4px 4px;
                    line-height: 8px;
                    word-break: break-all;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 3;
                    /* 这里是超出几行省略 */
                    overflow: hidden;
                    color: #919191;
                    text-align: center;
                }

                .index-container .recommend .recommend-container .recommend-container__item .recommend-container--sk {
                   /* height: 46px;*/
                }

                .index-container .recommend .recommend-container .recommend-container__item .recommend-container__operation {
                    position: absolute;
                    bottom: 0px;
                    width: 100%;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    padding: 10px;
                }

                    .index-container .recommend .recommend-container .recommend-container__item .recommend-container__operation .recommend-container__btn {
                        background-color: #ff4757;
                        color: #fff;
                        font-size: 14px;
                        width: 56px;
                        height: 30px;
                        line-height: 30px;
                        letter-spacing: 2px;
                        text-align: center;
                        border-radius: 2px;
                        cursor: pointer;
                        -webkit-user-select: none;
                        -moz-user-select: none;
                        -ms-user-select: none;
                        user-select: none;
                        -webkit-transition: all 0.2s;
                        -o-transition: all 0.2s;
                        transition: all 0.2s;
                    }

                        .index-container .recommend .recommend-container .recommend-container__item .recommend-container__operation .recommend-container__btn.success {
                            background-color: #2ed573;
                        }

                        .index-container .recommend .recommend-container .recommend-container__item .recommend-container__operation .recommend-container__btn:hover {
                            background-color: #ffa502;
                        }

    .index-container .news-new {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .index-container .news-new .news {
            width: 70%;
            margin-right: 20px;
        }

            .index-container .news-new .news .news__list {
                margin-top: 10px;
                font-size: 14px;
                color: #000;
            }

                .index-container .news-new .news .news__list .news--item {
                    cursor: pointer;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    padding: 4px;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    /*background-color: rgb(152 187 206 / 16%);*/
                    -webkit-transition: all 0.2s;
                    -o-transition: all 0.2s;
                    transition: all 0.2s;
                    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
                }

                    .index-container .news-new .news .news__list .news--item:hover {
                        background-color: rgba(30, 144, 255, 0.3);
                    }

                    .index-container .news-new .news .news__list .news--item:last-of-type {
                        border-bottom: 0px dashed rgba(0, 0, 0, 0.2);
                    }

                    .index-container .news-new .news .news__list .news--item.title {
                        font-weight: 600;
                    }


                        .index-container .news-new .news .news__list .news--item.title .news--title, 
                        .index-container .news-new .news .news__list .news--item.title .news--chapter, 
                        .index-container .news-new .news .news__list .news--item.title .news--nickname, 
                        .index-container .news-new .news .news__list .news--item.title .news--date {
                            color: #000;
                        }


                        .index-container .news-new .news .news__list .news--item.title:hover {
                            background-color: rgba(0,0,0,0)
                        }


                .index-container .news-new .news .news__list .news--title,
                .index-container .news-new .news .news__list .news--chapter {
                    color: rgb(49 95 165 / 90%);
                    display: inline-block;
                    vertical-align: middle;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    width: 188px;
                }

                /*  .index-container .news-new .news .news__list .news--writer,
                .index-container .news-new .news .news__list .news--time*/

                .index-container .news-new .news .news__list .news--nickname,
                .index-container .news-new .news .news__list .news--date {
                    color: rgba(47, 53, 66, 0.6);
                    display: inline-block;
                    vertical-align: middle;
                    text-align: right;
                    width: 44px;
                }

                    .index-container .news-new .news .news__list .news--nickname.news--nickname,
                    .index-container .news-new .news .news__list .news--date.news--nickname {
                        width: 100px;
                        overflow: hidden;
                        -o-text-overflow: ellipsis;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                        text-align: right;
                    }

        .index-container .news-new .new {
            width: 30%;
        }

            .index-container .news-new .new .news__list {
                margin-top: 10px;
                font-size: 14px;
                color: #000;
            }

                .index-container .news-new .new .news__list .news--item {
                    cursor: pointer;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    padding: 4px;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
                    /*background-color: rgb(152 187 206 / 16%);*/
                    -webkit-transition: all 0.2s;
                    -o-transition: all 0.2s;
                    transition: all 0.2s;
                }

                    .index-container .news-new .new .news__list .news--item:hover {
                        background-color: rgba(30, 144, 255, 0.3);
                    }

                    .index-container .news-new .new .news__list .news--item:last-of-type {
                        border-bottom: 0px dashed rgba(0, 0, 0, 0.2);
                    }

                .index-container .news-new .new .news__list .news--title {
                    color: rgb(49 95 165 / 90%);
                    display: inline-block;
                    vertical-align: middle;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    width: 140px;
                }

                .index-container .news-new .new .news__list .news--nickname {
                    color: rgba(47, 53, 66, 0.6);
                    display: inline-block;
                    vertical-align: middle;
                    width: 84px;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    text-align: right;
                }

    .index-container .chapter {
        padding: 0 16px;
    }

        .index-container .chapter .chapter-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .index-container .chapter .chapter-list .chapter--item {
                width: 50%;
                padding: 10px;
                border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
                overflow: hidden;
                -o-text-overflow: ellipsis;
                text-overflow: ellipsis;
                white-space: nowrap;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                .index-container .chapter .chapter-list .chapter--item span,
                .index-container .chapter .chapter-list .chapter--item a {
                    display: inline-block;
                    vertical-align: middle;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    font-size: 14px;
                }

                .index-container .chapter .chapter-list .chapter--item .chapter--title {
                    color: #d88b00;
                    max-width: 140px;
                    display: inline-block;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }

                .index-container .chapter .chapter-list .chapter--item .chapter--chapter {
                    max-width: 180px;
                    display: inline-block;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }

                .index-container .chapter .chapter-list .chapter--item .chapter--item__right {
                    margin-left: 10px;
                }

                .index-container .chapter .chapter-list .chapter--item .chapter--nickname {
                    max-width: 90px;
                    font-size: 12px;
                    display: inline-block;
                    vertical-align: middle;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    color: #999;
                }

                .index-container .chapter .chapter-list .chapter--item .chapter--date {
                    font-size: 12px;
                    display: inline-block;
                    vertical-align: middle;
                    overflow: hidden;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    color: #999;
                }

    .index-container .recommend {
        padding: 16px;
    }
    .index-container .recommend-names {
        padding: 20px 20px;
    }
    .index-container .recommend-names .recommend-list .recommend__title {
        display: inline-block;
        /*vertical-align: middle;*/
    }

    .index-container .recommend-names .recommend-list .recommend__item {
        display: inline-block;
        vertical-align: middle;
        margin-right: 16px;
        line-height: 30px;
    }

        .index-container .recommend-names .recommend-list .recommend__item .recommend--title {
            color: #ffa502;
            display: inline-block;
            vertical-align: text-bottom;
        }

        .index-container .recommend-names .recommend-list .recommend__item .recommend--nickname {
            display: inline-block;
            vertical-align: text-bottom;
            font-size: 12px;
            color: #999;
        }

        .index-container .recommend-names .recommend-list .recommend__item.warning .recommend--title {
            color: #ffa502;
        }

        .index-container .recommend-names .recommend-list .recommend__item.warning .recommend--nickname {
            color: #5d6470;
        }

.copyright-container .cf {
    font-weight: normal;
    font-size: 14px;
}
