/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* 防止滚动 */
}

.full-screen-ad {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 黑色背景，半透明 */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 1s ease; /* 平滑过渡效果 */
	z-index: 99999;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.zoom{
	width: 300px;
	height: 200px;
	top: auto;
	bottom: 20px;
	left: auto;
	right: 20px;
	transition: all 1s ease;
}
.full-screen-ad p{
	padding:10px;
	background-color: white;
	text-align: center;
}
.zoom p img{
	width:100%;
}
.full-screen-ad p h2{
	line-height: 60px;
	font-size:16px;

}

.zoom p h2{
	width: 280px;
	white-space: nowrap; /* 防止文本换行 */
	overflow: hidden; /* 隐藏超出容器的内容 */
	text-overflow: ellipsis; /* 显示省略号来代表被修剪的文本 */
}
.full-screen-ad #closeBtn{
	position: absolute;
	top:30px;
	right:0px;
	border-radius:30px;
	padding:5px 8px;
	background:#0383ff;
	color:white;
	font-size:12px;
}

.zoom #closeBtn{
	top:-30px;
	right:2px;
}