(function(Switch) {
    var switch_pc = window.location.hash;
    var curURL = document.location.href; //当前URL
    var isMobile = curURL.indexOf("https://m."); //判断当前URL是否是手机站
    var isPc = curURL.indexOf("https://www."); //判断当前URL是否包含"https://www."
    if (isMobile < 0) { //不是手机站
        if (isPc < 0) { //不包含"https://www."
            var thisURL = curURL.replace(/^https:\/\//, "https://m.");
        } else { // 包含"https://www."
            var thisURL = curURL.replace(/^https:\/\/www\./, "https://m.");
        }
    }
    if (switch_pc != "#pc") {
        if (/iphone|ipod|ipad|ipad|Android|nokia|blackberry|webos|webos|webmate|bada|lg|ucweb|skyfire|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|wap|mobile/i.test(navigator.userAgent.toLowerCase())) {
            Switch.location.href = thisURL;
        }
        document.write('<meta name="mobile-agent" content="format=html5;url=' + thisURL + '" />');
    }
})(window);

//右侧内容
var rightList = document.getElementsByClassName('rightList');
for (let i = 0; i < rightList.length; i++) {
    rightList[i].onmouseover = function () {
        rightList[i].style.background='#EEF3F8'
        // console.log(leftList[i].children[1].innerHTML);
    }
    rightList[i].onmouseout = function () {
        rightList[i].style.background='white';
    }
}

var clickFn = function (arr) {
    $(arr[0]).click(function () {
        let i = $(this).index()
        $(arr[0]).eq(i).addClass(arr[1]).siblings(arr[0]).removeClass((arr[1]))
        if(arr.length>2){
            $(arr[2]).eq(i).attr('style', 'display:block;').siblings(arr[2]).attr('style', 'display:none')
        }
    })
}
clickFn(['.gmliveBtm>li', 'ActBrcolor1','.gmSwitch'])
clickFn(['.gmDul1>li', 'ActBgcolor1','.gmTb1'])
clickFn(['.gmDall1>li', 'ActBgcolor','.gmTable1'])
clickFn(['.gmDall1>li', 'ActBgcolor','.gmTable2'])
clickFn(['.gmDall2>li', 'ActBgcolor','.gmDTb2'])
clickFn(['.gmDall3>li', 'ActBgcolor','.gmDTb3'])