修复月充值样式问题

This commit is contained in:
dragon
2024-08-28 18:52:41 +08:00
parent f0cb98ef62
commit 39c7108646
7 changed files with 38 additions and 0 deletions

View File

@@ -976,6 +976,16 @@ body {
padding-bottom: 0.5rem;
}
.disclaimer {
width: 100%;
text-align: center;
margin-top: 0.4rem;
margin-bottom: 0.56rem;
color: #FFF784;
font-size: 0.34667rem;
font-weight: 400;
}
.arabic .back img {
left: auto;
right: 0.24rem;

View File

@@ -1004,6 +1004,16 @@ body {
}
}
.disclaimer {
width: 100%;
text-align: center;
margin-top: px2rem(30);
margin-bottom: px2rem(42);
color: #FFF784;
font-size: px2rem(26);
font-weight: 400;
}
.arabic {
.back img {
left: auto;

View File

@@ -220,6 +220,9 @@
</div>
</div>
</div>
<!-- 免责声明 -->
<div class="disclaimer text24"></div>
</body>
</html>

View File

@@ -80,6 +80,11 @@ function translateFun() {
$('.text14').text(langReplace(localLang.demoModule.text14));
$('.text15').text(langReplace(localLang.demoModule.text15));
$('.text16').text(langReplace(localLang.demoModule.text16));
if(browser.android){
$('.text24').text(langReplace(localLang.demoModule.text25))
}else{
$('.text24').text(langReplace(localLang.demoModule.text24))
}
}
// 配置接口
function getConfig() {
@@ -111,6 +116,7 @@ function getConfig() {
} else {
$(`.recharge${i + 1} .bottom .but`).attr('click', 0);
$(`.recharge${i + 1} .bottom .but`).removeClass('act');
$(`.recharge${i+1} .bottom .but`).text(langReplace(localLang.demoModule.text23));
}
// 处理前三
if (wealth > limitWealth) {

View File

@@ -36,5 +36,8 @@ langAr = {
`,
text21: `هدية مخصصة`,
text22: `<p>يمكنك إرسال الفيديو الخاص بك إلى خدمة العملاء لدينا للحصول على هديتك المخصصة.</p>`,
text23: `تم استلامه`,
text24: `هذا الحدث غير مرتبط بشركة أبل.`,
text25: `هذا الحدث غير مرتبط بشركة جوجل.`,
}
}

View File

@@ -34,5 +34,8 @@ langEn = {
`,
text21: `Customized Gift`,
text22: `<p>You can send your special video to our customer service to get your customized gift.</p>`,
text23: `Received`,
text24: `This event is not related to Apple.`,
text25: `This event is not related to Google.`,
}
}

View File

@@ -36,5 +36,8 @@ langZh = {
`,
text21: `定制礼品`,
text22: `<p>您可以将您的特别视频发送给我们的客服,以获取定制礼品。</p>`,
text23: `已领取`,
text24: `本活动与苹果无关`,
text25: `本活动与谷歌无关`,
}
}