
/* Cookie 横幅样式 */
.cookie-banner {
	position: fixed;
	bottom: -100%; /* 初始状态在视窗外 */
	left: 0;
	width: 100%;
	background-color: #000000f5;
	font-size: 16px;
	color: white;
	padding: 25px 0;
	text-align: center;
	z-index: 1000;
	font-family: Arial, sans-serif;
	box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
	transition: bottom 1.6s ease; /* 平滑过渡效果 */
	z-index: 800
}

.cookie-banner a {
	color: white;
	text-decoration: underline;
}

.cookie-banner button {
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	margin-left: 50px;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
	background-color: #45a049;
}
.style-x2 {
	left: 1em;
	bottom: -100;
	border-radius: 10px;
	max-width: 20em;
	text-align: left;
	padding: 2em 2em 4.5em;
}
.style-x2 button {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
	width: 100%;
	border-radius: 0 0 10px 10px;
}
.cookie-banner.show {
	bottom: 0; /* 显示状态 */
}
.style-x2.show {
	bottom: 2.5em; /* 显示状态 */
}

@media screen and (max-width: 430px) { .style-x2 {
    left: 0;
    width: calc(100% - 6em);
    max-width: 100%;
    margin: 0 1em;
}}