/* 基础样式 */


* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
    font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

.fixed-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 2px;
  z-index: 10000;
  background: rgba(68, 68, 68, 0.2);
  color: black;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  word-break: break-word;
}

.content {
	box-sizing: border-box; /* 将padding和border包含在width内 */
  width:100%;  
  max-width: 480px; /* 手机最大宽度 */
  padding: 10px;
  margin: 30px auto; /* 水平居中 */
  background-color: #fff; /* 内容区域背景颜色 */
  border-radius: 8px; /* 添加圆角 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
  
  
}

/* 确保在所有设备上都以手机的显示效果为准 */
@media (min-width: 480px) {
  body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }
}

.image-container {
      position: relative;
      width:100%;
      
      overflow: hidden;
	  border-radius:10px;
    }

    .image-container img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 20%,
        rgba(0, 0, 0, 0.0) 33%
      );
      pointer-events: none; /* 不影响鼠标事件，视情况可删 */
    }

    .text-overlay {
      position: absolute;
      bottom:18px;
      left:50%;
      transform: translate(-50%,0 );
      color: white;
      font-size: 12px;
      font-weight: bold;
      text-align: center;
      z-index: 1; /* 确保文字在蒙版之上 */
    }
    .link-container{
      margin: 20px 8px;
      padding: 5px;
      height: 50px;
      border-radius: 50px;
      display: flex;
      /* justify-content: center; */
      align-items: center;
      background-color: #bbb;
      font-size: 14px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      animation: pulse 2s infinite;
      transition: transform 0.3s ease;
    }
    .img-link{
      height: 40px;
      border-radius: 50%;
      left: 30px;
      margin: 0 20px;

    }


		
		
 .link-list {
  max-width: 750px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 9px 23px;
  width: 100%;
  display: flex;
  color: #ffd324;
  font-family: "SF Pro";
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-decoration-line: underline;
  text-decoration-skip-ink: auto;
  letter-spacing: -0.6px;
}
.link-list a {
  color: #ccc;
}
.link-list .item {
  margin-right: 10px;
}

  #overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9998;
      backdrop-filter: blur(2px);
    }

    /* 遮罩上的提示文字 */
    .message-box {
      display: none;
      position: fixed;
      top: 30%;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 18px;
      text-align: center;
      z-index: 9999;
    }

    /* 弹窗 */
    .popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      padding: 30px 20px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
      z-index: 10000;
      width: 80%;
      max-width: 320px;
    }

    .pulse-button {
      margin: 20px auto;
      padding: 14px 24px;
      font-size: 16px;
      background-color: #27ae60;
      color: white;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(0.95); }
      100% { transform: scale(1); }
    }

    .close-btn {
      margin-top: 10px;
      color: #888;
      text-decoration: underline;
      cursor: pointer;
      font-size: 14px;
    }