if (isIE || isIE11) {
$(".imgBox .img").each(function(){
var _src= $(this).find('img').attr('src');
$(this).css({'background-image':'url('+_src+')','background-size':'cover','background-position':'top center','background-repeat':'no-repeat'})
})
}
$(".arc-con table").wrap("
");
$(".arc-con img").parentsUntil('.arc-con').css("text-indent", '0');
//$(".arc-con img").removeAttr('width', '').removeAttr('height', '');
var scrollPos=$(window).scrollTop();
if(scrollPos >650){
$(".arc-share").addClass("sc");
}else{
$(".arc-share").removeClass("sc");
}
$(window).scroll(function(){
var scrollPos=$(window).scrollTop();
if(scrollPos >650){
$(".arc-share").addClass("sc");
}else{
$(".arc-share").removeClass("sc");
}
});
var share = $("#share");
if(share.length!=0){
$('#share').share({sites: ['wechat','weibo','qzone']});
}