#QPlayer {
	position:fixed;
	overflow:visible;
	bottom:30px; /* 从20px增加到30px，增加与底部的距离 */
	right:0;
	top:auto; /* 取消顶部定位 */
	transform:translateY(0); /* 取消垂直居中 */
	z-index:9999;
	transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: auto; /* 确保播放器可以交互 */
	/* 确保播放器不会超出视口 */
	max-width: 100vw;
	border: none; /* 确保没有边框 */
	outline: none; /* 确保没有轮廓 */
}

/* 收起状态时确保没有残留线条 */
#QPlayer.collapsed {
	border: none !important;
	outline: none !important;
	box-shadow: none !important; /* 移除阴影，避免残留线条 */
}

#QPlayer.collapsed::before,
#QPlayer.collapsed::after {
	display: none !important; /* 确保伪元素不显示 */
	content: none !important;
}

#QPlayer.collapsed #player {
	border: none !important;
	outline: none !important;
	box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important; /* 只保留必要的阴影，避免残留 */
}

/* 确保播放器不会遮挡页面内容 */
#QPlayer.collapsed {
	z-index: 9999;
}

#QPlayer.expanded {
	z-index: 9999;
}

/* 移动端适配 */
@media (max-width: 768px) {
	#QPlayer {
		bottom:20px; /* 移动端从15px增加到20px */
	}
}
#QPlayer.collapsed {
	right:0;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

#QPlayer.collapsed::before,
#QPlayer.collapsed::after {
	display: none !important;
	content: none !important;
}

#QPlayer.expanded {
	right:0;
}
#QPlayer .left {
	float:left;
	margin-top:8px;
}
#QPlayer .right {
	float:right;
	margin-top:-17px;
}
#player {
	float:left;
	width:280px;
	min-height:100px;
	margin:0 auto;
	position:relative;
	background:rgba(255,255,255,0.95);
	backdrop-filter:blur(20px);
	-webkit-backdrop-filter:blur(20px);
	box-sizing:border-box;
	border-radius:16px 0 0 16px;
	box-shadow:0 4px 24px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
	padding:10px;
	transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform:translateX(220px);
}
#QPlayer.expanded #player {
	width:280px;
	transform:translateX(0);
}
#QPlayer.collapsed #player {
	width:60px;
	height:60px;
	padding:0;
	border-radius:50% 0 0 50%;
	background:rgba(255,255,255,0.9);
	box-shadow:0 2px 12px rgba(0,0,0,0.1);
	transform:translateX(0);
	border: none !important; /* 确保没有边框残留 */
	outline: none !important; /* 确保没有轮廓 */
	box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important; /* 只保留必要的阴影 */
}

/* 收起状态时，确保播放器容器和所有子元素都没有残留边框 */
#QPlayer.collapsed * {
	box-shadow: none !important;
}

#QPlayer.collapsed #player {
	box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important; /* 播放器本身需要阴影，但确保没有其他残留 */
}

/* 确保播放列表在隐藏时完全不可见 */
#playlist:not(.go) {
	border: none !important;
	box-shadow: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}
