#b2b-notice-bar {
	position: relative;
	width: 100%;
	background: linear-gradient(90deg, #f5a623 0%, #f7821b 45%, #f25c54 100%);
	color: #fff;
	font-family: inherit;
	display: flex;
	align-items: center;
	padding: 14px 24px;
	box-sizing: border-box;
	z-index: 99999;
}
#b2b-notice-bar .b2b-icon {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	font-size: 17px;
}
#b2b-notice-bar .b2b-text {
	flex: 1 1 auto;
	line-height: 1.4;
}
#b2b-notice-bar .b2b-text strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 2px;
}
#b2b-notice-bar .b2b-text span {
	font-size: 14px;
	opacity: 0.95;
}
#b2b-notice-bar .b2b-login {
	flex: 0 0 auto;
	background: #fff;
	color: #f25c54;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	padding: 9px 22px;
	border-radius: 6px;
	margin-right: 14px;
	transition: opacity 0.2s;
}
#b2b-notice-bar .b2b-login:hover {
	opacity: 0.85;
	color: #f25c54;
}
#b2b-notice-bar .b2b-close {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	border: none;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0;
}
#b2b-notice-bar .b2b-close:hover {
	background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 600px) {
	#b2b-notice-bar {
		flex-wrap: wrap;
		padding: 12px 16px;
	}
	#b2b-notice-bar .b2b-icon {
		width: 32px;
		height: 32px;
		margin-right: 12px;
	}
	#b2b-notice-bar .b2b-text strong {
		font-size: 14px;
	}
	#b2b-notice-bar .b2b-text span {
		font-size: 12px;
	}
	#b2b-notice-bar .b2b-login {
		padding: 7px 16px;
		font-size: 13px;
		margin-right: 8px;
	}
}
