* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }

        body {
            background-color: #f4f4f9;
            color: #333;
            line-height: 1.6;
            padding-bottom: 80px;
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 15px;
        }

        /* 文章头部样式 */
        .article-header {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eaeaea;
        }

        .article-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #212121;
            line-height: 1.4;
            text-align: center;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 20px;
        }
        .author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* 确保图片也是圆形 */
    object-fit: cover; /* 保持图片比例，避免变形 */
}
        .author-details {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            font-size: 1rem;
            color: #212121;
        }

        .publish-date {
            font-size: 0.85rem;
            color: #757575;
        }

        /* 文章内容样式 */
        .article-content {
            padding: 20px 0;
            font-size: 1.1rem;
            color: #424242;
            line-height: 1.8;
             overflow: hidden;
        }

        .article-content p {
            margin-bottom: 20px;
             max-width: 100%;
        }
       .article-content img {
             max-width: 100%;
        }
        .article-content video {
             max-width: 100%;
        }
        .article-content ul,
.article-content ol,
.article-content a {
    max-width: 100%;
}
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
            margin: 30px 0;
        }

        /* 评论列表样式 */
        .comments-section {
            margin-top: 30px;

        }
        .comments-section-sdsm{
             margin-top: 30px;
            width: 100%;
        }
        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #212121;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-title i {
            color: #00a1d6;
        }

        .comment-count {
            font-size: 0.9rem;
            color: #757575;
            margin-left: 5px;
        }

        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .comment-item {
            display: flex;
            gap: 12px;
        }

        .comment-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 16px;
            flex-shrink: 0;

        }
       .comment-avatar img {
    width: 100%; /* 使用百分比而非固定像素，继承容器尺寸 */
    height: 100%;
    border-radius: 50%; /* 确保图片也是圆形 */
    object-fit: cover; /* 保持图片比例，避免变形 */
}
        .comment-content {
            flex: 1;
            background: #fff;
            border-radius: 12px;
            padding: 12px 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .comment-author {
            font-weight: 600;
            font-size: 0.95rem;
            color: #616161;
        }

        .comment-time {
            font-size: 0.8rem;
            color: #9e9e9e;
        }

       .comment-text {
    font-size: 0.95rem;
    color: #424242;
    line-height: 1.5;
    word-break: break-word; /* 允许在单词中间换行 */
    overflow-wrap: break-word; /* 长单词或URL自动换行 */
    white-space: normal; /* 取消强制不换行 */
}

       /* 底部评论输入框样式 */
.comment-input-container {
    position: fixed; /* 固定定位，确保悬浮在底部 */
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 12px 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* 默认状态下的评论输入框 */
.comment-input-container.collapsed {
    padding: 10px 15px;
    height: 60px;
}

        .comment-input-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .comment-input-title {
            font-size: 1rem;
            font-weight: 500;
            color: #212121;
        }

        .close-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #757575;
            transition: all 0.2s;
        }

        .close-btn:hover {
            background: #e0e0e0;
            color: #212121;
        }

        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .comment-textarea {
            width: 100%;
            min-height: 60px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            font-size: 0.95rem;
            resize: none;
            outline: none;
            transition: border-color 0.2s;
        }

        .comment-textarea:focus {
            border-color: #00a1d6;
        }

        .comment-submit {
            align-self: flex-end;
            background: #00a1d6;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 8px 20px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }

        .comment-submit:hover {
            background: #0087b4;
        }

        /* 默认状态下的评论输入框 */
        .comment-input-container.collapsed {
            padding: 10px 15px;
            height: 60px;
        }

        .collapsed-comment-input {
            display: flex;
            align-items: center;
            background: #f5f5f7;
            border-radius: 24px;
            height: 40px;
            padding: 0 15px;
            cursor: pointer;
            color: #757575;
        }

        .collapsed-comment-input i {
            margin-right: 8px;
            font-size: 1.1rem;
            color: #00a1d6;
        }

        .expanded-comment {
            display: none;
        }

        .comment-input-container.expanded .expanded-comment {
            display: block;
        }

        .comment-input-container.expanded .collapsed-comment-input {
            display: none;
        }

        /* 响应式调整 */
        @media (min-width: 768px) {
            .container {
                max-width: 700px;
                padding: 30px 20px;
            }

            .comment-input-container {
                max-width: 700px;
                margin: 0 auto;
                left: 50%;
                transform: translateX(-50%);
                border-radius: 12px 12px 0 0;
            }
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .comment-item {
            animation: fadeIn 0.3s ease-out;
        }

        /* 底部装饰线 */
        .bottom-line {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
            color: #9e9e9e;
            font-size: 0.9rem;
        }

        .line {
            flex: 1;
            height: 1px;
            background: #e0e0e0;
        }

        .line-text {
            padding: 0 15px;
        }

        .wz_obj{
      width: 213px;
    height: 80px;
     cursor: pointer;
    border-radius: 5px; /* 圆角边框 */
    background-color: #d5d1d1;;
    flex: 0 0 auto; /* 不允许子元素伸缩，保持固定大小 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 平滑过渡效果 */
 display: flex; /* 使用Flexbox布局 */
    flex-direction: column; /* 子元素垂直排列 */
    justify-content: center; /* 垂直居中对齐子元素 */
    align-items: center; /* 水平居中对齐子元素 */


}

.wz_obj:hover {
    transform: scale(1.1); /* 鼠标悬停时放大10% */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); /* 增加阴影效果，增强立体感 */
}


.wz_obj img{
   /*margin: 15px;*/
    width: 35px;
   height: 35px;

      margin-top: 3px;

}
.wz_obj span{
   /*margin: 15px;*/
     font-size: 12px;
      margin-top: 3px;


}

.index-wangzhan-div-dueixiang-name {
    margin: auto;
    width: 60%;
    height: 80px;
    border-radius: 5px;
    background-color: #d5d1d1;
    flex: 0 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.index-wangzhan-div-dueixiang-name:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.index-wangzhan-div-dueixiang-name-h1 {
    font-size: 10px;
}

.index-wangzhan-div-dueixiang-name img {
    width: 15px;
    height: 15px;
    margin-top: 3px;
}

.index-wangzhan-div-dueixiang-name span {
    font-size: 12px;
    margin-top: 3px;
}

.index-wangzhan-div-dueixiang-gongneng {
    margin: 5px 0 0 0;
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-wangzhan-div-dueixiang-gongneng nav {
    width: 65px;
    height: 25px;
    font-size: 15px;
}