/* 翻页容器 开始*/
        .pagination {
            display: flex;
            justify-content: center;
            gap: 50px; /* 调整按钮间距 */
            align-items: center;
            max-width: 100%;
            background-color: #fff;
            padding: 20px;
            border-radius: 0px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 0 auto; /* 居中显示 */
			margin-top: 20px;
			margin-bottom: 20px;
        }

        /* 按钮基本样式 */
        .pagination a {
            text-decoration: none;
            color: #333;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            width: 120px; /* 固定按钮宽度 */
            text-align: center; /* 文字居中 */
        }

        /* 上一页按钮 */
        .pagination .prev {
            background-color: #ff6b6b;
            color: white;
        }

        /* 下一页按钮 */
        .pagination .next {
            background-color: #4ecdc4;
            color: white;
        }

        /* 鼠标悬停效果 */
        .pagination a:hover {
            background-color: #ff9f9f;
            transform: scale(1.1);
        }

        .pagination .next:hover {
            background-color: #88d8d0;
        }

        /* 响应式设计 */
        @media (max-width: 480px) {
            .pagination {
                padding: 20px; /* 减少内边距 */
                width: 100%; /* 增加宽度 */
                gap: 30px; /* 手机端按钮间距更小 */
				margin-bottom: 20px;
            }

            .pagination a {
                padding: 8px 16px; /* 减少按钮内边距 */
                font-size: 14px; /* 调整字体大小 */
                width: 100px; /* 手机端按钮宽度更小 */
            }
        }
/* 翻页容器 结束*/

/* info-text容器 开始*/
        .info-text {
            display: flex;
            justify-content: space-between;
            gap: 20px; /* 新增：强制最小间距 */
            width: 100%;
			font-size:12px;
        }
        .left-text, .right-text {
            flex: 1 1 auto;  /* 允许自动伸缩 */
            min-width: 0;    /* 关键：允许内容收缩 */
            white-space: nowrap;
            overflow: hidden;
        }
        .left-text {
			text-align: left; 
		} /* <p class="left-text"> 左*/
        .right-text {
			text-align: right;
		} /* <p class="right-text"> 右*/
		
/* info-text容器 开始*/

