        /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            font-size: 12px;
            color: #333;
            line-height: 1.5;
            background-color: #f5f5f5;
        }
        
        a {
            color: #333;
            text-decoration: none;
        }
        
        a:hover {
            color: #ff6600;
        }
        
        .container {
            width: 980px;
            margin: 0 auto;
            background-color: #fff;
            overflow: hidden;
        }
        
        /* 通用样式 */
        .clearfix::after {
            content: "";
            display: block;
            clear: both;
        }
        
        .section-title {
            height: 35px;
            line-height: 35px;
            border-bottom: 1px solid #eee;
            margin-bottom: 10px;
            font-weight: bold;
            color: #333;
            background: linear-gradient(to bottom, #f0f0f0, #e5e5e5);
            border-radius: 3px 3px 0 0;
        }
        
        .section-title span {
            float: left;
            font-size: 14px; padding-left: 10px;
        }
        
        .section-title .right-text {
            float: right;
            font-size: 12px; padding-right: 10px;
            font-weight: normal;
            color: #999;
        }
        
        .btn {
            display: inline-block;
            padding: 5px 15px;
            background-color: #ff6600;
            color: white;
            border-radius: 3px;
            text-align: center;
        }
        
        .btn:hover {
            background-color: #ff8533;
        }
        
        /* 1. 顶部通栏 - 铺满屏幕 */
        .top-bar {
            height: 30px;
            background: linear-gradient(to bottom, #e0e0e0, #d0d0d0);
            line-height: 30px;
            font-size: 12px;
            width: 100%;
        }
        
        .top-bar-container {
            width: 980px;
            margin: 0 auto;
        }
        
        .top-left {
            float: left;
        }
        
        .top-left a {
            margin-right: 15px;
        }
        
        .top-right {
            float: right;
        }
        
        .top-right a {
            margin-left: 15px;
        }
        
        /* 2. LOGO栏 */
        .logo-bar {
            height: 70px;
            padding: 0 10px;
            position: relative;
        }
        
        .logo {
            float: left;
            width: 180px;
            height: 60px;
            background-color: #fff;
            color: white;
            text-align: center;
            line-height: 60px; margin-top: 8px;
            font-size: 22px;
            font-weight: bold;
        }
        
        .logo-links {
            float: right;
            height: 70px;
            display: flex;
            align-items: center;
        }
        
        .logo-links a {
            display: inline-block;
            margin-left: 10px;
            padding: 8px 15px;
            background-color: #ff6600;
            color: white;
            border-radius: 5px;
            font-size: 14px;
            height: 35px;
            line-height: 19px;
        }
        
        /* 3. 导航栏 - 已优化 */
        .nav-bar {
            height: 60px;
            background-color: #2c3e50;
            color: white;
        }
        
        .nav-menu {
            list-style: none;
            display: flex;
            height: 100%;
        }
        
        .nav-menu li {
            flex: 1;
            position: relative;
            border-right: 1px solid #3d4f61;
        }
        
        .nav-menu li:first-child {
            width: 60px;
            flex: none;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid #3d4f61;
        }
        
        .nav-menu li:last-child {
            border-right: none;
        }
        
        .nav-menu li a {
            display: block;
            color: white;
            height: 100%;
            text-align: center;
            line-height: 16px;
        }
        
        .nav-menu li a:hover {
            background-color: #34495e;
        }
        
        .nav-menu li:first-child a {
            font-weight: bold;
            font-size: 16px;
            line-height: 60px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 导航栏右侧四栏的六个链接布局 - 已优化 */
        .nav-column {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2px 10px;
        }
        
        .nav-column a {
            display: block;
            text-align: left;
            line-height: 15px;
            height: 15px;
            padding: 0;
            font-size: 11px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .nav-row {
            margin-bottom: 5px;
        }
        
        .nav-row:last-child {
            margin-bottom: 0;
        }
        
        .nav-links {
            display: flex;
            justify-content: space-between;
        }
        
        .nav-links a {
            width: 32%;
        }
        
        /* 4. 快速导航 */
        .quick-nav {
            height: 45px;
            border-bottom: 1px solid #eee;
            padding: 0 10px;
            line-height: 45px;
			overflow: hidden;
        }
        
        .quick-title {
            float: left;
            width: 8%;
            font-weight: bold;
            color: #333;
        }
        
        .quick-links {
            float: left;
            width: 600px;
        }
        
        .quick-links a {
            margin-right: 10px;
        }
        
.search-box {
    float: right;
    width: 250px;
    display: flex;
    align-items: center;
}

.search-box .search-input {
    flex: 1;
    height: 28px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size: 14px;
    color: #333;
    line-height: 28px; /* 确保文字垂直居中 */
    box-sizing: border-box; /* 确保高度计算正确 */
}

.search-box .search-submit {
    width: 60px;
    height: 28px; /* 与输入框同高 */
    line-height: 28px; /* 文字垂直居中 */
    background-color: #ff6600;
    color: white;
    border: 1px solid #ff6600;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-size: 14px;
    padding: 0; /* 去掉默认内边距 */
    transition: background-color 0.3s;
    box-sizing: border-box; /* 确保高度计算正确 */
}
        
        /* 5. 内容区 - 第一屏 */
        .content-first {
            padding: 5px 10px;
            display: flex;
            overflow: hidden;
        }
        
        .left-col, .middle-col, .right-col {
            overflow: hidden;
        }
        
        .left-col {
            width: 25%;
        }
        
        .middle-col {
            width: 50%;
            padding: 0 10px;
        }
        
        .right-col {
            width: 25%;
        }
        
        .article-list {
            list-style: none;
            margin-bottom: 15px;
        }
        
        .article-list li {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* 左侧最新推荐改为二列显示 */
        .two-column-list {
            column-count: 2;
            column-gap: 15px;
            list-style: none;
        }
        
        .two-column-list li {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            break-inside: avoid;
        }
        
        .image-grid2 {
            margin-bottom: 10px;
        }
        
        .image-row {
            display: flex;
            margin-bottom: 10px;
        }
        
        .image-item {
            flex: 1;
            margin: 0 5px;
            background-color: #f0f0f0;
            height: 100px;
            text-align: center;
            line-height: 100px;
            color: #666;
            overflow: hidden;
            position: relative;
        }
        
        .image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-large {
            height: 150px;
            line-height: 150px;
            background-color: #e0e0e0;
            margin: 0 5px 10px;
            position: relative;
            overflow: hidden;
        }
        
        .image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 中间两个图片下面的文章列表改为二列显示 */
        .middle-articles {
            column-count: 2;
            column-gap: 15px;
            list-style: none;
        }
        
        .middle-articles li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            break-inside: avoid;
        }
        
        /* 6. 第二屏 */
        .content-second {
            padding: 5px 0 0 10px;
            display: flex;
            overflow: hidden;
        }
        
        .second-left {
            width: 25%;
            overflow: hidden;
        }
        
        .second-right {
            width: 75%;
            padding: 0 10px;
            overflow: hidden;
        }
        
        /* 第二屏左侧文章列表改为二列显示 */
        .second-left-list {
            column-count: 2;
            column-gap: 15px;
            list-style: none;
        }
        
        .second-left-list li {
            padding: 5px 0;
            border-bottom: 1px dashed #eee;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            break-inside: avoid;
        }
        
        .small-image-grid {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }
        
        .small-image-item {
            width: 48%;
            height: 90px;
            background-color: #f0f0f0;
            margin: 1%;
            text-align: center;
            line-height: 90px;
            color: #666;
            position: relative;
            overflow: hidden;
        }
        
        .small-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .second-right-images {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .second-right-item {
            width: 23%;
            height: 100px;
            margin-bottom: 10px;
            background-color: #f0f0f0;
            text-align: center;
            line-height: 100px;
            color: #666;
            position: relative;
            overflow: hidden;
        }
        
        .second-right-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 7. 第三屏 */
        .content-third {
            padding: 5px 10px 0 10px;
            overflow: hidden;
        }
        
        .third-images {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .third-image-item {
            width: 18.5%;
            height: 140px;
            background-color: #f0f0f0;
            margin-bottom: 15px;
            text-align: center;
            color: #666;
            position: relative;
            overflow: hidden;
        }
        
        .third-image-item img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            display: block;
        }
        
        .third-image-title {
            height: 40px;
            line-height: 20px;
            padding: 5px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
                white-space: nowrap;      /* 禁止换行 */
    text-overflow: ellipsis;  /* 超出显示省略号 */
    width: 100%; 
        }
        
        /* 8. 友情链接 */
        .friend-links {
            padding: 5px 10px 0 10px;
            overflow: hidden;
        }
        
        .link-list {
            display: flex;
            list-style: none;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        
        .link-list li {
            padding: 5px 10px;
        }
        
        /* 尾部 - 通栏100% */
        .footer {
            background-color: #2c3e50;
            color: #ddd;
            padding: 20px 0;
            margin-top: 20px;
            overflow: hidden;
            width: 100%;
        }
        
        .footer-container {
            width: 980px;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        .footer-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .footer-nav a {
            color: #ddd;
            margin: 0 10px;
        }
        
        .footer-info {
            text-align: center;
            padding: 10px 0;
            border-top: 1px solid #3d4f61;
            margin-top: 10px;
        }
        .footer-info a{color: #fff;}
        .footer-tips {
            text-align: center;
            font-size: 11px;
            color: #aaa;
            margin-top: 5px;
        }
        
        /* 图片占位符样式 */
        .image-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0,0,0,0.1);
        }
        .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 填充整个容器，可能会裁剪图片 */
    /* object-fit: contain; */  /* 完整显示图片，可能会有留白 */
    display: block;
}
        /* 内容区溢出控制 */
        .content-section {
            overflow: hidden;
        }



/* 图片列表页专用样式 */
/* 1. 当前位置导航 */
.current-position {
    width: 980px;
    margin: 10px auto 0;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.current-position a {
    color: #666;
    margin: 0 5px;
}

.current-position span {
    color: #ff6600;
}

/* 2. 内容区域 */
.content-main {
    width: 980px;
    margin: 0 auto;
    display: flex;
    padding: 10px;
    background-color: #fff;
}

/* 左侧图片列表区域 */
.pic-list-left {
    width: 80%;
    padding-right: 15px;
}

/* 右侧侧边栏区域 */
.pic-list-right {
    width: 20%;
}

/* 图片列表标题 */
.pic-section-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 3px 3px 0 0;
}

.pic-section-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.pic-section-title .pic-right-text {
    float: right;
    font-size: 12px;
    padding-right: 10px;
    font-weight: normal;
    color: #999;
}

/* 瀑布流图片列表 */
.pic-waterfall {
    column-count: 4;
    column-gap: 15px;
    margin-bottom: 20px;
}

.pic-waterfall-item {
    break-inside: avoid;
    margin-bottom: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pic-waterfall-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pic-waterfall-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pic-img-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background-color: #f0f0f0;
}

.pic-waterfall-info {
    padding: 8px;
    font-size: 12px;
}

.pic-waterfall-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pic-waterfall-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 11px;
}

/* 分页样式 */
.pic-pagination {
    text-align: center;
    margin: 30px 0 20px;
}

.pic-pagination ul {
    display: inline-flex;
    list-style: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pic-pagination li {
    border-right: 1px solid #eee;
}

.pic-pagination li:last-child {
    border-right: none;
}

.pic-pagination a {
    display: block;
    padding: 8px 12px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pic-pagination a:hover {
    background-color: #f5f5f5;
}

.pic-pagination .active a {
    background-color: #4a90e2;
    color: white;
}

.pic-pagination .disabled a {
    color: #ccc;
    cursor: not-allowed;
}

/* 右侧标签分类 */
.tag-section {
    margin-bottom: 20px;
}

.tag-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 2px solid #4a90e2;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tag-item {
    width: 48%;
    margin-bottom: 8px;
        /* 不换行 */
    white-space: nowrap;
    /* 溢出隐藏 */
    overflow: hidden;
}

.tag-link {
    display: block;
    padding: 6px 4px;
    background-color: #f5f5f5;
    text-align: center;
    color: #555;
    font-size: 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background-color: #4a90e2;
    color: white;
}

/* 右侧文章推荐 */
.article-section {
    margin-bottom: 20px;
}

.article-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff9900;
}

.article-list {
    list-style: none;
}

.article-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 12px;
}
.article-list li a.h7{font-size:14px; font-weight:600}
.article-list p{    line-height: 24px;
    white-space: normal !important;  /* 强制正常换行 */
    word-wrap: break-word !important;  /* 允许单词内换行 */
    overflow-wrap: break-word !important;  /* 现代标准 */}
.article-list li:last-child {
    border-bottom: none;
}

.article-list a {
    color: #333;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.article-list a:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* 3. 底部推荐图片 */
.recommend-section {
    width: 980px;
    margin: 20px auto;
    background-color: #fff;
    padding: 10px;
}

/* 使用首页的section-title样式 */
.recommend-section .section-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f0f0f0, #e5e5e5);
    border-radius: 3px 3px 0 0;
}

.recommend-section .section-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.recommend-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recommend-item {
    width: 12%;
    margin-bottom: 15px;
    text-align: center;
}

.recommend-img {
    width: 100%;
    height: 80px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 11px;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.recommend-img:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.recommend-title-text {
    font-size: 11px;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 28px;
}










/* 响应式调整 */
@media screen and (max-width: 768px) {
    .current-position,
    .content-main,
    .recommend-section {
        width: 100%;
        padding: 10px;
    }
    
    .content-main {
        flex-direction: column;
    }
    
    .pic-list-left,
    .pic-list-right {
        width: 100%;
        padding-right: 0;
    }
    
    .pic-waterfall {
        column-count: 2;
    }
    
    .recommend-item {
        width: 23%;
    }
    
    .tag-item {
        width: 100%;
    }
}





/* 文章内容页专用样式 - 修复版（添加前缀避免冲突） */
/* 1. 当前位置导航 */
.article-detail-page .article-position {
    width: 980px;
    margin: 10px auto 0;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.article-detail-page .article-position a {
    color: #666;
    margin: 0 5px;
}

.article-detail-page .article-position span {
    color: #ff6600;
}

/* 2. 内容区域 */
.article-detail-page .article-detail {
    width: 980px;
    margin: 0 auto;
    display: flex;
    padding: 10px;
    background-color: #fff;
}

/* 左侧内容区域 - 修复：确保所有内容都在75%宽度内 */
.article-detail-page .article-left {
    width: 75%;
    padding-right: 15px;
    overflow: hidden; /* 防止内容溢出 */
}

/* 右侧侧边栏区域 */
.article-detail-page .article-right {
    width: 25%;
}

/* 文章标题 */
.article-detail-page .article-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    text-align: center;
    width: 100%; /* 确保标题占满宽度 */
}

/* 文章信息 */
.article-detail-page .article-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
    width: 100%; /* 确保信息占满宽度 */
}

.article-detail-page .article-meta span {
    margin: 0 15px;
}

.article-detail-page .article-meta a {
    color: #4a90e2;
}

.article-detail-page .article-meta a:hover {
    color: #ff6600;
}

/* 正文内容 */
.article-detail-page .article-body {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
    color: #333;
    width: 100%; /* 确保正文占满宽度 */
}

.article-detail-page .article-body p,h2 {
    margin-bottom: 15px; font-size: 14px;
    text-indent: 2em;
}

.article-detail-page .article-body h3 {
    font-size: 16px;
    color: #333;
    margin: 20px 0 10px;
    padding-left: 10px;
    border-left: 4px solid #4a90e2;
}

/* 大家都在搜区域 - 修复：确保在75%宽度内 */
.article-detail-page .search-section {
    margin-bottom: 1px;
    width: 100%; /* 占满左栏宽度 */
    overflow: hidden; /* 防止内容溢出 */
}

.article-detail-page .search-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 3px 3px 0 0;
    width: 100%; /* 确保标题占满宽度 */
}

.article-detail-page .search-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.article-detail-page .search-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    width: 100%; /* 确保网格占满宽度 */
}

.article-detail-page .search-item {
    width: 24%; 
    text-align: left; margin-left: 1%;
    margin-bottom: 8px;
}
.article-detail-page .search-btn:hover {
    background-color: #ff6600;
    color: #fff;
    transform: translateY(-2px);
}

/* 相关推荐区域 - 修复：确保在75%宽度内 */
.article-detail-page .recommend-section {
    margin-bottom: 1px;
    width: 100%; /* 占满左栏宽度 */
    overflow: hidden; /* 防止内容溢出 */
}

.article-detail-page .recommend-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 3px 3px 0 0;
    width: 100%; /* 确保标题占满宽度 */
}

