html {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    font-size: 14px;
}

body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    color: #555;
}

h1 {
    margin: 0;
    padding: 0;
}

h2 {
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 18px;
    color: #666;
    border-bottom: 1px solid #eaeaea;
    background-color: #fbfbfb;
    margin: 0;
    padding: 11px 15px 10px;
}

h4 {
    margin: 0;
    padding: 0;
}

h5 {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a:link {
    color: #555;
}

a:visited {
    color: #555;
}

a:hover {
    color: red;
}

a:active {
    color: red;
}

.p_qurk {
    font-size: 11px;
    padding: 2px;
    background-color: green;
    border-radius: 5px;
    color: #fff;
}

.p_alipan {
    font-size: 11px;
    padding: 2px;
    background-color: green;
    border-radius: 5px;
    color: #fff;
}

.p_baidu {
    font-size: 11px;
    padding: 2px;
    background-color: green;
    border-radius: 5px;
    color: #fff;
}

.p_pan123 {
    font-size: 11px;
    padding: 2px;
    background-color: green;
    border-radius: 5px;
    color: #fff;
}

.p_tianyi {
    font-size: 11px;
    padding: 2px;
    background-color: green;
    border-radius: 5px;
    color: #fff;
}

.p_115 {
    font-size: 11px;
    padding: 2px;
    background-color: green;
    border-radius: 5px;
    color: #fff;
}

.p_xunlei {
    font-size: 11px;
    padding: 2px;
    background-color: green;
    border-radius: 5px;
    color: #fff;
}


#top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#body {
    justify-content: space-between;
    display: flex;
    width: 100%;
}

#left {
    width: 300px;
    flex-shrink: 0;
    background-color: #F9F9F9;
}

#center {
    flex-grow: 1;
}

#right {
    /*border: 1px solid #ccc;*/
    width: 300px;
    border-radius: 10px;
    min-height: 100%;
    margin-left: 10px;
    flex-shrink: 0;
}

#footer {
    margin-top: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
    font-size: 12px;
    padding-top:10px;
    width:100%;
}

.navbar-nav {
}

    .navbar-nav li {
        height: 35px;
        line-height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 5px;
        border-radius: 5px;
        padding-left: 50px;
    }

        .navbar-nav li a {
            flex-grow: 1;
        }

        .navbar-nav li:hover {
            background-color: #f3f3f3;
        }

        .navbar-nav li img {
            width: 20px;
            height: 20px;
            margin: 5px;
        }

.search {
    text-align: center;
    margin: 10px 0px;
    color: #262626;
}

    .search input {
        margin: 0px;
        padding: 0px;
    }

    .search .btn_search {
        height: 35px;
        width: 100px;
        text-align: center;
        line-height: 25px;
        margin-left: 10px;
        background-color: #67C23A;
        color: #fff;
        cursor: pointer;
        border-radius: 5px;
    }

        .search .btn_search:hover {
            background-color: #95D475;
        }

    .search ul {
        position: absolute;
        background-color: #fff;
        width: 500px;
        border: 1px solid #ccc;
        top: 36px;
    }

        .search ul li {
            min-height: 30px;
            text-align: left;
            line-height: 30px;
            cursor: pointer;
            padding-left: 5px;
        }

            .search ul li:hover {
                background-color: #ccc;
            }

.top-nav {
    display: flex;
}

    .top-nav li {
        min-width: 100px;
        text-align: center;
        height: 35px;
        line-height: 35px;
        background-color: #f2f2f2;
        margin-left: 15px;
        border-radius: 5px;
        cursor: pointer;
    }

        .top-nav li.now {
            background-color: #000000;
        }

            .top-nav li.now:hover {
                background-color: #000000;
            }

    .top-nav .now a {
        color: #fff;
    }

    .top-nav li:hover {
        background-color: #E5E5E5;
    }

    .top-nav li a {
        text-decoration: none;
    }

        .top-nav li a:hover {
            color: none;
        }

.responsive-ellipsis {
    max-width: 95%; /* 按比例适应容器 */
    overflow: hidden;
    text-overflow: ellipsis;
}


.article {
}

    .article .article-item {
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
        margin: 10px;
    }

        .article .article-item .user {
            display: flex;
            height: 25px;
            margin: 0px 10px;
        }

            .article .article-item .user img {
                height: 100%;
                width: 25px;
                border-radius: 50%;
                border: 1px;
            }

            .article .article-item .user span {
                height: 100%;
                line-height: 25px;
                margin-left: 10px;
                font-size: 12px;
            }



        .article .article-item .article-item-content {
            margin: 0px 0px;
            display: flex;
            flex-direction: column;
            font-size: 16px;
            text-decoration: none;
        }

            .article .article-item .article-item-content .article-item-content-title {
                margin: 5px 0px;
            }

            .article .article-item .article-item-content .article-item-content-desc {
                font-size: 12px;
                text-decoration: none;
                color: #999999
            }

.operation-b {
    cursor: pointer;
}

    .operation-b .operation-b-img {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .operation-b p {
        text-align: center;
        margin: 0px;
    }

        .operation-b p img {
            height: 16px;
            margin-right: 4px
        }

    .operation-b .img-hover {
        display: none
    }



    .operation-b .operation-b-img-active:hover img {
        display: none
    }

    .operation-b .operation-b-img-active:hover .img-hover {
        display: block
    }

    .operation-b .operation-b-img-active:hover .num, .article-item .operation-b .operation-b-img-active:hover .text {
        color: #000
    }

    .operation-b .operation-b-img-active.active img {
        display: none
    }

    .operation-b .operation-b-img-active.active .img-hover {
        display: block
    }

    .operation-b .operation-b-img-active.active .num, .article-item .operation-b .operation-b-img-active.active .text {
        color: #000
    }


    .operation-b .text {
        color: #999;
        margin-right: 16px
    }

    .operation-b .num {
        min-width: 22px;
        text-align: start;
        font-size: 12px;
        padding-right: 24px;
        color: #999;
        line-height: 20px
    }

.pager {
    font-size: 12px;
    text-align: center;
    margin: 10px;
    display: flex;
    justify-content: center;
}

    .pager a {
        height: 25px;
        line-height: 25px;
        margin: 0px 10px;
    }

.net-pager {
    display: flex;
    justify-content: center;
    height: 25px;
    line-height: 25px;
    margin: 10px;
}

    .net-pager .item {
        margin: 0px 10px;
    }

.action {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .action button {
        border: 1px solid #ccc;
        border-radius: 5px;
        min-width: 100px;
        height: 35px;
        margin: 0px 10px;
        color: #ffffff;
        cursor: pointer;
        font-weight: bold;
    }

        .action button.red {
            background-color: #CF4620;
        }

            .action button.red:hover {
                background-color: #EA643F
            }

        .action button.blue {
            background-color: #3596A3;
        }

            .action button.blue:hover {
                background-color: #58BFCC
            }

        .action button.yellow {
            background-color: #D9A128;
        }

            .action button.yellow:hover {
                background-color: #FFC038
            }

.ui-widget-overlay {
    background: rgba(0, 0, 0, 0.5) !important; /* 黑色，50%透明度 */
    opacity: 1 !important; /* 确保透明度生效 */
}

.ui-dialog-content {
    display: flex;
}

.input {
    border: 1px solid #ddd;
    border-radius: 5px;
}

    .input:hover {
        border: 1px solid #007BFF;
    }
