a {
		  text-decoration: none !important;
		}
		a:hover {
		  text-decoration: none;
		}
      * {
        box-sizing: border-box;
      }
      /* 设置深色背景 */
      body {
        font-family: Arial, sans-serif;
        background-color: #20232a; /* 深色背景 */
        color: #000;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        overflow-x: hidden;
      }
      .container {
        min-height: 100vh;
        width: 100%;
        max-width: 600px; /* 宽度增加，确保三列布局 */
        background-image: linear-gradient(135deg, #f3f2ef 10%, #e0e3e7 100%);
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        position: relative;
      }

      /* Logo 样式，增加20px */
      .app-logo img {
        width: 120px; /* 默认大小100px + 20px */
        display: block;
        margin: 0 auto;
        border-radius: 15px;
      }

      .app-logo h2,
      .app-logo p {
        text-align: center;
        font-size: 1.1rem;
      }

      /* 卡片样式 */
      .download-buttons {
        justify-content: space-between;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        grid-column-gap: 10px;
        grid-row-gap: 10px;
      }
      .download-card {
        width: 100%;
        /* background-color: #333; */
        background-color: #ffffff;
        border-radius: 10px;
        padding: 10px;
        margin-bottom: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
        color: #000;
      }
      .download-card img {
        width: 100%;
        max-width: 60px;
      }
      .download-card p {
        font-size: 0.8rem;
        margin: 0;
      }
      .download-card:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      }

      .advertisement {
        width: 100%;
        margin-bottom: 20px;
      }
      .app-description,
      .app-info {
        text-align: left;
        background-color: #fff;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
      }
	  .app-description span{
	  white-space: pre-line;
	  word-wrap: break-word;
	  }

      .app-description h3,
      .app-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
      }
      .app-description p,
      .app-info p {
        font-size: 0.9rem;
        line-height: 1.6;
      }
      /* 遮罩 */
      .container .hide {
        display: none;
      }
      .container .show {
        display: block;
      }
      .container .cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
      }
      .container .cover_throw {
        width: calc(76px / 2);
        height: calc(76px / 2);
        position: absolute;
        top: calc(23px / 2);
        right: calc(25px / 2);
      }
      .container .cover_throw img {
        width: 100%;
        height: 100%;
      }
      .cover .cover_text_wrap {
        position: absolute;
        top: calc(110px / 2);
        right: calc(50px / 2);
      }
      .cover .text_top {
        font-size: calc(36px / 2);
        font-weight: bold;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .cover .text_top img {
        width: calc(42px / 2);
        height: calc(42px / 2);
      }
      .cover .text_bottom {
        font-size: calc(24px / 2);
        font-weight: 400;
        color: #ffffff;
      }
      /* 响应式设计 */
      @media (max-width: 600px) {
        .container {
          padding: 15px;
        }
        .app-logo img {
          width: 80px;
        }
        .app-logo h2 {
          font-size: 1.3rem;
        }
        .app-logo p,
        .app-description p,
        .app-info p {
          font-size: 0.85rem;
        }
        .download-card img {
          max-width: 50px;
        }
      }
      @media (min-width: 601px) and (max-width: 1024px) {
        .container {
          width: 90%;
        }
      }

      /* 新增样式 */
      .app-info {
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
      }

      .app-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
      }

      .app-info p {
        font-size: 0.9rem;
        margin: 5px 0;
      }
	  
	  
	  .loading-bar {
		  width: 80%; /* 横线总宽度 */
		  margin-left:10%;
		  margin-bottom:30px;
		  height: 4px; /* 横线高度 */
		  background: #e0e0e0; /* 背景色 */
		  overflow: hidden;
		  position: relative;
		}

		.loading-bar::before {
		  content: '';
		  position: absolute;
		  width: 50px; /* 滚动条的宽度 */
		  height: 100%;
		  background: #3498db; /* 滚动条颜色 */
		  animation: slide 1.5s infinite linear; /* 动画效果 */
		}

		@keyframes slide {
		  0% {
			transform: translateX(-100%); /* 从左边开始 */
		  }
		  100% {
			transform: translateX(400%); /* 滚动到右边 */
		  }
		}
		.hidden{display:none;}
		#overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.5);z-index:1000;display:none;justify-content:center;}#overlayContent{width:80%;max-width:400px;background-color:white;padding:80px 0 0 0;border-radius:10px;text-align:left;color:#fff;font-size:20px;background-color:transparent;}#closeButton{margin-top:10px;margin-left:30%;padding:10px 20px;border-radius:10px;cursor:pointer;font-size:20px;background-color:transparent;color:#fff;border:1px dashed #fff;}.circle{display:inline-flex;justify-content:center;align-items:center;width:30px;height:30px;background-color:red;border-radius:50%;color:white;font-size:20px;font-weight:bold;text-align:center;line-height:50px;margin:5px;}.overlayImage{position:fixed;top:10px;right:10px;width:100px;height:auto;cursor:pointer;z-index:1001;}
		.ims{clear:both;display:block;font-size:9px;color:#aaa;width:100%;text-align:center;}.cad{margin-top:30px;margin-bottom:30px;width:100%;}