.article-detail-page .recommend-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.article-detail-page .recommend-list {
    list-style: none;
    width: 100%; /* 确保列表占满宽度 */
}

.article-detail-page .recommend-item {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    width: 100%; /* 确保每个项目占满宽度 */
    overflow: hidden; /* 防止内容溢出 */
}

.article-detail-page .recommend-item:last-child {
    border-bottom: none;
}

.article-detail-page .recommend-item-title {
    font-size: 16px; text-align: left;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    width: 100%; /* 确保标题占满宽度 */
}

.article-detail-page .recommend-item-title a {
    color: #333;
    text-decoration: none;
    display: block; /* 让链接占满宽度 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-detail-page .recommend-item-title a:hover {
    color: #ff6600;
}

.article-detail-page .recommend-item-desc {
    font-size: 13px; text-align: left;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    width: 100%; /* 确保描述占满宽度 */
        /* 不换行，强制一行显示 */

}



.article-detail-page .recommend-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    width: 100%; /* 确保元数据占满宽度 */
}

.article-detail-page .recommend-tags {
    display: flex;
    gap: 8px;
}

.article-detail-page .recommend-tag {
    display: inline-block;
    padding: 2px 8px;
    background-color: #f0f0f0;
    color: #666;
    border-radius: 3px;
    font-size: 11px;
    text-decoration: none;
}