/** 友情链接 开始 **/
        
        .links-container {
            width: 100%;
            margin: 0 auto;
            padding: 15px; /* 减少容器内边距 */
            font-family: 'Arial', sans-serif;
            background-color: #ffffff;
            border-radius: 0px;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
			margin-top: 20px;
			margin-bottom: 20px;
        }
        
        .links-title {
            color: #333;
            font-size: 15px; /* 减小标题字号 */
            font-weight: bold;
            margin: 10px 0 15px 0; /* 大幅减少标题间距 */
            padding: 0 10px;
            position: relative;
            display: inline-block;
        }
        
        .links-title::after {
            content: '';
            position: absolute;
            left: 10px;
            bottom: -6px; /* 缩短装饰线距离 */
            width: 40px;
            height: 2px; /* 减细装饰线 */
            background-color: #4285f4;
        }
        
        .links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px; /* 减少链接间距 */
            list-style: none;
            padding: 0 10px;
        }
        
        .links-item {
            /* flex: 1 1 calc(25% - 10px); */ /* 调整计算基数 */
            min-width: 180px; /* 减小最小宽度 */
        }
        
        .links-item a {
            display: block;
            padding: 8px 12px; /* 减少链接内边距 */
            background-color: #fff;
            color: #555;
            text-decoration: none;
            border-radius: 3px;
            transition: all 0.2s ease;
            border: 1px solid #eee;
            font-size: 14px; /* 减小链接文字 */
			text-align: center;
        }
        
        .links-item a:hover {
            background-color: #4285f4;
            color: #fff;
            transform: translateY(-1px); /* 减小悬停移动距离 */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
        }
        
        @media (max-width: 768px) {
            .links-item {
                flex: 1 1 calc(50% - 10px);
            }
            
            .links-container {
                padding: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .links-item {
                flex: 1 1 100%;
            }
            
            .links-title {
                font-size: 18px;
                margin: 8px 0 12px 0;
            }
        }
		/* 手机端隐藏 */
        @media (max-width: 768px) {
            .links-container {
                display: none;
            }
        }
/** 友情链接 结束 **/

/** 页脚foot 开始 **/
        .footer-bottom {
            background-color: #FFFFFF;
            color: #000000;
            padding: 20px 0;
            text-align: center;
            margin-top: auto; /* 确保页脚在页面底部 */
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: #3498db;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .footer-bottom a:hover {
            color: #ecf0f1;
            text-decoration: underline;
        }
/** 页脚foot 结束 **/

/** tag 开始 **/
        /* 基础重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 主容器 - 四周阴影 */
        .container-main {
            width: calc(100% - 0px);
            max-width: 100%;
            margin: 20px auto;
            padding: 20px;
            background: linear-gradient(135deg, #ddd0d0fc 0%, #7263ef 100%);
            box-shadow: 
                0 0 15px rgba(0, 0, 0, 0.7),  /* 四周扩散阴影 */
                0 0 0 1px rgba(0,0,0,0.0);    /* 边框效果 */
            border-radius: 12px;
            position: relative;
        }
        
        /* 标题样式 */
        .container-title {
            font-size: 1.6rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
            padding-bottom: 12px;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        .container-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #ffffff, #06d2b4);
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        /* 标签容器 */
        .container-project {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        
        /* 标签链接样式 */
        .container-link {
            display: inline-block;
            text-decoration: none;
        }
        
        /* 标签样式 */
        .container-item {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 22px;
            font-weight: 600;
            color: white;
            background-color: #42a5f5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.35s ease;
            white-space: nowrap;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        /* 12种标签颜色 */
        .container-project a:nth-child(12n+1) .container-item { background-color: #4285f4; }
        .container-project a:nth-child(12n+2) .container-item { background-color: #34a853; }
        .container-project a:nth-child(12n+3) .container-item { background-color: #fbbc05; }
        .container-project a:nth-child(12n+4) .container-item { background-color: #ea4335; }
        .container-project a:nth-child(12n+5) .container-item { background-color: #9c27b0; }
        .container-project a:nth-child(12n+6) .container-item { background-color: #00bcd4; }
        .container-project a:nth-child(12n+7) .container-item { background-color: #ff5722; }
        .container-project a:nth-child(12n+8) .container-item { background-color: #607d8b; }
        .container-project a:nth-child(12n+9) .container-item { background-color: #e91e63; }
        .container-project a:nth-child(12n+10) .container-item { background-color: #4caf50; }
        .container-project a:nth-child(12n+11) .container-item { background-color: #3f51b5; }
        .container-project a:nth-child(12n+12) .container-item { background-color: #795548; }
        
        /* 悬停效果 */
        .container-link:hover .container-item {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            opacity: 0.9;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .container-main {
                padding: 35px;
            }
            
            .container-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .container-main {
                width: calc(100% - 30px);
                padding: 30px 20px;
                margin: 20px auto;
                box-shadow: 
                    0 0 12px rgba(0,0,0,0.15),
                    0 0 0 1px rgba(0,0,0,0.1);
            }
            
            .container-title {
                font-size: 1.8rem;
            }
            
            .container-project {
                justify-content: flex-start;
                gap: 10px;
            }
            
            .container-item {
                padding: 8px 16px;
            }
        }
        
        @media (max-width: 480px) {
            .container-main {
                width: calc(100% - 0px);
                padding: 10px 10px;
                border-radius: 10px;
                margin: 15px auto;
                box-shadow: 
                    0 0 10px rgba(0,0,0,0.8),
                    0 0 0 1px rgba(0,0,0,0.0);
            }
            
            .container-title {
                font-size: 1.2rem;
            }
            
            .container-item {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }
/** tag 结束 **/