/* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        } */
        
        /* 头部形状 */
        /* header {
            background: linear-gradient(135deg, #1a6fc4 0%, #0d4d8c 100%);
            color: white;
            padding: 40px 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
        }
        
        .logo {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .logo i {
            color: #4fc3f7;
        } */
        
        /* .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
            letter-spacing: 1px;
        } */
        
        /* 新闻网格布局 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .news-card {
            background: white;
            border-radius: /* 12px */;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .index-card-header {
            padding: 20px 25px 0;
        }
        
        .news-date {
            display: inline-block;
            background: linear-gradient(to right, #1a6fc4, #4fc3f7);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .news-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
            color: #1a3c6e;
        }
        
        .news-content {
            padding: 0 25px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-summary {
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .read-more {
            color: #1a6fc4;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
        }
        
        .read-more:hover {
            color: #0d4d8c;
            gap: 10px;
        }
        
        /* 特色新闻形状 */
        .featured-news {
            grid-column: 1 / -1;
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: /* 12px */;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        @media (min-width: 768px) {
            .featured-news {
                flex-direction: row;
            }
        }
        
        .featured-image {
            flex: 1;
            /* background: linear-gradient(135deg, #1a6fc4 0%, #0d4d8c 100%); */
            /* min-height: 200px; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
        }
		
		
        .featured-content {
            flex: 2;
            padding: 30px;
        }
        
        .featured-tag {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .featured-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a3c6e;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .logo {
                font-size: 2.2rem;
            }
            
            .featured-title {
                font-size: 1.5rem;
            }
        }
		
	<!--耗时1776075764.9039秒-->