@import 'news.css';
        


        
        /* 优化后的新闻列表样式 */
        #index_new {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        #index_new li {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        #index_new li:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        /* 优化后的日期样式 */
        .date-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .news-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            padding: 10px 15px;
            border-radius: 10px;
            min-width: 80px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        
        .news-date .day {
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .news-date .month-year {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            margin-top: 3px;
        }
        

        
        /* 图片样式优化 */
        .image-container {
            position: relative;
            height: 0;
            padding-bottom: 65%;
            overflow: hidden;
        }
        
        .image-container img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        #index_new li:hover .image-container img {
            transform: scale(1.08);

        }
        

        
        /* 标题样式优化 */
        .news-title {
            display: block;
            padding: 20px 20px 10px;
            font-size: 1.35rem;
            font-weight: 700;
            color: #2c3e50;
            text-decoration: none;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .news-title:hover {
            color: #e74c3c;
        }
        
        /* 摘要样式优化 */
        .summary {
            padding: 0 20px 20px;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        /* 更多新闻 */
        .news-more {
                margin: -4rem 1rem 2rem 0;
				text-align:right;
            }
        
        .read-more {
            display: inline-flex;
            align-items: center;
			justify-content:center;
            padding: 8px 18px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
       .read-more:link, .read-more:visited {
            color: white;
		}
        .read-more:hover {
            background: linear-gradient(135deg, #2980b9, #2573a7);
            transform: translateX(5px);
            color: white;
        }
        
        .read-more i {
            margin-left: 6px;
            font-size: 0.8rem;
        }
        

        
        /* 响应式设计 */
        @media (max-width: 992px) {
            #index_new {
                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            #index_new {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            

        }
        
        @media (max-width: 480px) {
            .date-container {
                gap: 12px;
            }
            
            .news-title {
                font-size: 1.25rem;
                padding: 15px 15px 10px;
            }
            
            .summary {
                padding: 0 15px 15px;
            }
            

        }
        
        /* 加载动画 */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        #index_new li {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            animation-delay: calc(0.1s * var(--i));
        }
        

        
        /* 颜色标记 */
        .color-tag {
            height: 6px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
        }
        
        /* 眼睛图标 */
.eye-icon {
  display: inline-block;
  width: 1.5em; /* 增加整体尺寸 */
  height: 1.5em; /* 增加整体尺寸 */
  border: 0.15em solid #999; /* 设置为灰色 */
  border-radius: 75% 15%;
  transform: rotate(45deg);
  position: relative;
  vertical-align: middle; /* 垂直居中对齐 */
  margin-right: 0.4em; /* 添加与文本的间距 */
}

.eye-icon::before {
  content: '';
  position: absolute;
  width: 0.48em; /* 增加瞳孔尺寸 */
  height: 0.48em; /* 增加瞳孔尺寸 */
  border: 0.15em solid #999; /* 设置为灰色 */
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 精确居中瞳孔 */

}
/* 确保容器也垂直居中 */
.date-container span {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

