var color = {
国内新闻: ['#D8B221', '#EFE0A6'],
武汉交通: ['#E25E5B', '#E6B2B1'],
线路调整: ['#C061A5', '#F9E2F3'],
政策法规: ['#A864C1', '#F5E2FD'],
出行通告: ['#826CC1', '#D9D1F1']
}
var text = $('#title').text();
if (text != "") {
$('#title').css("background-color", (color[text])[0]);
$('.tip').css("color", (color[text])[1]);
$('.footer').css({ "color": (color[text])[0], "background-color": (color[text])[1] });
}
国内新闻: ['#D8B221', '#EFE0A6'],
武汉交通: ['#E25E5B', '#E6B2B1'],
线路调整: ['#C061A5', '#F9E2F3'],
政策法规: ['#A864C1', '#F5E2FD'],
出行通告: ['#826CC1', '#D9D1F1']
}
var text = $('#title').text();
if (text != "") {
$('#title').css("background-color", (color[text])[0]);
$('.tip').css("color", (color[text])[1]);
$('.footer').css({ "color": (color[text])[0], "background-color": (color[text])[1] });
}