document.writeln('');
var url = window.location.href;
if (url.indexOf(".html") >= 0) {
if ($(".xle").height() > 1000) {
$(".xle").css("height", "1000px");
$(".xle").css("margin-top", "-15px");
$(".xle").css("overflow", "hidden");
var obj = document.createElement("div");
obj.innerHTML = "
";
$(".xle").after(obj);
$(obj).addClass("view_more");
$(obj).click(function() {
$(".xle").css("height", "auto");
$(this).remove();
//console.log('111');
//针对下载按钮调整背景色 A 版
$(".out-box").css("background-color", "#fcfcfc");
})
}
}
$(document).ready(function() {
$(".icon-close").click(function() {
$("#win").hide()
})
});
$(function() {
$('nav#menu').mmenu()
});
$(".yyu i").click(function() {
$(".yyu").hide();
$(".search").show();
$("#search_key").focus()
});
$(".search span").click(function() {
$(".yyu").show();
$(".search").hide()
});
$(".search dt").click(function() {
$("#search_key").val('')
});