#player .cover {
	border:2px solid rgba(255,255,255,0.8);
	position:absolute;
	left:10px;
	top:10px;
	overflow:hidden;
	border-radius:50%;
	width:60px;
	height:60px;
	box-shadow:0 4px 12px rgba(0,0,0,0.15);
	transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor:pointer;
	z-index:10;
	/* 确保封面不会超出播放器容器 */
	max-width: 100%;
	max-height: 100%;
}
#QPlayer.collapsed #player .cover {
	left:0;
	top:0;
	width:60px;
	height:60px;
	border:3px solid rgba(255,255,255,0.9);
}
#player .cover img {
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:50%;
	cursor:pointer;
	transition:transform 0.3s ease;
}
#player.playing .cover img {
	animation:coverRotate 20s linear infinite;
}
@keyframes coverRotate {
	from {
		transform:rotate(0deg);
	}
	to {
		transform:rotate(360deg);
	}
}
.contr {
	text-align:center;
	margin-top:8px;
	position:relative;
}
#player .ctrl {
	margin-left:76px;
	line-height:1.4;
	font-size:14px;
	margin-top:4px;
	color:#2c3e50;
	padding:0;
	transition:opacity 0.3s ease, visibility 0.3s ease;
}
#QPlayer.collapsed #player .ctrl {
	opacity:0;
	visibility:hidden;
	pointer-events:none;
	height:0;
	overflow:hidden;
	margin:0;
}
#QPlayer.expanded #player .ctrl {
	opacity:1;
	visibility:visible;
}
#player .ctrl .musicTag {
	cursor: ew-resize;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	margin-bottom:8px;
}
#player .ctrl .musicTag strong {
	display:block;
	font-size:14px;
	font-weight:600;
	color:#2c3e50;
	text-overflow:ellipsis;
	white-space:nowrap;
	overflow:hidden;
	margin-bottom:2px;
	line-height:1.3;
}
#player .ctrl .musicTag span.artist {
	font-size:12px;
	color:#7f8c8d;
	display:block;
	text-overflow:ellipsis;
	white-space:nowrap;
	overflow:hidden;
	line-height:1.3;
}
#player .ctrl .musicTag span:not(.artist) {
	display:none;
}
#player .ctrl .icon {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	opacity:0.8;
	cursor:pointer;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-select:none;
	-o-user-select:none;
	user-select:none;
	background-color:rgba(26,188,156,0.1);
	border:2px solid rgba(26,188,156,0.3);
	border-radius:50%;
	width:28px;
	height:28px;
	transition:all 0.3s ease;
	color:#1abc9c;
	font-size:12px;
}
#player .ctrl .icon:hover {
	opacity:1;
	background-color:rgba(26,188,156,0.2);
	border-color:rgba(26,188,156,0.5);
	transform:scale(1.1);
}
#player .ctrl .icon:active {
	transform:scale(0.95);
}
#QPlayer.collapsed #player .ctrl .icon {
	display:none;
}
/* 移动端响应式 */
@media (max-width: 768px) {
	#QPlayer {
		top:auto;
		bottom:15px;
		right:0;
		transform:none;
	}
	#QPlayer.collapsed #player {
		width:56px;
		height:56px;
	}
	#QPlayer.collapsed #player .cover {
		width:56px;
		height:56px;
	}
	#player {
		width:calc(100vw - 20px);
		max-width:280px;
		transform:translateX(calc(100vw - 20px - 60px));
	}
	#QPlayer.expanded #player {
		transform:translateX(0);
	}
	#playlist {
		width:calc(100vw - 20px);
		max-width:280px;
	}
}
.liebiao {
	background:transparent;
	background-image:none;
	position:relative;
	left:auto;
	top:auto;
	margin:0;
	border:2px solid rgba(26,188,156,0.4);
	width:28px;
	height:28px;
}
.liebiao::before {
	content:'☰';
	font-size:14px;
	line-height:1;
	color:#1abc9c;
}
#player .ctrl .control {
	margin-top:10px;
	height:25px
}
.rewind {
	position:relative;
	margin:0;
	left:auto;
	top:auto;
	background:transparent;
	border:2px solid rgba(26,188,156,0.4);
}
.rewind::before {
	content:'⏮';
	font-size:16px;
	line-height:1;
}
.playback {
	position:relative;
	margin:0;
	left:auto;
	top:auto;
	background:rgba(26,188,156,0.15);
	border:2px solid rgba(26,188,156,0.5);
	width:32px;
	height:32px;
}
.playback::before {
	content:'▶';
	font-size:12px;
	line-height:1;
	margin-left:1px;
}
.playback.playing::before {
	content:'⏸';
}
.fastforward {
	position:relative;
	margin:0;
	left:auto;
	top:auto;
	background:transparent;
	border:2px solid rgba(26,188,156,0.4);
}
.fastforward::before {
	content:'⏭';
	font-size:16px;
	line-height:1;
}
#player .ctrl .progress {
	margin-top:10px;
	display:flex;
	align-items:center;
	gap:8px;
	position:relative;
}
#QPlayer.collapsed #player .ctrl .progress {
	display:none;
}
#player .ctrl .progress .timer {
	font-size:11px;
	color:#7f8c8d;
	margin:0;
	font-weight:500;
	min-width:32px;
	font-family:'Courier New',monospace;
}
#player .ctrl .progress .contr {
	display:flex;
	align-items:center;
	gap:6px;
	flex:1;
	justify-content:center;
}
#player .ctrl .progress .right {
	display:flex;
	align-items:center;
}
#playlist {
	float:left;
	background:rgba(255,255,255,0.98);
	backdrop-filter:blur(20px);
	-webkit-backdrop-filter:blur(20px);
	width:280px;
	margin:8px 0 0 0;
	padding:0;
	position:absolute;
	bottom:100%;
	right:0;
	max-height: 0;
	overflow: hidden;
	border-radius:16px 0 0 16px;
	box-shadow:0 4px 20px rgba(0,0,0,0.1);
	transition:max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border:1px solid rgba(0,0,0,0.05);
	opacity: 0; /* 默认完全透明 */
	visibility: hidden; /* 默认不可见 */
	pointer-events: none; /* 默认不响应鼠标事件 */
}
#playlist.go {
	max-height:360px;
	overflow-y:auto;
	border:1px solid rgba(26,188,156,0.2);
	opacity: 1;
	visibility: visible;
	pointer-events: auto; /* 显示时允许交互 */
}
#playlist li {
	color:#2c3e50;
	font-size:13px;
	line-height:1.8;
	padding:10px 16px;
	cursor:pointer;
	text-overflow:ellipsis;
	list-style:none;
	border-bottom:1px solid rgba(0,0,0,0.05);
	transition:all 0.2s ease;
	display:flex;
	align-items:center;
}
#playlist li:last-child {
	border-bottom:none;
}
#playlist li:hover {
	background:rgba(26,188,156,0.08);
	color:#1abc9c;
	padding-left:20px;
}
#playlist li.playing {
	background:rgba(26,188,156,0.12);
	color:#1abc9c;
	font-weight:600;
	border-left:4px solid #1abc9c;
	padding-left:16px;
}
#pContent {
	width: auto;
	box-shadow: none;
	display: flex;
	align-items: flex-end;
}
#pContent .ssBtn {
	display: none;
}
#QPlayer.collapsed #pContent .ssBtn {
	display: none;
}
#pContent .ssBtn .adf {
	display: none;
}
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg)
	}
	to {
		-webkit-transform: rotate(360deg)
	}
}@-moz-keyframes rotate {
	from {
		-moz-transform: rotate(0deg)
	}
	to {
		-moz-transform: rotate(360deg)
	}
}@-ms-keyframes rotate {
	from {
		-ms-transform: rotate(0deg)
	}
	to {
		-ms-transform: rotate(360deg)
	}
}@-o-keyframes rotate {
	from {
		-o-transform: rotate(0deg)
	}
	to {
		-o-transform: rotate(360deg)
	}
}


