.download-wrap {
			             max-width: 480px;
			             margin: 0 auto;
			         }
			         /* 顶部展示图片区域 */
			         .show-img-box {
			             width: 100%;
			             border-radius: 16px;
			             overflow: hidden;
			             box-shadow: 0 4px 16px rgba(0,0,0,0.1);
			             margin-bottom: 40px;
			         }
			         .show-img-box img {
			             width: 100%;
			             display: block;
			             height: auto;
			         }
			         /* 按钮容器 */
			         .btn-group {
			             display: flex;
			             flex-direction: column;
			             gap: 16px;
			         }
			         .download-btn {
			             width: 100%;
			             height: 56px;
			             line-height: 56px;
			             text-align: center;
			             text-decoration: none;
			             font-size: 17px;
			             font-weight: 500;
			             border-radius: 12px;
			             transition: all 0.24s ease;
			         }
			         .btn-android {
			             background-color: #34a853;
			             color: #ffffff;
			         }
			         .btn-android:hover {
			             background-color: #2d8f47;
			         }
			         .btn-ios {
			             background-color: #000000;
			             color: #ffffff;
			         }
			         .btn-ios:hover {
			             background-color: #222222;
			         }
			         /* PC端可以改为并排按钮 */
			         @media (min-width: 640px) {
			             .btn-group {
			                 flex-direction: row;
			             }
			             .download-btn {
			                 flex: 1;
			             }
			         }