/* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', 'Segoe UI', Arial, sans-serif;
        }
        
        body {
            /*background: linear-gradient(135deg, #fff5f7 0%, #f8f4ff 100%);*/
            background: linear-gradient(90deg, #E6D8B7  0%, #F8F0D7 100%);
            color: #333;
            line-height: 1.6;E6D8B7
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        /* 顶部装饰 */
        .top-decoration {
            height: 6px;
            /*background: linear-gradient(90deg, #ff9ec0, #c77dff, #92a8ff);*/
            /*background: linear-gradient(135deg, #FFECB3 0%, #FFFAE6 70%, #FFF9EF 100%);*/
            background: 
              radial-gradient(circle at 50% 50%, #FFE082 0%, #F5D7A1 100%), 
              linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 50%);
        }
        
        /* 新闻板块容器 */
        .news-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 15px;
        }
        
        /* 新闻标题 */
        .news-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding: 0 20px;
        }
        
        .news-header h1 {
            font-size: 42px;
            color: #e83e8c;
            margin-bottom: 15px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            /*background: linear-gradient(to right, #e83e8c, #c77dff);*/
             /*background: linear-gradient(to right, #FFD700 0%, #EEE8AA 100%); */
             background: 
              radial-gradient(circle at 50% 50%, #FFE082 0%, #F5D7A1 100%), 
              linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 50%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .news-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .news-header::after {
            content: '';
            display: block;
            width: 120px;
            height: 4px;
            /*background: linear-gradient(90deg, #ff9ec0, #c77dff);*/
            background: 
              radial-gradient(circle at 50% 50%, #FFE082 0%, #F5D7A1 100%), 
              linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 50%);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        /* 搜索栏 */
        .search-container {
            max-width: 600px;
            margin: 0 auto 40px;
            display: flex;
            position: relative;
        }
        
        .search-container input {
            flex: 1;
            padding: 14px 20px;
            /*border: 2px solid #e8d4e4;*/
            border: 2px solid #FFE082;
            border-radius: 50px;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .search-container input:focus {
            outline: none;
            /*border-color: #e83e8c;*/
            border-color: #F5D7A1;
            box-shadow: 0 4px 20px rgba(232, 62, 140, 0.2);
        }
        
        .search-container button {
            position: absolute;
            right: 10px;
            top: 10px;
            /*background: #e83e8c;*/
            background: #FFE082;
            color: white;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-container button:hover {
            /*background: #c77dff;*/
            background: #F5D7A1;
            transform: scale(1.05);
        }
        
        /* 新闻分类导航 */
        .news-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .news-nav a {
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 16px;
            color: #666;
            border: 2px solid #FFE082;
            font-weight: 600;
            background: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }
        
        .news-nav a:hover, 
        .news-nav a.active {
            /*background: linear-gradient(90deg, #ff9ec0, #c77dff);*/
            background: linear-gradient(90deg, #FFE082, #F5D7A1);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            /*box-shadow: 0 6px 15px rgba(232, 62, 140, 0.3);*/
            box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
        }
        
        /* 新闻列表 */
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .news-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .news-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .news-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.08);
        }
        
        .news-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .news-category {
            display: inline-block;
            padding: 5px 15px;
            background: linear-gradient(90deg, #C9A86A , #F8F0D7 );
            color: #fff;
            border-radius: 30px;
            font-size: 13px;
            margin-bottom: 15px;
            font-weight: 600;
            align-self: flex-start;
        }
        
        .news-title {
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        
        .news-excerpt {
            color: #666;
            font-size: 15px;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.6;
            flex-grow: 1;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #999;
            padding-top: 15px;
            border-top: 1px dashed #eee;
        }
        
        .news-date::before {
            content: '📅 ';
            margin-right: 4px;
        }
        
        .news-read-more {
            color: #C9A86A ;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .news-read-more i {
            transition: transform 0.3s ease;
        }
        
        .news-read-more:hover i {
            transform: translateX(3px);
        }
        
        .external-indicator {
            background: #f0f4ff;
            color: #5a7fff;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
        }
        
        /* 分页 */
        .news-pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            padding-bottom: 30px;
        }
        
        .pagination-list {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        
        .pagination-item {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pagination-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: white;
            color: #666;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .pagination-link:hover,
        .pagination-link.active {
            background: linear-gradient(90deg, #ff9ec0, #c77dff);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(232, 62, 140, 0.3);
        }
        
        .pagination-link.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* 跳转警告弹窗 */
        .warning-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .warning-content {
            background: white;
            padding: 35px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
            transform: translateY(20px);
            opacity: 0;
            animation: modalAppear 0.4s ease forwards;
        }
        
        @keyframes modalAppear {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .warning-content h3 {
            color: #e83e8c;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .warning-content p {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.7;
        }
        
        .warning-url {
            font-weight: bold;
            word-break: break-all;
            margin: 15px 0;
            color: #333;
            background: #f9f9f9;
            padding: 10px 15px;
            border-radius: 8px;
            border-left: 3px solid #e83e8c;
        }
        
        .warning-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .warning-button {
            padding: 12px 32px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .warning-button.continue {
            background: linear-gradient(90deg, #ff9ec0, #c77dff);
            color: white;
            border: none;
            box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
        }
        
        .warning-button.continue:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 62, 140, 0.4);
        }
        
        .warning-button.cancel {
            background: white;
            color: #666;
            border: 2px solid #eee;
        }
        
        .warning-button.cancel:hover {
            background: #f9f9f9;
            border-color: #ddd;
        }
        
        /* 底部 */
        .footer {
            text-align: center;
            padding: 40px 0 20px;
            color: #888;
            font-size: 14px;
            border-top: 1px solid #eee;
            margin-top: 30px;
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .news-list {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 25px;
            }
            
            .news-header h1 {
                font-size: 36px;
            }
            
            .news-nav a {
                padding: 8px 20px;
            }
        }
        
        @media (max-width: 768px) {
            .news-header h1 {
                font-size: 32px;
            }
            
            .news-nav {
                gap: 8px;
            }
            
            .news-nav a {
                font-size: 14px;
                padding: 8px 18px;
            }
            
            .news-image {
                height: 200px;
            }
            
            .warning-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .warning-button {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .news-list {
                grid-template-columns: 1fr;
            }
            
            .news-header h1 {
                font-size: 28px;
            }
            
            .news-header p {
                font-size: 16px;
            }
            
            .news-content {
                padding: 20px;
            }
            
            .news-title {
                font-size: 18px;
            }
        }
        
        /* 加载动画 */
        .loader {
            display: none;
            text-align: center;
            padding: 30px 0;
        }
        
        .loader .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e83e8c;
            margin: 0 4px;
            animation: bounce 1.5s infinite;
        }
        
        .loader .dot:nth-child(2) {
            animation-delay: 0.2s;
            background: #c77dff;
        }
        
        .loader .dot:nth-child(3) {
            animation-delay: 0.4s;
            background: #92a8ff;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }