@font-face {
    font-family: "PingFang SC";
    font-weight: 100;
    font-style: normal;
    src: url("../font/PingFangSC-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "PingFang SCMedium";
    font-weight: 100;
    font-style: normal;
    src: url("../font/PingFangSC-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "PingFang SCBold";
    font-weight: 100;
    font-style: normal;
    src: url("../font/PingFangSC-Semibold.woff2") format("woff2");
}
*{
    user-select: none;
    box-sizing: border-box;
}
body {
    margin: 0;
    font: 16px 'PingFang SC', Arial, sans-serif !important; /* 设置默认字体为 PingFang SC */
    background-color: #f4f4f4; /* 背景颜色 */
    user-select: none;
}
::-webkit-scrollbar {
    display: none;
}
.wid100{
    width: 100%;
}
.ft20{
    font-size: 20px !important;
}
.font-bold{
    font-weight: bold !important;
}
.cursor-pointer{
    cursor: pointer !important;
}
.pos-relative{
    position: relative !important;
}
.pb30{
    padding-bottom: 30px !important;
}
.mb5{
    margin-bottom: 5px !important;
}
.mb10{
    margin-bottom: 10px !important;
}
.mb20{
    margin-bottom: 20px !important;
}
.mb30{
    margin-bottom: 30px !important;
}
.mt10{
    margin-top: 10px !important;
}
.mt20{
    margin-top: 20px !important;
}
.mt30{
    margin-top: 30px !important;
}
.mt40{
    margin-top: 40px !important;
}
.ml20{
    margin-left: 20px !important;
}
.ml30{
    margin-left: 30px !important;
}
.ml40{
    margin-left: 40px !important;
}
.mr10{
    margin-right: 10px !important;
}
.margin-auto{
    margin: 0 auto;
}
.hide{
    display: none !important;
}
.bg{
    background-color: #ffffff !important;
}
.flex-row{
    display: flex;
    flex-direction: row;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.item-center{
    align-items: center;
}
.justify-center{
    justify-content: center;
}
.justify-end{
    justify-content: flex-end;
}
.flex1{
    flex: 1;
}
.gap10{
    gap: 10px;
}
.gap20{
    gap: 20px;
}
.header, .footer {
    background: #3D3A49; /* 统一背景色 */
    color: #fff;
    text-align: center;
}
.header{
    width: auto;
    height: 116px; /* 默认高度 */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-inline: 200px; /* 默认内边距 */
}
.header-left{
    text-align: left;
    font-family: 'PingFang SC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
}
.header-logo{
    width: 127px;
    height: 75px;
    object-fit: contain;
}
.header-right{
    display: flex;
    gap: 20px;
}
.header-right-logo{
    width: 24px;
    height: 24px;
}
.footer {
    background-color: #3D3A49; /* 背景色 */
    color: #ffffff; /* 字体颜色 */
    text-align: center; /* 居中显示 */
    height: 384px; /* 默认高度 */
    display: flex;
    flex-direction: column; /* 垂直排列 */
    justify-content: center; /* 垂直居中 */
}

.footer-logo {
    margin-bottom: 30px; /* 第一行与第二行之间的间距 */
}

.footer-logo-img {
    width: 127px; /* Logo 宽度 */
    height: 75px; /* Logo 高度 */
    object-fit: contain;
}

.footer-links {
    display: flex; /* 横向排列 */
    justify-content: center; /* 居中显示 */
    gap: 94px; /* 链接之间的间距设置为 94px */
    font-size: 16px; /* 字体大小 */
}

.footer-links a {
    color: #ffffff; /* 链接颜色 */
    text-decoration: none; /* 去掉下划线 */
}

.footer-line {
    width: 100%; /* 设置为100%以实现自适应宽度 */
    max-width: 1200px; /* 最大宽度限制为1200px */
    height: 1px; /* 横线高度 */
    background-color: rgba(255, 255, 255, 0.2); /* 横线颜色，透明度20% */
    margin: 2em auto; /* 上下间距使用em单位，居中显示 */
}

.footer-copy {
    font-size: 16px; /* 字体大小 */
    color: #ffffff; /* 字体颜色 */
}

.login-container {
    position: relative; /* 设置为相对定位，以便绝对定位子元素 */
    width: 100%;
    height: auto; /* 设置高度为 auto */
    padding-top: 130px; /* 上内边距 */
    padding-bottom: 130px; /* 下内边距 */
    background: rgba(255, 255, 255, 0.15) url('/public/images/back.png') no-repeat center center; /* 添加背景图和透明度 */
    background-size: cover; /* 使背景图覆盖整个区域 */
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

.person-box {
    position: relative; /* 设置为相对定位，以便绝对定位子元素 */
    width: 100%;
    height: auto; /* 设置高度为 auto */
    padding-top: 80px; /* 上内边距 */
    padding-bottom: 130px; /* 下内边距 */
    background: rgba(255, 255, 255, 0.15) url('/public/images/back.png') no-repeat center center; /* 添加背景图和透明度 */
    background-size: cover; /* 使背景图覆盖整个区域 */
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: column;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

.login-box {
    width: 100%;
    max-width: 570px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #ffffff; /* 设置登录框的背景色为白色，增加可读性 */
    position: relative; /* 设置为相对定位，以便绝对定位子元素 */
}
.login-box .login-logo {
    width: 100px;
    height: 100px;
}
.login-box .layui-btn {
    width: 100%;
}
.news-image {
    position: absolute; /* 绝对定位 */
    bottom: -100px;
    left: -150px;
    width: 257px; /* 图片宽度 */
    height: 196px; /* 图片高度 */
    max-width: none; /* 不限制最大宽度 */
    max-height: none; /* 不限制最大高度 */
}

.header-channels-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}
.header-channels {
    background-color: #ffffff;
    color: #3D3A49;
    font-size: 16px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    white-space: nowrap;
    min-width: 100%;
}

.header-channels a {
    color: #3D3A49;
    text-decoration: none;
    margin: 0 22.5px;
    padding: 10px 0;
}

.header-channels a:hover {
    text-decoration: none;
    color: #3D3A49;
}

.login-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.login-option {
    color: #7a7a7a; /* 默认文字颜色 */
    border: none; /* 去掉边框 */
    padding: 10px 20px; /* 内边距 */
    border-radius: 5px; /* 圆角 */
    cursor: pointer; /* 鼠标指针样式 */
    font-size: 15px; /* 字体大小 */
    transition: background-color 0.3s; /* 添加过渡效果 */
}

.login-option.active {
    color: #000000; /* 选中时的文字颜色 */
}

.login-form {
    margin-top: 20px; /* 上间距 */
}
.wechat-qr{
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.qr-image {
    width: 222px; /* 二维码宽度 */
    height: 222px; /* 高度自适应 */
}

.qr-text {
    width: 432px;
    text-align: center; /* 文本居中 */
    margin-top: 10px; /* 上间距 */
}

.qr-text-agree {
    color: #000000; /* 文字颜色 */
    font-size: 16px; /* 字体大小 */
    margin: 5px 0; /* 段落上下间距 */
}

.qr-text-register {
    color: #000000; /* 注册链接颜色 */
    font-size: 16px; /* 字体大小 */
    margin: 5px 0; /* 段落上下间距 */
}

.register-link {
    color: #4C9DE8; /* 注册链接颜色 */
    text-decoration: none; /* 去掉下划线 */
}

.register-link:hover {
    color: #4C9DE8;
    text-decoration: none; /* 悬停时添加下划线 */
}
.mobile-box{
    width: 475px;
    margin: 0 auto;
}

.phone-input-group {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    background-color: #f8f8f8; /* 背景色 */
    border-radius: 5px; /* 圆角 */
    height: 47px; /* 整行高度 */
    position: relative; /* 使下拉列表相对于此元素定位 */
}

.phone-code-display {
    width: 60px;
    height: 31px;
    background-color: #ffffff;
    border-radius: 5px;
    color: #7a7a7a;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    position: relative;
}
.div-select-areacode{
    width: 100%;
    height: 31px;
    line-height: 31px;
    text-align: center;
}

.phone-code-dropdown {
    background-color: #ffffff;
    border-radius: 5px;
    margin-top: 0;
    padding: 0;
    list-style: none;
    width: 60px;
    z-index: 1000;
    display: none;
    position: absolute;
    top: 0px;
    max-height: 160px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phone-code-dropdown li {
    height: 31px;
    line-height: 31px;
    padding: 0 10px;
    color: #7a7a7a;
    font-size: 15px;
    border-bottom: 0.5px solid #eeeeee;
    cursor: pointer;
}

.phone-code-dropdown li:last-child {
    border-bottom: none; /* 最后一行去掉横线 */
}

.phone-code-dropdown li:hover {
    background-color: #f0f0f0; /* 悬停时的背景色 */
}

.login-form .layui-input{
    background-color: transparent !important;
    border: none !important;
    box-shadow: none;
}
.password-input{
    padding-left: 20px !important;
}
.login-btn{
    display: inline-block;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 0 18px;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    width: 212px;
    height: 40px;
    line-height: 40px;
    border-radius: 33px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    background-color: #3DA2E3;
    margin-top: 10px;
}
.login-btn:hover{
    background-color: #08629C;
}
.login-footer {
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: center; /* 居中对齐 */
    margin-top: 20px; /* 上间距 */
    margin-bottom: 30px;
}

.footer-link {
    color: #3DA2E3; /* 文字颜色 */
    font-size: 15px; /* 字体大小 */
    text-decoration: none; /* 去掉下划线 */
}

.footer-link:hover {
    text-decoration: none; /* 悬停时添加下划线 */
}

.divider {
    color: #7a7a7a; /* 竖线颜色 */
    margin: 0 5px; /* 竖线的左右间距 */
    align-self: center; /* 垂直居中 */
}

.verification-group {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    background-color: #f8f8f8; /* 背景色 */
    border-radius: 5px; /* 圆角 */
    height: 47px; /* 整行高度 */
    position: relative; /* 使下拉列表相对于此元素定位 */
    padding-left: 10px;
}

.get-code-btn {
    background-color: #ffffff; /* 按钮背景色 */
    color: #000000; /* 按钮文字颜色 */
    font-size: 15px; /* 字体大小 */
    border: none; /* 去掉边框 */
    padding: 0px 15px; /* 内边距 */
    margin-right: 10px;
    border-radius: 5px; /* 圆角 */
    cursor: pointer; /* 鼠标指针样式 */
    height: 40px;
    line-height: 40px;
}
.code-input{
    flex: 1;
    margin-right: 10px;
}

.get-code-btn:hover {
    background-color: #f0f0f0; /* 悬停时的背景色 */
}

.error-input {
    color: red !important; /* 字体颜色变为红色 */
}
.error-input::placeholder {
    color: red !important; /* 字体颜色变为红色 */
    opacity: 1; /* 确保颜色不透明 */
}

.ad-index-top-link{
    display: block;
    width: 100%;
    height: 245px;
    text-align: center;
}
.ad-index-top{
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* 首页链接底部的蓝色线条 */
.link-bottom-line {
    border-bottom: 2px solid #3DA2E3;
    font-weight: 700;
}

.news-list {
    list-style: none; /* 去掉列表样式 */
    padding: 0; /* 去掉内边距 */
}

.news-list li {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #EEEEEE;
}

.news-list li a {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    width: 100%; /* 确保每个新闻项宽度自适应 */
    box-sizing: border-box; /* 包含内边距和边框在内的宽度计算 */
}
.news-list li a:hover .news-index{
    margin-right: 20px;
}

.news-list li:last-child {
    border-bottom: 0px solid #eeeeee; /* 每条新闻之间的分隔线 */
    padding-bottom: 0px; /* 下内边距 */
}

.news-index {
    font-size: 16px; /* 序号字体大小 */
    color: #FF4040; /* 序号颜色 */
    margin-right: 10px; /* 右侧间距 */
    flex-shrink: 0; /* 防止序号被压缩 */
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    height: 40px; /* 设置高度以便居中 */
    width: 20px; /* 设置宽度以便居中 */
    border-radius: 50%; /* 可选：使序号为圆形 */
    background-color: rgba(255, 255, 255, 0.8); /* 可选：背景色 */
}

.news-content {
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: column; /* 垂直排列 */
    flex: 1; /* 占据剩余空间 */
}

/* 非 WebKit 浏览器的后备方案 */
.news-title {
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
}

.news-title {
    font-size: 18px; /* 新闻标题字体大小 */
    color: #000000; /* 新闻标题颜色 */
    margin-bottom: 5px; /* 标题与日期之间的间距 */
    overflow: hidden; /* 隐藏超出部分 */
    line-height: 1.5; /* 行高 */
    height: 3em; /* 最大高度为两行 */
    display: flex;
    flex-direction: row;
    align-items: center;
}
/*兼容非 WebKit 浏览器*/
.news-title span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}
.news-title span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.news-date {
    font-size: 12px; /* 日期字体大小 */
    color: #585858; /* 日期颜色 */
    margin-top: 5px; /* 上间距 */
}

.tag-name {
    font-size: 12px;
    color: #6C6C6C;
    margin-top: 5px;
    border: 1px solid #DFDFDF;
    border-radius: 11px;
    position: absolute;
    right: 0px;
    box-sizing: border-box;
    padding: 0px 15px;
}

.common-container {
    position: relative; /* 设置为相对定位，以便绝对定位子元素 */
    width: 100%; /* 宽度自适应 */
    height: auto; /* 设置高度为 auto */
    padding-top: 30px; /* 上内边距 */
    padding-bottom: 30px; /* 下内边距 */
    background-color: #f9f9f9;
    background-size: cover; /* 使背景图覆盖整个区域 */
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

.index-container {
    width: 100%; /* 宽度自适应 */
    max-width: 1300px; /* 最大宽度限制 */
    margin: 0 auto; /* 居中显示 */
    padding: 20px; /* 内边距 */
    position: relative;
}

/* 轮播图和广告位的布局 */
.carousel-section {
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: row; /* 水平排列 */
    margin-bottom: 20px; /* 下间距 */
    justify-content: center;
}

/* 轮播图样式 */
.carousel-left {
    display: flex;
    flex-direction: column; /* 垂直排列 */
}
.layui-carousel{
    min-height: 400px;
    border-radius: 12px;
}
.layui-carousel div.borr12{
    border-radius: 12px;
}
.carousel-image {
    width: 100%; /* 轮播图宽度自适应 */
    height: 100%; /* 轮播图高度 */
    object-fit: cover; /* 保持图片比例 */
    border-radius: 12px;
}

/* 广告位样式 */
.ad-image-link {
    display: block; /* 使链接块级显示 */
    margin-top: 10px; /* 上间距 */
}

.ad-image-link-right {
    display: block; /* 使链接块级显示 */
}

.ad-image-link-row {
    display: block; /* 使链接块级显示 */
    margin-top: 10px; /* 上间距 */
}

.ad-image {
    width: 100%; /* 广告位宽度自适应 */
    height: 135px; /* 广告位高度 */
    object-fit: contain; /* 保持图片比例 */
}

/* 热门列表样式 */
.left-list{
    max-width: 915px !important;
    width: 75% !important;
}
.right-list{
    max-width: 300px;
    width: calc(25% - 20px) !important;
    margin-left: 20px; /* 左侧间距 */
}
.hot-list {
    width: 100%;
    background-color: #ffffff; /* 背景色 */
    padding: 20px;
    box-sizing: border-box;
}

.hot-title {
    font-size: 26px; /* 标题字体大小 */
    color: #000000; /* 标题颜色 */
    margin-bottom: 10px; /* 下间距 */
}

/* 专栏列表样式 */
.column-section {
    margin-top: 20px; /* 上间距 */
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: row;
    justify-content: center;
}

/* 头条样式 */
.left-news{
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
    background-color: #ffffff; /* 背景色 */
}
.headline {
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: space-between; /* 左右分布 */
    align-items: center; /* 垂直居中 */
}

.headline-title {
    font-size: 26px; /* 标题字体大小 */
    color: #000000; /* 标题颜色 */
}

.more-link {
    color: #000000; /* 更多链接颜色 */
    text-decoration: none; /* 去掉下划线 */
}
.more-right{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 头条新闻列表样式 */
.headline-news-list {
    list-style: none; /* 去掉列表样式 */
    padding: 0; /* 去掉内边距 */
    margin-top: 20px; /* 上间距 */
    max-width: 100%; /* 确保列表宽度不超出范围 */
    min-height: 400px;
}

.headline-news-list li {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    margin-bottom: 20px; /* 每条新闻项的下间距 */
    width: 100%; /* 确保每个新闻项宽度自适应 */
    box-sizing: border-box; /* 包含内边距和边框在内的宽度计算 */
}

.headline-news-list li a {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    width: 100%; /* 确保每个新闻项宽度自适应 */
    box-sizing: border-box; /* 包含内边距和边框在内的宽度计算 */
}

.headline-image {
    width: 242px; /* 新闻封面宽度 */
    height: 110px; /* 新闻封面高度 */
    object-fit: cover; /* 保持图片比例 */
    margin-right: 10px; /* 右侧间距 */
    flex-shrink: 0;
    border-radius: 12px;
}
.headline-image.right{
    margin-right: 0px;
    margin-left: 10px;
}
.headline-news-content{
    min-width: 0; /* 关键 */
    overflow: hidden; /* 避免内容撑开 */
}
.headline-news-list li a.personal-comment-content{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}
.headline-news-title {
    flex: 1; /* 使标题占据剩余空间 */
    font-size: 18px; /* 新闻标题字体大小 */
    color: #000000; /* 新闻标题颜色 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.headline-news-list li a .headline-news-title {
    font-family: "PingFang SC", Arial, sans-serif;
    flex: 1;
    font-size: 18px;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.headline-news-list li a:hover .headline-news-title{
    font-family: "PingFang SCMedium", Arial, sans-serif;
}

.headline-news-date {
    font-size: 12px; /* 日期字体大小 */
    color: #6c6c6c; /* 日期颜色 */
    margin-top: 30px; /* 上间距 */
    white-space: nowrap; /* 不换行 */
    display: inline-block; /* 使其宽度根据内容自适应 */
}

/* 广告位样式 */
.ad-column {
    width: 100%;
}

.ad-column-image {
    width: 100%; /* 广告位宽度自适应 */
    height: auto; /* 高度自适应 */
    margin-bottom: 20px; /* 下间距 */
    object-fit: cover; /* 保持图片比例 */
}
.ad-column-image1 {
    width: 100%; /* 广告位宽度自适应 */
    height: auto; /* 高度自适应 */
    margin-bottom: 20px; /* 下间距 */
    object-fit: cover; /* 保持图片比例 */
    max-height: 576px;
}
.ad-column-image2 {
    width: 100%; /* 广告位宽度自适应 */
    height: auto; /* 高度自适应 */
    margin-bottom: 20px; /* 下间距 */
    object-fit: cover; /* 保持图片比例 */
    max-height: 250px;
}

/* 底部广告位样式 */
.ad-bottom {
    margin-top: 20px; /* 上间距 */
    text-align: center; /* 居中显示 */
}

.ad-bottom-image {
    width: 100%; /* 宽度自适应 */
    height: 90px; /* 高度设置为90px */
    object-fit: contain; /* 保持图片比例 */
}

.floating-button {
    position: fixed; /* 固定定位 */
    right: 80px; /* 距离右侧20px */
    bottom: 80px; /* 距离浏览器底部100px */
    background-color: #3DA2E3; /* 背景色 */
    border-radius: 50%; /* 圆形 */
    width: 40px; /* 宽度 */
    height: 40px; /* 高度 */
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    cursor: pointer; /* 鼠标悬停时显示为手型 */
    z-index: 100; /* 确保在最上层 */
}

.button-icon {
    width: 20px; /* 图标宽度 */
    height: 20px; /* 图标高度 */
    object-fit: contain;
}

.carousel-item-content {
    position: relative; /* 使标题相对于图片定位 */
}

.carousel-title-background {
    position: absolute; /* 绝对定位 */
    bottom: 0px; /* 距离底部40px */
    left: 0px; /* 左侧内边距40px */
    right: 0px; /* 右侧内边距40px */
    background: linear-gradient(175.74deg, rgba(0, 0, 0, 0) 3.46%, #1A1A1A 96.54%);
    border-radius: 5px; /* 圆角 */
    padding: 5px 40px 40px 40px; /* 上下内边距 */
}

.carousel-title {
    color: #ffffff; /* 字体颜色，完全不透明的白色 */
    font-size: 24px; /* 字体大小 */
    text-align: left; /* 文本左对齐 */
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 溢出内容显示省略号 */
    width: 100%; /* 宽度为100%减去左右内边距 */
}

.search-bar {
    background-color: white;
    height: 72px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 120px;
    position: absolute; /* Fixed positioning */
    top: 0; /* Below the header */
    left: 0;
    z-index: 1000; /* Ensure it appears above other content */
}
.search-top{
    background-color: white;
    height: 82px;
    width: 1050px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 0 auto;
}
.search-box{
    max-width: 915px;
    margin: 0 auto;
}
.search-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.search-input {
    flex: 1;
    border: none;
    background-color: white;
    font-size: 20px;
    color: #000000;
    padding: 10px;
    margin: 0 10px;
}

.search-button {
    background-color: white;
    border: none;
    font-size: 20px;
    color: #000000;
    cursor: pointer;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 999; /* Below the search bar */
}
.search-container{
    position: relative;
}

.detail-news-title {
    font-size: 24px; /* 字体大小 */
    color: #222222; /* 字体颜色 */
    line-height: 36px; /* 行高 */
    font-weight: 500; /* 字体粗细 */
    margin-bottom: 10px; /* 可选：为标题和轮播图之间添加一些间距 */
}

.detail-news-info {
    font-size: 16px; /* 字体大小 */
    line-height: 20px; /* 行高 */
    font-weight: 400; /* 字体粗细 */
    color: #666666; /* 字体颜色 */
    margin-top: 5px; /* 可选：为信息和标题之间添加一些间距 */
}
.detail-news-info:hover a{
    color: #3DA2E3;
}

/*新闻正文样式*/
.detail-news-content {
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 0 12px;         /* 手机端左右留白 */
    word-break: break-word;  /* 长单词断行 */
    overflow-wrap: break-word;
    white-space: normal;
    color: #222;
    line-height: 1.75em;
    font-size: 16px;
}
.detail-news-content p{
    display: block;
    text-align: left;
    margin-bottom: 26px
}
/* 图片自动缩放，居中 */
.detail-news-content img {
    max-width: 100% !important;
    height: auto;
    display: block;
    margin: 12px auto;
    border-radius: 4px;
}
/* 表格宽度自适应，超宽时可横向滚动 */
.detail-news-content table {
    width: 100%;
    max-width: 100% !important;
    border-collapse: collapse;
    table-layout: auto;
    display: block;
    overflow-x: auto;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 300px;
}
/* 表格内边距和边框 */
.detail-news-content th,
.detail-news-content td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}
/* 视频和 iframe 响应式宽度 */
.detail-news-content iframe,
.detail-news-content video {
    max-width: 100% !important;
    height: auto;
    display: block;
    margin: 12px auto;
    border-radius: 4px;
}
/* 代码块自动换行并滚动 */
.detail-news-content pre,
.detail-news-content code {
    white-space: pre-wrap;
    word-break: break-word;
    max-width: 100% !important;
    overflow-x: auto;
    display: block;
    padding: 12px;
    background-color: #f5f5f5;
    border-radius: 6px;
    margin: 12px 0;
    font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    font-size: 14px;
    line-height: 1.5em;
    color: #333;
}
/* 文字容器，保证所有长文本都能断行 */
.detail-news-content span,
.detail-news-content p,
.detail-news-content div {
    word-break: break-word;
    overflow-wrap: break-word;
}
/* 链接样式 */
.detail-news-content a {
    color: #d92142;
    text-decoration: underline;
    word-break: break-word;
    overflow-wrap: break-word;
}
/* 手机端响应式调整 */
@media (max-width: 768px) {
    .detail-news-content {
        font-size: 15px;
        line-height: 1.6em;
        padding: 0 10px;
    }
    /* 表格最小宽度改小些，方便手机横向滚动 */
    .detail-news-content table {
        min-width: 240px;
    }
    /* 图片和视频在手机端左右间距更小 */
    .detail-news-content img,
    .detail-news-content iframe,
    .detail-news-content video {
        margin-left: auto;
        margin-right: auto;
    }
}
.detail-news-button {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.detail-news-tag {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
}
.detail-button {
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: row;
    gap: 5px;
    align-items: center; /* 垂直居中 */
    background-color: #F2F5F8; /* 默认背景色 */
    border: none; /* 去掉边框 */
    cursor: pointer; /* 鼠标指针样式 */
    margin-right: 20px; /* 按钮之间的间距 */
    padding: 10px 20px; /* 内边距 */
    border-radius: 20px; /* 圆角 */
}

.detail-button:hover,
.detail-button:active {
    background-color: #E9ECF0; /* 悬浮或点击时的背景色 */
}

.detail-button-icon {
    width: 20px; /* 图标宽度 */
    height: 20px; /* 图标高度 */
    margin-right: 5px; /* 图标与文字之间的间距 */
}

.detail-button-text {
    font-size: 12px; /* 按钮文字大小 */
    color: #000000; /* 按钮文字颜色 */
}

.share-icons {
    position: absolute;
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    gap: 10px;
    top: -65px;
    right: 20px;
}

.share-icon-button {
    background-color: transparent; /* 背景透明 */
    border: none; /* 去掉边框 */
    cursor: pointer; /* 鼠标指针样式 */
}

.share-icon {
    width: 44px; /* 图标宽度 */
    height: 44px; /* 图标高度 */
}
/*分享微信二维码*/
.wechat-qr-card {
    position: absolute;
    top: -305px;
    left: -95px;
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 1000;
}
.wechat-qr-card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
/* 箭头指向图标 */
.wechat-arrow-down {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fff;
}

.comment-list {
    margin-top: 20px; /* 上间距 */
}
.comment-row{
    margin-bottom: 15px; /* 每条评论的下间距 */
    border-bottom: 1px solid #E9ECF0;
}
.comment-row:last-of-type{
    border-bottom: 0px solid #ffffff;
}
.comment-item {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: flex-end; /* 垂直对齐 */
    padding: 10px; /* 内边距 */
    background-color: #ffffff; /* 背景色 */
    /* border-radius: 5px;  */
    gap: 10px;
}

.comment-avatar {
    width: 70px; /* 头像宽度 */
    height: 70px; /* 头像高度 */
    border-radius: 50%; /* 圆形头像 */
    margin-right: 10px; /* 右侧间距 */
}

.comment-content {
    flex: 1; /* 占据剩余空间 */
}

.comment-username {
    font-size: 14px; /* 用户名字体大小 */
    color: #6C6C6C; /* 用户名颜色 */
}

.comment-text {
    font-size: 16px; /* 评论内容字体大小 */
    color: #585858; /* 评论内容颜色 */
    margin: 5px 0; /* 上下间距 */
}

.comment-time {
    font-size: 14px; /* 评论时间字体大小 */
    color: #6C6C6C; /* 评论时间颜色 */
}

.comment-actions {
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: row; /* 垂直排列 */
    justify-content: flex-end; /* 底部对齐 */
    margin-left: 10px; /* 左侧间距 */
    gap: 5px;
}

.action-button {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    background-color: transparent; /* 背景透明 */
    border: none; /* 去掉边框 */
    cursor: pointer; /* 鼠标指针样式 */
    margin-top: 5px; /* 上间距 */
}

.action-icon {
    width: 24px; /* 图标宽度 */
    height: 24px; /* 图标高度 */
    margin-right: 5px; /* 图标与文字之间的间距 */
}

.action-text {
    font-size: 12px; /* 按钮文字大小 */
    color: #6C6C6C; /* 按钮文字颜色 */
}

.reply-item {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: flex-end; /* 垂直对齐 */
    margin-bottom: 15px; /* 每条评论的下间距 */
    padding: 10px; /* 内边距 */
    background-color: #ffffff; /* 背景色 */
    border-radius: 5px; /* 圆角 */
    gap: 10px;
    margin-left: 70px;
}

.expand-section {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    margin-top: 10px; /* 上间距 */
    cursor: pointer; /* 鼠标指针样式 */
}

.expand-icon {
    width: 24px; /* 图标宽度 */
    height: 24px; /* 图标高度 */
    margin-right: 5px; /* 图标与文字之间的间距 */
}

.expand-text {
    font-size: 15px; /* 文字大小 */
    color: #000000; /* 文字颜色 */
}

.comment-input-section {
    display: flex; /* 使用 Flexbox 布局 */
    flex-direction: column;
    margin-top: 10px; /* 上间距 */
}

.comment-input {
    width: 100%; /* 宽度设置为100% */
    font-size: 15px; /* 字体大小 */
    color: #000000; /* 字体颜色 */
    border: 1px solid #E9ECF0; /* 边框样式 */
    border-radius: 5px; /* 圆角 */
    padding: 10px; /* 内边距 */
    resize: none; /* 禁止调整大小 */
    height: 160px; /* 高度设置 */
}

.comment-button-container {
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: flex-end; /* 右侧对齐 */
    margin-top: 10px; /* 上间距 */
}

.comment-submit-button {
    display: inline-block;
    background-color: #3DA2E3; /* 按钮背景色 */
    color: #ffffff; /* 按钮文字颜色 */
    font-size: 14px; /* 按钮文字大小 */
    border: none; /* 去掉边框 */
    border-radius: 20px;
    padding: 10px 40px;
    cursor: pointer; /* 鼠标指针样式 */
}

.comment-submit-button:hover {
    background-color: #08629C; /* 悬停时的背景色 */
}
.comment-delete{
    color: #FF4040;
}

/* 添加到 common.css */
.new-modal {
    position: fixed; /* 固定定位 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    z-index: 1000; /* 确保在最上层 */
}

.new-modal-content {
    width: 340px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.new-modal-title {
    font-size: 14px; /* 标题字体大小 */
    color: #000000; /* 标题颜色 */
    font-weight: 700; /* 粗细 */
    margin-bottom: 20px; /* 下间距 */
}

.new-modal-buttons {
    display: flex; /* 使用 Flexbox 布局 */
    justify-content: space-around; /* 按钮之间的间距 */
}

.new-modal-button {
    background-color: #F2F5F8; /* 默认背景色 */
    color: #000000; /* 默认文字颜色 */
    font-size: 14px; /* 按钮文字大小 */
    border: none; /* 去掉边框 */
    border-radius: 20px;
    padding: 10px 40px;
    cursor: pointer; /* 鼠标指针样式 */
    transition: background-color 0.3s; /* 添加过渡效果 */
}

.new-modal-button:hover {
    background-color: #e9ecf0; /* 悬浮时的背景色 */
}

.confirm-button {
    color: #FF4040; /* 确认按钮文字颜色 */
}

.confirm-button:hover {
    background-color: #FF4040; /* 悬浮时的背景色 */
    color: #ffffff; /* 悬浮时的文字颜色 */
}

.personal-container{
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #ffffff; /* 设置登录框的背景色为白色，增加可读性 */
    position: relative; /* 设置为相对定位，以便绝对定位子元素 */
    display: flex; /* 使用 Flexbox 布局 */
    align-items: flex-start; /* 垂直对齐 */
    padding: 10px;
}
.personal-avatar{
    width: 82px;
    height: 82px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}
.personal-nickname{
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    color: #000000;
}

.help-sidebar {
    padding: 20px 40px 20px 24px;
    border-right: 2px solid #F8F8F8;
    flex-shrink: 0;
}

.help-menu-item {
    font-size: 20px; /* 文字大小 */
    color: #000000; /* 默认颜色 */
    cursor: pointer; /* 鼠标指针样式 */
    position: relative; /* 位置相对 */
    margin-bottom: 40px;
    /* padding-left: 10px; */
}

.help-menu-item-link {
    position: relative;
    padding-left: 16px;
    display: flex;
    align-items: center;
    min-height: 24px;
}
.help-menu-item-link::before {
    content: '';
    display: none;
    width: 3px;
    height: 20px;
    background: #3DA2E3;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 8px;
}
.help-menu-item.active .help-menu-item-link::before {
    display: inline-block;
}

.help-menu-item:hover,
.help-menu-item:hover .help-menu-item-link,
.help-menu-item.active .help-menu-item-link{
    color: #3DA2E3 !important; /* 悬浮时颜色 */
    font-family: "PingFang SCBold", Arial, sans-serif;
}

.help-content {
    flex: 1; /* 占据剩余空间 */
    padding: 25px 50px;
    text-align: left;
    width: calc(100% - 200px);
}
.help-content-section{
    width: 100%;
}
.help-content-section.active {
    display: flex; /* 选中时显示内容 */
}
.help-content-title{
    font-weight: 700;
    margin-bottom: 10px;
}
.help-content-section p{
    line-height: 30px;
}
.feedback-input{
    background-color: #efeff0;
    border: 0px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    color: #000;
    padding-left: 10px;
}

.feedback-input::placeholder {
    color: #787878; /* 设置占位符文字颜色 */
    font-size: 14px; /* 设置占位符文字大小 */
}
.feedback-content{
    width: 100%;
    height: 160px;
    border: 0px;
    padding: 10px;
    font-size: 14px;
    color: #000000;
    background-color: #efeff0;
    line-height: 35px;
}
.feedback-img-upload-box{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.feedback-img-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.feedback-upload-label{
    display: inline-block;
    width: 130px;
    height: 100px;
    background-color: #EFEFF0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}
.feedback-upload-add{
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.feedback-upload-text{
    color: #AFB1B6;
    font-size: 15px;
    margin-top: 5px;
}
.feedback-image-upload-btn{
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
}
.feedback-upload-img-div{
    position: relative;
    display: inline-block;
}
.feedback-delete-div{
    position: absolute;
    display: none;
    bottom:0px;
    left:0px;
    right:0px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: right;
    padding: 5px;
}
.feedback-delete-image{
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.feedback-upload-img-div:hover .feedback-delete-div{
    display: inline-block;
}
.feedback-success-div{
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 10;
    gap:5px;
}
.feedback-success-img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 用户信息样式 */
.help-content-section.user-info {
    margin: 20px 40px;
    width: calc(100% - 40px) !important;
}
.help-content-section.other-info{
    margin: 20px 20px 20px 40px;
}

.help-content-section .user-info-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    height: 70px;
}

.help-content-section .user-info-title {
    width: 100px; /* 左侧标题宽度 */
    font-size: 20px; /* 字体大小 */
    color: #000000; /* 字体颜色 */
}

.help-content-section .user-info-content {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.help-content-section .user-avatar {
    width: 60px; /* 头像宽度 */
    height: 60px; /* 头像高度 */
    border-radius: 50%; /* 圆形头像 */
    transition: box-shadow 0.3s; /* 添加过渡效果 */
}

.help-content-section .avatar-hover-text {
    display: none; /* 默认隐藏 */
    position: absolute; /* 绝对定位 */
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    font-size: 14px;
    color: #ffffff;
}

.help-content-section .user-avatar-box:hover .avatar-hover-text {
    display: block; /* 悬浮时显示文本 */
}
.help-content-section .username-input {
    border: none; /* 无边框 */
    background-color: #f8f8f8;
    color: #000000; /* 默认文字颜色 */
    font-size: 20px; /* 字体大小 */
    width: 200px; /* 宽度自适应 */
    padding: 10px;
}

.help-content-section .username-input::placeholder {
    color: #CCCCCC;
}
.help-content-section .user-intro {
    width: 500px; /* 宽度设置为100% */
    font-size: 20px; /* 字体大小 */
    color: #000000; /* 字体颜色 */
    border: 1px solid #E9ECF0; /* 边框样式 */
    border-radius: 5px; /* 圆角 */
    padding: 10px; /* 内边距 */
    resize: none; /* 禁止调整大小 */
    height: 70px; /* 高度设置 */
}

.help-content-section .user-intro::placeholder {
    color: #CCCCCC;
}

.help-content-section .layui-input{
    background-color: transparent !important;
    border: none !important;
}

.help-content-section .edit-icon {
    width: 17px; /* 编辑图标宽度 */
    height: 17px; /* 编辑图标高度 */
    margin-left: 5px; /* 与文本的间距 */
    cursor: pointer; /* 鼠标悬浮时显示手型 */
}
.help-content-section .left-news{
    /* width: calc(100% - 300px); */
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}
.help-content-section .right-user-follow {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}
.help-content-section .headline-news-list{
    margin-top: 0px;
}

/* 分页样式 */
.pagination {
    display: flex; /* 使用 Flexbox 布局 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    margin: 20px 0; /* 上下间距 */
}

.pagination img {
    width: 24px; /* 箭头图标宽度 */
    height: 24px; /* 箭头图标高度 */
    cursor: pointer; /* 鼠标悬浮时显示手型 */
}

.pagination .page-item {
    margin: 0 10px; /* 页码之间的间距 */
    font-size: 16px; /* 页码字体大小 */
    color: #000; /* 页码字体颜色 */
    text-decoration: none; /* 去掉下划线 */
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.pagination .page-item:hover {
    color: #3DA2E3; /* 悬浮时的字体颜色 */
}

.pagination .current-page {
    position: relative; /* 使下划线相对于当前页码定位 */
}
.pagination .current-page::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; /* 或根据字体调整 */
    width: 100%;
    height: 2px;
    background-color: #3DA2E3;
}

.mycommont-text {
    flex: 1; /* 使标题占据剩余空间 */
    font-size: 16px; /* 新闻标题字体大小 */
    color: #000000; /* 新闻标题颜色 */
}

.mycommont-date {
    font-size: 14px; /* 日期字体大小 */
    color: #6c6c6c; /* 日期颜色 */
    margin-top: 30px; /* 上间距 */
    white-space: nowrap; /* 不换行 */
    display: inline-block; /* 使其宽度根据内容自适应 */
}

a.mycommont-date, .mycommont-date-a{
    color:#3DA2E3;
    width: auto !important;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mycommont-list li {
    display: flex;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 0.5px solid #AFB1B6;
    margin-bottom: 0px;
}
.mycommont-list li:last-child{
    border: 0px;
}
.user-follow-avatar{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.user-follow-btn{
    display: inline-block;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 0 18px;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    width: 100px;
    height: 40px;
    line-height: 40px;
    border-radius: 33px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    background-color: #F2F5F8;
    margin-top: 10px;
}
.user-follow-btn span{
    color: #3DA2E3;
    padding-right: 5px;
}
.user-follow-btn:hover{
    background-color: #3DA2E3;
    color: #ffffff;
}
.user-follow-btn:hover span{
    color: #ffffff;
}

/* 退出登录样式 */
.user-action-buttons{
    display: block;
    text-align: right;
    position: relative;
}
.user-action-buttons.other-report{
    padding-right: 20px;
}
.user-action-buttons.personal-buttons{
    margin-top: 50px;
}
.user-action-button {
    font-size: 14px; /* 字体大小 */
    color: #6C6C6C; /* 默认文字颜色 */
    border: none; /* 无边框 */
    background-color: transparent; /* 无背景颜色 */
    cursor: pointer; /* 鼠标指针样式 */
    margin: 5px; /* 按钮之间的间距 */
    text-align: right;
}

.user-action-button:hover {
    color: #3DA2E3; /* 悬浮时的文字颜色 */
}

.icon-report{
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.transparent-layer, .transparent-layer .layui-layer-content {
    background: transparent !important;
    box-shadow: none !important;
}
.load-gif{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.no-data{
    width: 170px;
    height: 50px;
    text-align: center;
    position: absolute;
    line-height: 50px;
    font-size: 20px;
    top: 50%;
    left: 50%;
    margin-top: -35px;
    /*margin-left: -20px;*/
}

/* 自适应处理 */
@media (max-width: 1680px) {
    :root {
        --header-height: 110px; /* 1680px 时的 header 高度 */
        --header-channels-height: 35px; /* 1680px 时的 header-channels 高度 */
        --footer-height: 370px; /* 1680px 时的 footer 高度 */
    }
    .header {
        height: var(--header-height); /* 使用 CSS 变量 */
        padding-inline: 120px; /* 调整内边距 */
    }
    .footer {
        height: var(--footer-height); /* 使用 CSS 变量 */
    }
    .footer-links {
        gap: 80px; /* 调整链接之间的间距 */
    }
    .index-container {
        padding: 20px; /* 调整内边距 */
    }
    .ad-index-top-link {
        height: 200px; /* 小屏幕时高度调整为200px */
    }
    .header-channels a {
        margin: 0 18px; /* 调整间距 */
    }
}

@media (max-width: 1366px) {
    :root {
        --header-height: 100px; /* 调整 header 高度 */
        --header-channels-height: 30px; /* 调整 header-channels 高度 */
        --footer-height: 300px; /* 调整 footer 高度 */
    }
    .header {
        height: var(--header-height); /* 使用 CSS 变量 */
        padding-inline: 100px; /* 调整内边距 */
    }
    .footer {
        height: var(--footer-height); /* 使用 CSS 变量 */
    }
    .footer-links {
        gap: 70px; /* 调整链接之间的间距 */
    }
    .footer-line {
        margin: 1.5em auto; /* 调整间距 */
    }
    .index-container {
        padding: 15px; /* 调整内边距 */
    }
    .ad-index-top-link {
        height: 150px; /* 超小屏幕时高度调整为150px */
    }
    .header-channels a {
        margin: 0 15px; /* 调整间距 */
    }
}

@media (max-width: 1280px) {
    :root {
        --header-height: 90px; /* 调整 header 高度 */
        --header-channels-height: 30px; /* 调整 header-channels 高度 */
        --footer-height: 250px; /* 调整 footer 高度 */
    }
    .header {
        height: var(--header-height); /* 使用 CSS 变量 */
        padding-inline: 80px; /* 调整内边距 */
    }
    .footer {
        height: var(--footer-height); /* 使用 CSS 变量 */
    }
    .footer-links {
        gap: 60px; /* 调整链接之间的间距 */
    }
    .footer-line {
        margin: 1.2em auto; /* 调整间距 */
    }
    .index-container {
        padding: 15px; /* 调整内边距 */
    }
    .ad-index-top-link {
        height: 150px; /* 超小屏幕时高度调整为150px */
    }
    .header-channels a {
        margin: 0 15px; /* 调整间距 */
    }
    .footer-logo {
        margin-bottom: 20px; /* 第一行与第二行之间的间距 */
    }
}

@media (max-width: 1025px) {
    :root {
        --header-height: 80px; /* 调整 header 高度 */
        --header-channels-height: 25px; /* 调整 header-channels 高度 */
        --footer-height: 200px; /* 调整 footer 高度 */
    }
    .header {
        height: var(--header-height); /* 使用 CSS 变量 */
        padding-inline: 60px; /* 调整内边距 */
    }
    .footer {
        height: var(--footer-height); /* 使用 CSS 变量 */
    }
    .footer-links {
        gap: 50px; /* 调整链接之间的间距 */
    }
    .footer-line {
        margin: 1em auto; /* 调整间距 */
    }
    .index-container {
        padding: 10px; /* 调整内边距 */
    }
    .ad-index-top-link {
        height: 100px; /* 超小屏幕时高度调整为150px */
    }
    .header-channels a {
        margin: 0 10px; /* 调整间距 */
    }
    .footer-logo {
        margin-bottom: 10px; /* 第一行与第二行之间的间距 */
    }
    .news-title {
        -webkit-line-clamp: 1;
    }
    .left-list{
        max-width: 500px !important;
        width: 75% !important;
    }
    .right-list{
        max-width: 200px;
        width: calc(25% - 20px) !important;
        margin-left: 20px; /* 左侧间距 */
    }
    .headline-image {
        width: 150px; /* 新闻封面宽度 */
        height: 75px; /* 新闻封面高度 */
    }
    .search-top{
        height: 92px;
        width: 100%;
        padding: 0 10px;
    }
    .help-content {
        padding: 10px 20px;
    }
    .help-content-section .user-intro {
        width: 300px;
    }
    .help-content-section .left-news{
        /* width: calc(100% - 200px); */
        padding: 0 5px;
    }
}

@media screen and (max-device-width: 1024px) {
    :root {
        --header-height: 80px; /* 调整 header 高度 */
        --header-channels-height: 25px; /* 调整 header-channels 高度 */
        --footer-height: 200px; /* 调整 footer 高度 */
    }
    .header {
        height: var(--header-height); /* 使用 CSS 变量 */
        padding-inline: 60px; /* 调整内边距 */
    }
    .footer {
        height: var(--footer-height); /* 使用 CSS 变量 */
    }
    .footer-links {
        gap: 50px; /* 调整链接之间的间距 */
    }
    .footer-line {
        margin: 1em auto; /* 调整间距 */
    }
    .index-container {
        padding: 10px; /* 调整内边距 */
    }
    .ad-index-top-link {
        height: 100px; /* 超小屏幕时高度调整为150px */
    }
    .header-channels a {
        margin: 0 10px; /* 调整间距 */
    }
    .footer-logo {
        margin-bottom: 10px; /* 第一行与第二行之间的间距 */
    }
    .news-title {
        -webkit-line-clamp: 1;
    }
    .left-list{
        max-width: 1024px !important;
        width: 100% !important;
    }
    .right-list{
        max-width: 200px;
        width: calc(30% - 20px) !important;
        margin-left: 20px; /* 左侧间距 */
    }
    .ad-column.right-list{
        display: none;
    }
    .right-list.detail-hot{
        display: none;
    }
    .headline-image {
        width: 150px; /* 新闻封面宽度 */
        height: 75px; /* 新闻封面高度 */
    }
    .search-top{
        height: 92px;
        width: 100%;
        padding: 0 10px;
    }
    .help-content {
        padding: 10px 20px;
    }
    .help-content-section .user-intro {
        width: 300px;
    }
    .help-content-section .left-news{
        /* width: calc(100% - 200px); */
        padding: 0 5px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 70px; /* 调整 header 高度 */
        --header-channels-height: 20px; /* 调整 header-channels 高度 */
        --footer-height: 150px; /* 调整 footer 高度 */
    }
    .header {
        height: var(--header-height); /* 使用 CSS 变量 */
        padding-inline: 20px; /* 调整内边距 */
    }
    .footer {
        height: var(--footer-height); /* 使用 CSS 变量 */
    }
    .footer-links {
        gap: 30px; /* 调整链接之间的间距 */
    }
    .footer-line {
        margin: 0.8em auto; /* 调整间距 */
    }
    .index-container {
        padding: 5px; /* 调整内边距 */
    }
    .ad-index-top-link {
        height: 80px; /* 超小屏幕时高度调整为150px */
    }
    .header-channels a {
        margin: 0 10px; /* 调整间距 */
    }
    .login-box {
        width: 90%;
        padding: 20px;
    }
    .header-logo{
        width: 127px;
        height: 70px;
    }
    .footer-logo-img {
        width: 127px; /* Logo 宽度 */
        height: 70px; /* Logo 高度 */
    }
    .footer-logo {
        margin-bottom: 0px; /* 第一行与第二行之间的间距 */
    }
    .headline-image {
        width: 150px; /* 新闻封面宽度 */
        height: 75px; /* 新闻封面高度 */
    }
    .news-title {
        -webkit-line-clamp: 1;
    }
    .search-top{
        height: 92px;
        width: 100%;
        padding: 0 10px;
    }
    .help-content {
        padding: 10px 20px;
    }
    .help-content-section .user-intro {
        width: 300px;
    }
    .help-content-section .left-news{
        /* width: calc(100% - 200px); */
        padding: 0 5px;
    }
}

/*手机版 广告服务、使用条款、隐私政策样式*/
.wap-page{
    padding: 10px 20px;
    box-sizing: border-box;
}

/* 自定义layer消息框样式 */
.custom-layer-msg {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #787580 !important;
    border-radius: 10px !important;
    color: #fff !important;
    padding: 20px 40px !important;
    font-size: 14px;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.reply-section{
    margin-left: 100px;
}
.user-save-btn{
    display: inline-block;
    vertical-align: middle;
    border: 1px solid transparent;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    width: 100px;
    line-height: 28px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    background-color: #3DA2E3;
    position: absolute;
    left: 0px;
}
.user-save-btn.hide{
    display: none;
}
.user-save-btn:hover{
    background-color: #08629C;
}

@keyframes popAnimation {
     0% {
         transform: scale(1);
     }
     50% {
         transform: scale(0.6);
     }
     100% {
         transform: scale(1.2);
     }
 }

.like-animate {
    animation: popAnimation 0.3s ease;
}
