.fly-panel {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.layui-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    display: inline-block;
    padding: 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
    .nav_a {
        overflow-x: scroll;
        white-space: nowrap;
    }
}

nav .layui-this a {
    color: #009688;
}

nav a:hover {
    color: #009688;
}

.fly-column-right {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.fly-column-right a {
    color: brown;
    font-size: 14px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    nav a {
        font-size: 14px;
    }

    .fly-column-right a {
        font-size: 12px;
    }
}

nav a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #009688;
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #01AAED;
    transform: scale(1.1);
    transition: all 0.1s ease;
}

.fly-column-right a:hover {
    background-color: #e6e6e6;
    transition: all 0.3s ease;
}

.layui-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 30px;
}

.article-list {
    display: flex;
    flex-wrap: wrap;
}

.article-item {
    display: flex;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px dotted #e2e2e2;
}

.article-image {
    width: 180px;
    height: 120px;
    background-color: #ccc;
    margin-right: 30px;
}

.article-image img {
    width: 180px;
    height: 120px;
}

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 30px;
}

.article-label {
    background-color: #009688;
    color: #fff;
    padding: 5px 10px;
    border-radius: 2px;
    margin-right: 10px;
    font-size: 12px;
}

.article-intro {
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.article-footer {
    display: flex;
    font-size: 12px;
    color: #999;
    justify-content: space-between;
}

.article-author, .article-publish-date, .article-reward, .article-view-count {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .article-item {
        flex-direction: column;
    }

    .article-content {
        order: 2; /* 新加的 */
    }

    .article-image {
        display: none;
    }
}

.tb {
    padding: 0 5px 0 0;
}

.jf {
    color: #FF5722;
}

.article-item:hover .article-title a {
    color: #06c;
}

.article-item:hover {
    background: #f9fafb;
    cursor: pointer;
}

.fixed-element {
    background-color: white;
    opacity: 1;
    z-index: 999;
}

.page-bkg {
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
}


.tj-fly-panel-title {
    font-size: 20px;
    color: #333;
    padding-bottom: 5px;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 10px;
}

.tj-fly-list-static {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tj-fly-list-static li {
    position: relative;
    margin-bottom: 20px;
}

.tj-fly-list-static a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.tj-fly-list-static a:hover {
    color: #1e9fff;
}

.tj-fly-panel-title i {
    margin-right: 10px;
    font-size: 24px;
    color: #1e9fff;
}

.num-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    margin-right: 10px;
    color: #00bfff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.num-icon-hot {
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    margin-right: 10px;
    color: #ff3333;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.qd-container {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.qd-header {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
    height: 35px;
}

.qd-header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.qd-header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #999;
}

.qd-button-container {
    display: flex;
    width: 100%;
    padding-bottom: 10px;
}

.qd-button-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qd-sign-in-button {
    width: 100px;
    height: 30px;
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.qd-sign-in-button:hover {
    background-color: #0070c9;
}

.qd-points-container {
    display: flex;
    width: 100%;
    height: 50px;
}

.qd-points-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qd-number {
    color: #FF5722;
    padding: 0 2px;
}

#qd-shuoming {
    color: #01AAED;
    padding-left: 2px;
    cursor: pointer;
}


.tj-fly-list-static li span {
    position: absolute;
    left: 0;
    top: 0;
}

.tj-fly-list-static li a {
    overflow: hidden;
    padding-left: 2em;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.task-title {
    cursor: pointer;
}

.task-status {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

.task-item.selected {
    background-color: #f2f2f2;
}

.task-checkbox:checked + .task-title {
    text-decoration: line-through;
    color: #999;
}

.task-item:hover {
    background-color: #f2f2f2;
}

.layui-this {
    color: #01AAED;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.pagination a.active {
    background-color: #01AAED;
    color: white;
}

@media (max-width: 480px) {
    .pagination {
        flex-wrap: wrap;
    }

    .pagination a {
        margin: 8px 0;
    }
}


.comment {
    padding: 20px 0;
    border-bottom: 1px dotted #e2e2e2;
}

.comment-info {
    display: flex;
    align-items: center;
    padding: 0;
}

.user-avatar {
    width: 59px;
    height: 59px;
    border-radius: 50%;
}

.user-details {
    margin-left: 15px;
}

.username {
    color: #FA536F;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
}

.comment-text {
    color: #222;
    padding: 15px;
    margin-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.detail-hits {
    margin-top: 20px;
}

.pub-date {
    font-size: 14px;
    color: #999;
}

.reply-btn {
    float: right;
    font-size: 13px;
    color: #0a568c;
    cursor: pointer;
}

.child-comments {
    padding-left: 40px;
}

.level-1 > .child-comments {
    padding-left: 10px; /* 一级评论的子评论不需要缩进 */
}

.level-2 > .child-comments {
    padding-left: 25px; /* 二级评论的子评论需要缩进 */
}


/* 根据需要添加更多样式 */
.child-comments li {
    border-bottom: none;
    padding: 10px 0;
}

.child-comments .comment-info a img {
    width: 25px;
    height: 25px;
}

.child-comments .userinfo .username {
    font-size: 14px;
}

.child-comments .userinfo .user-badge {
    height: 13px;
    line-height: 13px;
}

.child-comments .comment-text {
    padding: 5px;
    margin-top: 0;
    font-size: 13px;
}

.child-comments .detail-hits {
    margin-top: 0;
}

.child-comments .pub-date {
    font-size: 12px;
}

.reply-btn {
    display: none;
}

.comment:hover .reply-btn {
    display: inline-block;
}

.content img {
    max-width: 100%;
    height: auto !important;
}

.jifenshuoming p{
    padding: 5px 0;
    color: #555;
}



.fly-rank dd {
    position: relative;
    width: 65px;
    height: 85px;
    margin: 10px 5px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    font-size: 12px;
}

.fly-rank dd a img {
    width: 65px;
    height: 65px;
    border-radius: 2px;
}


.fly-rank dd a cite {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: rgba(0,0,0,.2);
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fly-rank dl{
    text-align: center;
}

.fly-rank dd a i {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: normal;
}