body {border:0;padding:0;margin:0;background-color: #333;}

.TopPlane{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px; 
	z-index: 9999;
	background: #333;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	padding: 0 10px;
	box-sizing: border-box;
	
	/* 使用 Flex 布局让内容水平垂直居中 */
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tips{
	color: #fff;
    font-size: min(2.933vw, 14.08px);
    font-weight: 400;
    line-height: min(4.267vw, 20.48px);
    white-space: wrap;
    width: min(33.333vw, 160px);
}

.logo{
	border-radius: min(1.1vw, 5.28px);
    height: min(8.8vw, 42.24px);
    width: min(8.8vw, 42.24px);
}

.btn-box{
	align-items: center;
    display: flex;
    flex: 1;
    gap: min(3.2vw, 15.36px);
    justify-content: flex-end;
}

.download-btn{
	align-items: center;
    background: #ffdb00;
    border: none;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    height: min(8vw, 38.4px);
    justify-content: center;
    padding: 0 min(3.2vw, 15.36px);
}

.close-btn{
	align-items: center;
    background: #ffdb00;
    border: none;
    border-radius: 15px;
    color: #000;
    display: flex;
    font-size: 14px;
	width:30px;
    height: 30px;
	line-height:30px;
    justify-content: center;
	padding-top:4px;
}

.close-btn i{
	color: var(--theme-download-bar-close-color, rgba(0, 0, 0, .85));
    font-size: min(6.133vw, 29.44px);
    left: 50%;
    line-height: 1.2;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);	
    display: inline-block;
}


.mask{
	position: fixed;
	z-index: 9999;
	left:0;
	right:0;
	bottom:0;
	top:0;
	background: rgba(0,0,0,0.6);
	display: none;
	align-items: center;       /* 上下居中 */
	justify-content: center;   /* 左右居中 */
}

.iosInstallImg{
	width:100%;
}
