window.__styleInject__ = window.__styleInject__ || function (css) {
if (!css) return;
if (typeof (window) == 'undefined') return;
var style = document.createElement('style');
if ('styleSheet' in style) {
style = document.createElement('div');
style.innerHTML = 'x' + css + '';
style = style.lastChild;
} else {
...
2024-05-17 11:11:00