﻿
.index-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.index-son-wrapper {
    width: 80%;
    display: flex;
    margin-top: 20px;
}

.index-left {
    flex-grow: 1;
    overflow: auto;
    background-color: white;
    border-radius: 8px;
    margin-right: 20px;
}

    .index-left ul, .index-left li {
        list-style: none;
    }

    .index-left li {
        margin: 0 0 0 15px;
    }


.index-content {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px;
    align-items: center;
}

.content-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.content-left {
    margin-right: 10px;
}

.content-title:hover {
    font-size: 20px;
    color: #98595a;
}

.content-main {
    margin: 10px 0 10px 0;
}

.tag-title {
    color: #fff;
    background-color: #663276;
    padding: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
}

.tag-left {
    font-size: 12px;
    color: #8a919f;
}

    .tag-left:hover {
        color: #787878;
        cursor: pointer;
    }

.index-page {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.index-page-wrapper {
    display: flex;
    padding-top: 20px;
}

.page-a, .page-a:hover {
    padding: 5px 10px;
    color: #959595;
    background-color: #f4f4f6;
    margin-left: 20px;
}

.current, .current:hover {
    padding: 5px 10px;
    color: #fff;
    background-color: #2f96fd;
    margin-left: 20px;
}


.index-right {
    width: 300px;
    display: flex;
    flex-direction: column;
}

.index-right .logo {
    width: 300px;
    height: 300px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.index-right .logo-img {
    width: 120px;
    height: 120px;
}

.index-right .logo-p {
    text-align: center;
    line-height: 25px;
    margin-top: 5px
}


.aside-tags {
    background-color: #fff;
    margin-top: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.aside-title {
    padding: 15px 0 15px 15px;
}

.aside-tags .aside-title h4 {
    font-weight: 500;
    position: relative;
    padding-left: 15px;
    font-size: 16px;
    /* color: */
}

    .aside-tags .aside-title h4:before {
        content: "";
        border-radius: 3px;
        width: 3px;
        background-color: #206be7;
        height: 20px;
        position: absolute;
        left: 0;
        top: 0;
    }

.aside-recommend {
    padding: 0 15px 0 15px;
}

    .aside-recommend ul {
        list-style: none;
    }

        .aside-recommend ul > li {
            list-style: none;
            margin-bottom: 10px;
            border-bottom: 1px solid #eaeeef;
            padding-bottom: 5px;
        }

            .aside-recommend ul > li:last-child {
                border-bottom: none;
            }

    .aside-recommend h5 {
        line-height: 25px;
    }

        .aside-recommend h5 > a {
            font-size: 14px;
            color: #303030;
            font-weight: normal;
        }

            .aside-recommend h5 > a:hover, .aside-recommend h5 > a:active {
                color: #1458d4;
            }

.dot {
    background: #bbb;
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    top: -2px;
    margin: 5px 10px 0 0;
}

