.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000000;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 6px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 330px;
    height: 260px;
}

.hidden {
    display: none;
}

.button {
    display: inline-block;
    padding: 4px 20px 6px 20px;
    background-color: red;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

#show {
    display: none;
}

#weixin-tip {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 80%);
    filter: alpha(opacity=80);
    height: 100%;
    width: 100%;
    z-index: 100;
}

#weixin-tip p {
    text-align: center;
    margin-top: 10%;
    padding: 0 5%;
}

.img1 {
    width: 100%;
    /*height: 100%;*/
}

.hkfd {
    background-color: #CD0000; /* 更深的蓝色，和页面风格一致 */
    text-align: center;
    padding: 5px 0; /* 增加内边距使内容更加突出 */
    border: 1px solid #ffffff; /* 保持白色边框，避免颜色冲突 */
    color: white;
    font-size: 22px; /* 字号和之前部分一致 */
    width: 95%;
    margin: 15px auto !important;
    font-weight: bold; /* 加粗字体 */
    /*border-radius: 8px; !* 增加圆角，和页面其他部分的风格一致 *!*/
    box-shadow: 0 0 0 2px #CD0000, -2px 3px 4px rgb(162, 162, 162);
}

.hkfd > p {
    margin: 0;
    color: white;
    font-size: 20px;
}

.outer-border {
    border: 2px solid #6b2604; /* 外层实线边框 */
    padding: 2px; /* 外层容器的内边距 */
    /*border-radius: 10px; !* 外层圆角 *!*/
    background-color: #f9f9f9; /* 外层背景颜色 */
    width: 96%;
    margin-left: 2%;
    margin-top: 13px;

}

.inner-border {
    border: 2px dashed #6b2604; /* 内层虚线边框 */
    padding: 5px; /* 内层容器的内边距 */
    border-radius: 8px; /* 内层圆角 */
    background-color: #fff; /* 内层背景颜色 */
    /*margin: 13px 0 13px 0;*/
}

.testimonial-header {
    display: flex;
    margin-bottom: 20px;
    margin-top: 20px;
}

.testimonial-header img {
    border-radius: 50%; /* 图片圆形 */
    width: 80px;
    height: 80px;
    margin-right: 10px;
    margin-top: 20px;
    /*border: 2px solid #6b2604; !* 给图片加一个实线边框 *!*/
}

.testimonial-header p {
    font-size: 20px;
    margin: 0;
}

.comment {
    margin-top: 10px;
    font-size: 20px;
    /*border: 2px solid #6b2604; !* 给文字内容加一个实线边框 *!*/
    padding: 10px; /* 文字内容的内边距，确保文字和边框有一定间隔 */
    border-radius: 8px; /* 给文字边框圆角 */
}

/*         */

/* 页面背景和容器样式 */
.page-container {
    background-color: #F0F0F0;
    padding: 20px;
    max-width: 750px;
    margin: 0 auto;
    min-height: 100vh;
}

/* 评论容器 */
.comment-container {
    background-color: #FFF;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 头像和昵称一行排列 */
.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.username {
    font-size: 16px;
    font-weight: bolder;
    color: #333;
}

/* 评论内容和时间 */
.comment-text {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.comment-time {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

/* 回复部分 */
.reply-container {
    background-color: #F7F7F7;
    padding: 8px;
    border-radius: 5px;
    margin-top: 10px;
}

.reply-text {
    font-size: 16px;
    color: #666;
}

.reply-container .username {
    color: #1E90FF;
}

.reply-to {
    color: #FF4500;
}

.guan {
    background-color: yellow;
    padding: 4px;
    color: red;
}

.inline-box {
    display: inline-block; /* 让div水平排列 */
    margin-right: 20px; /* 可选，为div之间添加间距 */
    background-color: red; /* 背景色 */
    color: yellow; /* 文字颜色 */
    padding: 10px; /* 内边距 */
    font-size: 16px; /* 字体大小 */
}

/* 页面整体容器 */
.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 标题样式 */
.title {
    background-color: #D32F2F;
    color: #FFFFFF;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* 标签容器 */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 标签之间的间距 */
}

/* 标签样式 */
.tag {
    padding: 8px 12px;
    border: 1px solid #999;
    font-size: 14px;
    color: #333;
    border-radius: 20px; /* 圆角标签 */
    background-color: #F5F5F5;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

/* 标签悬停效果 */
.tag:hover {
    background-color: #E0E0E0;
    transform: scale(1.05);
}

/* 热门评价标题 */
.hot-title {
    background-color: #D32F2F;
    color: #FFFFFF;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    margin-top: 20px;
}

.yellow-red {
    color: #CD0000;
    background-color: yellow;
    padding: 3px 0 3px 0;
    font-weight: bolder;
}

.red-yellow {
    color: yellow;
    background-color: red;
    padding: 5px 0 5px 0;
    font-weight: bolder;
}

.red-white {
    color: white;
    background-color: #CD0000;
    padding: 3px 0 3px 0;
    font-weight: bolder;
}


.green-blue {
    color: blue;
    background-color: #00ff00;
    padding: 3px 0 3px 0;
    font-weight: bolder;
}

.red-bolder {
    color: #CD0000;
    font-weight: bolder;
}

.red {
    color: #CD0000;
}

.blue-bolder {
    color: #3355FB;
    font-weight: bolder;
}

.blue {
    color: #3355FB;
}

/* hot-title-grey */

.pinlun-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    padding: 0 20px;
    margin-top: 13px;
}

.pinlun-title span {
    color: #666;
}

.user {
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 15px;
}

.user-main {
    padding: 0 20px;
    overflow: hidden;
}

.word {
    padding: 0 20px 0 62px;
    margin-top: 5px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 30px;
}

.user-time {
    padding: 2px 0px;
    font-size: 14px;
    color: #999;
    margin-top: -23px;
    overflow: hidden;
}

.dianzan {
    float: right;
}

.dianzan_icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.orange-color {
    color: #4173af;
    margin-top: 28px;
    font-weight: bolder;
    font-size: 16px;
}

.time {
    float: left;
    display: inline-block;
    color: #999;
    font-size: 13px;
}

.user_pic {
    width: 38px;
    float: left;
    display: inline-block;

}

.user_pic img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /* 30px是有点赞 */
    /*margin-top: 30px;*/
    /* 20px是没有点赞 */
    margin-top: 20px;

}

.border {
    font-weight: bolder;
}

/*小编留言 第一个p加粗蓝色*/
.editor-comment {
    border: 2px dashed #c40000;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 2%;
    background-color: #f9f9f9;
}

.editor-comment p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

.editor-comment p:first-child {
    font-weight: bold;
    font-size: 22px;
    color: #0070C0;
}

/*用户分享 第一个p加粗标红*/
.user-story {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 2%;
    background-color: #f7f7f7;
}

.editor-comment p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

.editor-comment p:first-child {
    font-weight: bold;
    font-size: 22px;
    color: #c40000;
}

/*按钮样式*/
.button-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.button {
    width: 30%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.button:hover {
    background-color: #45a049;
}

/*
            <div class="button-container">
                <button class="button">神庭穴</button>
                <button class="button">顶叶穴</button>
                <button class="button">枕叶穴</button>
            </div>
            <div class="button-container">
                <button class="button">百会穴</button>
                <button class="button">印堂穴</button>
                <button class="button">额陇穴</button>
            </div>
            <div class="button-container">
                <button class="button">颞叶穴</button>
                <button class="button">额叶穴</button>
                <button class="button">风池穴</button>
            </div>
*/
