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

.banner {
    height: 240px;
    padding: 0 40px;
    background-size: cover;
    background-position: center center;
    margin-top: 20px;
}

    .banner .info {
        display: flex;
        flex-flow: column nowrap;
        height: 240px;
        padding: 34px 0 0;
    }

        .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: 18px;
                width: auto;
                margin: 0 0 0 10px;
            }

        .banner .info .update {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            margin: 18px 0 34px;
            font-size: 14px;
            color: #ffffff;
            opacity: 0.8;
        }

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

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

            .banner .info .update .divider {
                margin: 0 10px;
            }

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

            .banner .info .controls .items {
                display: flex;
                flex-flow: row nowrap;
            }

                .banner .info .controls .items .item {
                    margin: 0 30px 0 0;
                    max-width: 290px;
                }

                    .banner .info .controls .items .item:last-child {
                        margin: 0;
                    }

                .banner .info .controls .items .tip {
                    margin: 0 0 18px;
                    color: #ffffff;
                    font-size: 14px;
                    opacity: 0.8;
                }

                .banner .info .controls .items .text {
                    color: #ffffff;
                    font-size: 14px;
                }

            .banner .info .controls .actions {
                display: flex;
                flex-flow: row nowrap;
                justify-content: space-between;
                width: 260px;
            }

                .banner .info .controls .actions a {
                    width: 123px;
                    height: 40px;
                    line-height: 40px;
                    border: 1px solid #ffffff;
                    border-radius: 6px;
                    font-size: 14px;
                    text-align: center;
                }

                    .banner .info .controls .actions a.post {
                        background: #ffffff;
                        color: #2681f6;
                    }

                        .banner .info .controls .actions a.post:hover {
                            background: transparent;
                            color: #ffffff;
                        }

                    .banner .info .controls .actions a.follow {
                        background: transparent;
                        color: #ffffff;
                    }

                        .banner .info .controls .actions a.follow:hover {
                            background: #ffffff;
                            color: #2681f6;
                        }

                .banner .info .controls .actions .followed {
                    width: 123px;
                    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 .controls .actions .followed:hover {
                        background: rgba(255, 255, 255, 0.5);
                    }

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

.body {
    padding: 20px 0 0;
}

    .body .blocks {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

.main {
    width: 860px;
    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;
        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 img {
            max-width: 100%;
        }

        .main .contents table {
            width: 100%;
            margin: 0 0 20px;
            border-collapse: collapse;
        }

            .main .contents table th,
            .main .contents table tr:nth-child(1) td {
                padding: 12px 18px;
                background: #f4f6f9;
                color: #9c9c9c;
                font-size: 14px;
                text-align: left;
            }

            .main .contents table td {
                padding: 12px 18px;
                border: 1px solid #ececec;
                font-size: 14px;
                text-align: left;
            }

        .main .contents .table th,
        .main .contents .table td {
            text-align: center;
        }

        .main .contents table th,
        .main .contents table td {
            line-height: 20px;
            vertical-align: top;
        }

        .main .contents .table th,
        .main .contents .table td {
            line-height: 24px;
            vertical-align: middle;
        }

        .main .contents table th p,
        .main .contents table td p {
            line-height: 24px;
            margin: 0;
        }

        .main .contents table tr td .post,
        .main .contents table tr td .view {
            display: inline-block;
            line-height: 30px;
            height: 30px;
            padding: 0 20px;
            cursor: pointer;
        }

        .main .contents table tr td .post {
            margin: 0 10px 0 0;
            border: 1px solid #2681f6;
            color: #2681f6;
        }

            .main .contents table tr td .post:hover {
                font-weight: bold;
            }

        .main .contents table tr td .view {
            border: 1px solid #9c9c9c;
        }

            .main .contents table tr td .view:hover {
                font-weight: bold;
            }

        /*-------------------------------------------- 
  Social
--------------------------------------------*/

        .main .contents .social {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            padding: 20px 0;
        }

            .main .contents .social .shares {
                display: flex;
                flex-flow: row nowrap;
            }

                .main .contents .social .shares a {
                    position: relative;
                }

                    .main .contents .social .shares a > img {
                        width: 36px;
                        height: 36px;
                        opacity: 0.8;
                    }

                    .main .contents .social .shares a > img {
                        opacity: 1;
                    }

                    .main .contents .social .shares a .qrcode {
                        position: absolute;
                        bottom: 44px;
                        left: calc(50% - 60px);
                        display: none;
                        width: 120px;
                        height: 120px;
                        padding: 5px;
                        background: #ffffff;
                        box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.15);
                    }

                        .main .contents .social .shares a .qrcode::before {
                            content: "";
                            position: absolute;
                            bottom: -12px;
                            left: calc(50% - 6px);
                            border: 6px solid transparent;
                            border-top: 6px solid #ffffff;
                        }

                    .main .contents .social .shares a:hover .qrcode {
                        display: block;
                    }

                    .main .contents .social .shares a .qrcode img {
                        width: 100%;
                        height: 100%;
                    }

            .main .contents .social .text {
                margin: 0 0 0 10px;
                font-size: 12px;
                color: #999999;
            }

/*-------------------------------------------- 
  Side
--------------------------------------------*/

.side {
    width: 320px;
}

    .side .school {
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        height: 150px;
        padding: 20px 20px 25px;
        margin: 0 0 20px;
        background: #ffffff;
    }

        .side .school .info {
            display: flex;
            flex-flow: row nowrap;
        }

            .side .school .info .icon {
                width: 48px;
                height: 48px;
                margin: 0 12px 0 0;
            }

            .side .school .info .title {
                display: flex;
                flex-flow: column nowrap;
                justify-content: space-between;
                height: 48px;
            }

                .side .school .info .title .text {
                    font-size: 18px;
                    color: #333333;
                }

                .side .school .info .title .sub {
                    font-size: 12px;
                    color: #999999;
                }

        .side .school .enter {
            height: 32px;
            line-height: 32px;
            border: 1px solid #2681f6;
            color: #2681f6;
            font-size: 14px;
            text-align: center;
        }

            .side .school .enter:hover {
                background: #2681f6;
                color: #ffffff;
            }

.hots {
    width: 320px;
    background: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.04);
}

    .hots .title {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        height: 44px;
        line-height: 44px;
        padding: 0 30px;
        border-bottom: 1px solid #cecece;
        color: #2681f6;
    }

        .hots .title .more {
            font-size: 12px;
        }

            .hots .title .more:hover {
                font-weight: bold;
            }

    .hots .items {
        padding: 0 30px 20px;
    }

        .hots .items .item {
            display: flex;
            flex-flow: row nowrap;
            justify-content: space-between;
            align-items: center;
            padding: 17px 0;
            border-bottom: 1px solid #dedede;
        }

            .hots .items .item:last-child {
                border-bottom: 1px solid transparent;
            }

            .hots .items .item:hover {
                background: #f7f7f7;
            }

            .hots .items .item .icon {
                display: flex;
                align-items: center;
                width: 45px;
            }

                .hots .items .item .icon img {
                    width: 36px;
                    height: 36px;
                }

            .hots .items .item .info {
                flex-grow: 1;
                min-width: 0;
            }

                .hots .items .item .info .name {
                    display: flex;
                    flex-flow: row nowrap;
                    align-items: center;
                    width: 100%;
                    font-size: 14px;
                }

                    .hots .items .item .info .name .text {
                        min-width: 0;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }

                    .hots .items .item .info .name .vip {
                        width: auto;
                        height: 12px;
                        margin: 0 0 0 4px;
                    }

                    .hots .items .item .info .name .verify {
                        width: auto;
                        height: 16px;
                        margin: 0 0 0 4px;
                    }

                .hots .items .item .info .position {
                    font-size: 12px;
                    color: #8d8d8d;
                }

                    .hots .items .item .info .position .count {
                        color: #2681f6;
                    }

            .hots .items .item .link {
                display: flex;
                align-items: center;
            }

                .hots .items .item .link img {
                    width: auto;
                    height: 16px;
                }
