﻿
.book-list {
    margin-top: 20px;
    user-select: text;
}

    .book-list .el-row--flex {
        flex-wrap: wrap;
    }

.book-item {
    margin: 20px;
    cursor: pointer;
}

    .book-item:hover .book-img-area {
        border: 1px solid transparent;
        box-shadow: 0 0 6px #409EFF;
    }

    .book-item:hover .book-name {
        color: #409EFF;
    }

    .book-item:hover .book-version {
        color: #409EFF;
    }

    .book-item:hover .book-img-area::after,
    .book-item:hover .book-img-area::before {
        opacity: 1;
        filter: opacity(100);
    }

    .book-item .book-img-area {
        height: 300px;
        border: 1px solid #f2f2f2;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all linear .3s;
        position: relative;
        background-color: #fff;
    }

        .book-item .book-img-area::after,
        .book-item .book-img-area::before {
            content: '';
            position: absolute;
            bottom: 6px;
            width: 100px;
            height: 1px;
            z-index: -1;
            box-shadow: 0 2px 12px 5px #409EFF;
            opacity: 0;
            filter: opacity(0);
            transition: all linear .3s;
        }

        .book-item .book-img-area::after {
            left: 4px;
            transform: rotate(-6deg);
        }

        .book-item .book-img-area::before {
            right: 4px;
            transform: rotate(6deg);
        }

        .book-item .book-img-area .el-image .image-slot img {
            position: absolute;
            margin: auto;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

    .book-item .book-name {
        margin-top: 5px;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        transition: all linear .3s;
    }

    .book-item .book-version {
        margin-top: 5px;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        transition: all linear .3s;
    }

.dialog-content {
    font-size: 16px;
    text-align: center;
}

    .dialog-content > * {
        margin-top: 20px;
    }

        .dialog-content > *:nth-child(1) {
            margin-top: 0;
        }

    .dialog-content .el-icon {
        font-size: 32px;
        vertical-align: middle;
        margin-right: 5px;
    }

    .dialog-content .tips span {
        font-size: 14px;
        vertical-align: middle;
    }

.download-ocs-title button,
.download-ocs-title button span {
    font-size: 16px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-list .article-item {
    float: left;
    width: 33%;
    min-height: 320px;
    padding-top: 40px;
    max-width: 400px;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .article-list .article-item ul li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .article-list .article-item .ul-data {
        width: 100%;
        line-height: 38px;
        height: 208px;
    }

        .article-list .article-item .ul-data li {
            flex-flow: row;
            flex-wrap: nowrap;
            line-height: 35px;
            height: 35px;
        }


            .article-list .article-item .ul-data li > div {
                display: inline-block;
                flex-grow: 0;
                flex-shrink: 0;
                text-align: center;
                box-sizing: border-box;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                line-height: 20px;
                cursor: pointer;
            }

    .article-list .article-item .el-link.el-link--primary:hover {
        color: #409EFF;
    }

    .article-list .article-item .el-link.el-link--primary {
        color: #333;
    }

    .article-list .article-item .s-dian {
        color: #333;
    }

    .article-list .article-item .s-name {
        width: auto;
        flex-grow: 1 !important;
        max-width: 300px;
        color: #333;
    }

        .article-list .article-item .s-name:hover {
            color: #409EFF;
        }


    .article-list .article-item .s-date {
        width: 150px;
        color: #333;
        float: right;
        margin-right: 30px !important;
        cursor: default !important;
    }

    .article-list .article-item .el-link {
        width: 100%;
    }

        .article-list .article-item .el-link > span {
            text-overflow: ellipsis;
            overflow: hidden;
            font-size: 15px;
        }

    .article-list .article-item .article-item-head {
        width: 88%;
        height: 35px;
    }

    .article-list .article-item .head_title {
        cursor: default;
        margin-left: 2px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #333;
    }

    .article-list .article-item hr {
        background-color: #f0f0f0;
        border: 0;
        height: 1px;
        width: 100%;
        margin-top: 10px
    }

.ocs-container {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

    .ocs-container .ocs-wrap {
        margin: 20px;
        min-width: 400px;
    }

        .ocs-container .ocs-wrap.hot {
        }

        .ocs-container .ocs-wrap.latest {
        }


        .ocs-container .ocs-wrap .head {
            border-bottom: 1px solid #f2f2f2;
            padding-bottom: 10px;
            font-weight: bold;
        }

            .ocs-container .ocs-wrap .head:before {
                content: '';
                width: 3px;
                display: inline-block;
                background-color: #409EFF;
                height: 20px;
                vertical-align: middle;
                margin-right: 10px;
                margin-left: 20px;
            }


        .ocs-container .ocs-wrap .body {
        }

            .ocs-container .ocs-wrap .body ul,
            .ocs-container .ocs-wrap .body li {
                list-style: none;
                margin: 0;
                padding: 0;
            }

            .ocs-container .ocs-wrap .body ul {
                margin: 10px 0;
            }

                .ocs-container .ocs-wrap .body ul li {
                }

                    .ocs-container .ocs-wrap .body ul li > div {
                        line-height: 1.5;
                        padding: 5px 20px;
                        font-size: 16px;
                        max-width: 520px;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                        .ocs-container .ocs-wrap .body ul li > div:before {
                            content: '●';
                            display: inline-block;
                            margin-right: 5px;
                        }


                    .ocs-container .ocs-wrap .body ul li a {
                        font-size: 14px;
                        color: #333;
                    }

                        .ocs-container .ocs-wrap .body ul li a:hover {
                            color: #409EFF;
                        }
