.father-main {
    font-family: 'Arial', sans-serif;
    z-index: 98;
    background-color: #f4f4f9;
    color: #333;
}
/* 顶部的论坛名字 */
.forum_theme {
    background: linear-gradient(135deg, #9C27B0, #2196F3); /* 紫色到蓝色渐变 */
    color: white;
    text-align: center;
    padding: 60px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-size: 3rem;
    letter-spacing: 3px;
    border-bottom: 5px solid #1976D2; /* 蓝色的下边框 */
    text-transform: uppercase; /* 大写字母 */
}
.forum_theme h1 {
    margin: 0;
    font-size: 4rem; /* 更大的字体 */
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* 字体阴影 */
}
.main_information {
    width: 85%;
    max-width: 1200px;
    margin: 30px auto;
    text-align: center;
}
/* 论坛题目容器 */
.forum_name {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
/* 论坛标题 */
.forum_name .title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
/* 论坛发起者和日期 */
.forum_name .details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}
.forum_name .details .author {
    color: #2196F3; /* 发起者蓝色 */
    font-weight: bold;
}
.forum_name .details .date {
    font-style: italic;
}
/* 评论容器 */
.comment {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    position: relative; /* 使时间能定位 */
    padding-bottom: 40px;
}
/* 头像样式 */
.comment .avatar {
    width: 60px; /* 放大头像 */
    height: 60px; /* 放大头像 */
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}
/* 评论内容 */
.comment .content {
    text-align: left;
    flex-grow: 1;
}
/* 名字样式 */
.comment .name {
    color: #2196F3; /* 蓝色 */
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem; /* 放大名字 */
}
/* 留言文字 */
.comment .message p {
    margin-bottom: 10px;
    font-size: 1.1rem; /* 放大留言 */
    line-height: 1.6;
    display: block;
}
/* 图片容器 */
.comment .message .message-images {
    display: flex; /* 使用 Flexbox 布局 */
    flex-wrap: wrap; /* 自动换行 */
    gap: 10px; /* 图片间距 */
    margin-top: 10px; /* 与文字分隔 */
}
/* 留言中的图片 */
.comment .message .message-images img {
    border-radius: 10px;
    height: auto; /* 保持原始比例 */
}
/* 横向图片 */
.comment .message .message-images img.horizontal-img {
    width: 50%;
}
/* 竖向图片 */
.comment .message .message-images img.vertical-img {
    width: 30%;
}.comment .message .message-videos {
    display: flex; /* 使用 Flexbox 布局 */
    flex-wrap: wrap; /* 自动换行 */
    gap: 10px; /* 图片间距 */
    margin-top: 10px; /* 与文字分隔 */
}
.comment .message .message-videos video {
    border-radius: 10px;
    height: auto; /* 保持原始比例 */
}
.comment .message .message-videos video.horizontal-video {
    width: 50%;
}
.comment .message .message-videos video.vertical-video {
    width: 30%;
}

/* 留言时间 */
.comment .timestamp {
    position: absolute; /* 定位到右下角 */
    bottom: 10px;
    right: 10px;
    font-size: 0.9rem;
    color: #666;
    /* font-style: italic; 字体变斜 */
}