/* 基础样式重置与全局设置 - 统一规范 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

:root {
    --primary: #4A90E2; /* 主色：柔和天蓝色 */
    --primary-light: #7BB3FF;
    --primary-dark: #3A7BC8;
    --text-primary: #333647;
    --text-secondary: #64748B;
    --text-tertiary: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --transition: all 0.25s ease;
    --spacing: 15px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing) / 2);
}

/* 按钮样式 */
.btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin: 8px;
    display: inline-block;
    font-weight: 500;
    box-shadow: var(--shadow);
}

/* 悬停效果 */
.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* 标题样式 */
.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px var(--spacing); 
    border-bottom: 1px solid var(--border-light);
}
        /* 顶部通知条 */
        .top-notice {
            position: relative;
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 8px 0;
            font-size: 14px;
            overflow: hidden;
        }
        
        .top-notice a {
            color: #ffeb3b;
            text-decoration: none;
            margin-left: 15px;
        }
        
        /* 进度条背景 */
        .top-notice::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
            transform-origin: left;
            animation: progress 6s linear forwards;
            z-index: 0;
        }
        
        @keyframes progress {
            0% { transform: scaleX(1); }
            100% { transform: scaleX(0); }
        }
        
        /* 主头部 */
        .main-header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        /* Logo样式 */
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
            margin-left: 10px;
        }
        
        /* 主导航 */
        .main-nav {
            display: flex;
            gap: 15px;
        }
        
        .main-nav a {
            color: #34495e;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s;
        }
        
        .main-nav a:hover {
            color: #3498db;
        }
        
        .main-nav a.active {
            color: #3498db;
        }
        
        .main-nav a.active:after,
        .main-nav a:hover:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: #3498db;
            bottom: 0;
            left: 0;
        }
        
        /* 搜索和用户区域 */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            background: #f5f7fa;
            border-radius: 20px;
            padding: 8px 15px;
            transition: all 0.3s;
        }
        
        .search-box:focus-within {
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
        }
        
        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            width: 140px;
            font-size: 14px;
            padding: 0 8px;
        }
        
        .search-btn {
            background: transparent;
            border: none;
            color: #7f8c8d;
            cursor: pointer;
            font-size: 16px;
        }
        
        .user-action {
            display: flex;
            gap: 15px;
        }
        
        .user-action a {
            color: #34495e;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .user-action a:hover {
            color: #3498db;
        }
        
        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            width: 20px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }
        
        .mobile-menu-btn span {
            width: 100%;
            height: 3px;
            background-color: #34495e;
            margin: 2px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* 移动端导航 */
        .mobile-nav {
            position: fixed;
            width: 100%;
            display: none;
            background: white;
            padding: 15px;
            border-top: 1px solid #eee;
        }
        
        .mobile-nav.active {
            display: block;
        }
        
        .mobile-menu {
            list-style: none;
            margin-bottom: 15px;
        }
        
        .mobile-menu a {
            color: #34495e;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            display: block;
            padding: 8px 0;
            transition: all 0.3s ease;
        }
        
        .mobile-menu a.active {
            color: #3498db;
        }
        
        .mobile-search {
            display: flex;
            align-items: center;
            background: #f5f7fa;
            border-radius: 20px;
            padding: 10px 15px;
            margin-bottom: 15px;
        }
        
        .mobile-search input {
            background: transparent;
            border: none;
            outline: none;
            width: 100%;
            font-size: 16px;
            padding: 0 10px;
        }
        
        .mobile-user-actions {
            display: flex;
            justify-content: space-around;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        
        .mobile-user-actions a {
            color: #34495e;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .main-nav, .header-actions {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .logo img {
                height: 35px;
            }
            
            .logo-text {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .header-container {
                padding: 12px 15px;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .top-notice {
                font-size: 12px;
                padding: 6px 0;
            }
        }

/* 轮播图与统计区域 */
.slider-tabs-container {
    display: flex;
    margin: var(--spacing) 0;
    gap: var(--spacing);
}

.slider-wrapper {
    flex: 7;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.slider {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: white;
}

.slide-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* 轮播按钮 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.slider-wrapper:hover .slider-btn {
    opacity: 1;
    visibility: visible;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* 轮播指示点 */
.dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* 统计数据部分 */
.tabs-wrapper {
    flex: 3;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sidebar-section {
    padding: var(--spacing);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

/* 统计项样式 */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(74, 144, 226, 0.05);
    box-shadow: none;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

/* 倒计时样式 */
#stats-time {
    font-size: 13px;
    font-weight: normal;
    color: var(--text-tertiary);
    margin-left: auto;
}

.countdown {
    color: var(--primary);
    font-weight: 500;
    margin-left: 5px;
    font-size: 13px;
}

/* APP下载区域 */
.appxz-download {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--bg-light);
}

.appxz-logo img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.appxz-info {
    flex: 1;
}

.appxz-name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
    color: var(--text-primary);
}

.appxz-desc {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.4;
}

/* 内容区域 */
.index-main {
    margin: var(--spacing) 0;
}

.index-news {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: var(--spacing);
}

.index-news-list {
    padding: 0px 15px;
}

.index-news-list ul {
    list-style: none;
}

.index-news-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.index-news-list li:last-child {
    border-bottom: none;
}

.index-news-list li:hover {
    background: rgba(74, 144, 226, 0.03);
}

.index-news-list span {
    color: var(--primary);
    font-size: 13px;
    margin-right: 5px;
    min-width: 35px;
    text-align: center;
    font-weight: 500;
}

/* 列表分页样式 */
 .pagebar {
  padding: 20px 0;
  text-align: center;
}

.pagination2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.pagination2 a {
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
  color: #555;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 36px;
  text-align: center;
  line-height: 1.4;
}

.pagination2 span {
  color: #666;
  font-size: 13px;
  padding: 0 8px;
}

.pagination2 a:hover {
  color: #2c6ab0;
  border-color: #2c6ab0;
  background-color: #f8f9fa;
}

.pagination2 a.page-num-current {
  color: #fff;
  background: #2c6ab0;
  border-color: #2c6ab0;
  font-weight: 500;
}

.pagination2 .st {
  font-weight: bold;
}

.text-secondary {
  text-align: center;
  padding: 30px 0;
  color: #888;
  font-style: italic;
}

/* 响应式调整 */
@media (max-width: 480px) {
  .pagination2 {
    gap: 2px;
  }
  
  .pagination2 a {
    padding: 5px 10px;
    font-size: 12px;
    min-width: 32px;
  }
}


/*内容分页*/
.Parttwo{overflow:hidden;margin:15px auto;}
.Parttwo>a{padding:0 15px;border-radius:5px;background:#50a1ff;color:#fff;font-size:12px;line-height:32px;}
.Parttwo .left{float:left;}
.Parttwo .right{float:right;}
/* 内容选项卡 */
.index-cms {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.index-cms-nav {
    display: flex;
    background: white;
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
    scrollbar-width: none;
}

.index-cms-nav::-webkit-scrollbar {
    display: none;
}

.index-cms-nav a {
    padding: 12px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    white-space: nowrap;
    position: relative;
    transition: var(--transition);
}

.index-cms-nav a:hover {
    color: var(--primary);
}

.index-cms-nav a.active {
    color: var(--primary);
    font-weight: 600;
}

.index-cms-nav a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.article-cms-box {
    padding: var(--spacing);
    display: none;
}

.article-cms-box.active {
    display: block;
}

/* 卡片布局 */
.article-cms-image {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing);
    list-style: none;
}

.card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--bg-white);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card-header {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-header img {
    transform: scale(1.03);
}

.card-body {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
}

.article-cms-image .card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    padding: 10px;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    font-size: 12px;
}

.article-cms-image .card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

/* 文本列表 */
.article-cms-text {
    list-style: none;
}

.article-cms-text li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.article-cms-text li:last-child {
    border-bottom: none;
}

.article-cms-text li:hover {
    background: rgba(74, 144, 226, 0.03);
}

.article-cms-text a {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 15px;
}

.article-cms-text .time {
    color: var(--text-tertiary);
    font-size: 13px;
    white-space: nowrap;
}

/* 图片展示区域 */
.image-gallery {
    padding: var(--spacing);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--spacing);
    list-style: none;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    aspect-ratio: 16/9;
    border-radius: 6px;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
    border-radius: 6px;
}

.gallery-title {
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    width: 100%;
    line-height: 1.3;
}

.gallery-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.gallery-category {
    font-size: 12px;
    opacity: 0.9;
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1.2;
}

.gallery-views {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
}

/* 页脚 */
footer {
    background: linear-gradient(135deg, #f9f9ff 0%, #ffffff 100%);
    border-top: 1px solid rgba(67, 97, 238, 0.1);
    padding: 15px 0 15px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.03);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing) / 2);
}

.footer-links {
    margin-bottom: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(67, 97, 238, 0.08);
    display: flex;
    align-items: center;
}

.links-title {
    font-size: 15px;
    color: #555;
    margin-right: 18px;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.links-container a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.links-container a:hover {
    color: #4361ee;
    background: rgba(67, 97, 238, 0.1);
    border-color: rgba(67, 97, 238, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.1);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
}

.copyright {
    font-weight: 500;
    color: #444;
    letter-spacing: 0.3px;
}

.icp-info a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.icp-info a:hover {
    color: #4361ee;
    background: rgba(67, 97, 238, 0.1);
    border-color: rgba(67, 97, 238, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.1);
}

.icon-shield {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666666'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11V11.99z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.icp-info a:hover .icon-shield {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234361ee'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11V11.99z'/%3E%3C/svg%3E");
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .slider-tabs-container {
        flex-direction: column;
        gap: var(--spacing);
    }
    
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 20px 20px;
        transform: translateX(-100%);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-wrapper.active {
        transform: translateX(0);
    }
    
    .main-nav {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .nav-item {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 16px;
    }
    
    .nav-item.active::after {
        display: none;
    }
    
    .search-container {
        width: 100%;
        flex: 0 0 auto;
        margin-bottom: 15px;
    }
    
    .mobile-menu-btn.active .menu-icon {
        background: transparent;
    }
    
    .mobile-menu-btn.active .menu-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-menu-btn.active .menu-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .article-cms-image {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .card-header {
        height: 120px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: row;
    }
    
    .search-container {
        flex: 0 0 220px;
    }
    
    .slider {
        height: 220px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pagination-info {
        font-size: 13px;
        padding: 0 5px;
    }
    
    .pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .links-title {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .links-container {
        gap: 8px;
    }
    
    .links-container a {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .icp-info a {
        padding: 5px 10px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .search-container {
        display: block;
        flex: 1;
    }
    
    .slider {
        height: 180px;
    }
    
    .stat-item {
        padding: 10px 12px;
    }
    
    .stat-label, .stat-value {
        font-size: 13px;
    }
    
    .article-cms-image {
        gap: 8px;
    }
    
    .card-body {
        font-size: 13px;
        padding: 8px;
    }
    
    .gallery-grid {
        gap: 8px;
    }
    
    .gallery-title {
        font-size: 13px;
    }
    
    .gallery-category {
        font-size: 11px;
    }

    .pagination-info {
        display: none;
    }
    
    .news-pagination {
        gap: 5px;
        padding: 10px var(--spacing);
    }
    
    .footer-links {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .links-container {
        gap: 6px;
    }
    
    .copyright, .icp-info a {
        font-size: 12px;
    }
}


/**************图片内容*****************/
    /* 主内容区样式 */
    .main-content {
        display: flex;
        gap: 15px;
        margin: 15px 0;
    }

    .content-section {
        flex: 0 0 calc(70% - 8px);
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        padding: 15px;
    }

    .sidebar {
        flex: 0 0 calc(30% - 8px);
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        padding: 15px;
    }

    /* 图片详情样式 */
    .image-title {
        font-size: 20px;
        margin-bottom: 8px;
        color: #2c3e50;
        border-bottom: 2px solid #f1f1f1;
        padding-bottom: 8px;
    }

    .image-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        color: #7f8c8d;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .meta-item {
        display: flex;
        align-items: center;
    }

    .meta-icon {
        margin-right: 8px;
        color: #36b9fd;
    }

    /* 图片网格布局 */
    .wallpaper-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    /* 转换后的图片项样式 */
    .wallpaper-container p {
        margin: 0;
        padding: 0;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .wallpaper-container p:hover {
        transform: translateY(-3px);
    }

    .wallpaper-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        aspect-ratio: 260/500;
        object-fit: cover;
    }

    .wallpaper-container img:hover {
        transform: scale(1.02);
    }

    .image-actions {
        display: flex;
        margin: 15px 0;
        flex-wrap: wrap;
    }

    .btn-secondary {
        background: #969bac;
    }

    .btn-secondary:hover {
        background: #dfe4ea;
    }

    .image-description {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
        text-align: left;
    }

    .image-description h3 {
        margin-bottom: 15px;
        color: #2c3e50;
    }

    .image-description p {
        margin-bottom: 15px;
    }

    /* 侧边栏样式 */
    .sidebar-title {
        font-size: 20px;
        margin-bottom: 15px;
        color: #2c3e50;
        border-bottom: 2px solid #f1f1f1;
        padding-bottom: 10px;
    }

    /* 大图弹出层 */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.92);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.15s ease;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .enlarged-container {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }

    .enlarged-img {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 8px;
    }

    /* 水印样式 */
    .watermark {
        position: absolute;
        right: 15px;
        bottom: 15px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        font-weight: bold;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }

    .watermark a {
        color: #ffde7b;
        text-decoration: none;
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        color: white;
        font-size: 30px;
        cursor: pointer;
        background: none;
        border: none;
        transition: transform 0.2s ease;
    }

    .close-btn:hover {
        transform: scale(1.1);
    }

    /* 加载动画 */
    .loading-spinner {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top: 4px solid #fff;
        animation: spin 1s linear infinite;
        display: none;
    }

    @keyframes spin {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    /* 导航按钮 */
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }


    /* 响应式设计 */
    @media (max-width: 992px) {
        .main-content {
            flex-direction: column;
        }

        .content-section,
        .sidebar {
            flex: 0 0 100%;
        }

        .wallpaper-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* 手机设备不显示 */
    @media (max-width: 767px) {
        .sidebar {
            display: none !important;
        }
        .user-action {
            display: none !important;
        }

    }

    /* 电脑设备不显示 */
    @media (min-width: 768px) {
        .desktop-hidden {
            display: none !important;
        }
        .user-action {
            display: none !important;
        }
    }

    /* 错误提示样式 */
    .error-message {
        background: #ffebee;
        color: #c62828;
        padding: 10px 15px;
        border-radius: 8px;
        margin: 10px 0;
        display: none;
    }

    /* 二维码备用方案样式 */
    .qrcode-fallback {
        padding: 10px;
        text-align: center;
        font-size: 12px;
        color: #333;
        word-break: break-all;
    }
/**************图片列表****************/
  /* 图片列表CSS */
  .imglist-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .imglist-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
    /* 保持16:9宽高比 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  .imglist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .imglist-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
  }

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

  .imglist-item:hover .imglist-thumbnail img {
    transform: scale(1.05);
  }

  /* 文字信息容器 - 覆盖在图片上方 */
  .imglist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    z-index: 1;
  }

  .imglist-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .imglist-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* 手机端响应式 */
  @media (max-width: 576px) {
    .imglist-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .imglist-title {
      font-size: 14px;
    }

    .imglist-info {
      padding: 10px;
    }

    .imglist-meta {
      gap: 2px;
      font-size: 11px;
    }
  }

/*pre代码美化开始*/
        pre {
            position: relative;
            background: #1e1e1e;
            border-radius: 8px;
            padding: 1em;
            overflow-x: auto;
            margin: 20px 0;
            border: 1px solid #333;
        }
        .code-actions {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            gap: 8px;
        }
        .code-btn {
            background: rgba(255,255,255,0.1);
            border: none;
            color: #e0e0e0;
            width: 30px;
            height: 30px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .code-btn:hover {
            background: rgba(255,255,255,0.2);
        }
        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            z-index: 1000;
            display: none;
        }
/*pre代码美化结束*/