import './style.less' function run() { setTimeout(() => { const cols = document.querySelectorAll('.cal-pc__row--event .cal-pc__col .cal-pc__col:not(.cal-pc__col--event)') for (const el of cols) { const w = parseFloat(el.style.width) if (w) el.style.width = `${w * 2.6041666666666665}px` } const right = document.querySelector('.home-channel--calendar .home-channel__title .home-channel__right') if (!right) return right.innerHTML = '更多内容' }, 500) } addEventListener('load', run)