/* 图片和发布者信息容器 */
.pic-contact-wrapper {
    display: flex !important;
    gap: 20px !important;
    align-items: flex-start !important;
    margin: 20px 0 !important;
}

/* 图片展示区域样式 */


.zoompic img {
     width: 930px !important; 
    height: 400px !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    margin: 0 !important;
    display: block !important;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important; */
    transition: transform 0.2s ease !important;
    cursor: pointer !important;
}

/* 发布者信息区域样式 */
.publisher-info {
    width: 200px !important;
    height: 368px !important;
    background: #fff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 15px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    overflow-y: auto !important;
    flex-shrink: 0 !important;
    text-align: left;
   
}

.publisher-info .contacter {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.publisher-info .contacter li {
    padding: 8px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.publisher-info .contacter li:last-child {
    border-bottom: none !important;
}

.publisher-info .contacter li span {
    color: #666 !important;
    margin-right: 5px !important;
}

.publisher-info .contacter .tel {
    color: #333 !important;
    font-weight: 500 !important;
}

.publisher-info .contacter .tel.red {
    color: #dc3545 !important;
}

.publisher-info .contacter a {
    color: #1C72D7 !important;
    text-decoration: none !important;
    margin-left: 5px !important;
}

.publisher-info .contacter a:hover {
    text-decoration: underline !important;
}

.publisher-info .qqbm {
    margin: 10px 0 !important;
}

.publisher-info .qqbm a._bm {
    display: inline-block !important;
    padding: 8px 16px !important;
    background-color: #1C72D7 !important;
    color: #fff !important;
    border-radius: 4px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.publisher-info .qqbm a._bm:hover {
    background-color: #1557a0 !important;
    text-decoration: none !important;
}

.publisher-info .clear5 {
    height: 5px !important;
    clear: both !important;
}

/* 信息描述样式 */
.info-description {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: left;
    position: relative;
}

.description-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    padding: 8px 12px;
    border: 2px solid #5489BD;
    color: #5489BD;
    border-radius: 4px;
    display: inline-block;
}

.description-content {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 10px 0;
    text-align: justify;
}

/* 联系方式按钮样式 */
.contact-view-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.btn-contact {
    display: inline-block;
    padding: 8px 16px;
    background-color: #5489BD;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-contact:hover {
    background-color: #4a7ba7;
    text-decoration: none;
    color: white;
}

/* 热门推荐模块样式 */
.hot-recommend {
    margin: 30px 0;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.recommend-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5489BD;
    position: relative;
    text-align: left
}

.recommend-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #5489BD;
}

.recommend-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.recommend-item {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.recommend-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: #333;
}

.recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommend-item:hover .recommend-image img {
    transform: scale(1.05);
}

.recommend-content {
    padding: 15px;
}

.recommend-item-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recommend-item-title a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recommend-item-title a:hover {
    color: #5489BD;
}

.recommend-time {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.recommend-btn {
    text-align: center;
}

.btn-detail {
    display: inline-block;
    padding: 6px 16px;
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.btn-detail:hover {
    background-color: #5489BD;
    text-decoration: none;
    color: white;
}

.btn-detail.gray {
    background-color: #6c757d;
}

.btn-detail.gray:hover {
    background-color: #5489BD;
}

.btn-detail.primary {
    background-color: #6c757d;
}

.btn-detail.primary:hover {
    background-color: #5489BD;
}

.btn-detail.primary:hover {
    background-color: #4a7ba7;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .recommend-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .recommend-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hot-recommend {
        margin: 20px 0;
        padding: 15px;
    }
    
    .recommend-image {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .recommend-container {
        grid-template-columns: 1fr;
    }
}

.zoompic img:hover {
    transform: scale(1.02) !important;
}

/* 缩略图容器样式 */
.sliderbox {
    max-width: 400px !important;
    margin: 10px auto 20px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
}

.sliderr {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 320px;
}

/* 自定义滚动条样式 */
.sliderr::-webkit-scrollbar {
    height: 6px;
}

.sliderr::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.sliderr::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.sliderr::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.sliderr ul {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    justify-content: flex-start;
    min-width: max-content;
}

.sliderr ul li {
    width: 55px;
    height: 55px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sliderr ul li:hover {
    border-color: #1C72D7;
    transform: scale(1.05);
}

.sliderr ul li.currentt {
    border-color: #1C72D7;
    box-shadow: 0 0 8px rgba(28, 114, 215, 0.3);
}

.sliderr ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 箭头按钮样式 */
.arrow-btn {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.arrow-btn:hover {
    background: #1C72D7;
    border-color: #1C72D7;
}

.arrow-btn:hover::before {
    border-color: transparent #fff transparent transparent;
}

.arrow-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

#btn-left::before {
    border-width: 6px 8px 6px 0;
    border-color: transparent #666 transparent transparent;
    margin-right: 2px;
}

#btn-right::before {
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #666;
    margin-left: 2px;
}

#btn-left:hover::before {
    border-color: transparent #fff transparent transparent;
}

#btn-right:hover::before {
    border-color: transparent transparent transparent #fff;
}

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

.arrow-btn.dasabled:hover {
    background: #f0f0f0;
    border-color: #ddd;
}

.arrow-btn.dasabled:hover::before {
    border-color: transparent #666 transparent transparent;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pic-contact-wrapper {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .zoompic {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .zoompic img {
        width: 100% !important;
        max-width: 350px !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .publisher-info {
        width: 100% !important;
        max-width: 350px !important;
        height: auto !important;
        min-height: 200px !important;
        margin: 0 auto !important;
    }
    
    .sliderbox {
        max-width: 90% !important;
        margin: 8px auto 15px auto !important;
        padding: 8px !important;
    }
    
    .sliderr {
        max-width: 280px !important;
    }
    
    .sliderr ul li {
        width: 48px !important;
        height: 48px !important;
    }
    
    .arrow-btn {
        width: 28px !important;
        height: 28px !important;
    }
}

@media (max-width: 480px) {
    .pic-contact-wrapper {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .zoompic {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .zoompic img {
        width: 100% !important;
        max-width: 280px !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .publisher-info {
        width: 100% !important;
        max-width: 280px !important;
        height: auto !important;
        min-height: 180px !important;
        margin: 0 auto !important;
        padding: 12px !important;
    }
    
    .sliderbox {
        max-width: 95% !important;
        margin: 5px auto 10px auto !important;
        padding: 6px !important;
        gap: 6px !important;
    }
    
    .sliderr {
        max-width: 200px !important;
    }
    
    .sliderr ul {
        gap: 4px !important;
    }
    
    .sliderr ul li {
        width: 42px !important;
        height: 42px !important;
    }
    
    .arrow-btn {
        width: 26px !important;
        height: 26px !important;
    }
}

/* 详情页专用蓝色背景导航样式 */
.info_page_header_bg {
    background: #1C72D7;
    position: relative;
    z-index: 100;
}

.info_page_header_bg .new_header_container {
    position: relative;
}

.info_page_header_bg .header_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}

.info_page_header_bg .site_welcome {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.info_page_header_bg .auth_buttons {
    display: flex;
    gap: 10px;
}

.info_page_header_bg .login_btn,
.info_page_header_bg .register_btn {
    color: #fff !important;
    text-decoration: none !important;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
   
}
.info_page_header_bg .logo_nav_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.info_page_header_bg .weblogo img {
    max-height: 60px;
    width: auto;
}

.info_page_header_bg .secondary_navigation .logo_nav_menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.info_page_header_bg .secondary_navigation .logo_nav_menu ul li {
    margin-left: 30px;
}

.info_page_header_bg .secondary_navigation .logo_nav_menu ul li a {
    text-decoration: none;
    color: #fdfdfd;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
}

.info_page_header_bg .secondary_navigation .logo_nav_menu ul li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.info_page_header_bg .secondary_navigation .logo_nav_menu ul li a.current {
    color: #fff;
    background: rgba(255,255,255,0.2);
}

/* 位置头部区域样式 */
.location-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-title-left {
    flex: 1;
}

.info-title-left h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
    max-width: 70%;
    text-align: left;
}

.location-right {
    font-size: 13px;
    color: #666;
    background: url(../images/global/location.gif) no-repeat left center;
    padding-left: 20px;
    white-space: nowrap;
}

.location-right a {
    color: #666;
    text-decoration: none;
}

.location-right a:hover {
    color: #1C72D7;
}
