﻿
		
		
.news-bg-css {
    background: linear-gradient(135deg, #e5ff00, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 17px;
    margin-top: -2px;
    font-weight: normal;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 0 8px rgba(62, 0, 10, 1), 0 0 12px rgba(255, 124, 146, 0.6); /* 原 rgba(10,0,62) 深蓝→深红, rgba(146,124,255) 中蓝紫→中红粉 */
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}
		
		.news-bg-css:hover {
			background: linear-gradient(0deg, #ffc1c1, #ffe2e2); /* 原 #c1c2ff, #e6e2ff 浅蓝紫→浅红粉 */
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			text-shadow: 
				1px 1px 15px rgba(120, 0, 30, 0.8),  /* 原 rgba(0,30,120) 深蓝→深红 */
				0 0 20px rgba(120, 0, 30, 0.6),        /* 原 rgba(0,30,120) 深蓝→深红 */
				0 0 30px rgba(80, 0, 10, 0.4);         /* 原 rgba(0,10,80) 最深蓝→最深红 */
			transform: scale(1.05);
		}
		
		.news-bg-css:active {
			transform: scale(0.98);
			transition: all 0.1s ease;
		}
		
		
		.news-bg-css-1 {
			background: linear-gradient(0deg, #ffd67c, #ffff00);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			font-size: 18px;
			margin-top: -2px;
			font-weight: normal;
			text-align: center;
			line-height: 1.5;
			text-shadow: 1px 1px 10px rgba(229, 255, 0, 0.3);
			transition: all 0.3s ease;
			cursor: pointer;
			display: inline-block;
		}
		
		.news-bg-css-1:hover {
			background: linear-gradient(0deg, #ffffff, #ffd500);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			text-shadow: 
				1px 1px 15px rgba(255, 254, 214, 0.8),
				0 0 20px rgba(255, 255, 61, 0.6),
				0 0 30px rgba(255, 213, 0, 0.4);
			transform: scale(1.05);
		}
		
		.news-bg-css-1:active {
			transform: scale(0.98);
			transition: all 0.1s ease;
		}