/* styles.css */
.ad-container {
  position: fixed; /* 使广告固定在页面上 */
  bottom: 20px; /* 距离页面底部的距离 */
  right: 20px; /* 距离页面右边的距离 */
  width: 300px; /* 广告的宽度 */
  z-index: 1000; /* 确保广告在其他内容之上 */
  background-color: white; /* 背景颜色 */
  border: 1px solid #ccc; /* 边框 */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 阴影效果 */
  padding: 8px; /* 内边距 */
}
 
.ad-content {
  text-align: right; /* 文本居中 */
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
 
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