.article-detail-page .recommend-tag:hover {
    background-color: #4a90e2;
    color: white;
}

/* 今日大家都在搜区域 - 修复：确保在75%宽度内 */
.article-detail-page .today-search-section {
    margin-bottom: 1px;
    width: 100%; /* 占满左栏宽度 */
    overflow: hidden; /* 防止内容溢出 */
}

.article-detail-page .today-search-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 3px 3px 0 0;
    width: 100%; /* 确保标题占满宽度 */
}

.article-detail-page .today-search-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.article-detail-page .today-search-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
    width: 100%; /* 确保网格占满宽度 */
}

.article-detail-page .today-search-item {
    width: 25%;
    text-align: left;
}

.article-detail-page .today-search-link {
    display: inline-block;
    padding: 2px 10px;
    color: #333;
    font-size: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.article-detail-page .today-search-link:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* 右侧热门文章 */
.article-detail-page .hot-articles {
    margin-bottom: 20px;
}

.article-detail-page .hot-tabs {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.article-detail-page .hot-tab {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    background-color: #f5f5f5;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}

.article-detail-page .hot-tab:first-child {
    border-radius: 3px 0 0 0;
}

.article-detail-page .hot-tab:last-child {
    border-radius: 0 3px 0 0;
}

.article-detail-page .hot-tab.active {
    background-color: #4a90e2;
    color: white;
    font-weight: bold;
}

.article-detail-page .hot-tab-content {
    display: none;
}

.article-detail-page .hot-tab-content.active {
    display: block;
}

.article-detail-page .hot-article-list {
    list-style: none;
}

.article-detail-page .hot-article-item {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.article-detail-page .hot-article-item:last-child {
    border-bottom: none;
}

.article-detail-page .hot-article-rank {
    width: 20px;
    height: 20px;
    background-color: #ff6600;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0;
}

.article-detail-page .hot-article-rank.rank-1 {
    background-color: #ff3300;
}

.article-detail-page .hot-article-rank.rank-2 {
    background-color: #ff6600;
}

.article-detail-page .hot-article-rank.rank-3 {
    background-color: #ff9900;
}

.article-detail-page .hot-article-title {
    font-size: 13px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-detail-page .hot-article-title a {
    color: #333;
    text-decoration: none;
}

.article-detail-page .hot-article-title a:hover {
    color: #ff6600;
}

/* 右侧相关文章 */
.article-detail-page .side-related-articles {
    margin-bottom: 20px;
}

.article-detail-page .side-related-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 3px 3px 0 0;
}

.article-detail-page .side-related-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.article-detail-page .side-related-list {
    list-style: none;
}

.article-detail-page .side-related-item {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 13px;
}

.article-detail-page .side-related-item:last-child {
    border-bottom: none;
}

.article-detail-page .side-related-item a {
    color: #333;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-decoration: none;
}

.article-detail-page .side-related-item a:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* 右侧相关图片 */
.article-detail-page .side-related-images {
    margin-bottom: 20px;
}

.article-detail-page .side-images-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f0f0f0, #e5e5e5);
    border-radius: 3px 3px 0 0;
}

.article-detail-page .side-images-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.article-detail-page .side-images-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.article-detail-page .side-image-item {
    width: 48%;
    margin-bottom: 10px;
    text-align: center;
}

.article-detail-page .side-image-box {
    width: 100%;
    height: 80px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 11px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.article-detail-page .side-image-box img{width: 100%;}
.article-detail-page .side-image-box:hover {
    transform: scale(1.05);
}

.article-detail-page .side-image-caption {
    font-size: 11px;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 3. 底部推荐图片 */
.article-detail-page .article-recommend-section {
    width: 980px;
    margin: 20px auto;
    background-color: #fff;
    padding: 10px;
}

.article-detail-page .article-recommend-section .section-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f0f0f0, #e5e5e5);
    border-radius: 3px 3px 0 0;
}

.article-detail-page .article-recommend-section .section-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.article-detail-page .article-recommend-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.article-detail-page .article-recommend-item {
    width: 12%;
    margin-bottom: 15px;
    text-align: center;
}

.article-detail-page .article-recommend-img {
    width: 100%;
    height: 80px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 11px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.article-detail-page .article-recommend-img img{width: 100%;}

.article-detail-page .article-recommend-img:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.article-detail-page .article-recommend-title {
    font-size: 11px;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    /* 移除多行文本设置 */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2; */
    /* -webkit-box-orient: vertical; */
    /* height: 28px; */
    
    /* 添加单行不换行设置 */
    white-space: nowrap; /* 强制不换行 */
    display: block; /* 确保作为块级元素 */
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .article-detail-page .article-position,
    .article-detail-page .article-detail,
    .article-detail-page .article-recommend-section {
        width: 100%;
        padding: 10px;
    }
    
    .article-detail-page .article-detail {
        flex-direction: column;
    }
    
    .article-detail-page .article-left,
    .article-detail-page .article-right {
        width: 100%;
        padding-right: 0;
    }
    
    .article-detail-page .search-item,
    .article-detail-page .today-search-item {
        width: 50%;
    }
    
    .article-detail-page .side-image-item {
        width: 48%;
    }
    
    .article-detail-page .article-recommend-item {
        width: 23%;
    }
    
    .article-detail-page .article-body p {
        text-indent: 1em;
    }
}

/* 标签按钮样式 */
.article-detail-page .tag-button {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f0f0f0;
    color: #666;
    border-radius: 3px;
    font-size: 11px;
    margin-right: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-detail-page .tag-button:hover {
    background-color: #4a90e2;
    color: white;
}





















        /* 手机自适应样式 */
        @media screen and (max-width: 768px) {
            .container {
                width: 100%;
                padding: 0 10px;
            }
            
            .top-bar-container {
                width: 100%;
                padding: 0 10px;
            }
            
            .footer-container {
                width: 100%;
                padding: 0 10px;
            }
            
            .nav-menu {
                flex-wrap: wrap;
                height: auto;
            }
            
            .nav-menu li {
                flex: 0 0 50%;
                border-right: none;
                border-bottom: 1px solid #3d4f61;
            }
            
            .nav-menu li:first-child {
                width: 100%;
                flex: 0 0 100%;
                height: 60px;
            }
            
            .content-first, .content-second {
                flex-direction: column;
            }
            
            .left-col, .middle-col, .right-col,
            .second-left, .second-right {
                width: 100%;
                padding: 0;
                margin-bottom: 20px;
            }
            
            .logo-bar {
                flex-direction: column;
                height: auto;
                padding: 10px;
            }
            
            .logo {
                float: none;
                width: 100%;
                height: 50px;
                line-height: 50px;
                margin-bottom: 10px;
            }
            
            .logo-links {
                float: none;
                height: auto;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .logo-links a {
                margin: 5px;
            }
            
            .quick-nav {
                height: auto;
                padding: 10px;
                line-height: 30px;
            }
            
            .quick-title, .quick-links, .search-box {
                float: none;
                width: 100%;
                margin: 5px 0;
            }
            
            .search-box {
                margin-top: 10px;
            }
            
            .two-column-list, .middle-articles, .second-left-list {
                column-count: 1;
            }
            
            .third-images {
                justify-content: center;
            }
            
            .third-image-item {
                width: 48%;
                margin: 1%;
            }
            
            .second-right-images {
                justify-content: center;
            }
            
            .second-right-item {
                width: 48%;
                margin: 1%;
            }
            
            .image-row {
                flex-wrap: wrap;
            }
            
            .image-item {
                flex: 0 0 48%;
                margin: 1%;
            }
            
            .link-list {
                justify-content: center;
            }
            
            .footer-nav {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-nav a {
                margin: 5px 0;
            }
            
            .nav-column {
                padding: 8px 10px;
            }
            
            .nav-links a {
                line-height: 18px;
                height: 18px;
                font-size: 12px;
            }
			    /* 1. 隐藏顶部右侧链接 */
    .top-right {
        display: none;
    }
    
    /* 2. 导航栏高度自适应 */
    .nav-bar {
        height: auto;
        min-height: 60px;
    }
    
    /* 3. 二列显示列表保持二列 */
    .two-column-list,
    .middle-articles,
    .second-left-list {
        column-count: 2;
        column-gap: 10px;
    }
    
    /* 4. 图片一行显示三个 */
    .image-row {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .image-item {
        flex: 0 0 32%;
        min-width: 32%;
        margin: 0 0.66%;
    }
    
    /* 5. 友情链接居左显示 */
    .link-list {
        justify-content: flex-start;
    }
    
    .link-list li {
        padding: 5px;
    }
    
    /* 6. 底部导航水平居中一行显示 */
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-nav a {
        margin: 0 8px;
        white-space: nowrap;
    }
        }
        


/* 图片内容页专用样式 */
/* 1. 当前位置导航 */
.content-position {
    width: 980px;
    margin: 10px auto 0;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.content-position a {
    color: #666;
    margin: 0 5px;
}

.content-position span {
    color: #ff6600;
}

/* 2. 内容区域 */
.content-detail {
    width: 980px;
    margin: 0 auto;
    display: flex;
    padding: 10px;
    background-color: #fff;
}

/* 左侧内容区域 */
.content-left {
    width: 75%;
    padding-right: 15px;
}

/* 右侧侧边栏区域 */
.content-right {
    width: 25%;
}


/* 文章标题 */
.content-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* 文章信息 */
.content-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.content-meta span {
    margin-right: 20px;
}

.content-meta a {
    color: #4a90e2;
}

.content-meta a:hover {
    color: #ff6600;
}

/* 正文内容 */
.content-body {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
    color: #333;
}

.content-body p {
    margin-bottom: 15px;
}
.content-body img {
    /* 居中显示 */
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    
    /* 响应式 */
    max-width: 100%;
    height: auto;
    
}

/* 图片内容页专用样式 */
/* 1. 当前位置导航 */
.content-position {
    width: 980px;
    margin: 10px auto 0;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

.content-position a {
    color: #666;
    margin: 0 5px;
}

.content-position span {
    color: #ff6600;
}

/* 2. 内容区域 */
.content-detail {
    width: 980px;
    margin: 0 auto;
    display: flex;
    padding: 10px;
    background-color: #fff;
}

/* 左侧内容区域 */
.content-left {
    width: 75%;
    padding-right: 15px;
}

/* 右侧侧边栏区域 */
.content-right {
    width: 25%;
}

/* 文章标题 */
.content-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* 文章信息 */
.content-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.content-meta span {
    margin-right: 20px;
}

.content-meta a {
    color: #4a90e2;
}

.content-meta a:hover {
    color: #ff6600;
}


/* 正文内容 */
.content-body {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 14px;
    color: #333;
}

.content-body p {
    margin-bottom: 15px;
}
.content-body img {
    /* 居中显示 */
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    
    /* 响应式 */
    max-width: 100%;
    height: auto;
    
}

/* 更多相关按钮区域 */
.related-buttons {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.related-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.content-btn {
    display: inline-block;
    height: 20px;
    padding: 0 15px;
    background-color: #4a90e2;
    color: white;
    border-radius: 3px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.content-btn:hover {
    background-color: #ff6600;
    color: white;
}


.image-box {
    width: 100%;
    height: 120px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 11px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.image-box img{width:100%;}

.image-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.image-caption {
    font-size: 12px;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 相关推荐文章列表 */
.related-articles {
    margin-bottom: 25px;
}

.article-two-column {
    column-count: 2;
    column-gap: 20px;
    list-style: none;
}

.article-two-column li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 13px;
    break-inside: avoid;
}

.article-two-column li:last-child {
    border-bottom: none;
}

.article-two-column a {
    color: #333;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.article-two-column a:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* 右侧热门图片 */
.hot-images {
    margin-bottom: 20px;
}

.hot-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f0f0f0, #e5e5e5);
    border-radius: 3px 3px 0 0;
}

.hot-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.hot-image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hot-image-item {
    width: 48%;
    margin-bottom: 10px;
    text-align: center;
}

.hot-image-box {
    width: 100%;
    height: 80px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 11px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.hot-image-box img {width: 100%;
}

.hot-image-box:hover {
    transform: scale(1.05);
}

.hot-image-caption {
    font-size: 11px;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 右侧标签分类 */
.sidebar-tag-section {
    margin-bottom: 20px;
}

.sidebar-tag-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 3px 3px 0 0;
}

.sidebar-tag-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.sidebar-tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sidebar-tag-item {
       width: 48%;
    display: block; /* 或 inline-block */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #333;
}

.sidebar-tag-link {
    display: block;
    padding: 6px 4px;
    background-color: #f5f5f5;
    text-align: center;
    color: #555;
    font-size: 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sidebar-tag-link:hover {
    background-color: #4a90e2;
    color: white;
}

/* 右侧文章推荐 */
.sidebar-article-section {
    margin-bottom: 20px;
}

.sidebar-article-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f0f0f0, #e5e5e5);
    border-radius: 3px 3px 0 0;
}

.sidebar-article-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.sidebar-article-list {
    list-style: none;
}

.sidebar-article-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 12px;
}

.sidebar-article-list li:last-child {
    border-bottom: none;
}

.sidebar-article-list a {
    color: #333;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.sidebar-article-list a:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* 3. 底部推荐图片 */
.detail-recommend-section {
    width: 980px;
    margin: 20px auto;
    background-color: #fff;
    padding: 10px;
}

.detail-recommend-section .section-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f0f0f0, #e5e5e5);
    border-radius: 3px 3px 0 0;
}

.detail-recommend-section .section-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.detail-recommend-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.detail-recommend-item {
    width: 12%;
    margin-bottom: 15px;
    text-align: center;
}

.detail-recommend-img {
    width: 100%;
    height: 80px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 11px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.detail-recommend-img img{width:100%}

.detail-recommend-img:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.detail-recommend-title {
    font-size: 11px;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    /* 移除多行文本设置 */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2; */
    /* -webkit-box-orient: vertical; */
    /* height: 28px; */
    
    /* 添加单行不换行设置 */
    white-space: nowrap; /* 强制不换行 */
    display: block; /* 确保作为块级元素 */
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .content-position,
    .content-detail,
    .detail-recommend-section {
        width: 100%;
        padding: 10px;
    }
    
    .content-detail {
        flex-direction: column;
    }
    
    .content-left,
    .content-right {
        width: 100%;
        padding-right: 0;
    }
    
    .image-item {
        width: 48%;
    }
    
    .hot-image-item {
        width: 48%;
    }
    
    .sidebar-tag-item {
        width: 48%;
    display: block; /* 或 inline-block */
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #333;
    }
    
    .detail-recommend-item {
        width: 23%;
    }
    
    .article-two-column {
        column-count: 1;
    }
    
    .button-group {
        justify-content: center;
    }
}









/* 图片区域 */
.image-section {
    margin-bottom: 25px;
}

.image-section-title {
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 3px 3px 0 0;
}

.image-section-title span {
    float: left;
    font-size: 14px;
    padding-left: 10px;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.image-item {
    width: 24%;
    margin-bottom: 10px;
    text-align: center;
}

/* 轮播幻灯片样式 */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 310px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.slides {
    width: 300%; /* 三张图片所以300% */
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 33.333%; /* 每张图片占1/3 */
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 轮播指示点 */
.slide-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ff6600;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* 轮播控制按钮 */
.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s;
}

.slide-prev {
    left: 10px;
}

.slide-next {
    right: 10px;
}

.slideshow-container:hover .slide-prev,
.slideshow-container:hover .slide-next {
    opacity: 1;
}

.slide-prev:hover,
.slide-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
