/* 
 * 全新现代化信息详情页样式 - 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: grid;
    grid-template-columns: 1fr 300px;
    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; /* 防止溢出 */
}

/* 英雄区域 - 全新设计 */
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: 300px;
    order: 2;
    min-width: 0;
}

body.full .boxx, 
body.full .boxer {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.1);
    overflow: hidden;
    border: 1px solid #ffe5d6;
    transition: all 0.3s ease;
}


/* 用户信息卡片 */
body.full .boxx .con {
    padding: 25px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff8f5 0%, #ffeee6 100%);
    position: relative;
    overflow: hidden;
}

body.full .boxx .con::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

body.full .userlogo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
    object-fit: cover;
    position: relative;
    z-index: 2;
}

body.full .username {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
}

body.full .certify {
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

body.full .certify img {
    background: white;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.2);
}

/* 用户级别信息 */
body.full .jibie {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 15px;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.05);
    border: 1px solid #ffe5d6;
}

body.full .jibie li {
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 13px;
    color: #495057;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.full .jibie li:last-child {
    border-bottom: none;
}

body.full .jibie .vip {
    color: #ff6b35;
    font-weight: 700;
    background: rgba(255, 107, 53, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
}

/* 认证信息 */
body.full .Identity {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 15px;
    border: 1px solid #ffe5d6;
}

body.full .Identity p {
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 12px;
    color: #495057;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.full .Identity p:last-child {
    border-bottom: none;
}

/* 分类和热门分站 */
body.full .boxer_hd {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 15px 20px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

body.full .boxer_hd::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

body.full .boxer_bd {
    padding: 20px;
    background: white;
}

body.full .boxer_bd ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.full .boxer_bd ul li {
    margin: 0;
}

body.full .boxer_bd ul li a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    padding: 6px 12px;
    display: inline-block;
    background: linear-gradient(135deg, #fff8f5 0%, #ffeee6 100%);
    border-radius: 15px;
    border: 1px solid #ffe5d6;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

body.full .boxer_bd ul li a:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    border-color: transparent;
}

/* 查看更多按钮 */
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;
}

