/* 
 * 全新现代化信息详情页样式 - info_modern_new.css
 * 橘色系主题，全新布局设计
 * 仅适用于info.html页面，使用特定选择器避免影响其他页面
 */

/* 仅针对info.html页面的样式，通过body class限制作用域 */
body.full .bodybgcolor {
   
    min-height: 100vh;
}

/* 主容器现代化 - 限制最大宽度避免溢出 */
body.full .body1000 {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

/* 面包屑导航现代化 */
body.full .location {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 25px;
    margin: 15px 0;
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    font-size: 13px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.full .location a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

body.full .location a:hover {
    color: #f7931e;
}

/* 主要内容区域全新布局 */
body.full .wrapper {
    background: transparent;
    padding: 0;
}

body.full .information_bd {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* 左侧主内容区域 - 全新卡片式设计 */
body.full .bd_left {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
    overflow: hidden;
    position: relative;
    order: 1;
    min-width: 0; /* 防止溢出 */
    width: 1000px;
    margin-left: 100px;
}

/* 英雄区域 - 全新设计 */
body.full .information_hd {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 25px 0px 25px 0px;
    position: relative;
    overflow: hidden;
}

body.full .information_hd::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

body.full .information_hd::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

body.full .information_title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-left: 30px;
}

/* 信息时间栏现代化 */
body.full .information_time {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 10px 0px 10px 0px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

body.full .information_time span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 编辑操作按钮 */
body.full .editor {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
}

body.full .editor li {
    list-style: none;
    margin: 0;
}

body.full .editor li a {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 0px 4px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

body.full .editor li a:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* 内容主体区域 */
body.full .extra_contact {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 25px;
    padding: 30px;
    background: white;
}

/* 联系信息区域 - 左侧 */
body.full .contact {
    order: 1;
    min-width: 0;
}

body.full .contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.full .contact ul li {
    background: linear-gradient(135deg, #fff8f5 0%, #ffeee6 100%);
    border: 1px solid #ffe5d6;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
}

body.full .contact ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

body.full .contact ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

body.full .contact ul li span {
    color: #666;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    min-width: 60px;
}

body.full .contact ul li .tel {
    color: #ff6b35;
    font-weight: 700;
    font-size: 14px;
}

body.full .contact ul li .red {
    color: #dc3545 !important;
    font-size: 16px;
    font-weight: 800;
}

/* 联系按钮现代化 */
body.full .contact ._chat, 
body.full .contact ._qq, 
body.full .contact ._bm {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: white !important;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
    border: none;
}

body.full .contact ._chat:hover, 
body.full .contact ._qq:hover, 
body.full .contact ._bm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%) !important;
}

/* 图片展示区域 - 右侧 */
body.full .extra {
    order: 2;
    min-width: 0;
}

body.full .zoombox {
    background: linear-gradient(135deg, #fff8f5 0%, #ffeee6 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.1);
    border: 1px solid #ffe5d6;
}

body.full .zoompic {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

body.full .zoompic img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

body.full .zoompic:hover img {
    transform: scale(1.03);
}

/* 缩略图区域现代化 */
body.full .sliderbox {
    margin-top: 15px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: inset 0 2px 8px rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

body.full .arrow-btn {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    flex-shrink: 0;
}

body.full .arrow-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

body.full .arrow-btn.dasabled {
    opacity: 0.5;
    cursor: not-allowed;
}

body.full .sliderr {
    flex: 1;
    overflow: hidden;
}

body.full .sliderr ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.full .sliderr ul li {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    
}

body.full .sliderr ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

body.full .sliderr ul li.currentt {
    border-color: #ff6b35;
    transform: scale(1.05);
}



/* 提醒信息现代化 */
body.full .notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #fdcb6e;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.2);
    position: relative;
    overflow: hidden;
}

body.full .notice::before {
    content: '⚠️';
    position: absolute;
    top: 12px;
    left: 15px;
    font-size: 16px;
}

body.full .notice ul {
    color: #8b6914;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 0 30px;
    font-weight: 500;
    padding: 0;
    list-style: none;
}

/* 详情内容区域 */
body.full .view_hd {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    margin: 25px 0 0 0;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
}

body.full .view_hd::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

body.full .view_hd ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.full .view_hd ul li.now {
    background: transparent;
    color: white;
    padding: 0px 30px;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    border: none;
    position: relative;
    z-index: 2;
}

body.full .view_bd {
    background: white;
    padding: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.full .view_bd .maincon {
    background: linear-gradient(135deg, #fff8f5 0%, #ffeee6 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ffe5d6;
    line-height: 1.7;
    font-size: 14px;
    color: #333;
    box-shadow: inset 0 2px 8px rgba(255, 107, 53, 0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 图片展示优化 */
body.full .view_bd .imginfo {
    border-radius: 12px;
    margin: 10px 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid white;
    max-width: 100%;
    height: auto;
}

body.full .view_bd .imginfo:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: #ff6b35;
}

/* 相关推荐区域 */
body.full .relates {
    background: white;
    padding: 25px 42px 0px 0px;
    border-radius: 0 0 12px 12px;
}

body.full .relates ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 15px;
}

body.full .relates ul li {
    background: linear-gradient(135deg, #fff8f5 0%, #ffeee6 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #ffe5d6;
    display: flex;
    gap: 15px;
    align-items: center;
}

body.full .relates ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
}

body.full .relateimg {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.full .relateimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body.full .relateimg:hover img {
    transform: scale(1.1);
}

body.full .relatetit {
    flex: 1;
    min-width: 0;
}

body.full .relatetit .tit {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.full .relatetit .tit:hover {
    color: #ff6b35;
}

body.full .relatetit .cat {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.full .relatedat {
    /* color: #999;
    font-size: 11px;
    font-weight: 500;
    flex-shrink: 0;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 10px;
    border-radius: 15px; */
    color: #ff6b35;
}

/* 底部信息 */
body.full .bd_left_foot {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 30px;
    border-top: 1px solid #ffe5d6;
    text-align: center;
}

body.full .bd_left_foot ul {
    color: #666;
    font-size: 12px;
    font-style: italic;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ========== 详情页原右侧栏 · 移到底部横向展示 ========== */
body.full .bd_right {
    width: 100%;
    order: 2;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr);
    gap: 16px;
    margin-top: 8px;
}

/* 右侧卡片通用：白底、圆角、细边框、无渐变 */
body.full .bd_right .boxx,
body.full .bd_right .boxer {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    width: 970px;
    margin-left: 100px;
}

body.full .bd_right .boxx:hover,
body.full .bd_right .boxer:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
}

/* 用户信息卡片：头像 + 昵称 + 商家标 */
body.full .bd_right .boxx .con {
    padding: 28px 20px 24px;
    text-align: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

body.full .bd_right .boxx .con::before {
    display: none;
}

body.full .bd_right .school_logo {
    text-align: center;
    margin: 0 0 8px 0;
    padding: 0;
    list-style: none;
}

body.full .bd_right .userlogo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #f1f5f9;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.full .bd_right .username {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 12px 0 0 0;
    word-wrap: break-word;
    pointer-events: none;
    cursor: default;
}

body.full .bd_right .certify {
    margin-top: 10px;
}

body.full .bd_right .certify img {
    vertical-align: middle;
    border: none;
    height: 20px;
    width: auto;
}

/* 用户级别与信用：紧凑两行 */
body.full .bd_right .jibie {
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 10px;
    margin: 0 18px 14px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

body.full .bd_right .jibie li {
    padding: 6px 0;
    border-bottom: none;
    font-size: 12px;
    color: #64748b;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.full .bd_right .jibie li:last-child {
    padding-bottom: 0;
}

body.full .bd_right .jibie .vip {
    color: #ea580c;
    font-weight: 600;
    background: rgba(234, 88, 12, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
}

body.full .bd_right .jibie img {
    vertical-align: middle;
}

/* 认证信息：图标 + 文案，已认证/未认证区分 */
body.full .bd_right .Identity {
    background: #f8fafc;
    padding: 14px 18px 16px;
    border-radius: 10px;
    margin: 0 18px 18px;
    border: 1px solid #e2e8f0;
}

body.full .bd_right .Identity p {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 12px;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.full .bd_right .Identity p:last-child {
    border-bottom: none;
}

body.full .bd_right .Identity p img {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* 相关分类 / 热门分站：左侧色条标题 + 标签列表 */
body.full .bd_right .boxer_hd {
    background: #f8fafc;
    padding: 12px 18px;
    color: #334155;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

body.full .bd_right .boxer_hd::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff6b35, #f7931e);
    border-radius: 0 2px 2px 0;
}

body.full .bd_right .boxer_hd span {
    position: relative;
    z-index: 1;
    padding-left: 4px;
}

body.full .bd_right .boxer_hd::after {
    display: none;
}

body.full .bd_right .boxer_bd {
    padding: 16px 18px;
    background: #fff;
}

body.full .bd_right .boxer_bd.cfix.short {
    padding: 16px 18px;
}

body.full .bd_right .boxer_bd ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.full .bd_right .boxer_bd ul li {
    margin: 0;
}

body.full .bd_right .boxer_bd ul li a {
    color: #475569;
    text-decoration: none;
    font-size: 12px;
    padding: 6px 12px;
    display: inline-block;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

body.full .bd_right .boxer_bd ul li a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ea580c;
    border-color: rgba(255, 107, 53, 0.3);
}

/* 热门分站无链接时的纯文字项 */
body.full .bd_right .boxer_bd ul li:not(:has(a)) {
    color: #94a3b8;
    font-size: 12px;
    padding: 6px 0;
}

/* 底部三栏：小屏改为纵向堆叠 */
@media (max-width: 768px) {
    body.full .bd_right {
        grid-template-columns: 1fr;
    }
}

/* 查看更多按钮 */
body.full .viewmore {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin: 25px 0;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    font-size: 14px;
}

body.full .viewmore:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%) !important;
}

