.location {
    padding: 20px 0 20px;
}

.article .flex-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

    .article .flex-main .sidebar {
        width: 280px;
        box-shadow: 0 0 10px #e3e3e3;
        background-color: #fff;
        flex-shrink: 0;
        transition: all .2s linear;
    }

        .article .flex-main .sidebar:hover {
            box-shadow: 0 0 10px #c3c3c3;
        }

        .article .flex-main .sidebar .group-box .group-title {
            background-color: #014583;
            padding: 16px 14px;
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            display: flex;
            align-items: center;
        }

            .article .flex-main .sidebar .group-box .group-title::before {
                content: "";
                width: 3px;
                height: 24px;
                margin-right: 14px;
                background-color: #fcc82a;
            }

        .article .flex-main .sidebar .class-list {
            padding-bottom: 80px;
        }

            .article .flex-main .sidebar .class-list .item {
                border-bottom: 1px solid #dfe2e7;
            }

                .article .flex-main .sidebar .class-list .item > a {
                    min-height: 46px;
                    line-height: 24px;
                    padding: 15px 28px;
                    font-size: 16px;
                    color: #4a4a4a;
                    display: block;
                }

                .article .flex-main .sidebar .class-list .item.active > a,
                .article .flex-main .sidebar .class-list .item:hover > a {
                    font-weight: bold;
                    color: #014583;
                }


        .article .flex-main .sidebar .recommend-list .item {
            padding: 8px 10px;
            border-bottom: 1px solid #e2e2e2;
        }

            .article .flex-main .sidebar .recommend-list .item > a {
                font-size: 14px;
                line-height: 20px;
                max-height: 40px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }

                .article .flex-main .sidebar .recommend-list .item > a:hover {
                    color: #014583;
                }

    .article .flex-main .result {
        width: 900px;
        box-shadow: 0 0 10px #e3e3e3;
        background-color: #fff;
        padding: 0 0 15px 0;
    }

        .article .flex-main .result .child-list {
            display: flex;
            flex-wrap: wrap;
            padding: 15px 15px 0;
            border-bottom: 1px dashed #014583;
        }

            .article .flex-main .result .child-list .item {
                border: 1px solid #014583;
                border-radius: 4px;
                margin-right: 20px;
                margin-bottom: 20px;
            }

                .article .flex-main .result .child-list .item > a {
                    display: inline-block;
                    padding: 0 60px;
                    height: 44px;
                    line-height: 44px;
                    text-align: center;
                    font-size: 16px;
                    font-weight: bold;
                    cursor: pointer;
                    color: #014583;
                }

        .article .flex-main .result .list {
            padding: 15px 15px;
        }

            .article .flex-main .result .list .item {
                color: #333;
                border-bottom: 1px dashed #014583;
                color: #0e0e0e;
                overflow: hidden;
                font-size: 14px;
            }

                .article .flex-main .result .list .item a {
                    height: 48px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                    .article .flex-main .result .list .item a .item-idx {
                        min-width: 32px;
                        padding: 0 2px;
                        height: 32px;
                        line-height: 32px;
                        margin-right: 13px;
                        text-align: center;
                        color: #014583;
                        border: 2px solid #014583;
                        font-size: 13px;
                    }

                    .article .flex-main .result .list .item a .item-title {
                        flex: 1;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                        padding-right: 80px;
                    }

                    .article .flex-main .result .list .item a .item-time {
                        font-size: 13px;
                        color: #686868;
                    }

        .article .flex-main .result .detail {
            padding: 28px 40px;
        }

            .article .flex-main .result .detail .title {
                font-size: 18px;
                font-weight: 600;
                text-align: center;
                line-height: 45px;
                color: #014583;
                margin-top: 8px;
                margin-bottom: 5px;
            }

            .article .flex-main .result .detail .subtitle {
                font-size: 16px;
                font-weight: 500;
                text-align: center;
                color: #014583;
                margin-top: 8px;
                margin-bottom: 5px;
            }

            .article .flex-main .result .detail .props {
                line-height: 24px;
                text-align: center;
                color: #383838;
                font-size: 14px;
            }

                .article .flex-main .result .detail .props .source {
                    margin-left: 5px;
                }

            .article .flex-main .result .detail .content {
                margin-top: 20px;
                font-size: 16px;
                line-height: 27px;
                color: #151515;
                min-height: 400px;
            }

                .article .flex-main .result .detail .content img {
                    max-width: 100%;
                    display: inline-block;
                }

                .article .flex-main .result .detail .content video {
                    width: 100%;
                    height: auto;
                    margin-bottom: 30px;
                }

                .article .flex-main .result .detail .content.indent p {
                    text-indent: 2em;
                }

                .article .flex-main .result .detail .content .attachment-list {
                    padding: 15px 0;
                }

                    .article .flex-main .result .detail .content .attachment-list .attachment-name {
                        margin-bottom: 5px;
                        font-weight: bold;
                    }

                    .article .flex-main .result .detail .content .attachment-list .attachment {
                        display: block;
                        margin-bottom: 5px;
                    }

            .article .flex-main .result .detail .other {
                margin-top: 30px;
                padding-top: 30px;
                border-top: 1px solid #d2d2d2;
            }

                .article .flex-main .result .detail .other .prev,
                .article .flex-main .result .detail .other .next {
                    line-height: 30px;
                    font-size: 14px;
                    font-weight: 600;
                }

                    .article .flex-main .result .detail .other .prev a,
                    .article .flex-main .result .detail .other .next a {
                        font-weight: 400;
                        color: #4a4a4a;
                    }

                        .article .flex-main .result .detail .other .prev a:hover,
                        .article .flex-main .result .detail .other .next a:hover {
                            color: #014583;
                        }

.pagenation {
    padding: 15px 15px;
    display: flex;
    justify-content: flex-end;
}

.jia-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 60px;
}

.jia-list {
    display: flex;
    flex-wrap: wrap;
}

    .jia-list > li {
        width: 50%;
        margin-bottom: 60px;
    }
