    .news02-container {
            width: 100%;
            height: 300px;
            
            overflow: hidden;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
        }
   
        .news-list02 {
            padding: 0;
            margin: 0;
            list-style: none;
            position: absolute;
            width: 100%;
        }
        .news02-item {
            padding: 5px 20px;
            border-bottom: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            display: flex;
			 font-size: 16px;
            align-items: center;
        }
        .news02-item:hover {
            background-color: rgba(255,255,255,0.8);
        }
        .news-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 16px;
            margin-right: 10px;
            color: white;
        }
        .tech { background-color: #4CAF50; }
        .finance { background-color: #2196F3; }
        .sports { background-color: #FF9800; }
        .health { background-color: #E91E63; }
        .time {
            margin-left: auto;
            color: #757575;
            font-size: 14px;
        }
		
@media screen and (max-width:768px){
	 .news02-item {
	 padding: 3px;
	     display: flex;
		  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
	 }
	 .time {
            margin-left: auto;
            color: #757575;
            font-size: 12px;
        }
}