@charset "utf-8";

.top-entrance {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #B3D1FF 0%, #C6B3FF 100%);
	width: 100%;
	position: fixed;
	top: 0;
	z-index:100000
}

.top-entrance:hover {
	background: linear-gradient(90deg, #8DBAFF 0%, #A385FF 100%);
}

.top-entrance>a {
	display: flex;
	align-items: center;
}

.closeBtnIcon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 78%;
	cursor: pointer;
}

.top-entrance>a {
	color: #0D4EE3;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: "PingFang SC";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

@media screen and (max-width: 1024px) {
	.top-entrance {
		padding: 0 1rem;
		box-sizing: border-box;
		justify-content: space-between;
		height:30px
	}

	.top-entrance>a {
		white-space: nowrap;
		max-width: 90%;
		overflow: hidden;
		/* 隐藏超出容器的内容 */
		text-overflow: ellipsis;
		/* 文本溢出时显示省略号 */
		font-size: .9rem;
	}

	.top-entrance>img {
		position: static;
		transform: translateY(0);

	}
}