`);
// xf1106 IOS26适配 start
$("body").addClass("show-18j-popup");
// xf1106 IOS26适配 end
const $languageSelect = $("#languageSelect");
const $content = $("#wanringtext");
const $cancleBt = $("#wanrningcancle");
const $confirmBt = $("#wanrningconfirm");
const $webDescEle = $("#age-warning .content-container .desc");
$languageSelect.on("change", function() {
const selectedLanguage = $(this).val();
if (selectedLanguage === "chinese") {
$webDescEle.attr('src', "/usr/themes/Mirages/images/cn-web.png");
$content.text("本网站包含有年龄限制的内容,包括裸体和露骨色情素材的内容。 点击继续即表示您确认您已年满 18 岁,或在您访问本网站时所在的司法管辖区已是成年人");
$cancleBt.text("我未满18岁-退出");
$confirmBt.text("我已年满18岁-进入");
} else if (selectedLanguage === "english") {
$webDescEle.attr('src', "/usr/themes/Mirages/images/en-web.png");
$content.text("This website contains age-restricted materials including nudity and explicit depictions of sexual activity. By entering, you affirm that you are at least 18 years of age or the age of majority in the jurisdiction you are accessing the website from and you consent to viewing sexually explicit content.");
$cancleBt.text("I am under 18 - Exit");
$confirmBt.text("I am 18 or older - Enter");
}
});
$confirmBt.on("click", ()=> {
const date = new Date();
const value = "true";
date.setTime(date.getTime() + (3650 * 24 * 60 * 60 * 1000));
document.cookie = `${userChoose}=${value}; expires=${date.toUTCString()}; path=/; domain=.${_domain}`;
$('.warning-container').css('display', 'none');
// xf1106 IOS26适配 start
$("body").removeClass("show-18j-popup");
// xf1106 IOS26适配 end
});
$cancleBt.on("click", ()=> {
window.location.href = "https://google.com";
});
})