/* 
 * 现代化信息详情页样式 - info_modern.css
 * 仅适用于 info.html 页面，不影响其他页面
 */

/* 整体容器样式优化 */
.information_bd {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px 0;
    display: flex;
    gap: 20px;
}

/* 左侧主内容区域现代化 */
.bd_left {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    flex: 1;
    order: 2; /* 主内容移到右边 */
}

/* 添加渐变背景装饰 */
.bd_left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1F4A45;
    z-index: 1;
}

/* 信息标题区域现代化 */
.information_hd {
    background: #1F4A45;
    color: white;

    margin: 0;
    position: relative;
}

.information_title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.information_time {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.information_time span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 编辑操作按钮现代化 */
.editor li a {
   
    color: white !important;
    padding: 7px 0px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 16px;
}

/* 图片和联系信息区域 */
.extra_contact {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: white;
}

.extra {
    flex: 1;
    min-width: 0;
    order: 2; /* 图片区域移到右边 */
}

.contact {
    flex: 1;
    min-width: 0;
    order: 1; /* 联系方式移到左边 */
}

/* 图片展示区现代化 */
.zoombox {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.zoompic img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.zoompic img:hover {
    transform: scale(1.02);
}

/* 缩略图滑动条现代化 */
.sliderbox {
    margin-top: 15px;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sliderr ul li {
    margin: 0 5px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sliderr ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sliderr ul li.currentt {
    border: 3px solid #1F4A45;
    transform: scale(1.1);
}

/* 右侧边栏样式 */
.bd_right {
    width: 300px;
    flex-shrink: 0;
    order: 1; /* 侧边栏移到左边 */
}

/* 响应式设计 */
@media (max-width: 768px) {
    .information_bd {
        flex-direction: column;
    }
    
    .bd_right {
        width: 100%;
        order: 2; /* 在移动端，侧边栏显示在下方 */
    }
    
    .bd_left {
        order: 1; /* 在移动端，主内容显示在上方 */
    }
    
    .information_hd {
        padding: 20px 15px;
    }
    
    .information_title {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .information_time {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .information_time span {
        font-size: 13px;
    }
}

/* 联系信息现代化 */
.contact ul li {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 8px 0;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #1F4A45;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #1F4A45;
}

.contact ul li span {
    color: #495057;
    font-weight: 600;
    font-size: 14px;
}

.contact ul li .tel {
    color: #1F4A45;
    font-weight: 700;
    font-size: 16px;
}

.contact ul li .red {
    color: #dc3545 !important;
}

/* QQ和电话按钮现代化 */
.contact ._chat, .contact ._qq, .contact ._bm {
    background: #1F4A45!important;
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.4);
}

.contact ._chat:hover, .contact ._qq:hover, .contact ._bm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: #1F4A45;
}

/* 提醒信息现代化 */
.notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 15px 20px;
    margin: 15px 0;
    box-shadow: 0 3px 15px rgba(255, 193, 7, 0.2);
}

.notice ul {
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* 详情内容区域 */
.view_hd {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    padding: 0;
    border-radius: 0;
    margin: 30px 0 0 0;
}

.view_hd ul li.now {
    background: transparent;
    color: white;
    padding: 0px 30px;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    border: none;
}

.view_bd {
    background: white;
    padding: 40px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.view_bd .maincon {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 图片展示优化 */
.view_bd .imginfo {
    border-radius: 12px;
    margin: 10px 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.view_bd .imginfo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* 相关推荐区域现代化 */
.relates {
    background: white;
    padding: 30px;
    border-radius: 0 0 12px 12px;
}

.relates ul li {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.relates ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #1F4A45;
}

.relateimg img {
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.relatetit .tit {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.relatetit .tit:hover {
    color: #1F4A45;
}

.relatetit .cat {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.relatedat {
    color: #adb5bd;
    font-size: 12px;
    font-weight: 500;
}

/* 底部信息 */
.bd_left_foot {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    padding: 20px 30px;
    border-top: 1px solid #dee2e6;
}

.bd_left_foot ul {
    color: #6c757d;
    font-size: 13px;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* 右侧边栏现代化 */
.bd_right {
    background: transparent;
}

.boxx, .boxer {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

/* 用户信息卡片 */
.boxx .con {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.userlogo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.username {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

.certify img {
    background: white;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 用户级别信息 */
.jibie {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.jibie li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 14px;
    color: #495057;
}

.jibie .vip {
    color: #dc3545;
    font-weight: 700;
}

/* 认证信息 */
.Identity {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.Identity p {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 13px;
    color: #495057;
    margin: 0;
}

/* 分类和热门分站 */
.boxer_hd {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    padding: 15px 20px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.boxer_bd {
    padding: 20px;
    background: white;
}

.boxer_bd ul li {
    margin-bottom: 8px;
}

.boxer_bd ul li a {
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    padding: 0px 25px;
    display: inline-block;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.boxer_bd ul li a:hover {
    background: #1F4A45;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 查看更多按钮 */
.viewmore {
    background: #1F4A45!important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.viewmore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: #1F4A45;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .extra_contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .information_title {
        font-size: 22px;
    }
    
    .information_time {
        padding: 12px 15px;
    }
    
    .view_bd {
        padding: 20px;
    }
    
    .relates ul li {
        padding: 15px;
    }
    
    .bd_left {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* 添加一些动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bd_left, .bd_right .boxx, .bd_right .boxer {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条美化 */
.view_bd::-webkit-scrollbar {
    width: 6px;
}

.view_bd::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.view_bd::-webkit-scrollbar-thumb {
    background:#1F4A45;
    border-radius: 3px;
}

.view_bd::-webkit-scrollbar-thumb:hover {
    background: #1F4A45;
}
