/* index/gonggao.html */
.layer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: .7;
	background: #000;
	z-index: 1000;
	display: none;
}

#globalAd {
	max-width: 750px;
	min-width: 320px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, .3);
	overflow: hidden;
	position: fixed;
	display: none;
	margin: 0 auto;
	z-index: 10001;
	border: 1px solid rgba(0,0,0,.1);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#globalAd #hero-img {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

#globalAd .notice-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	color: rgba(255,255,255,0.9);
	animation: notice-bell-ring 2s infinite;
}

@keyframes notice-bell-ring {
	0%, 100% { transform: translateY(-50%) rotate(0); }
	20%, 60% { transform: translateY(-50%) rotate(-10deg); }
	40%, 80% { transform: translateY(-50%) rotate(10deg); }
}

#globalAd #hero-img .title {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#globalAd #content {
	padding: 10px;
}

#globalAd .notice-content {
	padding: 5px 15px 10px;
}

#globalAd .notice-content p {
	margin: 8px 0;
	font-size: 15px;
	line-height: 1.6;
}
#globalAd .gga-danger {
	color: #ff5f6d;
	font-weight: bold;
	margin: 8px 0;
	font-size: 15px;
}
#globalAd .gga-info {
	color: #2196F3;
	margin: 8px 0;
	font-size: 15px;
}
#globalAd .gga-text {
	color: #555;
	margin: 8px 0;
	font-size: 15px;
}
#globalAd .gga-link {
	padding: 7px 5px;
	border-bottom: 1px dashed rgba(0,0,0,.1);
	font-size: 15px;
}
#globalAd .gga-link:last-of-type {
	border-bottom: none;
}
#globalAd .gga-link i {
	color: #ff9800;
	margin-right: 6px;
}
#globalAd .gga-link a {
	color: #2196F3;
	text-decoration: none;
}
#globalAd .gga-link a:hover {
	color: #ff5f6d;
	text-decoration: underline;
}

#globalAd .notice-actions {
	padding: 5px 15px 15px;
	display: flex;
	justify-content: flex-end;
}

#globalAd .btn {
	padding: 8px 30px !important;
	border-radius: 5px !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	transition: all 0.3s;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
}

#globalAd .btn i {
	margin-right: 5px;
}

#globalAd .btn-warm {
	background: #ff9800 !important;
	color: #fff !important;
	border-color: #f57c00 !important;
}

#globalAd .btn-warm:hover {
	background: #f57c00 !important;
}
