@media (min-width: 768px) {
.sep-dot {
display: inline-block !important;
}
.sep-dot + span {
width: auto !important;
margin-top: 0 !important;
}
}
(function () {
// 获取当前访问域名
var currentDomain = window.location.hostname;
// 获取备案号元素
var icpElement = document.getElementById('icp-record-num');
if (!icpElement) return;
// 域名与备案号映射规则
if (currentDomain === 'www.zxqyun.cn') {
icpElement.innerText = '渝ICP备2026000179号-1';
} else if (currentDomain === '01aj.cn' || currentDomain === 'www.01aj.cn') {
icpElement.innerText = '渝ICP备2026000179号-2';
}
})();