/*-------------------------------------------- 
        Banner
    --------------------------------------------*/

.body {
    padding: 20px 0 0;
}

.banner {
    display: flex;
    height: 220px;
    margin: 0 0 20px;
    padding: 28px 40px 0;
    background-size: cover;
    background-position: center center;
}

    .banner .info {
        width: 100%;
    }

        .banner .info .title {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
        }

            .banner .info .title .name {
                font-size: 28px;
                color: #ffffff;
            }

            .banner .info .title img {
                height: 20px;
                width: auto;
                margin: 0 0 0 10px;
            }

            .banner .info .title .un-verify {
                width: 52px;
                height: 20px;
                line-height: 20px;
                margin-left: 10px;
                border-radius: 4px;
                background: #bfbfbf;
                font-size: 12px;
                color: #ffffff;
                text-align: center;
                cursor: pointer;
            }

                .banner .info .title .un-verify:hover {
                    opacity: 0.9;
                }

        .banner .info .link {
            margin: 18px 0 36px;
        }

            .banner .info .link span {
                display: inline-block;
                height: 18px;
                line-height: 18px;
                padding: 0px 8px 0px 10px;
                border-left: 1px solid #fff;
                font-size: 18px;
                color: #fff;
            }

                .banner .info .link span:first-child {
                    padding-left: 0px;
                    border-left: 0px;
                }

            .banner .info .link a {
                color: #ffffff;
                font-size: 18px;
            }

        .banner .info .more {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            .banner .info .more .tags {
                display: flex;
                flex-flow: row nowrap;
                align-items: center;
            }

                .banner .info .more .tags .tag {
                    height: 38px;
                    line-height: 38px;
                    margin: 0 22px 0 0;
                    padding: 0 14px;
                    background: rgba(23, 24, 25, 0.09);
                    color: #ffffff;
                }

            .banner .info .more .follows {
                display: flex;
                flex-flow: row nowrap;
                align-items: center;
            }

                .banner .info .more .follows .followed {
                    width: 90px;
                    height: 40px;
                    line-height: 40px;
                    background: rgba(255, 255, 255, 0.2);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    border-radius: 6px;
                    text-align: center;
                    color: #ffffff;
                    box-sizing: border-box;
                }

                    .banner .info .more .follows .followed:hover {
                        background: rgba(255, 255, 255, 0.5);
                    }

                .banner .info .more .follows .follow {
                    width: 90px;
                    height: 40px;
                    line-height: 40px;
                    background: transparent;
                    border: 1px solid #ffffff;
                    border-radius: 6px;
                    text-align: center;
                    color: #ffffff;
                }

                .banner .info .more .follows .follow:hover {
                    background: #ffffff;
                    color: #2681f6;
                }

/*-------------------------------------------- 
        Main Content
    --------------------------------------------*/

.main {
    padding: 28px 50px;
    background: #ffffff;
}

    .main .menu {
        position: sticky;
        top: 0;
        width: auto;
        height: 54px;
        background: #ffffff;
        border-bottom: 2px solid #f4f6f9;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        z-index: 100;
        scrollbar-width: none;
    }

        .main .menu .item {
            display: inline-block;
            vertical-align: center;
            height: 50px;
            line-height: 50px;
            margin-right: 40px;
            font-size: 18px;
            color: #333333;
            cursor: pointer;
        }

            .main .menu .item:last-child {
                margin-right: 0;
            }

            .main .menu .item.active {
                color: #2681f6;
                font-size: 20px;
            }

            .main .menu .item:hover {
                color: #2681f6;
            }

    .main .contents {
        padding: 0px 0 10px;
    }

        .main .contents h3 {
            position: relative;
            margin: 40px 0 30px;
            padding: 10px 0 0 16px;
            font-size: 20px;
            font-weight: bold;
        }

            .main .contents h3::before {
                content: "";
                position: absolute;
                left: 0;
                top: 16px;
                width: 6px;
                height: 18px;
                border-radius: 6px;
                background: #2681f6;
            }

        .main .contents p {
            line-height: 40px;
            margin-bottom: 10px;
        }

        .main .contents .block {
            padding: 10px 0;
        }

            /*-------------------------------------------- 
        News
    --------------------------------------------*/

            .main .contents .block .news-list {
                display: flex;
                flex-flow: row wrap;
                justify-content: space-between;
            }

                .main .contents .block .news-list .news-item {
                    display: flex;
                    flex-flow: column nowrap;
                    justify-content: space-between;
                    width: 49%;
                    height: 90px;
                    padding: 18px 24px;
                    margin: 0 0 20px;
                    box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.04);
                    cursor: pointer;
                }

                    .main .contents .block .news-list .news-item:hover {
                        box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.1);
                    }

                    .main .contents .block .news-list .news-item .title {
                        color: #2681f6;
                    }

                    .main .contents .block .news-list .news-item .info {
                        display: flex;
                        flex-flow: row nowrap;
                        justify-content: space-between;
                    }

                        .main .contents .block .news-list .news-item .info .sub {
                            display: flex;
                            flex-flow: row nowrap;
                            align-items: center;
                            color: #9c9c9c;
                            font-size: 14px;
                        }

                            .main .contents .block .news-list .news-item .info .sub .divider {
                                margin: 0 10px;
                            }

                        .main .contents .block .news-list .news-item .info .time {
                            color: #9c9c9c;
                            font-size: 12px;
                        }

            /*-------------------------------------------- 
        Jobs
    --------------------------------------------*/

            .main .contents .block .job-list {
                display: flex;
                flex-flow: row wrap;
                justify-content: space-between;
            }

                .main .contents .block .job-list .job-item {
                    display: flex;
                    flex-flow: row nowrap;
                    justify-content: space-between;
                    width: 49%;
                    height: 90px;
                    padding: 18px 24px;
                    margin: 0 0 20px;
                    box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.04);
                }

                    .main .contents .block .job-list .job-item:hover {
                        box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.1);
                    }

                    .main .contents .block .job-list .job-item .info {
                        display: flex;
                        flex-flow: column nowrap;
                        justify-content: space-between;
                    }

                        .main .contents .block .job-list .job-item .info .title {
                            display: flex;
                            flex-flow: row nowrap;
                            align-items: center;
                            color: #2681f6;
                        }

                    .main .contents .block .job-list .job-item .title .date {
                        margin: 0 0 0 10px;
                        color: #9c9c9c;
                        font-size: 12px;
                    }

                    .main .contents .block .job-list .job-item .info .condition {
                        display: flex;
                        flex-flow: row nowrap;
                        align-items: center;
                        color: #9c9c9c;
                        font-size: 14px;
                    }

                      

                        .main .contents .block .job-list .job-item .info .condition .divider {
                            margin: 0 10px;
                        }

                    .main .contents .block .job-list .job-item .sub {
                        display: flex;
                        flex-flow: column nowrap;
                        justify-content: space-between;
                    }

                        .main .contents .block .job-list .job-item .sub .college {
                            color: #2681f6;
                        }

                        .main .contents .block .job-list .job-item .sub .condition {
                            display: flex;
                            flex-flow: row nowrap;
                            align-items: center;
                            color: #9c9c9c;
                            font-size: 14px;
                        }

                        .main .contents .block .job-list .job-item .sub .divider {
                            margin: 0 10px;
                        }

                        .main .contents .block .job-list .job-item .info .condition span, .main .contents .block .job-list .job-item .sub .condition span {
                            display: inline-block;
                            height: 14px;
                            line-height: 14px;
                            padding: 0px 8px 0px 10px;
                            border-left: 1px solid #9c9c9c;
                            font-size: 14px;
                            max-width: 200px;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }

                            .main .contents .block .job-list .job-item .info .condition span:first-child, .main .contents .block .job-list .job-item .sub .condition span:first-child {
                                padding-left: 0px;
                                border-left: 0px;
                            }

.pagination a,
.pagination span {
    border: 1px solid #dcdcdc;
}
