<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */


.stickyfixed-header {
	position: fixed !important;
	top: 100px;
	left: 0;
	width: 100%;
	z-index: 1000000;
	animation: smooth 0.2s ease-in;
}
 @keyframes smooth {
 0% {
 transform:translateY(-10px);
}
 100% {
 transform:translateY(0px);
}
}
.promotion-bg {
	background: #1f1f1f;
	text-align: center;
	padding: 13px 0px;
	position: relative;
	box-sizing: border-box;
	z-index: 999 !important;
	margin-top: 0px;
	display: none;
}
.promotion p {
	margin: 0px;
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
}
.promotion a {
	color: #ff9f1e;
	border-bottom: 1px dotted #ff9f1e;
	margin-left: 5px;
	text-decoration: none !important;
	font-size: 16px;
}
span.tooltip-close {
	position: absolute;
	top: 15px;
	color: #fff;
	right: 20px;
	cursor: pointer;
	font-size: 16px;
}

@media only screen and (max-width:1024px) {
.stickyfixed-header {
	top: 64px;
}
.promotion-bg {
	margin-top: 20px;
}
}

@media only screen and (max-width:600px) {
.promotion-bg {
	text-align: left;
	padding: 13px 20px;
}
.promotion p {
	font-size: 14px !important;
	padding: 0px 10px;
}
.promotion a {
	display: inline-block;
	font-size: 14px;
	margin: 0px;
}
span.tooltip-close {
	top: 13px;
}
}
</pre></body></html>