* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", system-ui, sans-serif;
}
body {
    background-color: #f7f8fa;
    color: #333;
}

*,*:before,*:after {box-sizing: border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote,dl, dt, dd, ul, ol, li,pre,form, fieldset, legend, button, input, textarea,img{border:medium none;margin:0;padding:0;}
body{font-size:15px;}
button, input, select, textarea {font-family:'Microsoft YaHei';}
h1, h2, h3, h4, h5, h6{ font-size: 100%;}
em{font-style:normal;}
ul, ol{list-style: none;}
table{border-collapse: collapse;border-spacing: 0; }
a,ins{text-decoration:none;}
*:focus{outline:none;}
a{color:#333333;text-decoration: none;}
a:hover{color:#0066CD;text-decoration: none;}
.fl{float:left;}
.fr{float:right;}
.cf:after{display:block;content:'';height:0;visibility:hidden;clear:both;}
.cf{zoom:1;}
body{font-family:'微软雅黑';font-size:14px;}
.hide{display:none;}
.block{display:block;}

* {
    margin: 0;
    padding: 0;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

a,a:hover {
    text-decoration: none;
}

input::-webkit-input-placeholder {
    color: #D2D2D2;
}

input:-moz-placeholder {
    color: #D2D2D2;
}

input::-moz-placeholder {
    color: #D2D2D2;
}

input:-ms-input-placeholder {
    color: #D2D2D2;
}




/* 顶部导航栏 */
.top-header {
    background-color: #0066cd;
    background-image: url("/public/topbanner.jpg");  /*替换成你的图片地址*/
    background-repeat: no-repeat;
    background-position: center center;  /*水平垂直居中*/
    /*background-size: cover; 铺满容器，可改为contain完整显示图片不裁切*/
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 60px;
    gap:20px;
    position: relative;
}
.logo {
    font-size:22px;
    font-weight:bold;
    display:flex;
    align-items:center;
    gap:6px;
}
.nav-menu {
    display:flex;
    align-items:center;
    height: 100%;
}
.nav-menu a {
    color:#fff;
    text-decoration:none;
    padding:0 10px;
    font-size:16px;
    display: flex;
    align-items: center;
    /* 关键：让a占满父容器高度 */
    height: 100%;
}
.nav-menu a:hover {
    background-color: #1F79D3;
}
/* 工具箱下拉 */
.tool-box-wrap {
    position: relative;
    /* 关键：继承父导航100%高度 */
    height: 100%;
    display: flex;
    align-items: stretch; /* 子元素高度拉伸到100%，不要center */
    transition: transform 0.2s ease;
}
.tool-btn {
    color:#fff;
    text-decoration:none;
    padding:0 12px;
    font-size:16px;
    /* a标签撑满父高度，文字垂直居中 */
    display: flex;
    align-items: center;
    height:100%;
    white-space: nowrap;
}
/* hover背景铺满整栏 */
.tool-btn:hover {
    background:rgba(255,255,255,0.12);
}
.tool-drop-menu {
    position:absolute;
    top:100%;
    left:0;
    background:#ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    min-width:120px;
    display:none;
    z-index: 9999;
}
.tool-drop-menu a {
    display:block;
    padding:8px 14px;
    color:#333;
    text-decoration:none;
    font-size: 14px;
}
.tool-drop-menu a:hover {
    background:#f5f7fa;
}
/* 悬浮外层wrap，显示下拉 */
.tool-box-wrap:hover .tool-drop-menu {
    display:block;
}
.tool-box-wrap i {
    /* 把transition写在默认状态，不要写在:hover里面，否则hover结束没有回转动画 */
    transition: transform 0.2s ease;
}
.tool-box-wrap:hover i {
    /* rotate(180deg)同时向下微调一点，抵消向上偏移 */
    transform: rotate(180deg) translateY(-8px);
}
.header-right{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:100px;
}
.search-box{
    display:flex;
}
.search-form{
    display:flex;
    gap:0px;
}
.search-box input{
    height:32px;
    width:280px;
    border:none;
    border-radius:4px 0 0 4px;
    padding:0 10px;
    color: #888;
}
.search-box button{
    height:32px;
    background:#ff8800;
    color:#fff;
    border:none;
    border-radius:0 4px 4px 0;
    padding:0 14px;
    cursor:pointer;
}
.search-box button:hover{
    background:#FB672E;
}
/* 未登录按钮 */
.no-login-area a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    padding:0 8px;
}
.no-login-area a:hover{
    text-decoration:underline;
}
/* 登录后区域 默认隐藏 */
.login-area{
    display:none;
    align-items:center;
    gap:16px;
}
.avatar{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#ccc;
    display:block;
}
.avatar img{
    border-radius:50%;
    width: 100%;
}

/* 主体容器 */
.container{
    max-width:1240px;
    margin:20px auto;
    display:grid;
    grid-template-columns:240px 1fr 280px;
    gap:20px;
}
.sign i{
    font-size: 20px;color: #ffffff
}
.addpost i{
    font-size: 22px;color: #ffffff
}
.addpost i:hover,.sign i:hover{
    color: #F5F7FA
}

.sign.signed{
    color:#999;
    cursor: not-allowed;
    pointer-events:none;
}


/*用户头像pop*/
.avatar-wrap {
    position: relative;
    display: inline-block;
    padding-bottom:5px;
}
.avatar {
    width:34px;
    height:34px;
    border-radius:50%;
    background:#ccc;
    display:block;
    cursor: pointer;
}
.avatar img {
    border-radius:50%;
    width: 100%;
    height:100%;
    object-fit:cover;
}

/*弹窗宽度改为320px，z-index拉到很高*/
.user-pop {
    position:absolute;
    right:0;
    top:calc(100%);
    width:320px;
    background:#ffffff;
    border-radius:6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    z-index:99999;
    padding:10px;

    opacity:0;
    visibility:hidden;
    transition: opacity 0.18s ease;
}
.avatar-wrap:hover .user-pop {
    opacity:1;
    visibility:visible;
}

.pop-header{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:16px;
}
.pop-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}
.pop-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.pop-name{
    font-size:16px;
    font-weight:bold;
    color:#111;
    margin-bottom:4px;
}
.pop-desc{
    color:#64748b;
    font-size:12px;
}
.pop-menu{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:8px;
    margin-bottom:14px;
}
.menu-item{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    background:#f3f4f6;
    border-radius:4px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}
.menu-item.active{
    background:#e8f0fe;
    color:#0066cd;
}
.menu-item:hover{
    background:#e5e7eb;
}
.menu-item.active:hover{
    background:#dde8fa;
}
.pop-logout{
    border-top:1px solid #eee;
    padding-top:5px;
}
.pop-logout a{
    display:block;
    text-align:center;
    color:#dc2626;
    font-size:16px;
    padding:10px;
    text-decoration:none;
}
.pop-logout a i{
    margin-right:6px;
}



/* 页脚 */
footer{
    background:#222;
    color:#aaa;
    text-align:center;
    padding:18px;
    font-size:12px;
    margin-top:30px;
}




/* 左侧卡片通用 */
.side-card{
    background:#fff;
    border:1px solid #dbe6f2;
    border-radius:6px;
    overflow:hidden;
    margin-bottom:16px;
}
.side-card-header{
    background-color:#0066cd;
    color:#ffffff;
    padding:9px 12px;
    font-size:14px;
    font-weight:bold;
    line-height:1.4;
}
.side-card-body{
    padding:8px 0;
}
.side-item a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:7px 12px;
    font-size:13px;
}

.side-item .classleft{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 10px;
}
.side-item:hover{
    background:#f2f7fc;
}
.side-item a{
    color:#333;
    text-decoration:none;
}
.side-item a:hover{
    color:#0066cd;
}
.side-item:hover .num-badge{
    /*background: #ffffff;*/
}
.classimg{
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.num-badge{
    line-height: 1.2;
    background: #e8eaed;
    color: #5a6270;
    padding: 3px 6px;
    border-radius: 4px;
}
.card-footer{
    text-align:center;
    padding:8px;
    font-size:13px;
}
.card-footer a{
    color:#0066cd;
    text-decoration:none;
}
.tag-wrap{
    padding:12px;
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}
.tag a{
    border:1px solid #c5daf0;
    font-size:12px;
    padding:3px 8px;
    border-radius:4px;
    color:#444;
    text-decoration:none;
    display:block;
}
.tag a:hover{
    background:#e8f2fc;
}

/* 中间区块 */
.main-col{
    background:#fff;
    border:1px solid #dbe6f2;
    border-radius:6px;
    overflow:hidden;
}
.main-tab{
    display:flex;
    border-bottom:1px solid #eee;
}
.main-tab span{
    padding:10px 18px;
    font-size:14px;
    cursor:pointer;
}
.main-tab span:hover{
    background: #E8F2FC;
}
.main-tab span.active{
    background:#0066cd;
    color:#fff;
}
.post-item{
    padding:14px 16px;
    border-bottom:1px solid #f0f3f8;
}
.post-item:hover .left-wrap a,.post-item:hover .post-stat{
    transition:all 0.5s; -moz-transition:all 0.5s;-ms-transition:all 0.5s; -o-transition:all 0.5s; -webkit-transition:all 0.5s;
    color: #0066cd;
}
.post-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.left-wrap{
    display:flex;
    align-items:center;
    gap:6px;
    flex: 1;
    min-width: 0;
}
.post-title a,.post-title .left-wrap a{
    font-size:16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.post-title a:hvoer{
    color:#0066CD;
}
.post-good{
    background: #ff0000;
    display: inline-block;
    flex-shrink: 0;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #fff;
    border-radius: 3px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    margin-right: 6px;
}


.post-tj{
    background: #16a34a;
    display: inline-block;
    flex-shrink: 0;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #fff;
    border-radius: 3px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    margin-right: 6px;
}
.post-zd{
    background: #ff7a1a;
    display: inline-block;
    flex-shrink: 0;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #fff;
    border-radius: 3px;
    vertical-align: middle;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    margin-right: 6px;
}
.post-meta{
    font-size:12px;
    color:#777;
    margin:15px 0 8px 0;
    display: flex;
    align-items: center;
}

.post-meta a{
    display:flex;
    align-items:center; /*头像+昵称垂直居中*/
    gap:6px; /*头像和文字之间间距，替代老的margin*/
    color:#777;
    text-decoration:none;
}
.post-meta a:hover{
    color:#0066cd;
}
.post-meta img{ width: 30px; height: 30px; border-radius: 50%;display:block; /*消除图片底部默认缝隙*/}
.post-meta span{
    padding:0 8px;
}
.post-desc{
    font-size:13px;
    color:#555;
    line-height:1.8;
}
.post-stat{
    margin-top:8px;
    font-size:13px;
    color:#888;
}
.post-stat i{
    display: inline-block;
    margin: 0 4px 0 8px;
}
a.post-class{
    display: inline-block;
    font-size: 12px!important;
    font-weight: 600;
    line-height: 1.35;
    padding: 3px 9px;
    border-radius: 4px;
    background: #eef4ff;
    color: #0066cd;
    white-space: nowrap;
}
a.post-class:hover {
    background: #dce8ff;
    color: #ff7a18;
}
/* 修复加载更多高度跳动：固定最小高度 */
.load-more{
    display:none; /* 默认隐藏 */
    text-align:center;
    padding:12px;
    min-height:44px;
    font-size:13px;
    color:#0066cd;
    cursor:pointer;
    line-height:20px;
}
.load-more.show{
    display:block; /* 需要显示时加show类 */
}
.load-more:hover{
    background: linear-gradient(to bottom, #ffffff, #eef4ff);
}

/* 右侧栏 */
.right-col {
}
/* sticky包裹容器 */
.right-sticky-wrap{
    position:sticky;
    top:16px;
}
/* 右侧卡片，每个卡片独立圆角、外边距 */
.right-card{
    background:#fff;
    border:1px solid #dbe6f2;
    border-radius:6px;
    overflow:hidden;
    margin-bottom:16px;
}
.right-header{
    background:#0066cd;
    color:#fff;
    padding:9px 12px;
    font-size:14px;
    font-weight:bold;
    line-height:1.4;

}

.loadmore{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ========== 新增：换一换按钮样式 ========== */
.refresh{
    display:inline-flex;
    align-items:center;
    gap:4px;
    cursor:pointer;
    border:none;
    background:transparent;
    font-size:13px;
    color:#fff;
    font-weight:normal;
}
.refresh:hover{
    opacity:0.85;
}
/* 刷新图标基础 */
.Bpayv {
/*    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform-origin: center center;
    background-position: center 2px;*/
}

/* 单次旋转动画 */
@keyframes spin-once {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@-webkit-keyframes spin-once {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.Bpayv.rotate-run {
    -webkit-animation: spin-once 0.2s linear 1 forwards;
    animation: spin-once 0.2s linear 1 forwards;
}
.user-item{
    display:flex;
    align-items:center;
    padding:10px 12px;
    gap:10px;
    border-bottom:1px solid #f2f4f8;
}
.user-avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#ccc;
    flex-shrink:0;
    overflow: hidden;
}
.user-avatar img{
    width:40px;
    height:40px;
    border-radius:50%;
}
.user-info{
    flex:1;
}
.user-name a{
    font-size:13px;
    color:#333;
    text-decoration:none;
}
.user-name a:hover{
    color:#0066cd;
    text-decoration:underline;
}
.user-stat{
    font-size:11px;
    color:#888;
}
.btn-follows{
    border:1px solid #0066cd;
    color:#0066cd;
    background:#fff;
    border-radius:14px;
    padding:2px 10px;
    font-size:12px;
    cursor:pointer;
}


.btn-follows:hover{
    background:#E8F2FC;
}
.btn-follow.followed{
    background:#e8f1fc;
}

button.btn-follow:disabled {
    cursor: not-allowed;
    background-color: #eef4ff !important;
    color: #0066cd !important;
    opacity: 1 !important;
}

.hot-list{
    padding:10px 14px;
    list-style:none;
}
.hot-list li{
    font-size:13px;
    margin:8px 0;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.hot-list li .num{
    color:#0066cd;
    font-weight:bold;
    margin-right: 5px;
}





/* 发帖表单简易样式，可合并到style.css */
.publish-wrap{
    max-width:1000px;
    margin:30px auto;
    padding:0 15px;
}
.publish-box{
    background:#fff;
    padding:24px 30px;
    border-radius:8px;
    box-shadow:0 1px 4px rgba(0,0,0,0.08);
}
.publish-box h2{
    margin-top:0;margin-bottom:24px;text-align: center;font-size: 22px;color: #0066CD
}
.form-item{
    margin-bottom:18px;
}
.form-item label{
    display:block;
    margin-bottom:6px;
    font-weight:500;
    color:#333;
}
.form-item input[type="text"],
.form-item select,
.form-item textarea{
    width:100%;
    box-sizing:border-box;
    border:1px solid #ddd;
    border-radius:4px;
    padding:10px 12px;
    font-size:14px;
}
.form-item textarea{
    resize:vertical;
}
.tips-text{
    font-size:12px;
    color:#888;
    margin-top:4px;
}
.tips-text.warn{
    color:#e53935;
}
.btn-submit{
    background:#0066cd;
    color:#fff;
    border:none;
    padding:11px 28px;
    border-radius:4px;
    cursor:pointer;
    font-size:15px;
}
.btn-submit:hover{
    background:#0056ac;
}

.btn-submit:disabled{
    background:#739fcf;
    cursor:not-allowed;
}
.err-tip{
    color:#e53935;
    font-size:13px;
    display:none;
    margin-top:4px;
}
input.inputpost:focus,
textarea.textareapost:focus,
select.selectpost:focus{
    border-color:#0066CD;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,102,205,0.15);
}

















/* 主体外层最大宽度容器 */
.wrap{
    max-width:1240px;
    margin:24px auto;
    display:flex;
    gap:20px;
}

/* 左侧栏 */
.action-bar{
    width:70px;
    display:flex;
    flex-direction:column;
    gap:12px;
    position:sticky;
    top:20px;
    align-self:flex-start;
    margin-top: 160px;
}
.action-item{
    background:#ffffff;
    border:1px solid #dbe6f2;
    border-radius:8px;
    padding:12px 6px;
    text-align:center;
    font-size:12px;
    color:#555;
    position: relative;
}

/*右上角红色数字角标*/
.action-item .badge{
    position:absolute;
    top:-6px;
    right:-6px;
    font-weight: bold;
    background:#e62929;
    color:#fff;
    min-width:24px;
    height:24px;
    border-radius: 999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    line-height:1;
}
.conzhaiyao{
    background:#F5F6FA;
    border:1px solid #dbe6f2;
    padding:0 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    transition:all 0.5s; -moz-transition:all 0.5s;-ms-transition:all 0.5s; -o-transition:all 0.5s; -webkit-transition:all 0.5s
}
.conzhaiyao h3{
    margin:10px 10px 10px 0px!important;
    font-size:17px;
}
.conzhaiyao p{ margin-bottom: 10px}

.coninfo img{ width: 100%;border-radius: 8px;}

.coninfo  p{
    margin-bottom:16px;
    /*text-indent:2em;*/
}
.coninfo p:has(img) {
    text-indent: 0;
}
.paused{ color: #0066CD}
.coninfo blockquote{
    margin:10px 0;
    padding:20px 20px 20px 16px;
    background:#f7f8fa;
    border-left:4px solid #0066CD;
    color:#555;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
    /*各分项颜色*/
.on[data-type="like"]{
    color:#e62929;
}
.on[data-type="like"] i{
    color:#e62929;
}

.on[data-type="collect"]{
    color:#ffb800;
}
.on[data-type="collect"] i{
    color:#ffb800;
}

.action-item[data-type="comment"]{
    color:#606978;
}
.action-item[data-type="comment"] i{
    color:#606978;
}

.action-item i{
    font-size:20px;
    margin-bottom:4px;
    display:block;
}

.action-item:hover,.action-item:hover i{
    cursor: pointer;
    color: #0066cd;
}

/* 中间主内容 */
.main-column{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.article-main{
    background:#fff;
    border:1px solid #dbe6f2;
    border-radius:6px;
    padding:30px 36px;
}
.article-title{
    font-size:26px;
    font-weight:bold;
    line-height:1.4;
    margin-bottom:12px;
}
.article-title:hover,.article-content:hover .conzhaiyao h3{
    color: #0066cd;
}
.article-content:hover .conzhaiyao{
    border: 1px solid #0066cd;
}

.article-meta{
    font-size:13px;
    color:#888;
    margin-bottom:28px;
}
.article-meta a{
    font-size:13px;
    color:#888!important;
    margin-bottom:28px;
}
.article-meta a:hover{
    font-size:13px;
    color:#0066cd!important;
    margin-bottom:28px;
}
.article-meta span{
    padding: 0 6px;
}
.article-content{
    font-size:15px;
    line-height:1.8;
    color:#333;
}
.article-content h3{
    margin:22px 0 10px;
    font-size:17px;
}
.article-content p{

}

/* =====右侧边栏 flex子项，sticky写在内层===== */
.right-col{
    width:280px;
    /* 关键点：外层flex子项不sticky，内层做sticky */
}
.right-sticky-inner{
    position:sticky;
    top:20px;
}

.right-card {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
}
.author-card-body{

    text-align:center;
    position: relative;
}
/* 顶部背景banner层 */
/*.banner-bg {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:120px; !* 👉banner图片区域总高度，参考截图高度 *!
    background-image:
            linear-gradient(
                    to bottom,
                    transparent 0%,
                    rgba(255,255,255,0) 40%,
                    rgba(255,255,255,0.35) 60%,
                    rgba(255,255,255,0.88) 80%,
                    #ffffff 92%
            ),
            url(https://bbs.bantian.net/upload/user_banner/1.jpg?t=1780325449);
    background-position:center top;
    background-size: cover; !* cover：裁切图片，不要完整显示长条原图 *!
    background-repeat:no-repeat;
}*/

.banner-bg {
    position: relative;  /* 关键：伪元素相对于这个容器定位 */
    left:0;
    top:0;
    width:100%;
    height:130px;
    overflow: hidden;
}

/* 图片底层 */
.banner-bg img {
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center top;
}

/* 渐变蒙层，盖在图片上面 */
.banner-bg::before {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    pointer-events:none; /* 不拦截鼠标点击 */
    background-image:
            linear-gradient(transparent 0%, rgba(255, 255, 255, 0.55) 60%, rgb(255, 255, 255) 95%);
}

.author-inner{
    position:relative;
    z-index:2;
    /* 关键！把整个内容块向下偏移，让头像下半部分落到白色区域，和截图一模一样 */
    margin-top: -60px;
}
.author-avatar {
    width: 120px;
    height:120px;
    border-radius:50%;
    border:4px solid #fff;
}
.author-avatar img{
    width: 100%;
    height: 100%;;
    border-radius:50%;
}
/*     .author-card-body::after {
         content: "";
         position: absolute;
         inset: 0px;
         !* height:auto; 删掉，inset:0已经铺满 *!
         background: linear-gradient(
                 to bottom,
                 transparent 0%,
                 rgba(255,255,255,0.1) 20%,
                 rgba(255,255,255,0.8) 50%,
                 #ffffff 100%
         );
         pointer-events: none;
     }*/
.right-header{
    background:#0066cd;
    color:#fff;
    padding:9px 12px;
    font-size:14px;
    font-weight:bold;
}

.author-avatar{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#ccc;
    margin:0 auto 10px;
}
.author-name{
    font-size:16px;
    /*font-weight:bold;*/
    margin-bottom:4px;
    color: #777;
}
.author-level{
    font-size:12px;
    color:#ff8800;
    margin-bottom:14px;
}
.author-stat-row{
    display:flex;
    justify-content:space-around;
    margin-bottom:16px;
}
.stat-item .num{
    font-size:18px;
    font-weight:bold;
    color:#333;
}
.stat-item .text{
    font-size:12px;
    color:#888;
}
.author-btn-group{
    margin: 0 16px 16px 16px;
    display:flex;
    gap:10px;
}
.btn-follow{
    flex:1;
    height:36px;
    background:#0066cd;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
}
.btn-follow:hover{
    background:#045db7;
}
.btn-message{
    flex:1;
    height:36px;
    background:#ff7844;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
}
.btn-message:hover{
    background:#fb672e;
}

.textarea:focus{
    border: 1px solid #045db7;
}
.post-list-small{
    padding:12px 14px;

}
.post-small-item{
    padding:10px 0;
    border-bottom:1px solid #f2f4f8;
    display: block;
}
.post-small-item:last-child{
    border-bottom:none;
}
.post-small-title{
    font-size:13px;
    color:#333;
    text-decoration:none;
    display:block;
    margin-bottom:4px;
}
.post-small-title:hover{
    color:#0066cd;
}
.post-small-time{
    font-size:11px;
    color:#999;
}

.hot-list{
    padding:12px 14px;
}
.hot-list li{
    list-style:none;
    margin:10px 0;
    font-size:13px;
}
.hot-list li .num{
    color:#0066cd;
    font-weight:bold;
    margin-right:6px;
}

/* 评论区 */
.comment-card{
    background:#fff;
    border:1px solid #dbe6f2;
    border-radius:6px;
   /* overflow:hidden;*/
}
.comment-header{
    background:#0066cd;
    color:#fff;
    padding:9px 12px;
    font-size:14px;
    font-weight:bold;
}
.comment-input-area{
    padding:16px;
    position:relative; /*表情面板定位基准*/
}

.comwarp{ display: flex; justify-content: space-between; margin-right: 20px;}
.comavatar{
    margin-right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ccc;
}
.comavatar img{
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.comment-input-area textarea{
    width:100%;
    min-height:100px;
    border:1px solid #dbe6f2;
    border-radius:4px;
    padding:10px;
    font-size:14px;
    resize:none;/*vertical*/
    transition:all 0.5s;
    -moz-transition:all 0.5s;
    -ms-transition:all 0.5s;
    -o-transition:all 0.5s;
    -webkit-transition:all 0.5s;

/*    !* 滚动条美化 *!
    scrollbar-width: thin; !* firefox *!
    scrollbar-color: #c7d4e2 #f6f8fa;*/
}

/* 滚动条整体 */
.comment-input-area textarea::-webkit-scrollbar {
    width: 5px; /* 滚动条宽度 */
}
/* 滚动轨道（竖条背景，你可以改颜色） */
.comment-input-area textarea::-webkit-scrollbar-track {
    background: #ffffff;
}
/* 滚动滑块（thumb，如果你不想显示滑块就display:none） */
.comment-input-area textarea::-webkit-scrollbar-thumb {
    background: #dbe6f2;
}
/* ✅ 隐藏滚动条顶部/底部上下箭头按钮 */
.comment-input-area textarea::-webkit-scrollbar-button:vertical {
    display: none;
}

.emoji-panel{
    display:none;
    position:absolute;
    left:90px;
    bottom:-35px;
    width:340px;
    background:#fff;
    border:1px solid #dbe6f2;
    border-radius:6px;
    padding:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    flex-wrap:wrap;
    gap:8px;
    z-index: 99999;

}
.epanel{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    height: 110px;
    overflow-y: auto;
}
.epanel::-webkit-scrollbar {
    width: 3px;
}
.epanel::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #f2f2f2;
   /* display: none;*/
}
/*
.epanel::-webkit-scrollbar-track {
    background: #f2f2f2;
}
*/


.emoji-panel.show{ display:flex; }
.emoji-item{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    border-radius:4px;
    transition:0.2s;
}
.emoji-item:hover{
    background:#f0f4f8;
}
.emoji-item img{
    width:24px;
    height:24px;
    object-fit:contain;
}
/* 评论渲染表情样式 */
.emot-img{
    width:24px;
    height:24px;
    vertical-align:middle;
    margin:0 2px;
}


/* webkit 内核：Chrome、Edge、Safari */
/*.comment-input-area textarea::-webkit-scrollbar {
    width: 6px;
}
.comment-input-area textarea::-webkit-scrollbar-track {
    background: #f6f8fa;
    border-radius: 3px;
}
.comment-input-area textarea::-webkit-scrollbar-thumb {
    background: #c7d4e2;
    border-radius: 3px;
}
.comment-input-area textarea::-webkit-scrollbar-thumb:hover {
    background: #a9b8cc;
}*/

.comment-input-area textarea:focus{
    border: 1px solid #0066cd;
}
.comment-submit-row{
    margin-top:10px;
    text-align:right;
}
.comment-submit{
    background:#0066cd;
    color:#fff;
    border:none;
    padding:7px 20px;
    border-radius:4px;
    cursor:pointer;
}

.comment-cancel{
    background:#f5f6f8;
    color:#666;
    border:none;
    padding:7px 20px;
    border-radius:4px;
    cursor:pointer;
    border-radius: 99px;
}
.comment-cancel:hover{
    background: #e8eaef;
}
/* 底部行：flex左右分布 */
.comment-submit-row{
    display:flex;
    justify-content: space-between;
    align-items:center;
    margin-top:10px;
}
.emoji-btn{
    font-size:22px;
    color:#a9b8cc;
    cursor:pointer;
    margin-left: 45px;
}
.emoji-btn:hover{
    color:#0066cd;
}
cd
.emoji-btn:hover{
    opacity:0.8;
}
.submit-right{
    display:flex;
    align-items:center;
    gap:12px;
    margin-right: 20px;
}
.word-count{
    font-size:14px;
    color:#666;
}
.word-count.over{
    color:red;
}
.comment-submit{
    background:#0066cd;
    color:#fff;
    border:none;
    padding:8px 20px;
    border-radius:99px;
    cursor:pointer;
}
.comment-submit:disabled{
    background:#b0cbf0;
    cursor:not-allowed;
}

blockquote.blockquote {
    position: relative;
    margin: 10px 0 12px;
    padding: 10px 56px 10px 12px;
    background: #f2f2f2 !important;
    border: 1px dashed #ccc !important;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

blockquote.blockquote::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(/public/webpic/quote.png) no-repeat center;
    background-size: contain;
}

.avatar-1 {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 6px;
    object-fit: cover;
}

.comment-list{
    border-top:1px solid #f0f3f8;
    padding-bottom: 15px;
}
.comment-item{
    padding:16px;
    border-bottom:1px solid #f0f3f8;
}
.comment-item:last-child{
    border-bottom:none;
}
.comment-user-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
}
.comment-avatar{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#ccc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.comment-username{
    font-size:14px;
    font-weight:bold;
}
/*.comment-report{ display: none;color:#0066cd;font-size: 12px;cursor: pointer;}
.comment-item:hover .comment-report{display: block}
.comment-time{
    font-size:12px;
    color:#888;
}*/
.comment-report{
    opacity: 0;
    visibility: hidden;
    color:#0066cd;
    font-size: 12px;
    cursor: pointer;
    /* 过渡：0.3秒缓慢变化 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


.comment-reply{
    opacity: 0;
    visibility: hidden;
    color:#0066cd;
    font-size: 12px;
    cursor: pointer;
    /* 过渡：0.3秒缓慢变化 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.comment-item:hover .comment-report,.comment-item:hover .comment-reply{
    opacity: 1;
    visibility: visible;
}
.comment-content{
    font-size:14px;
    line-height:1.6;
    color:#444;
    margin-left: 45px;
}
.load-more-wrap{
    padding:14px 16px;
    text-align:center;
    border-top:1px solid #f0f3f8;
    margin-bottom: 15px;
}
.btn-load-comment{
    padding:6px 22px;
    border:1px solid #dbe6f2;
    background:#f7f8fa;
    border-radius:4px;
    cursor:pointer;
    font-size:14px;
}
.btn-load-comment:hover{
    background:#eef1f7;
}

/* 简单移动端，小屏隐藏右侧 */
@media(max-width:992px){
    .right-col{
        display:none;
    }
}

/*分享悬浮外层容器*/
.share-wrap{
    position:relative;
}
.share-dropdown{
    position:absolute;
    left:78px;
    top:0;
    width:190px;
    background:#ffffff;
    border-radius:10px;
    box-shadow:0 2px 12px rgba(0,0,0,0.12);
    z-index:997;
    display:none;
    /* !!!!! 删除 overflow:hidden; 这行会把内部子元素二维码裁掉 */
}

.share-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    font-size:14px;
    color:#333;
    cursor:pointer;
}

.share-item:hover{
    background:#f3f5f8;
    color:#07c160;
}

.share-item:hover .share-icon{
    color:#07c160;
}
/* 删除原来这条css hover规则！！！不要用css控制显示隐藏 */
/* .share-wrap:hover .share-dropdown{ display:block; } */

/* 微信分享项相对定位 */
.wechat-share-item{
    position:relative;
}

/* 微信二维码浮层 */
.wechat-qrcode-panel{
    position:absolute;
    /* 不要写死很大left，先184px，紧贴分享菜单右侧 */
    left:200px;
    top:0;
    width:180px;
    background:#ffffff;
    border-radius:6px;
    box-shadow:0 2px 14px rgba(0,0,0,0.15);
    padding:10px;
    z-index:999; /* 提高层级，高于父菜单997 */
    display:none;
}

/* 默认箭头朝左 */
.wechat-qrcode-panel::before{
    content:"";
    position:absolute;
    left:-8px;
    top:16px;
    width:16px;
    height:16px;
    background:#fff;
    transform:rotate(45deg);
    box-shadow:-2px 2px 5px rgba(0,0,0,0.06);
}

/* 向左弹出时，箭头朝右 */
.wechat-qrcode-panel.flip-arrow::before{
    left:auto;
    right:-8px;
    box-shadow:2px -2px 5px rgba(0,0,0,0.06);
}

.qrcode-title{
    font-size:13px;
    color:#666;
    margin-bottom:10px;
}

.qrcode-box{
    width:160px;
    height:160px;
    background:#fff;
    border:1px solid #eee;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.qrcode-placeholder{
    width:100%;
    height:100%;
}


/* 举报按钮 */
.other {
    display: flex;
    /* 关键点：剩余空间全部推到左边 display:flex; justify‑content:space‑between*/
    justify-content: flex-end;
    align-items: center;
    gap:12px;
}
/* 如果存在.tags标签，就让tags占左边，margin‑auto把剩余空间挤到中间 */
.other > .tags {
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap:6px;
}

.tags a {
    display: inline-block;
    background:#eef4ff;
    color:#475569;
    font-size:12px;
    padding:3px 8px;
    border-radius:4px;
    border:1px solid transparent;
    text-decoration:none;
}
.tags a:hover {
    border-color:#0066cd;
    color:#0066cd;
}

/* 举报按钮 保留你原有样式，去掉float:right！flex布局下float失效 */
.report-btn{
    display:inline-flex;
    align-items:center;
    gap:4px;
    border:1px solid #cbd5e1;
    border-radius:6px;
    padding:4px 9px;
    background:#fff;
    cursor:pointer;
    color:#475569;
    font-size: 12px;
    /* float:right; 删掉！flex不需要浮动 */
    flex-shrink:0; /*关键：举报按钮禁止压缩，永远保持完整在右侧*/
}
.report-btn:hover{
    background:#FF7844;
    color: #ffffff;
    border:1px solid #fb672e;
}

/* 遮罩层 */
.modal‑mask{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:998;
    display:none;
}
/* 弹窗容器，480px更小尺寸，保持居中 */
.report-modal{
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    max-width:92vw;
    max-height: 90vh;
    overflow-y:auto;
    background:#ffffff;
    border-radius:14px;
    z-index:999;
    padding:24px;
    box-sizing:border-box;
    display:none;
}
.report-modal .close-icon{
    position:absolute;
    top:18px;
    right:18px;
    font-size:22px;
    cursor:pointer;
    color:#64748b;
}
.report-modal h2{
    margin:0 0 8px 0;
    font-size:20px;
    color:#1e293b;
}
.tip-text{
    color:#64748b;
    font-size:13px;
    margin-bottom:18px;
}
/* 单选网格布局 */
.radio-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:18px;
}
.radio-item{
    border:1px solid #e2e8f0;
    border-radius:10px;
    padding:11px 14px;
    cursor:pointer;
    font-size:14px;
}
.radio-item.active{
    border-color:#2563eb;
    background:#eff6ff;
}
.radio-item input{
    margin-right:6px;
}
/* 文本域 */
.textarea-wrap label{
    display:block;
    font-size:13px;
    color:#475569;
    margin-bottom:6px;
}
#report_desc{
    width:100%;
    box-sizing:border-box;
    min-height:100px;
    border:1px solid #e2e8f0;
    border-radius:10px;
    padding:12px;
    resize:vertical;
    font-size:14px;
}
#report_desc:focus{
    outline:none;
    border-color:#2563eb;
}
/* 按钮组 */
.btn-group{
    margin-top:22px;
    display:flex;
    justify-content:flex-end;
    gap:12px;
}
.btn-cancel{
    padding:10px 26px;
    border:none;
    border-radius:10px;
    background:#e2e8f0;
    color:#334155;
    cursor:pointer;
    font-size:15px;
}
.btn-submit{
    padding:10px 26px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    cursor:pointer;
    font-size:15px;
}
.btn-submit:disabled{
    background:#94a3b8;
    cursor:not-allowed;
}

/*发消息css模板*/
.modal-msgmask {
    position: fixed;
    left:0;top:0;right:0;bottom:0;
    background:rgba(0,0,0,0.5);
    z-index:998;
    display:none;
}
.msg-modal {
    position:fixed;
    width:480px;
    background:#fff;
    z-index:999;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    padding:20px 24px;
    border-radius:6px;
    display:none;
}
.msg-modal .close-icon {
    position:absolute;
    right:16px;
    top:12px;
    font-size:22px;
    cursor:pointer;
    color:#999;
}
.msg-modal h2{
    margin-top:0;
    font-size:18px;
}
.tip-text{
    color:#666;
    font-size:13px;
    margin-bottom:16px;
}
.textarea-wrap label{
    display:block;
    margin-bottom:6px;
}
.textarea-wrap textarea{
    width:100%;
    box-sizing:border-box;
    height:140px;
    padding:8px;
    border:1px solid #ddd;
    border-radius:4px;
}
.btn-group{
    margin-top:18px;
    text-align:right;
}
.btn-cancel{
    padding:6px 14px;
    border:1px solid #ccc;
    background:#fff;
    border-radius:4px;
    margin-right:8px;
    cursor:pointer;
}
.btn-submit{
    padding:6px 14px;
    background:#0066cd;
    color:#fff;
    border:none;
    border-radius:4px;
    cursor:pointer;
}

/**搜索页面*/
.container-wrap {
    max-width:1240px;
    margin:24px auto;
    padding:0 20px;
    display: grid;
    grid-template-columns: calc(100% - 300px) 280px;
    gap:14px;
}
.main-col-sc{
    width:100%;
}

/* --------搜索框区域-------- */
.search-top-box {
    background:#ffffff;
    border-radius:10px;
    border:1px solid #d8e2ef;
    padding:20px;
    margin-bottom:20px;
}
.search-input-row {
    display:flex;
    gap:12px;
    align-items:center;
}
.search-input {
    flex:1;
    height:40px;
    border:1px solid #b8c8e0;
    border-radius:8px;
    padding:0 16px;
    font-size:16px;
    outline:none;
}
.search-input:focus {
    border-color:#0066CD;
}
.btn-search {
    height:40px;
    min-width:100px;
    background-color:#0066CD;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

.btn-search:hover{
    background-color:#045DB7;

}
.search-tip-text {
    margin-top:12px;
    font-size:14px;
    color:#64748b;
}

/* --------结果筛选tab-------- */
.search-filter-bar {
    background:#ffffff;
    border-radius:10px;
    border:1px solid #d8e2ef;
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
}
.filter-left-title {
    font-size:17px;
    font-weight:600;
    color:#0066CD;
    display:flex;
    align-items:center;
    gap:6px;
}
.filter-tabs {
    display:flex;
    gap:8px;
}
.filter-tab-item {
    padding:6px 16px;
    border-radius:6px;
    border:1px solid #cbd5e1;
    background:#fff;
    cursor:pointer;
    font-size:15px;
}
.filter-tab-item:hover {
    background:##F0F6FF;
    color:#0066CD;
    border-color:#0066CD;
}
.filter-tab-item.active {
    background:#0066CD;
    color:#fff;
    border-color:#0066CD;
}
.sort-text {
    display: flex;
    align-items: center;
    gap:10px;
    font-size:14px;
    color:#64748b;
}

/* --------帖子列表项-------- */
.search-list-wrap {
    background:#fff;
    border-radius:10px;
    border:1px solid #d8e2ef;
    overflow:hidden;
}
.search-item {
    padding:20px;
    border-bottom:1px solid #edf2f9;
}
.search-item:last-child {
    border-bottom:none;
}
.item-tag-label {
    display:inline-block;
    font-size:12px;
    background:#e8f0fe;
    color:#0052cc;
    padding:2px 6px;
    border-radius:4px;
    margin-right:8px;
}
.item-title {
    font-size:17px;
    color:#555555;
    text-decoration:none;
}
.item-title:hover {
    color:#0052cc;
}
.keyword-highlight {
    background:#fff2aa;
    padding:0 2px;
}
.item-desc {
    font-size:14px;
    color:#555;
    margin:8px 0;
    line-height:1.6;
}
.item-meta-row {
    font-size:14px;
    color:#475569;
}
.meta-source a{
    color:#555555;
    font-weight:500;
    margin-right:10px;
}
.meta-source a:hover{
    color:#0052cc;
}
/* --------分页样式-------- */
.search-pagination{
    background:#fff;
    border:1px solid #d8e2ef;
    border-radius:10px;
    margin-top:16px;
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}
.page-info-text{
    font-size:14px;
    color:#64748b;
    margin-right:12px;
}
.page-btn{
    min-width:36px;
    height:36px;
    line-height:36px;
    text-align:center;
    padding:0 12px;
    border:1px solid #cbd5e1;
    border-radius:6px;
    background:#fff;
    font-size:14px;
    cursor:pointer;
    text-decoration:none;
    color:#333;
}
.page-btn:hover{
    border-color:#0052cc;
    color:#0052cc;
}
.page-btn.active{
    background:#0052cc;
    color:#ffffff;
    border-color:#0052cc;
}
.page-btn.disabled{
    cursor:not-allowed;
    color:#b4b4b4;
}

/* --------右侧边栏-------- */
.sidebar-card {
    background:#ffffff;
    border-radius:10px;
    border:1px solid #d8e2ef;
    padding:18px;
    margin-bottom:20px;
}
.sidebar-card h4 {
    display:flex;
    align-items:center;
    gap:6px;
    font-size:16px;
    color:#0066CD;
    padding-bottom:10px;
    border-bottom:1px solid #e2e8f0;
    margin-bottom:12px;
}
.sidebar-tip-list {
    font-size:12px;
    color:#475569;
    line-height:1.7;
}
.hot-search-btn-group {
    display:flex;
    gap:6px;
    flex-wrap:wrap;
}
.hot-tag-btn {
    border:1px solid #b8c8e0;
    background:#f0f6ff;
    color:#0052cc;
    padding:5px 6px;
    border-radius:3px;
    font-size:12px;
}

.nodata{
    text-align: center;
    padding: 20px;
    color: #64748b;
}
.nodata a{
    color: #64748b!important;
}

/*搜索用户列表*/
.user-list-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px 16px;
    margin-bottom:20px;
}
.user-item-sc{
    border:1px solid #e5e7eb;
    border-radius:8px;
    padding:14px;
    background:#fff;
    display:flex;
    gap:12px;
    /* 修改：垂直居中，替换原来 flex‑start */
    align-items:center;
    justify-content:space-between;
}
.user-item-sc > a{
    display:flex;
    gap:12px;
    /* a内部头像文字也垂直居中 */
    align-items:center;
    text-decoration:none;
    color:inherit;
    flex:1;
}
.user-item-sc:hover{
    background:#eef4ff;
}

.user-avatar-sc{
    width:50px;
    height:50px;
    flex-shrink:0;
}
.user-avatar-sc img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
}
.user-info-sc{
    flex:1;
}
.user-name-row{
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:6px;
}
.user-badge{
    background:#ffdd77;
    padding:2px 8px;
    border-radius:4px;
    font-weight:bold;
    font-size:16px;
}
.user-name{
    font-size:18px;
    font-weight:600;
}
.user-meta{
    font-size:15px;
    color:#666;
}

/*关注按钮*/
.user-list-wrap .btn-follows{
    flex-shrink:0;
    padding:4px 14px;
    border-radius:4px;
    border:1px solid #0066cd;
    background:#0066cd;
    color:#fff;
    cursor:pointer;
    white-space:nowrap;
}

.user-list-wrap .btn-follows:hover{
    border:1px solid #0066cd;
    background:#ffffff;
    color:#0066cd;
}
.user-list-wrap .btn-follows.followed{
    background:#ffffff;
    color:#666;
    border-color:#cccccc;
}
.user-list-wrap .btn-follows:hover{
    opacity:0.9;
}

@media (max-width:768px){
    .user-list-wrap{
        grid-template-columns:1fr;
    }
}


/*悬浮广告盒子*/
.side-ad-sticky {
    position: sticky;
    top: 20px; /*距离视口顶部20px，滚动到这里就粘住*/
    margin-top:16px;
}
.side-ad-sticky a {
    display:block;
    border-radius:6px;
    overflow:hidden;
}
.side-ad-sticky img {
    width:100%;
    /*height:auto;*/
    max-height:450px;
    object-fit:cover;
    display:block;
}


.warning {
    background-color: #fff6e5;
    border: #f2bf6a 1px solid;
    color: #e8950d;
    padding: 15px;
    margin-bottom: 20px;
}


.alert{
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px dashed transparent;
    font-size: 14px;
    line-height: 1.55;

    border-color: #efc5c9;
    background: rgba(239, 197, 201, 0.18);
    color: #7d6828;
}

.s-size {
    color: rgb(255,136,0);
    cursor: pointer;
}
.b-size {
    color: rgb(133, 133, 133);
    font-size: 16px;
    margin-left: 10px;
    cursor: pointer;
}
.conother{
    display: flex;justify-content: space-between
}


.urllink {
    background-color: #f9f9f9;
    border-radius: 3px;
    margin: 15px 0 0 0 ;
    font-size: 13px;
    line-height: 1.7;
    padding: 10px;
    border: 1px solid #efefef;
    color: #999;
}

.urllink a {
    color: #999;
}