/* 设置滚动条的样式 */
#QPlayer ::-webkit-scrollbar {
    width: 3px !important;
}

/* 滚动槽 */
#QPlayer ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important;
    border-radius: 10px !important;
}

/* 滚动条滑块 */
#QPlayer ::-webkit-scrollbar-thumb {
    border-radius: 10px !important;
    background: rgba(0,0,0,0.1) !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5) !important;
}
#QPlayer ::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255,0,0,0.4) !important;
}

.marquee {
  overflow: hidden;
}

#player .ctrl .icon,#playlist li,#playlist li:hover:before, #playlist li:hover:after {
    transition: .2s;
    -webkit-font-smoothing: antialiased;
}


/* 改进的通知框样式 - 与播放器风格一致 */
.qplayer-notification {
    position: fixed;
    top: 20px; /* 放在页面最顶部，距离顶部20px */
    right: 20px; /* 增加右侧距离 */
    display: flex;
    align-items: center;
    z-index: 10000; /* 提高z-index，确保在最上层显示 */
    min-width: 360px; /* 从280px增加到360px */
    max-width: 480px; /* 从400px增加到480px */
    padding: 18px 20px; /* 从12px 16px增加到18px 20px，增加高度和宽度内边距 */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px; /* 从16px增加到18px */
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(500px); /* 从400px增加到500px，匹配新的宽度 */
    opacity: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.qplayer-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.qplayer-notification-hide {
    transform: translateX(500px); /* 从400px增加到500px */
    opacity: 0;
}

/* 封面图片 */
.qplayer-notification-cover {
    width: 72px; /* 从60px增加到72px */
    height: 72px; /* 从60px增加到72px */
    border-radius: 14px; /* 从12px增加到14px */
    overflow: hidden;
    margin-right: 16px; /* 从12px增加到16px，增加与文字的间距 */
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qplayer-notification-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 音乐信息区域 */
.qplayer-notification-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qplayer-notification-title {
    font-size: 16px; /* 从15px增加到16px */
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 6px 0; /* 从4px增加到6px，增加与歌手的间距 */
    line-height: 1.4; /* 从1.3增加到1.4 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qplayer-notification-artist {
    font-size: 14px; /* 从13px增加到14px */
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4; /* 从1.3增加到1.4 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qplayer-notification-message {
    font-size: 14px;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
}

/* 关闭按钮 */
.qplayer-notification-close {
    position: absolute;
    top: 12px; /* 从8px增加到12px */
    right: 12px; /* 从8px增加到12px */
    width: 28px; /* 从24px增加到28px */
    height: 28px; /* 从24px增加到28px */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
    font-size: 20px; /* 从18px增加到20px */
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.05);
}

.qplayer-notification-close:hover {
    color: #2c3e50;
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .qplayer-notification {
        top: 15px; /* 移动端也放在最顶部 */
        right: 15px;
        left: 15px;
        max-width: calc(100vw - 30px);
        min-width: auto;
        padding: 16px 18px; /* 移动端也增加内边距 */
        transform: translateY(-120px); /* 从-100px增加到-120px */
    }
    
    .qplayer-notification.show {
        transform: translateY(0);
    }
    
    .qplayer-notification-hide {
        transform: translateY(-120px);
    }
    
    /* 移动端封面稍小一些 */
    .qplayer-notification-cover {
        width: 64px;
        height: 64px;
        margin-right: 14px;
    }
    
    .qplayer-notification-title {
        font-size: 15px;
    }
    
    .qplayer-notification-artist {
        font-size: 13px;
    }
}

/* 兼容旧版本（保留旧样式类名，但不显示） */
.qplayer-notification-icon,
.qplayer-notification .body {
    display: none;
}


.animation-target {
  -webkit-animation: animation 1000ms linear both;
  animation: animation 1000ms linear both;
}

/* Generated with Bounce.js. Edit at http://goo.gl/2jX9VW */

@-webkit-keyframes animation { 
  0% { -webkit-transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% { -webkit-transform: matrix3d(0.658, 0, 0, 0, 0, 0.703, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.658, 0, 0, 0, 0, 0.703, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% { -webkit-transform: matrix3d(0.725, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.725, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% { -webkit-transform: matrix3d(0.83, 0, 0, 0, 0, 0.946, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.83, 0, 0, 0, 0, 0.946, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% { -webkit-transform: matrix3d(0.942, 0, 0, 0, 0, 1.084, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.942, 0, 0, 0, 0, 1.084, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% { -webkit-transform: matrix3d(0.971, 0, 0, 0, 0, 1.113, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.971, 0, 0, 0, 0, 1.113, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% { -webkit-transform: matrix3d(1.062, 0, 0, 0, 0, 1.166, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.062, 0, 0, 0, 0, 1.166, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% { -webkit-transform: matrix3d(1.07, 0, 0, 0, 0, 1.165, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.07, 0, 0, 0, 0, 1.165, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% { -webkit-transform: matrix3d(1.104, 0, 0, 0, 0, 1.12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.104, 0, 0, 0, 0, 1.12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% { -webkit-transform: matrix3d(1.106, 0, 0, 0, 0, 1.094, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.106, 0, 0, 0, 0, 1.094, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% { -webkit-transform: matrix3d(1.098, 0, 0, 0, 0, 1.035, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.098, 0, 0, 0, 0, 1.035, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% { -webkit-transform: matrix3d(1.075, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.075, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% { -webkit-transform: matrix3d(1.067, 0, 0, 0, 0, 0.969, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.067, 0, 0, 0, 0, 0.969, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% { -webkit-transform: matrix3d(1.031, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.031, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% { -webkit-transform: matrix3d(1.024, 0, 0, 0, 0, 0.949, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.024, 0, 0, 0, 0, 0.949, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% { -webkit-transform: matrix3d(0.99, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.99, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% { -webkit-transform: matrix3d(0.986, 0, 0, 0, 0, 0.989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.986, 0, 0, 0, 0, 0.989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% { -webkit-transform: matrix3d(0.98, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.98, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% { -webkit-transform: matrix3d(0.983, 0, 0, 0, 0, 1.016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.983, 0, 0, 0, 0, 1.016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% { -webkit-transform: matrix3d(0.996, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.996, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% { -webkit-transform: matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% { -webkit-transform: matrix3d(1.004, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.004, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% { -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% { -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } 
}

@keyframes animation { 
  0% { transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% { transform: matrix3d(0.658, 0, 0, 0, 0, 0.703, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.658, 0, 0, 0, 0, 0.703, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% { transform: matrix3d(0.725, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.725, 0, 0, 0, 0, 0.8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% { transform: matrix3d(0.83, 0, 0, 0, 0, 0.946, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.83, 0, 0, 0, 0, 0.946, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% { transform: matrix3d(0.942, 0, 0, 0, 0, 1.084, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.942, 0, 0, 0, 0, 1.084, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% { transform: matrix3d(0.971, 0, 0, 0, 0, 1.113, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.971, 0, 0, 0, 0, 1.113, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% { transform: matrix3d(1.062, 0, 0, 0, 0, 1.166, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.062, 0, 0, 0, 0, 1.166, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% { transform: matrix3d(1.07, 0, 0, 0, 0, 1.165, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.07, 0, 0, 0, 0, 1.165, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% { transform: matrix3d(1.104, 0, 0, 0, 0, 1.12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.104, 0, 0, 0, 0, 1.12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% { transform: matrix3d(1.106, 0, 0, 0, 0, 1.094, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.106, 0, 0, 0, 0, 1.094, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% { transform: matrix3d(1.098, 0, 0, 0, 0, 1.035, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.098, 0, 0, 0, 0, 1.035, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% { transform: matrix3d(1.075, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.075, 0, 0, 0, 0, 0.98, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% { transform: matrix3d(1.067, 0, 0, 0, 0, 0.969, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.067, 0, 0, 0, 0, 0.969, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% { transform: matrix3d(1.031, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.031, 0, 0, 0, 0, 0.948, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% { transform: matrix3d(1.024, 0, 0, 0, 0, 0.949, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.024, 0, 0, 0, 0, 0.949, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% { transform: matrix3d(0.99, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% { transform: matrix3d(0.986, 0, 0, 0, 0, 0.989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.986, 0, 0, 0, 0, 0.989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% { transform: matrix3d(0.98, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.98, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% { transform: matrix3d(0.983, 0, 0, 0, 0, 1.016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.983, 0, 0, 0, 0, 1.016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% { transform: matrix3d(0.996, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.996, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% { transform: matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.003, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% { transform: matrix3d(1.004, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.004, 0, 0, 0, 0, 0.996, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% { transform: matrix3d(1.001, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.001, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% { transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } 
}

.qplayer_tips{
  width:210px;
  height: 0;
  font-family:none !important;
  text-align:center;
  background:#9BCD9B;
  position:fixed;
  margin:30px;
  color: #fff;
  border-radius: 0.5em;
  font-size: 18px;
  font-weight: bold;
  z-index: 9999999;
}

/*箭頭下-邊框*/
.qplayer_tips .tips_arrow{
  border-width:0;
  border-style:solid;
  border-color:#9BCD9B transparent transparent transparent;
  position:absolute;
  bottom:-29px;
  left:17px;
}

.qplayer_tips .tips_button {
  height: 0;
  padding: 0;
  width: 58px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  border:0;
  color: #fff;
  background-color: transparent;
  border:1px dashed rgba(0,0,0,0.15);
  border-radius: 5px;
  cursor: pointer;
  font-size: 10px;
  font-family:none !important;
}

.qplayer_tips .tips_button:hover {
    box-shadow: 0 0 10px #fff;
}

.qplayer_tips .info{
  padding: 20px;
  display: table;
}

/* 添加科技感文字动画样式 */
.cyber-text {
    text-align: center;
    padding: 15px 0;
    margin: 10px 0;
    background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
    border-radius: 10px;  /* 添加圆角 */
    box-shadow: 0 0 15px rgba(0,0,0,0.2);  /* 添加阴影 */
}

.glitch {
    font-size: 20px;  /* 稍微调小字体 */
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
    position: relative;
    display: inline-block;
    animation: cyber-glow 2s ease-in-out infinite alternate;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #0ff;
    animation: glitch-effect 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, -2px);
}

.glitch::after {
    color: #f0f;
    animation: glitch-effect 2s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
}

@keyframes cyber-glow {
    from {
        text-shadow: 0 0 5px #fff,
                     0 0 10px #fff,
                     0 0 15px #0ff,
                     0 0 20px #0ff,
                     0 0 25px #0ff;
    }
    to {
        text-shadow: 0 0 10px #fff,
                     0 0 20px #fff,
                     0 0 30px #0ff,
                     0 0 40px #0ff,
                     0 0 50px #0ff;
    }
}

@keyframes glitch-effect {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-3px, 3px);
    }
    40% {
        transform: translate(-3px, -3px);
    }
    60% {
        transform: translate(3px, 3px);
    }
    80% {
        transform: translate(3px, -3px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
